/* variable css */
@import url("https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&amp;display=swap");
:root {
  --primary: #111111;
  --secondary: #555555;
  --border: rgba(17, 17, 17, 0.1);
  --bg: #111111;
  --theme: #c06c34;
  --black: #111111;
  --white: #FFFFFF;
  --action: #c06c34;
}

.dark {
  --primary: #FFFFFF;
  --secondary: #999999;
  --border: rgba(255, 255, 255, 0.1);
  --bg: #171717;
}

/* typography css */
/* dm sans  */
/* bdo grotesk  */
@font-face {
  font-family: "BDOGrotesk";
  src: url("../fonts/BDOGrotesk-DemiBold.ttf");
  font-weight: 600;
}
@font-face {
  font-family: "BDOGrotesk";
  src: url("../fonts/BDOGrotesk-Medium.ttf");
  font-weight: 500;
}
@font-face {
  font-family: "BDOGrotesk";
  src: url("../fonts/BDOGrotesk-Regular.ttf");
  font-weight: 400;
}
@font-face {
  font-family: "PPEditorialNew-Italic";
  src: url("../fonts/PPEditorialNew-Ultralight.otf");
  font-weight: 200;
}
@font-face {
  font-family: "PPEditorialNew-Regular";
  src: url("../fonts/PPEditorialNew-Regular.otf");
  font-weight: 400;
}
@font-face {
  font-family: "PPEditorialNew-Italic";
  src: url("../fonts/PPEditorialNew-Italic.otf");
  font-weight: 400;
}
@font-face {
  font-family: "Tartuffo_Trial-Regular";
  src: url("../fonts/Tartuffo_Trial-Regular.otf");
  font-weight: 400;
}
@font-face {
  font-family: "Tartuffo_Trial-Regular";
  src: url("../fonts/Tartuffo_Trial-Thin.otf");
  font-weight: 300;
}
@font-face {
  font-family: "Tartuffo_Trial-Regular";
  src: url("../fonts/Tartuffo_Trial-Light.otf");
  font-weight: 300;
}
@font-face {
  font-family: "Astro-Nebula";
  src: url("../fonts/Astro-Nebula-Light.otf");
  font-weight: 300;
}
:root {
  --font_dmsans: "DM Sans", sans-serif;
  --font_bdogrotesk: "Fahkwang";
  --font_ppeditor: "Fahkwang";
  --font_ppeditorialnewregular: "Fahkwang";
  --font_tartuffotrial: "Tartuffo_Trial-Regular";
  --font_astronebula: "Astro-Nebula";
  --font_awesome: "Font Awesome 6 Free";
}

* {
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font_dmsans);
  line-height: 1;
}

html {
  scroll-behavior: smooth;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  padding: 0;
  margin: 0;
  color: var(--primary);
  line-height: 1.22;
  font-family: var(--font_bdogrotesk);
  font-weight: 500;
}

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

.ls-none li {
  list-style: none;
}

a {
  text-decoration: none;
  transition: all 0.3s;
  color: inherit;
}
a:hover {
  color: var(--primary);
}

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

p {
  padding: 0;
  margin: 0;
  font-weight: 400;
  font-size: 22px;
  line-height: 30px;
  color: var(--secondary);
}
@media only screen and (max-width: 1399px) {
  p {
    font-size: 20px;
    line-height: 28px;
  }
}

strong {
  font-weight: 500;
}

video,
iframe,
img {
  margin: 0;
  padding: 0;
}

img {
  max-width: 100%;
}

.medium {
  font-weight: 600;
}

.bold {
  font-weight: 700;
}

@media only screen and (max-width: 767px) {
  .g-0 {
    padding-right: 15px;
    padding-left: 15px;
  }
  .row.g-0 {
    padding-right: 0;
    padding-left: 0;
  }
  br {
    display: none;
  }
}
main {
  display: inline-block;
  width: 100%;
  overflow: hidden;
}

h1 {
  font-size: 48px;
}

h2 {
  font-size: 36px;
}

h3 {
  font-size: 32px;
}

h4 {
  font-size: 24px;
}

h5 {
  font-size: 20px;
}

h6 {
  font-size: 18px;
}

/* animation css */
.t_parallax_image {
  overflow: hidden;
}

@keyframes t-Bubble {
  0% {
    scale: 1;
  }
  50% {
    scale: 1.5;
  }
  100% {
    scale: 1;
  }
}
@keyframes t-Zoom {
  0% {
    scale: 1;
  }
  50% {
    scale: 0.5;
  }
  100% {
    scale: 1;
  }
}
@keyframes t-Zoom_2 {
  0% {
    scale: 1;
  }
  50% {
    scale: 0.9;
  }
  100% {
    scale: 1;
  }
}
@keyframes t-SlideBottom {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(50px);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes t-reveal {
  to {
    opacity: 1;
    filter: blur(0px);
  }
}
@keyframes t-fadeUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(50px);
    -ms-transform: translateY(50px);
    transform: translateY(50px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes t-spinner {
  to {
    transform: rotateZ(360deg);
  }
}
@keyframes t-characters {
  0%, 75%, 100% {
    opacity: 0;
    transform: rotateY(-90deg);
  }
  25%, 50% {
    opacity: 1;
    transform: rotateY(0deg);
  }
}
@keyframes t-sheen {
  50% {
    transform: translateY(-20px);
    color: var(--primary);
  }
}
@keyframes t-slide {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
/* common css */
/* Scrollbar styling */
::-webkit-scrollbar {
  width: 5px;
}

::-webkit-scrollbar-track {
  background: #d6d6d6;
}

::-webkit-scrollbar-thumb {
  background: #888;
}

::-webkit-scrollbar-thumb:hover {
  background: #555;
}

/* Utility classes for positioning */
.rr-pos-rel {
  position: relative;
}

.rr-pos-abs {
  position: absolute;
}

.rr-ov-hidden {
  overflow: hidden;
}

/* Container with max-width and padding */
.rr-container-1900 {
  max-width: 100%;
  padding-left: 10px;
  padding-right: 10px;
}

.rr-container-1850 {
  max-width: 1850px;
  margin: 0 auto;
}

.rr-container-1750 {
  max-width: 1750px;
  margin: 0 auto;
}

.rr-container-1860 {
  max-width: 1860px;
  margin: 0 auto;
}

.rr-container-1890 {
  max-width: 1890px;
  margin: 0 auto;
}

.rr-container-1455 {
  max-width: 1455px;
  margin: 0 auto;
}

.rr-container-1897 {
  max-width: 1897px;
  margin: 0 auto;
}

.rr-container-1650 {
  max-width: 1650px;
  margin: 0 auto;
}

/* Background color classes */
.rr-bg-primary {
  background-color: var(--primary);
  /* Primary background color */
}

.rr-bg-white {
  background-color: var(--white);
  /* White background color */
}

.rr-bg-black {
  background-color: var(--black);
}
.dark .rr-bg-black {
  background-color: #171717;
}

.rr-bg-light-gray {
  background-color: #F0F0F0;
}
.dark .rr-bg-light-gray {
  background-color: #212121;
}

.rr-bg-light {
  background-color: #F8F2EF;
}
.dark .rr-bg-light {
  background-color: #111111;
  --primary: #F8F2EF;
}

.rr-text-white {
  color: var(--white);
}

.rr-text-primary {
  color: var(--primary);
}

.text-gray {
  color: #555555;
}
.dark .text-gray {
  color: #999999;
}

.rr-light {
  color: #F8F2EF;
}

.agency-body-border {
  border-right: 1px solid rgba(17, 17, 17, 0.2);
  border-left: 1px solid rgba(17, 17, 17, 0.2);
}
.dark .agency-body-border {
  border-color: rgba(255, 255, 255, 0.2);
}
@media only screen and (max-width: 767px) {
  .agency-body-border {
    border: none;
  }
}

/* Full background image styling */
.rr-bg-full {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.rr-bg-full img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Centering utility */
.pos-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}

/* Parallax view styling */
.parallax-view {
  overflow: hidden;
}

.section-subtitle {
  font-family: var(--font_bdogrotesk);
  font-size: 16px;
  font-weight: 500;
  padding: 7px 8px;
  line-height: 14px;
  padding-left: 20px;
  position: relative;
  border-radius: 500px;
  color: var(--primary);
  display: inline-block;
  border: 1px solid var(--primary);
  text-transform: capitalize;
}
.section-subtitle::before {
  top: 50%;
  width: 6px;
  left: 12px;
  height: 6px;
  content: "";
  position: absolute;
  border-radius: 500px;
  background-color: currentColor;
  transform: translate(-50%, -50%);
}
.section-subtitle.sub--white {
  color: var(--white);
  border-color: var(--white);
  font-weight: 400;
}
.section-subtitle.sub--white::before {
  background-color: var(--white);
}

.section-subtitle-2 {
  font-family: var(--font_bdogrotesk);
  font-weight: 400;
  font-size: 16px;
  line-height: 30px;
  letter-spacing: -0.02em;
  color: var(--primary);
  display: inline-block;
}
.section-subtitle-2.rr-text-white {
  color: var(--white);
}

.section-subtitle-3 {
  font-weight: 400;
  font-size: 18px;
  line-height: 38px;
  letter-spacing: -0.02em;
  display: inline-block;
  color: var(--primary);
}

.section-subtitle-4 {
  font-family: var(--font_bdogrotesk);
  font-weight: 500;
  font-size: 15px;
  line-height: 16px;
  letter-spacing: -0.05em;
  text-transform: uppercase;
  color: var(--primary);
  display: inline-block;
}

.section-subtitle-5 {
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  text-transform: uppercase;
  color: var(--primary);
  display: inline-block;
}

.go-down {
  width: 28px;
  height: 28px;
  background-color: var(--primary);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  border-radius: 50%;
}
.dark .go-down {
  color: var(--black);
}

/* Section title styling with responsive font sizes */
.section-title {
  font-size: 90px;
  /* Specific font family and weight */
}
@media only screen and (max-width: 1919px) {
  .section-title {
    font-size: 70px;
  }
}
@media only screen and (max-width: 1399px) {
  .section-title {
    font-size: 60px;
  }
}
@media only screen and (max-width: 1199px) {
  .section-title {
    font-size: 50px;
  }
}
@media only screen and (max-width: 991px) {
  .section-title {
    font-size: 40px;
  }
}
@media only screen and (max-width: 767px) {
  .section-title {
    font-size: 32px;
  }
}
.section-title.font-bdogrotesk-regular {
  font-family: var(--font_bdogrotesk);
  font-weight: 400;
  line-height: 0.94;
  letter-spacing: -0.05em;
}
.section-title.font-bdogrotesk-regular-50 {
  font-family: var(--font_bdogrotesk);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.05em;
}
@media (min-width: 1200px) {
  .section-title.font-bdogrotesk-regular-50 {
    font-size: 50px;
  }
}
.section-title.font-astronebula-light {
  font-family: var(--font_astronebula);
  font-weight: 300;
  line-height: 0.83;
  letter-spacing: -0.02em;
}
@media only screen and (max-width: 1199px) {
  .section-title.font-astronebula-light {
    line-height: 0.93;
  }
}

.font_ppeditor {
  font-family: var(--font_ppeditor);
}

.font_ppeditorialnewregular {
  font-family: var(--font_ppeditorialnewregular);
}

/* Section spacing with responsive padding */
.mb-44 {
  margin-bottom: 44px;
}

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

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

.pt159 {
  padding-top: 259px;
}
@media only screen and (max-width: 1919px) {
  .pt159 {
    padding-top: 209px;
  }
}
@media only screen and (max-width: 1399px) {
  .pt159 {
    padding-top: 159px;
  }
}
@media only screen and (max-width: 1199px) {
  .pt159 {
    padding-top: 109px;
  }
}

.marquee-text-area--padding {
  padding-top: 220px;
}
@media only screen and (max-width: 1919px) {
  .marquee-text-area--padding {
    padding-top: 209px;
  }
}
@media only screen and (max-width: 1399px) {
  .marquee-text-area--padding {
    padding-top: 159px;
  }
}
@media only screen and (max-width: 1199px) {
  .marquee-text-area--padding {
    padding-top: 109px;
  }
}

.section-spacing-200 {
  padding-top: 200px;
  padding-bottom: 200px;
}
@media only screen and (max-width: 1919px) {
  .section-spacing-200 {
    padding-top: 150px;
    padding-bottom: 150px;
  }
}
@media only screen and (max-width: 1399px) {
  .section-spacing-200 {
    padding-top: 120px;
    padding-bottom: 120px;
  }
}
@media only screen and (max-width: 1199px) {
  .section-spacing-200 {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}
@media only screen and (max-width: 991px) {
  .section-spacing-200 {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}

.section-spacing-bottom-200 {
  padding-bottom: 200px;
}
@media only screen and (max-width: 1919px) {
  .section-spacing-bottom-200 {
    padding-bottom: 150px;
  }
}
@media only screen and (max-width: 1399px) {
  .section-spacing-bottom-200 {
    padding-bottom: 120px;
  }
}
@media only screen and (max-width: 1199px) {
  .section-spacing-bottom-200 {
    padding-bottom: 100px;
  }
}
@media only screen and (max-width: 991px) {
  .section-spacing-bottom-200 {
    padding-bottom: 60px;
  }
}

.section-spacing-top-200 {
  padding-top: 200px;
}
@media only screen and (max-width: 1919px) {
  .section-spacing-top-200 {
    padding-top: 150px;
  }
}
@media only screen and (max-width: 1399px) {
  .section-spacing-top-200 {
    padding-top: 120px;
  }
}
@media only screen and (max-width: 1199px) {
  .section-spacing-top-200 {
    padding-top: 100px;
  }
}
@media only screen and (max-width: 991px) {
  .section-spacing-top-200 {
    padding-top: 60px;
  }
}

.section-spacing-150 {
  padding-top: 150px;
  padding-bottom: 150px;
}
@media only screen and (max-width: 1919px) {
  .section-spacing-150 {
    padding-top: 120px;
    padding-bottom: 120px;
  }
}
@media only screen and (max-width: 1399px) {
  .section-spacing-150 {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}
@media only screen and (max-width: 1199px) {
  .section-spacing-150 {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
@media only screen and (max-width: 991px) {
  .section-spacing-150 {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}

.section-spacing-top-150 {
  padding-top: 150px;
}
@media only screen and (max-width: 1919px) {
  .section-spacing-top-150 {
    padding-top: 120px;
  }
}
@media only screen and (max-width: 1399px) {
  .section-spacing-top-150 {
    padding-top: 100px;
  }
}
@media only screen and (max-width: 1199px) {
  .section-spacing-top-150 {
    padding-top: 80px;
  }
}
@media only screen and (max-width: 991px) {
  .section-spacing-top-150 {
    padding-top: 60px;
  }
}

.section-spacing-bottom-150 {
  padding-bottom: 150px;
}
@media only screen and (max-width: 1919px) {
  .section-spacing-bottom-150 {
    padding-bottom: 120px;
  }
}
@media only screen and (max-width: 1399px) {
  .section-spacing-bottom-150 {
    padding-bottom: 100px;
  }
}
@media only screen and (max-width: 1199px) {
  .section-spacing-bottom-150 {
    padding-bottom: 80px;
  }
}
@media only screen and (max-width: 991px) {
  .section-spacing-bottom-150 {
    padding-bottom: 60px;
  }
}

.section-spacing-top-130 {
  padding-top: 130px;
}
@media only screen and (max-width: 1399px) {
  .section-spacing-top-130 {
    padding-top: 100px;
  }
}
@media only screen and (max-width: 1199px) {
  .section-spacing-top-130 {
    padding-top: 80px;
  }
}
@media only screen and (max-width: 991px) {
  .section-spacing-top-130 {
    padding-top: 60px;
  }
}

.section-spacing-bottom-130 {
  padding-bottom: 130px;
}
@media only screen and (max-width: 1399px) {
  .section-spacing-bottom-130 {
    padding-bottom: 100px;
  }
}
@media only screen and (max-width: 1199px) {
  .section-spacing-bottom-130 {
    padding-bottom: 80px;
  }
}
@media only screen and (max-width: 991px) {
  .section-spacing-bottom-130 {
    padding-bottom: 60px;
  }
}

.section-spacing-130 {
  padding-top: 130px;
  padding-bottom: 130px;
}
@media only screen and (max-width: 1919px) {
  .section-spacing-130 {
    padding-top: 110px;
    padding-bottom: 110px;
  }
}
@media only screen and (max-width: 1399px) {
  .section-spacing-130 {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}
@media only screen and (max-width: 1199px) {
  .section-spacing-130 {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
@media only screen and (max-width: 991px) {
  .section-spacing-130 {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}

.section-spacing {
  padding-top: 100px;
  padding-bottom: 100px;
}
@media only screen and (max-width: 1919px) {
  .section-spacing {
    padding-top: 90px;
    padding-bottom: 90px;
  }
}
@media only screen and (max-width: 1399px) {
  .section-spacing {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
@media only screen and (max-width: 1199px) {
  .section-spacing {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}

.section-spacing-top {
  padding-top: 100px;
}
@media only screen and (max-width: 1919px) {
  .section-spacing-top {
    padding-top: 90px;
  }
}
@media only screen and (max-width: 1399px) {
  .section-spacing-top {
    padding-top: 80px;
  }
}
@media only screen and (max-width: 1199px) {
  .section-spacing-top {
    padding-top: 60px;
  }
}

.section-spacing-bottom {
  padding-bottom: 100px;
}
@media only screen and (max-width: 1919px) {
  .section-spacing-bottom {
    padding-bottom: 90px;
  }
}
@media only screen and (max-width: 1399px) {
  .section-spacing-bottom {
    padding-bottom: 80px;
  }
}
@media only screen and (max-width: 1199px) {
  .section-spacing-bottom {
    padding-bottom: 60px;
  }
}

/* Container styling with full HD support */
.container {
  --bs-gutter-x: 30px;
}
@media (min-width: 1600px) {
  .container.full-hd {
    max-width: 1920px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 0;
    padding-right: 0;
  }
}

/* Inverted text style */
.text-invert > div {
  background-image: linear-gradient(to right, var(--primary) 50%, #CDC9C6 51%);
  background-size: 200% 100%;
  background-position-x: 100%;
  color: transparent;
  background-clip: text;
  -webkit-background-clip: text;
}

/* page title style  */
.page-title-wrapper {
  margin-top: 30px;
  margin-bottom: 45px;
}
@media only screen and (max-width: 991px) {
  .page-title-wrapper {
    margin-bottom: 10px;
  }
}




/* inverted text style  */
.text-invert > div {
  background-image: linear-gradient(to right, var(--primary) 50%, rgba(17, 17, 17, 0.3) 50%);
  background-size: 200% 100%;
  background-position-x: 100%;
  color: transparent;
  background-clip: text;
  -webkit-background-clip: text;
}

/* theme css */
html {
  --container-max-widths: 1320px;
}
@media only screen and (max-width: 1399px) {
  html {
    --container-max-widths: 1140px;
  }
}
@media only screen and (max-width: 1199px) {
  html {
    --container-max-widths: 960px;
  }
}
@media only screen and (max-width: 991px) {
  html {
    --container-max-widths: 720px;
  }
}
@media only screen and (max-width: 767px) {
  html {
    --container-max-widths: 540px;
  }
}

body {
  background-color: #FFFFFF;
  color: var(--secondary);
}

.body-wrapper {
  background-color: var(--white);
}
.body-wrapper.dark {
  background-color: var(--black);
}

.img_anim_reveal {
  visibility: hidden;
  overflow: hidden;
}
.img_anim_reveal img {
  object-fit: cover;
  transform-origin: left;
}

.anim-reveal {
  overflow: hidden;
}

.anim-reveal-line {
  overflow: hidden;
}

.color-white {
  color: var(--white);
}
.color-black {
  color: var(--black);
}
.color-primary {
  color: var(--primary);
}
.color-secondary {
  color: var(--secondary);
}

.theme-bg-white {
  background-color: var(--white);
}
.theme-bg-black {
  background-color: var(--black);
}
.dark .theme-bg-black {
  background-color: #171717;
}
.theme-bg-primary {
  background-color: var(--primary);
}
.theme-bg-secondary {
  background-color: var(--secondary);
}
.theme-bg-transparent {
  background-color: transparent;
}
.theme-bg-theme {
  background-color: var(--theme);
}

.zi-1 {
  z-index: 1;
}
.zi-2 {
  z-index: 2;
}
.zi-0 {
  z-index: 0;
}
.zi--1 {
  z-index: -1;
}

.text-underline {
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
  text-decoration-skip-ink: none;
}

.header__area-6 {
  position: unset;
}

.vertically-center {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.text-indent-40 {
  text-indent: 40px;
}
.text-indent-50 {
  text-indent: 50px;
}

header {
  margin-bottom: -1px;
  z-index: 100;
}

section {
  margin-bottom: -1px;
}

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

.dir-rtl {
  direction: rtl;
}

.show-light {
  display: inline-block;
}
.dark .show-light {
  display: none;
}

.show-dark {
  display: none;
}
.dark .show-dark {
  display: inline-block;
}

.line-divider-sm {
  height: 0.5px;
  background-color: var(--black-9);
}

.admin-bar header,
.admin-bar .body-wrapper {
  margin-top: 32px;
}

.swiper,
.swiper-container {
  direction: ltr;
}

.border-e-0 {
  border-inline-end: 0 !important;
}

.border-s-0 {
  border-inline-start: 0 !important;
}

/* Preloader css */
.container-preloader {
  align-items: center;
  cursor: none;
  display: flex;
  width: 100vw;
  height: 100vh;
  justify-content: center;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 900;
}
.container-preloader .animation-preloader {
  position: absolute;
  z-index: 100;
}
.container-preloader .animation-preloader .spinner {
  animation: t-spinner 1s infinite linear;
  border-radius: 50%;
  height: 9em;
  width: 9em;
  border: 10px solid var(--primary);
  border-top-color: var(--white);
  margin: 0 auto 3.5em auto;
}
.dark .container-preloader .animation-preloader .spinner {
  border-top-color: var(--black);
}
@media only screen and (max-width: 1919px) {
  .container-preloader .animation-preloader .spinner {
    height: 5em;
    width: 5em;
    border-width: 5px;
  }
}
@media only screen and (max-width: 767px) {
  .container-preloader .animation-preloader .spinner {
    margin: 0 auto 0.2em auto;
  }
}
.container-preloader .animation-preloader .txt-loading {
  font: bold 5em "Montserrat", sans-serif;
  text-align: center;
  user-select: none;
}
.container-preloader .animation-preloader .txt-loading .characters {
  color: var(--white);
  position: relative;
  display: inline-block;
}
@media only screen and (max-width: 767px) {
  .container-preloader .animation-preloader .txt-loading .characters {
    font-size: 50px;
  }
}
.container-preloader .animation-preloader .txt-loading .characters:before {
  color: var(--primary);
  content: attr(data-text);
  animation: t-characters 4s infinite;
  left: 0;
  top: 0;
  opacity: 0;
  position: absolute;
  transform: rotateY(-90deg);
}
.container-preloader .animation-preloader .txt-loading .characters:nth-child(2):before {
  animation-delay: 0.2s;
}
.container-preloader .animation-preloader .txt-loading .characters:nth-child(3):before {
  animation-delay: 0.4s;
}
.container-preloader .animation-preloader .txt-loading .characters:nth-child(4):before {
  animation-delay: 0.6s;
}
.container-preloader .animation-preloader .txt-loading .characters:nth-child(5):before {
  animation-delay: 0.8s;
}
.container-preloader .animation-preloader .txt-loading .characters:nth-child(6):before {
  animation-delay: 1s;
}
.container-preloader .loader-section {
  background-color: var(--white);
  height: 100%;
  position: fixed;
  top: 0;
  width: calc(50% + 1px);
}
.dark .container-preloader .loader-section {
  background-color: var(--black);
}
.container-preloader .loader-section.section-left {
  left: 0;
}
.container-preloader .loader-section.section-right {
  right: 0;
}

.loaded .animation-preloader {
  opacity: 0;
  transition: 0.3s ease-out;
}
.loaded .loader-section.section-left {
  transform: translateX(-101%);
  transition: 0.7s 0.3s all cubic-bezier(0.1, 0.1, 0.1, 1);
}
.loaded .loader-section.section-right {
  transform: translateX(101%);
  transition: 0.7s 0.3s all cubic-bezier(0.1, 0.1, 0.1, 1);
}

@keyframes t-spinner {
  to {
    transform: rotateZ(360deg);
  }
}
/* scroll css */
.scroll__down {
  display: flex;
  gap: 20px;
  align-items: center;
}
.scroll__down p {
  font-weight: 500;
  font-size: 14px;
  line-height: 1.9;
  text-transform: uppercase;
  color: var(--white);
}
.scroll__down span {
  width: 66px;
  height: 106px;
  border: 1px solid var(--black-6);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 89px;
}
.scroll__down span i {
  color: var(--white);
}
.scroll__down-wrapper {
  height: 425px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media only screen and (max-width: 1399px) {
  .scroll__down-wrapper {
    height: 380px;
  }
}
@media only screen and (max-width: 1199px) {
  .scroll__down-wrapper {
    height: 350px;
  }
}
@media only screen and (max-width: 767px) {
  .scroll__down-wrapper {
    height: auto;
    padding: 40px 0;
  }
}
.scroll-top {
  width: 50px;
  height: 50px;
  position: fixed;
  right: 15px;
  bottom: 0px;
  z-index: 9999;
  background: var(--white);
  border-radius: 100px;
  mix-blend-mode: exclusion;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s;
}
.scroll-top.showed {
  opacity: 1;
  visibility: visible;
  bottom: 20px;
}

.go-top-writer {
  width: 105px;
  font-size: 16px;
  cursor: pointer;
  text-align: left;
  color: var(--white);
  background-image: url(../imgs/writer/go-top.webp);
  background-position: right center;
  background-repeat: no-repeat;
  right: 16%;
  visibility: hidden;
  opacity: 0;
  z-index: 9;
  transition: all 0.5s;
}
.go-top-writer:hover {
  color: var(--primary);
}
.go-top-writer.showed {
  opacity: 1;
  visibility: visible;
  bottom: 20px;
}
@media only screen and (max-width: 767px) {
  .go-top-writer br {
    display: block;
  }
}

.progress-wrap {
  position: fixed;
  right: 20px;
  bottom: 20px;
  height: 46px;
  width: 46px;
  cursor: pointer;
  display: block;
  border-radius: 50px;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-100px);
  transition: all 300ms linear;
}

.progress-wrap.active-progress {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  mix-blend-mode: exclusion;
  background-color: var(--black);
}

.progress-wrap::after {
  position: absolute;
  content: "\f062";
  font: var(--fa-font-solid);
  text-align: center;
  line-height: 46px;
  font-size: 20px;
  color: var(--primary);
  left: 0;
  top: 0;
  height: 46px;
  width: 46px;
  cursor: pointer;
  display: block;
  z-index: 1;
  transition: all 200ms linear;
  border-radius: 50px;
}
.dark .progress-wrap::after {
  color: var(--black);
}

.progress-wrap svg path {
  fill: var(--black-6);
}

.progress-wrap svg.progress-circle path {
  fill: var(--white);
  stroke: transparent;
  stroke-width: 5;
  box-sizing: border-box;
  transition: all 200ms linear;
}

.light .scroll__down p {
  color: var(--black);
}
.light .scroll__down span {
  border-color: var(--white-3);
}
.light .scroll__down span i {
  color: var(--black);
}
.light.go-top-writer {
  color: var(--black);
  background-color: transparent;
  background-image: url(../imgs/writer/go-top-light.webp);
}
.light.progress-wrap {
  margin: 0;
  background-color: transparent;
}
.light.progress-wrap svg path {
  fill: var(--black);
}
.light.progress-wrap::after {
  color: var(--white);
}

/* button css */
.rr-btn-group {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  font-family: var(--font_dmsans);
}
.rr-btn-group.btn-whte .b {
  border: 1px solid white;
  color: var(--white);
}
.rr-btn-group.btn-whte .c {
  border: 1px solid white;
  color: var(--white);
}

.rr-btn-group span {
  letter-spacing: 0;
}
.rr-btn-group:hover .b {
  transform: rotate(-20deg);
}
.rr-btn-group:hover .c {
  transform: translate(-7px, 0px);
}

.rr-btn-group .b {
  padding: 9px 25px;
  font-weight: 500;
  font-size: 18px;
  line-height: 1;
  color: var(--black);
  background-color: transparent;
  border: 2px solid var(--black);
  border-radius: 50px;
  transition: all 0.3s;
}

.rr-btn-group .c {
  padding: 9px 11px;
  font-weight: 500;
  font-size: 18px;
  line-height: 1;
  color: var(--black);
  background-color: transparent;
  border: 2px solid var(--black);
  border-radius: 50px;
  transition: all 0.3s;
}
.rr-btn-group .c i {
  rotate: -30deg;
}

.rr-btn {
  justify-content: center;
  position: relative;
  overflow: hidden;
  z-index: 5;
  padding: 25px 36px;
  background-color: var(--primary);
  color: var(--white);
  border: 1px solid var(--primary);
  border-radius: 100px;
  font-style: normal;
  font-weight: 500;
  font-size: 18px;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  text-transform: capitalize;
  letter-spacing: -0.02em;
}
.dark .rr-btn {
  color: var(--black);
}
@media only screen and (max-width: 1199px) {
  .rr-btn {
    padding: 18px 29px;
  }
}
@media (max-width: 575px) {
  .rr-btn {
    padding: 16px 20px;
    font-size: 14px;
  }
}
.rr-btn:hover::before, .rr-btn:focus::before {
  height: 100%;
}
.rr-btn:hover .btn-wrap .text-one, .rr-btn:focus .btn-wrap .text-one {
  transform: translateY(-150%);
}
.rr-btn:hover .btn-wrap .text-two, .rr-btn:focus .btn-wrap .text-two {
  top: 50%;
  transform: translateY(-50%);
  color: var(--black);
}
.dark .rr-btn:hover .btn-wrap .text-two, .dark .rr-btn:focus .btn-wrap .text-two {
  color: var(--white);
}
.rr-btn:after {
  display: block;
  clear: both;
  content: "";
}
.rr-btn::before {
  background-color: var(--white);
  content: "";
  width: 100%;
  height: 0;
  bottom: 0;
  position: absolute;
  transition: all 0.5s;
}
.dark .rr-btn::before {
  background-color: var(--black);
}
.rr-btn .btn-wrap {
  z-index: 1;
  /* float: left; */
  overflow: hidden;
  position: relative;
  display: inline-block;
  border: none;
}
.rr-btn .btn-wrap .text-one,
.rr-btn .btn-wrap .text-two {
  display: flex;
  align-items: center;
}
.rr-btn .btn-wrap .text-one {
  position: relative;
  display: block;
  color: var(--white);
  transition: all 0.5s;
}
.dark .rr-btn .btn-wrap .text-one {
  color: var(--black);
}
.rr-btn .btn-wrap .text-two {
  position: absolute;
  top: 100%;
  display: block;
  color: var(--white);
  transition: all 0.5s;
}
.dark .rr-btn .btn-wrap .text-two {
  color: var(--black);
}
.rr-btn.btn-border {
  border: 1px solid rgba(17, 17, 17, 0.15);
  background-color: transparent;
  color: var(--black);
  padding: 25px 42px;
}
.rr-btn.btn-border:hover, .rr-btn.btn-border:focus {
  border-color: transparent;
  color: white;
}
.rr-btn.btn-border:hover .text-two, .rr-btn.btn-border:focus .text-two {
  color: #F9F9F9;
}
.rr-btn.btn-border .btn-wrap .text-one {
  color: var(--black);
}
.rr-btn.btn-border .btn-wrap .text-two {
  color: var(--white);
}
.rr-btn.btn-border-white {
  border: 1px solid rgba(252, 247, 243, 0.1);
  background-color: transparent;
}
.rr-btn.btn-white {
  border-radius: 20px;
  padding: 25px 25px;
  border-color: transparent;
  background-color: var(--white);
}
.rr-btn.btn-white::before {
  background-color: var(--primary);
}
.rr-btn.btn-white .text-one,
.rr-btn.btn-white .text-two {
  gap: 119px;
  display: flex;
}
@media only screen and (max-width: 1399px) {
  .rr-btn.btn-white .text-one,
  .rr-btn.btn-white .text-two {
    gap: 100px;
  }
}
@media only screen and (max-width: 1199px) {
  .rr-btn.btn-white .text-one,
  .rr-btn.btn-white .text-two {
    gap: 50px;
  }
}
@media only screen and (max-width: 767px) {
  .rr-btn.btn-white .text-one,
  .rr-btn.btn-white .text-two {
    gap: 20px;
  }
}
.rr-btn.btn-white .btn-wrap .text-one {
  color: var(--primary);
}
.rr-btn.btn-white .btn-wrap .text-two {
  color: var(--white);
}

.rr-btn-plus {
  position: relative;
  width: 100%;
  overflow: hidden;
  z-index: 5;
  padding: 20px 50px 20px 33px;
  background-color: var(--white);
  color: var(--black);
  border-radius: 20px;
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 1;
  display: inline-flex;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
  text-transform: uppercase;
}
.dark .rr-btn-plus {
  background-color: var(--black);
  color: var(--black);
}
@media only screen and (max-width: 1199px) {
  .rr-btn-plus {
    padding: 10px 20px 10px 18px;
  }
}
@media (max-width: 575px) {
  .rr-btn-plus {
    font-size: 14px;
  }
}
.rr-btn-plus:hover .icon:before, .rr-btn-plus:focus .icon:before {
  transform: scale(30);
}
.rr-btn-plus:hover .btn-wrap .text-one, .rr-btn-plus:focus .btn-wrap .text-one {
  transform: translateY(-150%);
}
.rr-btn-plus:hover .btn-wrap .text-two, .rr-btn-plus:focus .btn-wrap .text-two {
  top: 50%;
  transform: translateY(-50%);
  color: var(--black);
}
.dark .rr-btn-plus:hover .btn-wrap .text-two, .dark .rr-btn-plus:focus .btn-wrap .text-two {
  color: var(--black);
}
.rr-btn-plus .icon {
  width: 60px;
  height: 60px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  position: relative;
  font-size: 48px;
}
.rr-btn-plus .icon:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background-color: #FFD80C;
  top: 0;
  left: 0;
  border-radius: 50%;
  z-index: -1;
  transition: all 0.7s;
}
.rr-btn-plus .btn-wrap {
  z-index: 1;
  /* float: left; */
  overflow: hidden;
  position: relative;
  display: inline-block;
  border: none;
}
.rr-btn-plus .btn-wrap .text-one,
.rr-btn-plus .btn-wrap .text-two {
  display: flex;
  align-items: center;
}
.rr-btn-plus .btn-wrap .text-one {
  position: relative;
  display: block;
  color: var(--black);
  transition: all 0.5s;
}
.dark .rr-btn-plus .btn-wrap .text-one {
  color: var(--white);
}
.rr-btn-plus .btn-wrap .text-two {
  position: absolute;
  top: 100%;
  display: block;
  color: var(--black);
  transition: all 0.5s;
}
.dark .rr-btn-plus .btn-wrap .text-two {
  color: var(--black);
}

.rr-btn-underline {
  font-size: 18px;
  font-weight: 400;
  line-height: 36px;
  letter-spacing: -0.02em;
  color: var(--primary);
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding-bottom: 0px;
  white-space: nowrap;
}
.rr-btn-underline:hover::before {
  width: 0;
}
.rr-btn-underline:hover i {
  rotate: 0deg;
}
.rr-btn-underline::before {
  position: absolute;
  content: "";
  inset-inline-start: 0;
  bottom: 0px;
  width: 100%;
  height: 2px;
  background-color: currentColor;
  transition: 0.3s;
}
.rr-btn-underline i {
  font-size: 17px;
  font-weight: 400;
  rotate: -50deg;
  transition: all 0.3s;
}

@keyframes mask_animation {
  from {
    -webkit-mask-position: 0 0;
    mask-position: 0 0;
  }
  to {
    -webkit-mask-position: 100% 0;
    mask-position: 100% 0;
  }
}
@keyframes mask_animation_2 {
  from {
    -webkit-mask-position: 100% 0;
    mask-position: 100% 0;
  }
  to {
    -webkit-mask-position: 0 0;
    mask-position: 0 0;
  }
}
.btn-hover-default {
  transition: all 0.5s;
}
.btn-hover-default:hover {
  color: var(--black);
  background-color: var(--white);
}
.btn-hover-cross {
  overflow: hidden;
  position: relative;
  transition: all 1s;
}
.btn-hover-cross::after {
  position: absolute;
  content: "";
  width: 150%;
  height: 0%;
  left: 50%;
  top: 50%;
  background-color: var(--primary);
  transform: translateX(-50%) translateY(-50%) rotate(0deg);
  transition: all 0.75s;
  opacity: 0.5;
  z-index: -1;
}
.btn-hover-cross:hover {
  border-color: var(--primary);
  background-color: transparent;
}
.btn-hover-cross:hover::after {
  height: 120%;
  opacity: 1;
}
.btn-hover-divide {
  overflow: hidden;
  position: relative;
  transition: all 1s;
  z-index: 1;
}
.btn-hover-divide::after {
  position: absolute;
  content: "";
  width: 150%;
  height: 0%;
  left: 50%;
  top: 50%;
  background-color: var(--primary);
  transform: translateX(-50%) translateY(-50%) rotate(90deg);
  transition: all 0.75s;
  opacity: 0.5;
  z-index: -1;
}
.btn-hover-divide:hover {
  border-color: var(--primary);
  background-color: transparent !important;
  border-color: transparent;
}
.btn-hover-divide:hover::after {
  height: 400%;
  opacity: 1;
}
.btn-hover-cropping {
  overflow: hidden;
  position: relative;
  transition: all 1s;
}
.btn-hover-cropping::after {
  position: absolute;
  content: "";
  width: 150%;
  height: 0%;
  left: 50%;
  top: 50%;
  background-color: var(--primary);
  transform: translateX(-50%) translateY(-50%) rotate(25deg);
  transition: all 0.75s;
  opacity: 0.5;
  z-index: -1;
}
.btn-hover-cropping:hover {
  border-color: var(--primary);
  background-color: transparent;
}
.btn-hover-cropping:hover::after {
  height: 400%;
  opacity: 1;
}
.btn-hover-mask {
  gap: 10px;
  display: inline-flex;
  align-items: center;
  padding: 15px 30px;
  position: relative;
  overflow: hidden;
  transition: all 0.5s;
  border-radius: 5px;
  color: var(--white);
  font-weight: 400;
  font-size: 16px;
  border: 1px solid var(--white);
  z-index: 1;
}
.btn-hover-mask::after {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--black);
  position: absolute;
  content: attr(data-text);
  cursor: pointer;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-color: var(--white);
  mask: url("https://raw.githubusercontent.com/robin-dela/css-mask-animation/master/img/nature-sprite.webp");
  mask-size: 2300% 100%;
  animation: mask_animation_2 0.7s steps(22) forwards;
}
.btn-hover-mask:hover {
  color: var(--white);
}
.btn-hover-mask:hover::after {
  animation: mask_animation 0.7s steps(22) forwards;
}
.btn-rollover-top {
  position: relative;
  transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
}
.btn-rollover-top:before {
  position: absolute;
  left: 0px;
  bottom: 0px;
  height: 0px;
  width: 100%;
  z-index: -1;
  content: "";
  background-color: var(--primary);
  transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
}
.btn-rollover-top:hover {
  border-color: var(--primary);
  background-color: transparent;
}
.btn-rollover-top:hover::before {
  top: 0%;
  bottom: auto;
  height: 100%;
}
.btn-rollover-left {
  position: relative;
  transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
}
.btn-rollover-left::before {
  position: absolute;
  top: 0px;
  right: 0px;
  height: 100%;
  width: 0px;
  z-index: -1;
  content: "";
  background-color: var(--primary);
  transition: all 0.4s cubic-bezier(0.42, 0, 0.58, 1) 0s;
}
.btn-rollover-left:hover {
  border-color: var(--primary);
  background-color: transparent;
}
.btn-rollover-left:hover::before {
  left: 0%;
  right: auto;
  width: 100%;
}
.btn-rollover-cross {
  overflow: hidden;
  position: relative;
  transition: all 0.5s;
}
.btn-rollover-cross::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  bottom: 100%;
  left: 100%;
  opacity: 0;
  border-bottom: 3px solid var(--primary);
  border-left: 3px solid var(--primary);
  transition: all 0.75s;
}
.btn-rollover-cross::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 100%;
  right: 100%;
  opacity: 0;
  border-top: 3px solid var(--primary);
  border-right: 3px solid var(--primary);
  transition: all 0.75s;
}
.btn-rollover-cross:hover {
  border-color: transparent;
  color: var(--primary);
}
.btn-rollover-cross:hover::before {
  bottom: 0;
  left: 0;
  opacity: 1;
  width: 100%;
  height: 100%;
}
.btn-rollover-cross:hover::after {
  top: 0;
  right: 0;
  opacity: 1;
  width: 100%;
  height: 100%;
}
.btn-parallal-border {
  overflow: hidden;
  position: relative;
  transition: all 0.5s;
}
.btn-parallal-border::before {
  position: absolute;
  content: "";
  width: 0%;
  height: 0%;
  bottom: 0;
  left: 0;
  opacity: 0;
  border-bottom: 3px solid var(--primary);
  border-left: 3px solid var(--primary);
  border-radius: 5px;
  transition: all 0.75s;
}
.btn-parallal-border::after {
  position: absolute;
  content: "";
  width: 0%;
  height: 0%;
  top: 0;
  right: 0;
  opacity: 0;
  border-top: 3px solid var(--primary);
  border-right: 3px solid var(--primary);
  border-radius: 5px;
  transition: all 0.75s;
}
.btn-parallal-border:hover {
  border-color: transparent;
  color: var(--primary);
}
.btn-parallal-border:hover::before {
  opacity: 1;
  width: 100%;
  height: 100%;
}
.btn-parallal-border:hover::after {
  opacity: 1;
  width: 100%;
  height: 100%;
}

/* menu css */
.main-menu.menu-dark > ul > li > a {
  color: var(--black);
}
.main-menu.menu-light > ul > li > a {
  color: var(--white);
}
.main-menu > ul {
  display: flex;
}
.main-menu > ul > li:first-child > a {
  padding-left: 0;
}
.main-menu > ul > li:last-child > a {
  padding-right: 0;
}
.main-menu > ul > li:hover > a {
  color: var(--secondary);
}
.main-menu > ul > li:hover > ul {
  opacity: 1;
  pointer-events: all;
  inset-inline-start: 0;
}
.main-menu > ul > li:hover > ul.dp-menu li:hover > ul {
  opacity: 1;
  pointer-events: all;
  inset-inline-start: 100%;
}
.main-menu li {
  position: relative;
  list-style: none;
}
.main-menu li a {
  display: flex;
  align-items: center;
  font-weight: 400;
  font-size: 18px;
  line-height: 1;
  color: var(--primary);
  padding: 37px 15px;
  text-transform: capitalize;
}
.main-menu ul.dp-menu {
  background-color: #232529;
  padding: 18px 0px;
  width: 250px;
  position: absolute;
  inset-inline-start: 10px;
  opacity: 0;
  pointer-events: none;
  z-index: 10;
  transition: all 0.5s;
}
.main-menu ul.dp-menu.column-2 {
  column-count: 2;
  width: 480px;
  column-gap: 0;
}
.main-menu ul.dp-menu ul {
  background: var(--black);
  padding: 18px 0px;
  width: 300px;
  position: absolute;
  inset-inline-start: calc(100% + 10px);
  top: 0;
  opacity: 0;
  z-index: 10;
  transition: all 0.5s;
}
.main-menu ul.dp-menu li {
  position: relative;
  padding: 0 25px;
}
.main-menu ul.dp-menu li:hover > a {
  color: var(--white);
  background-color: transparent;
}
.main-menu ul.dp-menu li:hover > ul {
  opacity: 1;
  transform: none !important;
  pointer-events: all;
}
.main-menu ul.dp-menu li a {
  font-size: 16px;
  font-weight: 500;
  color: #999999;
  padding: 10px 0;
  background-color: transparent;
  border-radius: 8px;
  text-transform: capitalize;
}
.main-menu ul.dp-menu li a:hover {
  letter-spacing: 0.5px;
}
.main-menu ul.dp-menu li a:after {
  transform: rotate(-90deg);
  margin-left: auto;
}
.main-menu .has-mega-menu {
  position: static;
}
.main-menu li.menu-item-has-children > a:after {
  content: "\f107";
  font-family: var(--font_awesome);
  margin-inline-start: 5px;
  font-weight: 600;
  font-size: 14px;
}
.main-menu .mega-menu {
  background-color: var(--black);
  padding: 30px 50px;
  width: 100%;
  position: absolute;
  left: 10px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  column-gap: 50px;
  justify-content: center;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  z-index: 10;
  transition: all 0.5s;
}
@media only screen and (max-width: 1399px) {
  .main-menu .mega-menu {
    column-gap: 30px;
  }
}
.main-menu .mega-menu li:has(ul) > a:after {
  content: "";
}
.main-menu .mega-menu li a {
  font-size: 16px;
  font-weight: 500;
  color: #999999;
  height: 40px;
  padding: 0 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--black);
  border-radius: 8px;
  overflow: hidden;
}
.main-menu .mega-menu li a:hover {
  color: var(--white);
  background: #2C2C2F;
}
.main-menu .mega-menu .title {
  font-weight: 600;
  color: var(--white);
  text-transform: uppercase;
  border-bottom: 1px solid #333337;
  padding-bottom: 20px;
  margin-bottom: 20px;
  pointer-events: none;
  border-radius: 0;
}
.main-menu .mega-style-2 {
  padding: 0 15%;
  gap: 0;
  grid-template-columns: repeat(2, 1fr);
}
.main-menu .mega-style-2 .title {
  height: 70px;
  padding-bottom: 0;
  margin-bottom: 0;
  position: relative;
  overflow: visible;
  padding-left: 30px;
}
.main-menu .mega-style-2 .title:after {
  position: absolute;
  content: "";
  width: 5000px;
  height: 1px;
  background-color: #333337;
  bottom: -1px;
  left: 50%;
  transform: translateX(-50%);
}
.main-menu .mega-style-2 > li:not(:first-child) {
  border-left: 1px solid #333337;
}
.main-menu .mega-style-2 ul {
  column-count: 2;
  position: relative;
  padding: 20px 0;
}
.main-menu .mega-style-2 ul:after {
  position: absolute;
  content: "";
  width: 1px;
  height: 700px;
  background-color: #333337;
  top: 0;
  left: 50%;
  z-index: 1;
}
.main-menu .mega-style-2 ul li a {
  padding-left: 30px;
}
.main-menu .mega-style-3 {
  padding: 0 0 0 20px;
  gap: 0;
  grid-template-columns: repeat(3, 1fr);
}
.main-menu .mega-style-3 .title {
  height: 70px;
  padding-bottom: 0;
  margin-bottom: 0;
  position: relative;
  overflow: visible;
  padding-left: 30px;
}
.main-menu .mega-style-3 .title:after {
  position: absolute;
  content: "";
  width: 5000px;
  height: 1px;
  background-color: #333337;
  bottom: -1px;
  left: 50%;
  transform: translateX(-50%);
}
.main-menu .mega-style-3 > li:not(:first-child) {
  border-left: 1px solid #333337;
}
.main-menu .mega-style-3 > li:last-child {
  border: none;
  width: 36vw;
}
@media only screen and (max-width: 1399px) {
  .main-menu .mega-style-3 > li:last-child {
    width: 32vw;
  }
}
.main-menu .mega-style-3 ul {
  column-count: 2;
  position: relative;
  padding: 20px 0;
  column-gap: 0;
}
.main-menu .mega-style-3 ul:after {
  position: absolute;
  content: "";
  width: 1px;
  height: 700px;
  background-color: #333337;
  top: 0;
  left: 50%;
  z-index: 1;
}
.main-menu .mega-style-3 ul li {
  margin: 0 10px;
}
.main-menu .mega-style-3 ul li a {
  padding-left: 20px;
}
.main-menu .mega-grid-6 {
  grid-template-columns: repeat(6, 1fr);
}
.main-menu .mega-grid-2 {
  grid-template-columns: repeat(2, 1fr);
  row-gap: 60px;
}
.main-menu .list-3-column ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 50px;
}
@media only screen and (max-width: 1399px) {
  .main-menu .list-3-column ul {
    column-gap: 30px;
  }
}
.main-menu .span-first-item ul li:first-child {
  grid-column: 1/-1;
  column-span: all;
}
.main-menu .new {
  font-size: 10px;
  font-weight: 600;
  background: #FFA38E;
  color: var(--black);
  padding: 3px 7px;
  line-height: 1;
  border-radius: 2px;
  margin-inline-start: 8px;
  display: inline-block;
}
@media only screen and (max-width: 1199px) {
  .main-menu-2 {
    display: none;
  }
}
.main-menu-2 li {
  display: inline-block;
  padding: 0 10px;
}
.main-menu-2 li a {
  display: block;
  font-weight: 500;
  font-size: 20px;
  line-height: 1.5;
  color: var(--white);
  padding: 10px;
  text-transform: capitalize;
}
.main-menu-2 li a:hover {
  color: var(--primary);
}
@media only screen and (max-width: 1399px) {
  .main-menu-2 li a {
    padding: 5px 0;
  }
}
.main-menu-3 li {
  display: inline-block;
  margin-right: 45px;
}
@media only screen and (max-width: 1199px) {
  .main-menu-3 li {
    margin-right: 25px;
  }
}
.main-menu-3 li:last-child {
  margin-right: 0;
}
.main-menu-3 li a {
  color: var(--white);
  font-weight: 500;
  font-size: 18px;
  line-height: 26px;
}
.main-menu-3 li a:hover {
  color: var(--primary);
}
.main-menu-4 li {
  display: inline-block;
  margin-right: 50px;
}
.main-menu-4 li a {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
  color: var(--white);
  text-transform: uppercase;
}
.main-menu-4 li a:hover {
  color: var(--primary);
}

.mega-menu-thumb {
  width: 108%;
  aspect-ratio: 100/83;
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: -1;
}
@media only screen and (max-width: 1199px) {
  .mega-menu-thumb {
    width: 100%;
    height: 100%;
  }
}
.mega-menu-thumb:after {
  position: absolute;
  content: "";
  width: 76%;
  height: 100%;
  top: 0;
  left: 0;
  background: linear-gradient(270deg, rgba(28, 29, 32, 0) 0%, #1C1D20 100%);
}
.mega-menu-thumb .laptop-view {
  width: 70%;
  aspect-ratio: 100/114;
  object-fit: cover;
  object-position: center top;
  position: absolute;
  right: 70px;
  bottom: 0;
}

.mega-menu-counter__item {
  text-align: center;
  display: inline-block;
  margin-top: 35%;
  margin-left: 17%;
  position: relative;
}
@media only screen and (max-width: 1199px) {
  .mega-menu-counter__item {
    margin: 30px auto 50px;
  }
}
.mega-menu-counter__text p {
  font-size: 30px;
  line-height: 28px;
  color: var(--white);
  font-weight: 500;
}
.mega-menu-counter__number {
  font-size: 150px;
  font-weight: 600;
  line-height: 1;
  margin-bottom: 24px;
  color: var(--white);
  background: linear-gradient(136deg, #9479FF 0%, #FFA6D6 47.92%, #FFFCE3 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

@media only screen and (max-width: 1199px) {
  .menu-with-number {
    display: none;
  }
}
.menu-with-number li {
  display: inline-block;
}
.menu-with-number li a {
  font-weight: 500;
  font-size: 14px;
  line-height: 1.5;
  color: var(--white);
  padding: 34px 40px;
  display: inline-block;
  text-transform: uppercase;
}
.menu-with-number li a:hover span {
  color: var(--white);
}
.menu-with-number li a:hover span::before {
  background-color: var(--white);
}
.menu-with-number li a.active span {
  color: var(--white);
}
.menu-with-number li a.active span::before {
  position: absolute;
  content: "";
  width: 35px;
  height: 1px;
  right: 20px;
  top: 50%;
  background-color: var(--white);
}
.menu-with-number li a span {
  display: block;
  font-weight: 500;
  font-size: 12px;
  line-height: 10px;
  text-align: right;
  color: #999999;
  position: relative;
  transition: all 0.5s;
}
.menu-with-number li a span::before {
  position: absolute;
  content: "";
  width: 35px;
  height: 1px;
  right: 20px;
  top: 50%;
  transition: all 0.5s;
  background-color: var(--black-6);
}

.sidebar-menu li {
  display: block;
  padding-bottom: 15px;
}
@media only screen and (max-width: 1919px) {
  .sidebar-menu li {
    padding-bottom: 10px;
  }
}
.sidebar-menu li a {
  display: block;
  font-weight: 600;
  font-size: 14px;
  line-height: 1.5;
  color: var(--white);
  padding: 10px 0;
  text-transform: uppercase;
}
.sidebar-menu li a:hover, .sidebar-menu li a.active {
  color: var(--primary);
}
@media only screen and (max-width: 1399px) {
  .sidebar-menu li a {
    padding: 5px 0;
  }
}

/* mean menu customize */
.offcanvas__menu-wrapper.mean-container .mean-nav > ul {
  padding: 0;
  margin: 0;
  width: 100%;
  list-style-type: none;
  display: block !important;
}
.offcanvas__menu-wrapper.mean-container .mean-nav > ul > li:last-child > a {
  border-bottom: 1px solid var(--black-4);
}
.offcanvas__menu-wrapper.mean-container .mean-nav {
  background: none;
  margin-top: 0;
}
.offcanvas__menu-wrapper.mean-container .mean-nav .new {
  font-size: 10px;
  font-weight: 600;
  background: #FFA38E;
  color: var(--black);
  padding: 3px 7px;
  line-height: 1;
  display: flex;
  align-items: center;
  border-radius: 2px;
}
.offcanvas__menu-wrapper.mean-container .mean-nav ul li a {
  width: 100%;
  padding: 15px 0;
  padding-inline-start: 15px;
  font-weight: 400;
  font-size: 22px;
  line-height: 1;
  color: var(--white);
  text-transform: capitalize;
  border-top: 1px solid var(--black-4);
  display: flex;
  gap: 8px;
  justify-content: flex-start;
  align-items: center;
  outline: none;
  transform: translateY(var(--y)) translateZ(0);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  box-sizing: border-box;
}
@media only screen and (max-width: 767px) {
  .offcanvas__menu-wrapper.mean-container .mean-nav ul li a {
    font-size: 20px;
  }
}
.offcanvas__menu-wrapper.mean-container .mean-nav ul li a.mean-expand {
  width: 54px;
  height: 54px;
  justify-content: center;
  font-weight: 300;
  border: none !important;
}
@media only screen and (max-width: 767px) {
  .offcanvas__menu-wrapper.mean-container .mean-nav ul li a.mean-expand {
    height: 50px;
  }
}
.offcanvas__menu-wrapper.mean-container .mean-nav ul li a.mean-expand:hover {
  background: var(--secondary);
  opacity: 1;
}
.offcanvas__menu-wrapper.mean-container .mean-nav ul li li:first-child {
  border-top: 1px solid var(--black-4);
}
.offcanvas__menu-wrapper.mean-container .mean-nav ul li li a {
  font-size: 20px;
  text-transform: capitalize;
  border-top: none !important;
  padding: 12px 0;
  padding-inline-start: 30px;
}
@media only screen and (max-width: 767px) {
  .offcanvas__menu-wrapper.mean-container .mean-nav ul li li a {
    font-size: 18px;
  }
}
.offcanvas__menu-wrapper.mean-container .mean-nav ul li li a.mean-expand {
  height: 58px;
}
@media only screen and (max-width: 991px) {
  .offcanvas__menu-wrapper.mean-container .mean-nav ul li li a.mean-expand {
    height: 25px;
  }
}
@media only screen and (max-width: 767px) {
  .offcanvas__menu-wrapper.mean-container .mean-nav ul li li a.mean-expand {
    height: 22px;
  }
}
.offcanvas__menu-wrapper.mean-container .mean-nav ul li li li:last-child {
  border-bottom: 1px solid var(--black-4);
}
.offcanvas__menu-wrapper.mean-container .mean-nav ul li li li a {
  padding-left: 40px;
}
.offcanvas__menu-wrapper.mean-container .mean-bar {
  padding: 0;
  background: none;
  max-height: auto;
  overflow-y: scroll;
}
.offcanvas__menu-wrapper.mean-container .mean-bar::-webkit-scrollbar {
  width: 0;
}
.offcanvas__menu-wrapper.mean-container a.meanmenu-reveal {
  display: none !important;
}

.light .main-menu li a:hover {
  color: var(--primary);
}
.light .main-menu-2 li a {
  color: var(--black);
}
.light .main-menu-2 li a:hover {
  color: var(--primary);
}
.light .main-menu-3 li a {
  color: var(--black);
}
.light .main-menu-3 li a:hover {
  color: var(--primary);
}
.light .sidebar-menu li a {
  color: var(--black);
}
.light .sidebar-menu li a:hover {
  color: var(--primary);
}
.light .menu-with-number li a {
  color: var(--black);
}
.light .menu-with-number li a:hover span {
  color: var(--black);
}
.light .menu-with-number li a:hover span::before {
  background-color: var(--black);
}
.light .menu-with-number li a span {
  color: var(--black-9);
}
.light .menu-with-number li a span::before {
  background-color: var(--black-9);
}
.light .menu-with-number li a.active span {
  color: var(--black);
}
.light .menu-with-number li a.active span::before {
  background-color: var(--black);
}

/* modal css */
.modal__dialog {
  width: 760px;
  max-width: 100%;
  margin-top: 100px;
}
@media only screen and (max-width: 991px) {
  .modal__dialog {
    width: 700px;
    margin-top: 80px;
  }
}
@media only screen and (max-width: 767px) {
  .modal__dialog {
    width: 350px;
  }
}
.modal__content {
  height: 500px;
}
@media only screen and (max-width: 767px) {
  .modal__content {
    height: 300px;
  }
}
.modal__content iframe {
  width: 100%;
  height: 100%;
}
.modal__close {
  position: absolute;
  width: 40px;
  height: 40px;
  top: -15px;
  right: -15px;
  z-index: 9;
  border-radius: 50px;
  font-size: 20px;
  color: var(--white);
  background: var(--black);
  transition: all 0.3s;
}
.modal__close:hover {
  color: var(--primary);
}
.modal__sfluence {
  width: 100%;
  height: 100%;
  padding: 60px;
}
@media only screen and (max-width: 767px) {
  .modal__sfluence {
    padding: 20px 10px;
  }
}
.modal__sfluence-area {
  width: 100vw;
  height: 100vh;
  background: var(--black);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s;
  transform: scale(0.5);
}
.modal__sfluence-area.showed {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}
.modal__sfluence-area .close_btn {
  position: absolute;
  width: 60px;
  height: 60px;
  top: 0px;
  right: 20px;
  z-index: 9;
  border-radius: 50px;
  font-size: 30px;
  color: var(--white);
  transition: all 0.3s;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.modal__sfluence-area .close_btn:hover {
  color: var(--primary);
}
@media only screen and (max-width: 767px) {
  .modal__sfluence-area .close_btn {
    right: 0;
  }
}
.modal__sfluence-area iframe,
.modal__sfluence-area video {
  width: 100%;
  height: 100%;
}
@media only screen and (max-width: 767px) {
  .modal__sfluence-area iframe,
  .modal__sfluence-area video {
    height: 300px;
    object-fit: cover;
    margin-top: 45%;
  }
}

/* cursor css */
/*! normalize.css v7.0.0 | MIT License | github.com/necolas/normalize.css */
.cb-cursor {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 150;
  contain: layout style size;
  pointer-events: none;
  will-change: transform;
  transition: opacity 0.3s, color 0.4s;
}

.cb-cursor:before {
  content: "";
  position: absolute;
  top: -24px;
  left: -24px;
  width: 48px;
  height: 48px;
  background: transparent;
  border-radius: 500px;
  transform: scale(0);
  transition: opacity 0.1s, transform 0.3s ease-in-out;
}

.cb-cursor-text {
  position: absolute;
  top: -18px;
  left: -18px;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  line-height: 20px;
  text-align: center;
  letter-spacing: -0.01em;
  opacity: 0;
  transform: scale(0) rotate(10deg);
  transition: opacity 0.4s, transform 0.3s;
  color: white;
}

/* Exclusion and Blending Modes */
@supports (mix-blend-mode: exclusion) {
  .cb-cursor.-exclusion,
  .cb-cursor.-opaque {
    mix-blend-mode: exclusion;
  }
  .cb-cursor.-exclusion:before,
  .cb-cursor.-opaque:before {
    background: white;
  }
}
.cb-cursor.-normal,
.cb-cursor.-text {
  mix-blend-mode: normal;
}

.cb-cursor.-normal:before,
.cb-cursor.-text:before {
  background: currentColor;
}

.cb-cursor.-inverse {
  color: white;
}

/* Cursor Visibility and Transformations */
.cb-cursor.-visible:before {
  transform: scale(0.2);
}

.cb-cursor.-visible.-active:before {
  transform: scale(0.23);
  transition-duration: 0.2s;
}

.cb-cursor.-pointer:before {
  transform: scale(0);
}

.cb-cursor.-text .cb-cursor-text {
  opacity: 1;
  transform: scale(1);
}

.cb-cursor.-text.-active:before {
  transform: scale(1.6);
  transition-duration: 0.2s;
}

.cb-cursor.all-element:before {
  transform: scale(1.6);
  opacity: 0.2;
  transition-duration: 0.2s;
}

.cb-cursor.-opaque:before {
  transform: scale(1.32);
}

.cb-cursor.-text:before {
  background: #000;
  opacity: 1;
  backdrop-filter: blur(10px);
  transform: scale(2);
}

.cb-cursor.-opaque.-active:before {
  transform: scale(1.2);
}

.cb-cursor.-lg:before {
  transform: scale(2);
}

.cb-cursor.-hidden:before {
  transform: scale(0);
}

/*----------------------------------------*/
/*  Context-Specific Styles  */
/*----------------------------------------*/
@supports (mix-blend-mode: exclusion) {
  .body-startup-agency .cb-cursor.-exclusion,
  .body-startup-agency .cb-cursor {
    mix-blend-mode: exclusion;
    opacity: 1;
  }
  .body-startup-agency .cb-cursor.-exclusion:before,
  .body-startup-agency .cb-cursor:before {
    background: white;
    opacity: 1;
  }
}

.cb-cursor.-small {
  mix-blend-mode: normal;
  white-space: nowrap;
}
.cb-cursor.-small::before {
  background-color: #fff;
  width: 80px;
  height: 28px;
  top: -14px;
  left: -40px;
}
.cb-cursor.-small .cb-cursor-text {
  color: black;
}

.cb-cursor.-big {
  mix-blend-mode: normal;
  white-space: nowrap;
}
.cb-cursor.-big::before {
  background-color: #fff;
  width: 80px;
  height: 80px;
  top: -40px;
  left: -40px;
  mix-blend-mode: normal;
}
.cb-cursor.-big .cb-cursor-text {
  color: black;
}

.cb-cursor.portfolio:before {
  display: none;
}

.cb-cursor-text.portfolio {
  width: 420px;
  left: -210px;
}
@media only screen and (max-width: 1919px) {
  .cb-cursor-text.portfolio {
    width: 350px;
    left: -175px;
  }
}
@media only screen and (max-width: 1399px) {
  .cb-cursor-text.portfolio {
    width: 280px;
    left: -140px;
  }
}
.cb-cursor-text.portfolio .cb-cursor-text {
  top: 0;
  left: 0;
  width: auto;
  height: auto;
  display: block;
  text-align: start;
}
.cb-cursor-text.portfolio .hover-display {
  width: 420px;
}
@media only screen and (max-width: 1919px) {
  .cb-cursor-text.portfolio .hover-display {
    width: 350px;
  }
}
@media only screen and (max-width: 1399px) {
  .cb-cursor-text.portfolio .hover-display {
    width: 280px;
  }
}
.cb-cursor-text.portfolio .hover-display .hover-thumb img {
  width: 100%;
}
.cb-cursor-text.portfolio .hover-display .hover-content {
  display: grid;
  gap: 10px 30px;
  grid-template-columns: 1fr auto;
  margin-top: 14px;
  text-align: start;
}
.cb-cursor-text.portfolio .hover-display .title {
  font-family: var(--font_bdogrotesk);
  font-weight: 400;
  font-size: 18px;
  line-height: 24px;
  letter-spacing: -0.05em;
  text-transform: uppercase;
  color: var(--white);
}
.cb-cursor-text.portfolio .hover-display .date {
  font-family: var(--font_bdogrotesk);
  font-weight: 400;
  font-size: 18px;
  line-height: 24px;
  letter-spacing: -0.05em;
  text-transform: uppercase;
  display: inline-block;
  color: var(--white);
}

/* header css */


.bar-icon {
  width: 26px;
  height: 18px;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  display: flex;
  transition: color 0.2s ease-out;
}
.bar-icon span {
  width: 100%;
  height: 2px;
  background: var(--primary);
  display: inline-block;
  transition: color 0.2s ease-out;
}
.bar-icon span:nth-child(2) {
  margin-left: 0px;
}
.bar-icon:hover span {
  animation: qode-draw 0.8s cubic-bezier(0.44, 1.1, 0.53, 0.99) 1 forwards;
}
.bar-icon:hover span:nth-child(2) {
  margin-left: 0px;
  animation-delay: 0.1s;
}
.bar-icon:hover span:nth-child(3) {
  animation-delay: 0.2s;
}
.bar-icon.is-black span {
  background: var(--rr-common-black);
}
.bar-icon.is-white span {
  background: var(--rr-common-white);
}

@keyframes qode-draw {
  0%, 100% {
    -webkit-clip-path: inset(-2px 0);
    clip-path: inset(-2px 0);
  }
  42% {
    -webkit-clip-path: inset(-2px 0 -2px 100%);
    clip-path: inset(-2px 0 -2px 100%);
  }
  43% {
    -webkit-clip-path: inset(-2px 100% -2px 0);
    clip-path: inset(-2px 100% -2px 0);
  }
}



/* image reveal hover page css */
.our-expertise-7 .our-expertise-inner {
  border-top: 1px solid #D5D0CE;
  position: relative;
}
.dark .our-expertise-7 .our-expertise-inner {
  border-color: #292929;
}
.our-expertise-7 .section-title {
  margin-bottom: 120px;
}
@media only screen and (max-width: 1399px) {
  .our-expertise-7 .section-title {
    margin-bottom: 100px;
  }
}
@media only screen and (max-width: 1199px) {
  .our-expertise-7 .section-title {
    margin-bottom: 80px;
  }
}
@media only screen and (max-width: 991px) {
  .our-expertise-7 .section-title {
    margin-bottom: 50px;
  }
}
@media only screen and (max-width: 767px) {
  .our-expertise-7 .section-title {
    margin-bottom: 30px;
  }
}
.our-expertise-7 .section-title .title {
  font-size: 180px;
  font-weight: 200;
  line-height: 170px;
  text-transform: uppercase;
  font-family: var(--font_ppeditor);
}
.our-expertise-7 .section-title .title span{
  color: var(--action);
}
@media only screen and (max-width: 1399px) {
  .our-expertise-7 .section-title .title {
    font-size: 150px;
    line-height: 150px;
  }
}
@media only screen and (max-width: 1199px) {
  .our-expertise-7 .section-title .title {
    font-size: 100px;
    line-height: 100px;
  }
}
@media only screen and (max-width: 991px) {
  .our-expertise-7 .section-title .title {
    font-size: 80px;
    line-height: 80px;
  }
}
@media only screen and (max-width: 767px) {
  .our-expertise-7 .section-title .title {
    font-size: 60px;
    line-height: 60px;
  }
}
@media (max-width: 575px) {
  .our-expertise-7 .section-title .title {
    font-size: 40px;
    line-height: 40px;
  }
}
.our-expertise-7 .our-expertise-item {
  gap: 30px;
  display: grid;
  cursor: pointer;
  padding-top: 40px;
  position: relative;
  padding-bottom: 50px;
  border-bottom: 1px solid #D5D0CE;
  grid-template-columns: 234px 930px 1fr;
}
.dark .our-expertise-7 .our-expertise-item {
  border-color: #292929;
}
@media only screen and (max-width: 1919px) {
  .our-expertise-7 .our-expertise-item {
    grid-template-columns: 234px 630px 1fr;
  }
}
@media only screen and (max-width: 1399px) {
  .our-expertise-7 .our-expertise-item {
    grid-template-columns: 234px 430px 1fr;
  }
}
@media only screen and (max-width: 1199px) {
  .our-expertise-7 .our-expertise-item {
    grid-template-columns: 200px 300px 1fr;
  }
}
@media only screen and (max-width: 991px) {
  .our-expertise-7 .our-expertise-item {
    grid-template-columns: 80px 290px 1fr;
  }
}
@media only screen and (max-width: 767px) {
  .our-expertise-7 .our-expertise-item {
    grid-template-columns: 1fr;
    padding-bottom: 20px;
    gap: 20px;
  }
}
.our-expertise-7 .our-expertise-item:hover span {
  margin-left: 30px;
}
.our-expertise-7 .our-expertise-item span {
  font-size: 14px;
  font-weight: 400;
  line-height: 16px;
  display: inline-block;
  color: var(--primary);
  letter-spacing: -0.7px;
  text-transform: uppercase;
  font-family: var(--font_bdogrotesk);
  z-index: 1;
  position: relative;
  transition: all 0.3s;
}
.our-expertise-7 .our-expertise-item .title {
  z-index: 1;
  font-size: 60px;
  font-weight: 200;
  line-height: 60px;
  position: relative;
  color: var(--primary);
  text-transform: uppercase;
  font-family: var(--font_ppeditor);
}
@media only screen and (max-width: 1399px) {
  .our-expertise-7 .our-expertise-item .title {
    font-size: 50px;
    line-height: 50px;
  }
}
@media only screen and (max-width: 1199px) {
  .our-expertise-7 .our-expertise-item .title {
    font-size: 40px;
    line-height: 45px;
  }
}
@media only screen and (max-width: 767px) {
  .our-expertise-7 .our-expertise-item .title {
    font-size: 35px;
    line-height: 35px;
  }
}
@media (max-width: 575px) {
  .our-expertise-7 .our-expertise-item .title {
    font-size: 29px;
    line-height: 30px;
  }
}
.our-expertise-7 .our-expertise-item p {
  font-size: 20px;
  font-weight: 400;
  max-width: 370px;
  line-height: 28px;
  color: var(--primary);
  z-index: 1;
  position: relative;
}
@media only screen and (max-width: 991px) {
  .our-expertise-7 .our-expertise-item p {
    max-width: 100%;
  }
}
.our-expertise-7 .hover-image {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  z-index: 99;
  width: 350px;
  height: 370px;
  overflow: hidden;
  pointer-events: none;
  will-change: transform;
  transform: translate(0%, 0%) scale(0);
}
.our-expertise-7 .hover-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
}
.our-expertise-7 .active-bg {
  left: 0;
  right: 0;
  z-index: 0;
  height: 0;
  opacity: 0;
  position: absolute;
  pointer-events: none;
  background: #F2EAE5;
  transform: translateY(0);
  transform-origin: top center;
  transition: transform 0.4s ease, height 0.4s ease, opacity 0.4s ease;
}
.dark .our-expertise-7 .active-bg {
  background-color: #1A1A1A;
}

/* branding agency page css */
.section-title-6 {
  font-family: var(--font_bdogrotesk);
  font-weight: 400;
  font-size: 215px;
  line-height: 0.86;
  letter-spacing: -0.09em;
  text-transform: uppercase;
}
@media only screen and (max-width: 1919px) {
  .section-title-6 {
    font-size: 165px;
  }
}
@media only screen and (max-width: 1399px) {
  .section-title-6 {
    font-size: 155px;
  }
}
@media only screen and (max-width: 1199px) {
  .section-title-6 {
    font-size: 115px;
  }
}
@media only screen and (max-width: 991px) {
  .section-title-6 {
    font-size: 85px;
  }
}
@media only screen and (max-width: 767px) {
  .section-title-6 {
    font-size: 60px;
    letter-spacing: -0.05em;
    line-height: 1;
  }
}
@media (max-width: 575px) {
  .section-title-6 {
    font-size: 38px;
  }
}

/* hero area 6 style  */
.hero-6-section-content {
  margin-top: 27px;
}
@media only screen and (max-width: 1199px) {
  .hero-6-section-content {
    margin-top: 107px;
  }
}
.hero-6-section-content .meta-list {
  max-width: 580px;
  margin-left: auto;
}
@media only screen and (max-width: 1199px) {
  .hero-6-section-content .meta-list {
    margin-left: 0;
  }
}
.hero-6-section-content .meta-list ul {
  display: grid;
  gap: 15px 40px;
  grid-template-columns: 200px 200px;
  justify-content: space-between;
}
@media (max-width: 575px) {
  .hero-6-section-content .meta-list ul {
    grid-template-columns: 1fr;
  }
}
.hero-6-section-content .meta-list li {
  font-family: var(--font_bdogrotesk);
  font-weight: 400;
  font-size: 14px;
  line-height: 15px;
  letter-spacing: -0.05em;
  text-transform: uppercase;
  color: var(--primary);
  list-style: none;
}
.hero-6-section-content .meta-list li br {
  display: block;
}
.hero-6-section-content .section-title-wrapper {
  margin-top: 51px;
}
@media only screen and (max-width: 1199px) {
  .hero-6-section-content .section-title-wrapper {
    margin-top: 41px;
  }
}
@media only screen and (max-width: 991px) {
  .hero-6-section-content .section-title-wrapper {
    margin-top: 31px;
  }
}

.hero-6-nav {
  position: relative;
  z-index: 1;
  margin-top: 146px;
}
@media only screen and (max-width: 1919px) {
  .hero-6-nav {
    margin-top: 96px;
  }
}
.hero-6-nav .main-menu li a {
  font-size: 16px;
  font-weight: 500;
  padding: 0 0;
  text-transform: uppercase;
  justify-content: space-between;
}
.hero-6-nav .main-menu li a:hover {
  color: var(--primary);
}
.hero-6-nav .main-menu > ul {
  gap: 40px;
}
.hero-6-nav .main-menu > ul > li {
  flex-grow: 1;
  max-width: 270px;
}
.hero-6-nav .main-menu > ul > li:hover > a {
  color: var(--secondary);
  border-color: var(--primary);
}
.dark .hero-6-nav .main-menu > ul > li:hover > a {
  border-color: var(--primary);
}
.hero-6-nav .main-menu > ul > li > a {
  padding-bottom: 17px;
  border-bottom: 1px solid rgba(17, 17, 17, 0.2);
}
.dark .hero-6-nav .main-menu > ul > li > a {
  border-color: rgba(255, 255, 255, 0.2);
}
.hero-6-nav .main-menu ul.dp-menu {
  min-width: 100%;
}

.hero-6-thumb {
  margin-top: 50px;
}
@media only screen and (max-width: 767px) {
  .hero-6-thumb {
    margin-top: 30px;
  }
}

/* about area 6 style  */
.about-6-section-header {
  margin-top: 193px;
  position: relative;
}
@media only screen and (max-width: 1919px) {
  .about-6-section-header {
    margin-top: 143px;
  }
}
@media only screen and (max-width: 1399px) {
  .about-6-section-header {
    margin-top: 93px;
  }
}
@media only screen and (max-width: 1199px) {
  .about-6-section-header {
    margin-top: 53px;
  }
}
.about-6-section-header .meta-text {
  font-family: var(--font_bdogrotesk);
  font-weight: 400;
  font-size: 18px;
  line-height: 22px;
  letter-spacing: -0.03em;
  text-align: center;
  color: var(--primary);
  max-width: 435px;
  margin-inline: auto;
}
.about-6-section-header .section-title-wrapper {
  margin-top: 174px;
  position: relative;
  z-index: 1;
}
@media only screen and (max-width: 1919px) {
  .about-6-section-header .section-title-wrapper {
    margin-top: 124px;
  }
}
@media only screen and (max-width: 1399px) {
  .about-6-section-header .section-title-wrapper {
    margin-top: 74px;
  }
}
@media only screen and (max-width: 1199px) {
  .about-6-section-header .section-title-wrapper {
    margin-top: 34px;
  }
}
.about-6-section-header .section-title-6 {
  text-align: center;
}

.about-6-section-content {
  display: grid;
  gap: 40px 90px;
  grid-template-columns: 1.9fr 440px 1fr;
  align-items: flex-end;
  margin-top: -241px;
}
@media only screen and (max-width: 1919px) {
  .about-6-section-content {
    margin-top: -191px;
  }
}
@media only screen and (max-width: 1399px) {
  .about-6-section-content {
    margin-top: -151px;
  }
}
@media only screen and (max-width: 1199px) {
  .about-6-section-content {
    margin-top: 60px;
    gap: 40px 60px;
  }
}
@media only screen and (max-width: 991px) {
  .about-6-section-content {
    grid-template-columns: 1fr;
  }
}
.about-6-section-content .about-6-thumb-1 {
  margin-bottom: 7px;
}
.about-6-section-content .meta-text {
  font-family: var(--font_bdogrotesk);
  font-weight: 400;
  font-size: 14px;
  line-height: 15px;
  letter-spacing: -0.05em;
  text-transform: uppercase;
  color: var(--primary);
}
@media only screen and (max-width: 767px) {
  .about-6-section-content .meta-text {
    letter-spacing: 0;
  }
}
.about-6-section-content .text {
  font-weight: 400;
  font-size: 20px;
  line-height: 28px;
  text-align: justify;
  color: var(--primary);
  margin-top: 137px;
}
@media only screen and (max-width: 1919px) {
  .about-6-section-content .text {
    margin-top: 87px;
  }
}
@media only screen and (max-width: 1399px) {
  .about-6-section-content .text {
    margin-top: 37px;
  }
}
@media only screen and (max-width: 767px) {
  .about-6-section-content .text {
    font-size: 18px;
    line-height: 26px;
  }
}
.about-6-section-content .about-6-thumb-2 {
  margin-left: auto;
  margin-bottom: 7px;
}
@media only screen and (max-width: 991px) {
  .about-6-section-content .about-6-thumb-2 {
    margin-left: 0;
  }
}

/* service area 6 style  */
.service-6-section-header {
  margin-top: 71px;
  display: grid;
  gap: 30px 60px;
  grid-template-columns: 1fr auto;
  align-items: flex-end;
}
@media only screen and (max-width: 1919px) {
  .service-6-section-header {
    margin-top: 41px;
  }
}
@media only screen and (max-width: 1199px) {
  .service-6-section-header {
    margin-top: 21px;
  }
}
@media only screen and (max-width: 767px) {
  .service-6-section-header {
    grid-template-columns: 1fr;
  }
}
.service-6-section-header .btn-wrapper {
  margin-bottom: 6px;
}
.service-6-section-header .rr-btn-underline {
  color: var(--primary);
  font-size: 14px;
  line-height: 30px;
  text-transform: uppercase;
  gap: 10px;
}
.service-6-section-header .rr-btn-underline span {
  margin-right: 30px;
}
.service-6-section-header .rr-btn-underline i {
  transform: rotate(0deg);
}
.service-6-section-header .rr-btn-underline::before {
  height: 1px;
}

.services-6-wrapper-box {
  margin-top: 91px;
  display: grid;
  gap: 40px 60px;
  grid-template-columns: 1fr 1300px;
  margin-bottom: 100px;
}
@media only screen and (max-width: 1919px) {
  .services-6-wrapper-box {
    grid-template-columns: 1fr 1100px;
    margin-top: 61px;
    margin-bottom: 70px;
  }
}
@media only screen and (max-width: 1399px) {
  .services-6-wrapper-box {
    grid-template-columns: 1fr 1000px;
  }
}
@media only screen and (max-width: 1199px) {
  .services-6-wrapper-box {
    grid-template-columns: 1fr;
    margin-top: 41px;
    margin-bottom: 40px;
  }
}
.services-6-wrapper-box .meta-text {
  font-family: var(--font_bdogrotesk);
  font-weight: 400;
  font-size: 14px;
  line-height: 15px;
  letter-spacing: -0.05em;
  text-transform: uppercase;
  color: var(--primary);
}
@media only screen and (max-width: 767px) {
  .services-6-wrapper-box .meta-text {
    letter-spacing: 0;
  }
}

.services-6-wrapper {
  margin-top: 3px;
  display: grid;
  gap: 50px 100px;
  grid-template-columns: 1fr 1fr;
}
@media only screen and (max-width: 767px) {
  .services-6-wrapper {
    grid-template-columns: 1fr;
  }
}
.services-6-wrapper > * {
  position: relative;
}
.services-6-wrapper > *:nth-child(2n):before {
  position: absolute;
  content: "";
  width: 1px;
  height: 100%;
  background-color: var(--border);
  top: 0;
  left: -50px;
}
@media only screen and (max-width: 767px) {
  .services-6-wrapper > *:nth-child(2n):before {
    display: none;
  }
}

.service-box-6 {
  display: grid;
  gap: 30px 40px;
  grid-template-columns: 1fr 280px;
  border-top: 1px solid var(--border);
  padding-top: 23px;
}
@media only screen and (max-width: 1199px) {
  .service-box-6 {
    grid-template-columns: 1fr;
  }
}
.service-box-6 .title {
  font-family: var(--font_bdogrotesk);
  font-weight: 400;
  font-size: 18px;
  line-height: 1;
  letter-spacing: -0.05em;
  text-transform: uppercase;
  margin-top: 4px;
}
.service-box-6 .title a:hover {
  color: var(--secondary);
}
.service-box-6 .content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.service-box-6 .service-list li {
  font-family: var(--font_bdogrotesk);
  font-weight: 400;
  font-size: 18px;
  line-height: 26px;
  letter-spacing: -0.05em;
  list-style: none;
  color: #999999;
}
.dark .service-box-6 .service-list li {
  color: #555555;
}
.service-box-6 .thumb {
  border-radius: 10px;
  overflow: hidden;
  margin-top: 36px;
}
.service-box-6 .thumb img {
  width: 100%;
}

.portfolio-6-section-header {
  margin-top: 78px;
  display: grid;
  gap: 30px 60px;
  grid-template-columns: 1fr auto;
  align-items: flex-end;
}
@media only screen and (max-width: 1919px) {
  .portfolio-6-section-header {
    margin-top: 48px;
  }
}
@media only screen and (max-width: 1199px) {
  .portfolio-6-section-header {
    margin-top: 28px;
  }
}
@media only screen and (max-width: 767px) {
  .portfolio-6-section-header {
    grid-template-columns: 1fr;
  }
}
.rr-bg-primary .portfolio-6-section-header .section-title-6 {
  color: var(--white);
}
.dark .rr-bg-primary .portfolio-6-section-header .section-title-6 {
  color: var(--black);
}
.portfolio-6-section-header .btn-wrapper {
  margin-bottom: 6px;
}
.portfolio-6-section-header .rr-btn-underline {
  font-size: 14px;
  line-height: 30px;
  text-transform: uppercase;
  gap: 10px;
}
.rr-bg-primary .portfolio-6-section-header .rr-btn-underline {
  color: var(--white);
}
.dark .rr-bg-primary .portfolio-6-section-header .rr-btn-underline {
  color: var(--black);
}
.portfolio-6-section-header .rr-btn-underline span {
  margin-right: 30px;
}
.portfolio-6-section-header .rr-btn-underline i {
  transform: rotate(0deg);
}
.portfolio-6-section-header .rr-btn-underline::before {
  height: 1px;
}

.portfolio-6-wrapper-box {
  margin-top: -6px;
}

.portfolio-6-wrapper {
  display: grid;
  gap: 20px 20px;
  grid-template-columns: 1fr 1fr;
}
@media only screen and (max-width: 1199px) {
  .portfolio-6-wrapper {
    gap: 40px 20px;
  }
}
@media (max-width: 575px) {
  .portfolio-6-wrapper {
    grid-template-columns: 1fr;
  }
}
.portfolio-6-wrapper > *.span-2 {
  grid-column: span 2;
}
@media (max-width: 575px) {
  .portfolio-6-wrapper > *.span-2 {
    grid-column: auto;
  }
}

.portfolio-6-item {
  position: relative;
  display: block;
  cursor: pointer;
}
.portfolio-6-item:hover:before {
  opacity: 1;
  transition: all 0.3s;
}
.portfolio-6-item:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(17, 17, 17, 0.6);
  opacity: 0;
  pointer-events: none;
}
.portfolio-6-item .hover-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 420px;
  height: auto;
  opacity: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 2;
  transform: translate3d(0, 0, 0) scale(0.1);
  transition: opacity 0.3s ease, clip-path 1.2s cubic-bezier(0.19, 1, 0.22, 1);
}
@media only screen and (max-width: 1199px) {
  .portfolio-6-item .hover-image {
    width: 320px;
  }
}
@media only screen and (max-width: 767px) {
  .portfolio-6-item .hover-image {
    width: 220px;
  }
}
.portfolio-6-item .hover-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
  pointer-events: none;
}
.portfolio-6-item .hover-text {
  display: flex;
  justify-content: space-between;
  margin-top: 14px;
}
.portfolio-6-item .hover-text h4 {
  font-size: 18px;
  line-height: 24px;
  font-weight: 400;
  letter-spacing: -0.05em;
  text-transform: uppercase;
  color: var(--white);
}
.portfolio-6-item .hover-text p {
  font-size: 18px;
  line-height: 24px;
  font-weight: 400;
  text-transform: uppercase;
  color: var(--white);
}

.rr-bg-primary .approach-section-header .section-title-6 {
  color: var(--white);
}
.dark .rr-bg-primary .approach-section-header .section-title-6 {
  color: var(--black);
}

.approach-wrapper {
  border-top: 1px solid;
  margin-top: 93px;
}
.rr-bg-primary .approach-wrapper {
  border-color: #292929;
}
.dark .rr-bg-primary .approach-wrapper {
  border-color: #E7E7E7;
}
@media only screen and (max-width: 1199px) {
  .approach-wrapper {
    margin-top: 60px;
  }
}
@media only screen and (max-width: 767px) {
  .approach-wrapper {
    margin-top: 40px;
  }
}
.approach-wrapper .approach-item {
  gap: 30px;
  display: grid;
  padding-top: 60px;
  padding-bottom: 110px;
  border-bottom: 1px solid;
  grid-template-columns: 238px 820px 1fr;
}
.rr-bg-primary .approach-wrapper .approach-item {
  border-color: #292929;
}
.dark .rr-bg-primary .approach-wrapper .approach-item {
  border-color: #E7E7E7;
}
@media only screen and (max-width: 1919px) {
  .approach-wrapper .approach-item {
    grid-template-columns: 238px 600px 1fr;
  }
}
@media only screen and (max-width: 1399px) {
  .approach-wrapper .approach-item {
    grid-template-columns: 238px 400px 1fr;
  }
}
@media only screen and (max-width: 1199px) {
  .approach-wrapper .approach-item {
    grid-template-columns: 150px 320px 1fr;
  }
}
@media only screen and (max-width: 991px) {
  .approach-wrapper .approach-item {
    grid-template-columns: 120px 1fr;
  }
}
@media only screen and (max-width: 767px) {
  .approach-wrapper .approach-item {
    padding-top: 40px;
    padding-bottom: 60px;
  }
}
@media (max-width: 575px) {
  .approach-wrapper .approach-item {
    grid-template-columns: 1fr;
  }
}
@media only screen and (max-width: 991px) {
  .approach-wrapper .approach-item > *:nth-child(3) {
    grid-column: span 2;
    max-width: 100%;
  }
}
@media (max-width: 575px) {
  .approach-wrapper .approach-item > *:nth-child(3) {
    grid-column: auto;
    max-width: 100%;
  }
}
.approach-wrapper .approach-item .sub-title {
  font-size: 30px;
  font-weight: 400;
  line-height: 30px;
  letter-spacing: -1.5px;
  text-transform: uppercase;
}
.rr-bg-primary .approach-wrapper .approach-item .sub-title {
  color: var(--white);
}
.dark .rr-bg-primary .approach-wrapper .approach-item .sub-title {
  color: var(--black);
}
@media (max-width: 575px) {
  .approach-wrapper .approach-item .sub-title {
    font-size: 25px;
  }
}
.approach-wrapper .approach-item .title {
  font-size: 30px;
  font-weight: 400;
  line-height: 30px;
  letter-spacing: -1.5px;
  text-transform: uppercase;
}
.rr-bg-primary .approach-wrapper .approach-item .title {
  color: var(--white);
}
.dark .rr-bg-primary .approach-wrapper .approach-item .title {
  color: var(--black);
}
@media only screen and (max-width: 991px) {
  .approach-wrapper .approach-item .title br {
    display: none;
  }
}
@media (max-width: 575px) {
  .approach-wrapper .approach-item .title {
    font-size: 25px;
  }
}
.approach-wrapper .approach-item p {
  font-size: 20px;
  font-weight: 400;
  line-height: 28px;
  max-width: 500px;
}
.rr-bg-primary .approach-wrapper .approach-item p {
  color: #999999;
}
.dark .rr-bg-primary .approach-wrapper .approach-item p {
  color: #555555;
}

.fun-fact-area .fun-fact-area-inner {
  margin-top: 93px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}
@media only screen and (max-width: 1199px) {
  .fun-fact-area .fun-fact-area-inner {
    margin-top: 60px;
  }
}
@media only screen and (max-width: 767px) {
  .fun-fact-area .fun-fact-area-inner {
    margin-top: 40px;
  }
}
.fun-fact-area .fun-fact-wrapper {
  display: inline-flex;
  align-items: self-start;
  gap: 10px;
}
@media only screen and (max-width: 767px) {
  .fun-fact-area .fun-fact-wrapper {
    flex-wrap: wrap;
  }
}
.fun-fact-area .fun-fact__item {
  border-radius: 10px;
  width: 575px;
}
@media only screen and (max-width: 1199px) {
  .fun-fact-area .fun-fact__item {
    width: 400px;
  }
}
@media only screen and (max-width: 991px) {
  .fun-fact-area .fun-fact__item {
    width: 300px;
  }
}
.fun-fact-area .fun-fact__item.has--card {
  height: 355px;
  padding: 40px;
  position: relative;
  border-radius: 10px;
  background-color: #F1F1F1;
}
.dark .fun-fact-area .fun-fact__item.has--card {
  background-color: #1A1A1A;
}
@media only screen and (max-width: 991px) {
  .fun-fact-area .fun-fact__item.has--card {
    height: 280px;
  }
}
/* .fun-fact-area .fun-fact__item.has--card .content {
  max-width: 350px;
} */
.fun-fact-area .fun-fact__item.has--card .content p{
  margin-top: 20px;
}
.fun-fact-area .fun-fact__item.has--card .content h6 {
  font-size: 20px;
  font-weight: 400;
  line-height: 22px;
  letter-spacing: -1px;
  color: rgba(17, 17, 17, 0.5);
}
.dark .fun-fact-area .fun-fact__item.has--card .content h6 {
  color: rgba(255, 255, 255, 0.5);
}
.fun-fact-area .fun-fact__item.has--card .content h6 span {
  color: var(--primary);
}
.fun-fact-area .fun-fact__item.has--card .content a {
  gap: 10px;
  display: flex;
  font-size: 14px;
  font-weight: 400;
  margin-top: 170px;
  line-height: 30px;
  position: relative;
  align-items: center;
  color: var(--primary);
  letter-spacing: -0.7px;
  text-transform: uppercase;
  justify-content: space-between;
  font-family: var(--font_bdogrotesk);
}
@media only screen and (max-width: 991px) {
  .fun-fact-area .fun-fact__item.has--card .content a {
    margin-top: 100px;
  }
}
.fun-fact-area .fun-fact__item.has--card .content a span {
  margin-right: 30px;
}
.fun-fact-area .fun-fact__item.has--card .content a::before {
  bottom: 0;
  left: 50%;
  content: "";
  width: 100%;
  height: 1px;
  position: absolute;
  transition: all 0.3s ease;
  transform: translateX(-50%);
  background-color: currentColor;
}
@media only screen and (max-width: 767px) {
  .fun-fact-area .fun-fact__item.has--card .content a::before {
    height: 3px;
  }
}
.fun-fact-area .fun-fact__item.has--card .content a i {
  font-weight: 600;
}
.fun-fact-area .fun-fact__item.has--card .content a:hover::before {
  width: 0;
}
.fun-fact-area .fun-fact__item .media {
  position: relative;
}
.fun-fact-area .fun-fact__item .media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}
.fun-fact-area .fun-fact__item .media .text {
  max-width: 202px;
  position: absolute;
  top: 40px;
  left: 40px;
  z-index: 1;
}
.fun-fact-area .fun-fact__item .media .text h6 {
  font-size: 20px;
  font-weight: 400;
  line-height: 22px;
  letter-spacing: -1px;
  color: rgba(255, 255, 255, 0.5);
}
.fun-fact-area .fun-fact__item .media .text h6 span {
  color: var(--white);
}

.brand-area-6 .brand-area-6-inner ul {
  gap: 30px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 575px) {
  .brand-area-6 .brand-area-6-inner ul {
    gap: 20px;
  }
}
.brand-area-6 .brand-area-6-inner ul li img {
  transition: all 0.3s;
}
.brand-area-6 .brand-area-6-inner ul li:hover img {
  transform: scale(1.1);
}

.call-to-action .call-to-action-inner {
  height: 100vh;
  display: flex;
  text-align: center;
  align-items: center;
  justify-content: center;
}
@media (max-width: 575px) {
  .call-to-action .call-to-action-inner {
    height: inherit;
    padding: 60px 0;
  }
}
.call-to-action .call-to-action-inner .cta-btn {
  padding: 0;
  font-size: 90px;
  font-weight: 400;
  line-height: 85px;
  text-align: center;
  position: relative;
  color: var(--primary);
  display: inline-block;
  border-radius: 0;
  padding-bottom: 23px;
  text-transform: uppercase;
  font-family: var(--font_bdogrotesk);
  background-color: transparent;
  border: none;
}
@media only screen and (max-width: 991px) {
  .call-to-action .call-to-action-inner .cta-btn {
    font-size: 60px;
    font-weight: 400;
    line-height: 60px;
    padding-bottom: 10px;
  }
}
@media only screen and (max-width: 767px) {
  .call-to-action .call-to-action-inner .cta-btn {
    font-size: 40px;
    font-weight: 400;
    line-height: 50px;
    padding-bottom: 5px;
  }
}
@media (max-width: 575px) {
  .call-to-action .call-to-action-inner .cta-btn {
    font-size: 30px;
    font-weight: 400;
    line-height: 50px;
    padding-bottom: 0px;
  }
}
.call-to-action .call-to-action-inner .cta-btn .btn-wrap .text-one,
.call-to-action .call-to-action-inner .cta-btn .btn-wrap .text-two {
  color: var(--primary);
}
.call-to-action .call-to-action-inner .cta-btn .btn-wrap .text-two {
  left: 50%;
  transform: translate(-50%, 0%);
}
.call-to-action .call-to-action-inner .cta-btn:hover .btn-wrap .text-two {
  left: 50%;
  transform: translate(-50%, -50%);
}
.call-to-action .call-to-action-inner .cta-btn::before {
  bottom: 0;
  left: 50%;
  content: "";
  width: 100%;
  height: 5px;
  position: absolute;
  transition: all 0.3s ease;
  transform: translateX(-50%);
  background-color: currentColor;
}
@media only screen and (max-width: 767px) {
  .call-to-action .call-to-action-inner .cta-btn::before {
    height: 3px;
  }
}
.call-to-action .call-to-action-inner .cta-btn:hover::before {
  width: 20%;
}

.cta-area-6 .cta-area-6-inner {
  text-align: center;
  padding-bottom: 63px;
}
.cta-area-6 .cta-area-6-inner-title {
  font-size: 215px;
  font-weight: 400;
  line-height: 185px;
  text-align: center;
  color: var(--primary);
  letter-spacing: -19.35px;
  text-transform: uppercase;
  font-family: var(--font_bdogrotesk);
}
@media only screen and (max-width: 1399px) {
  .cta-area-6 .cta-area-6-inner-title {
    font-size: 180px;
    letter-spacing: -15px;
  }
}
@media only screen and (max-width: 1199px) {
  .cta-area-6 .cta-area-6-inner-title {
    font-size: 130px;
    letter-spacing: -10px;
    line-height: 150px;
  }
}
@media only screen and (max-width: 991px) {
  .cta-area-6 .cta-area-6-inner-title {
    font-size: 90px;
    letter-spacing: -5px;
    line-height: 90px;
  }
}
@media only screen and (max-width: 767px) {
  .cta-area-6 .cta-area-6-inner-title {
    font-size: 60px;
    letter-spacing: 0px;
    line-height: 60px;
  }
}
@media (max-width: 575px) {
  .cta-area-6 .cta-area-6-inner-title {
    font-size: 40px;
    letter-spacing: -1px;
    line-height: 45px;
  }
}
.cta-area-6 .cta-area-6-inner-title img {
  width: 280px;
  height: 160px;
  margin-top: -40px;
  display: inline-block;
}
@media only screen and (max-width: 1399px) {
  .cta-area-6 .cta-area-6-inner-title img {
    width: 220px;
    height: 130px;
    margin-top: -30px;
  }
}
@media only screen and (max-width: 1199px) {
  .cta-area-6 .cta-area-6-inner-title img {
    width: 170px;
    height: 95px;
    margin-top: -20px;
  }
}
@media only screen and (max-width: 991px) {
  .cta-area-6 .cta-area-6-inner-title img {
    width: 110px;
    height: 66px;
    margin-top: -10px;
  }
}
@media only screen and (max-width: 767px) {
  .cta-area-6 .cta-area-6-inner-title img {
    width: 70px;
    height: 45px;
    margin-top: -7px;
  }
}
@media (max-width: 575px) {
  .cta-area-6 .cta-area-6-inner-title img {
    width: 50px;
    height: 30px;
    margin-top: -5px;
  }
}

/* modern agency page css */
.hero-7-area .hero-7-area-inner {
  padding-top: 160px;
  padding-bottom: 120px;
}
@media only screen and (max-width: 991px) {
  .hero-7-area .hero-7-area-inner {
    padding-top: 140px;
    padding-bottom: 100px;
  }
}
@media only screen and (max-width: 767px) {
  .hero-7-area .hero-7-area-inner {
    padding-top: 120px;
    padding-bottom: 60px;
  }
}
.hero-7-area .hero-7-area-content .hero-7-area-title {
  font-size: 180px;
  font-weight: 200;
  line-height: 170px;
  color: var(--primary);
  text-align: center;
  text-transform: uppercase;
  font-family: var(--font_ppeditor);
}
@media only screen and (max-width: 1919px) {
  .hero-7-area .hero-7-area-content .hero-7-area-title {
    font-size: 160px;
    line-height: 150px;
  }
}
@media only screen and (max-width: 1399px) {
  .hero-7-area .hero-7-area-content .hero-7-area-title {
    font-size: 130px;
    line-height: 120px;
  }
}
@media only screen and (max-width: 1199px) {
  .hero-7-area .hero-7-area-content .hero-7-area-title {
    font-size: 110px;
    line-height: 110px;
  }
}
@media only screen and (max-width: 991px) {
  .hero-7-area .hero-7-area-content .hero-7-area-title {
    font-size: 80px;
    line-height: 80px;
  }
}
@media only screen and (max-width: 767px) {
  .hero-7-area .hero-7-area-content .hero-7-area-title {
    font-size: 60px;
    line-height: 65px;
  }
}
@media (max-width: 575px) {
  .hero-7-area .hero-7-area-content .hero-7-area-title {
    font-size: 40px;
    line-height: 55px;
  }
  .hero-7-area .hero-7-area-content .hero-7-area-title br {
    display: none;
  }
}
.hero-7-area .hero-7-area-content .hero-7-area-title .sub-title-holder {
  position: relative;
  display: inline-block;
}
.hero-7-area .hero-7-area-content .hero-7-area-title .sub-title {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 131px;
  font-size: 14px;
  font-weight: 400;
  line-height: 16px;
  color: var(--primary);
  letter-spacing: -0.7px;
  display: inline-block;
  text-align: left;
  text-transform: uppercase;
  font-family: var(--font_bdogrotesk);
}
@media only screen and (max-width: 767px) {
  .hero-7-area .hero-7-area-content .hero-7-area-title .sub-title {
    position: inherit;
  }
}
@media (max-width: 575px) {
  .hero-7-area .hero-7-area-content .hero-7-area-title .sub-title {
    display: none;
  }
}
.hero-7-area .hero-7-area-content .hero-7-area-title .sub-title.right-position {
  right: 30px;
  left: auto;
  max-width: 123px;
}
@media only screen and (max-width: 991px) {
  .hero-7-area .hero-7-area-content .hero-7-area-title .sub-title.right-position {
    right: 10px;
  }
}
@media (max-width: 575px) {
  .hero-7-area .hero-7-area-content .hero-7-area-title .sub-title.right-position {
    right: inherit;
  }
}
.hero-7-area .hero-7-area-content .mobile-text {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero-7-area .hero-7-area-content .mobile-text span {
  text-align: center;
  width: 131px;
  display: none;
  font-size: 14px;
  font-weight: 400;
  line-height: 16px;
  margin-top: 10px;
  color: var(--primary);
  letter-spacing: -0.7px;
  text-transform: uppercase;
  font-family: var(--font_bdogrotesk);
}
@media only screen and (max-width: 1919px) {
  .hero-7-area .hero-7-area-content .mobile-text span {
    display: none;
  }
}
@media (max-width: 575px) {
  .hero-7-area .hero-7-area-content .mobile-text span {
    display: block;
  }
}

.hero-area-7 {
  height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-area-7 .image-wrapper {
  width: 500px;
  height: 650px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-area-7 .image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 650px;
  display: block;
}

.label-left,
.label-right {
  top: 50%;
  opacity: 0;
  font-size: 14px;
  font-weight: 400;
  line-height: 16px;
  position: absolute;
  white-space: nowrap;
  color: var(--primary);
  letter-spacing: -0.7px;
  text-transform: uppercase;
  transform: translateY(-50%);
  font-family: var(--font_bdogrotesk);
}

.label-left {
  left: -60px;
}

.label-right {
  right: -60px;
}

.section-4-title-wrapper {
  display: grid;
  /* grid-template-columns: 1fr 971px; */
  grid-template-columns: 375px 1fr;
  gap: 30px;
}
/* @media only screen and (max-width: 1919px) {
  .section-4-title-wrapper {
    grid-template-columns: 1fr 870px;
  }
} */
/* @media only screen and (max-width: 1399px) {
  .section-4-title-wrapper {
    grid-template-columns: 1fr 750px;
  }
} */
@media only screen and (max-width: 1199px) {
  .section-4-title-wrapper {
    grid-template-columns: 1fr;
  }
}
.section-4-title-wrapper .section-4-subtitle,
.section-4-subtitle  {
  font-size: 24px;
  font-weight: 400;
  line-height: 1.2;
  color: var(--theme);
  letter-spacing: 0px;
  font-family: var(--font_bdogrotesk);
}
.section-4-title-wrapper .section-4-subtitle span,
.section-4-subtitle span {
  color: #999;
}
.section-4-title-wrapper .section-4-title {
  line-height: 1;
  /* font-size: 60px;
  font-weight: 200;
  line-height: 60px;
  color: var(--primary);
  text-transform: uppercase;
  font-family: var(--font_ppeditor); */
}
@media only screen and (max-width: 1399px) {
  /* .section-4-title-wrapper .section-4-title {
    font-size: 60px;
    line-height: 60px;
  } */
}
@media only screen and (max-width: 1199px) {
  /* .section-4-title-wrapper .section-4-title {
    font-size: 50px;
    line-height: 50px;
  } */
  .section-4-title-wrapper .section-4-title br {
    display: none;
  }
}
@media only screen and (max-width: 991px) {
  /* .section-4-title-wrapper .section-4-title {
    font-size: 45px;
  } */
}
@media (max-width: 575px) {
  /* .section-4-title-wrapper .section-4-title {
    font-size: 25px;
    line-height: 30px;
  } */
}

.about-uss-7 .section-4-title-wrapper {
  padding-top: 40px;
  border-top: 1px solid rgba(17, 17, 17, 0.15);
}
.dark .about-uss-7 .section-4-title-wrapper {
  border-color: rgba(248, 242, 239, 0.15);
}
.about-uss-7__wrapper {
  gap: 50px 163px;
  display: grid;
  margin-top: 20px;
  padding-top: 150px;
  grid-template-columns: 1fr 970px;
}
@media only screen and (max-width: 1919px) {
  .about-uss-7__wrapper {
    gap: 50px 150px;
    grid-template-columns: 1fr 870px;
    padding-top: 100px;
  }
}
@media only screen and (max-width: 1399px) {
  .about-uss-7__wrapper {
    gap: 50px 60px;
    grid-template-columns: 1fr 750px;
    padding-top: 80px;
  }
}
@media only screen and (max-width: 1199px) {
  .about-uss-7__wrapper {
    grid-template-columns: 1fr;
    margin-top: 0;
    padding-top: 60px;
  }
}
@media only screen and (max-width: 767px) {
  .about-uss-7__wrapper {
    padding-top: 40px;
  }
}
@media only screen and (max-width: 767px) {
  .about-uss-7__wrapper {
    padding-top: 20px;
  }
}
@media only screen and (max-width: 1199px) {
  .about-uss-7__wrapper > *:nth-child(1) {
    gap: 50px;
    flex-direction: row;
  }
}
@media only screen and (max-width: 767px) {
  .about-uss-7__wrapper > *:nth-child(1) {
    gap: 50px;
    flex-direction: column;
  }
}
@media only screen and (max-width: 1199px) {
  .about-uss-7__wrapper > *:nth-child(1) .media {
    width: 300px;
    min-width: 300px;
  }
}
@media only screen and (max-width: 1199px) {
  .about-uss-7__wrapper > *:nth-child(1) .media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}
.about-uss-7__wrapper > *:nth-child(2) {
  margin-top: -35px;
}
@media only screen and (max-width: 1199px) {
  .about-uss-7__wrapper > *:nth-child(2) {
    margin-top: 0;
    flex-direction: column;
  }
}
.about-uss-7__box {
  display: flex;
  flex-direction: column;
}
.about-uss-7__box h6 {
  font-size: 14px;
  font-weight: 400;
  line-height: 16px;
  margin-bottom: 20px;
  letter-spacing: -0.7px;
  text-transform: uppercase;
}
.about-uss-7__content {
  margin-top: auto;
  max-width: 420px;
  margin-left: auto;
}
@media only screen and (max-width: 1399px) {
  .about-uss-7__content {
    margin-top: 130px;
  }
}
@media only screen and (max-width: 1199px) {
  .about-uss-7__content {
    margin-top: 0;
    margin-right: auto;
    margin-left: inherit;
    max-width: 100%;
  }
}
.about-uss-7__content .over {
  font-size: 100px;
  font-weight: 700;
  /* line-height: 28px; */
  margin-bottom: 40px;
  font-family: var(--font_ppeditor);
}
@media only screen and (max-width: 1399px) {
  .about-uss-7__content .over {
    margin-bottom: 50px;
    font-size: 80px;
  }
}
@media only screen and (max-width: 1199px) {
  .about-uss-7__content .over {
    /* font-size: 120px;
    line-height: 130px; */
    margin-bottom: 20px;
  }
}
@media (max-width: 575px) {
  .about-uss-7__content .over {
    font-size: 80px;
    line-height: 90px;
    margin-bottom: 10px;
  }
}
.about-uss-7__content .over span {
  font-size: 20px;
  font-weight: 400;
  line-height: 28px;
  margin-right: 17px;
  font-family: var(--font_dmsans);
}
.about-uss-7__content p {
  font-size: 20px;
  font-weight: 400;
  line-height: 28px;
  color: var(--primary);
}
.about-uss-7__content .text {
  margin-top: 60px;
}
@media only screen and (max-width: 1199px) {
  .about-uss-7__content .text {
    margin-top: 30px;
  }
}
.about-uss-7__content .text p {
  font-size: 14px;
  font-weight: 400;
  line-height: 16px;
  text-transform: uppercase;
}

.feature-work-7 .feature-work-7-inner {
  padding-top: 40px;
  border-top: 1px solid rgba(17, 17, 17, 0.15);
}
.dark .feature-work-7 .feature-work-7-inner {
  border-color: rgba(248, 242, 239, 0.15);
}
.feature-work-7 .feature-work-7-wrapper {
  padding-top: 110px;
}
@media only screen and (max-width: 1399px) {
  .feature-work-7 .feature-work-7-wrapper {
    padding-top: 80px;
  }
}
@media only screen and (max-width: 1199px) {
  .feature-work-7 .feature-work-7-wrapper {
    padding-top: 40px;
  }
}
@media only screen and (max-width: 991px) {
  .feature-work-7 .feature-work-7-wrapper {
    padding-top: 20px;
  }
}
@media only screen and (max-width: 767px) {
  .feature-work-7 .feature-work-7-wrapper {
    padding-top: 0px;
  }
}
.feature-work-7 .feature-work-7-wrapper > * {
  gap: 30px;
  display: grid;
  padding-top: 40px;
  grid-template-columns: 235px 554px 1fr;
}
@media only screen and (max-width: 1399px) {
  .feature-work-7 .feature-work-7-wrapper > * {
    grid-template-columns: 235px 454px 1fr;
  }
}
@media only screen and (max-width: 1199px) {
  .feature-work-7 .feature-work-7-wrapper > * {
    grid-template-columns: 120px 354px 1fr;
  }
}
@media only screen and (max-width: 991px) {
  .feature-work-7 .feature-work-7-wrapper > * {
    grid-template-columns: 80px 300px 1fr;
  }
}
@media only screen and (max-width: 767px) {
  .feature-work-7 .feature-work-7-wrapper > * {
    grid-template-columns: 50px 220px 1fr;
  }
}
@media (max-width: 575px) {
  .feature-work-7 .feature-work-7-wrapper > * {
    gap: 20px;
    padding-top: 20px;
    grid-template-columns: 1fr;
  }
}
.feature-work-7 .feature-work-7-item:not(:last-child) {
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(17, 17, 17, 0.15);
}
.dark .feature-work-7 .feature-work-7-item:not(:last-child) {
  border-color: rgba(248, 242, 239, 0.15);
}
.feature-work-7 .feature-work-7-item span {
  font-size: 14px;
  font-weight: 400;
  line-height: 16px;
  color: var(--primary);
  letter-spacing: -0.7px;
  text-transform: uppercase;
  font-family: var(--font_bdogrotesk);
}
.feature-work-7 .feature-work-7-item .content .title {
  font-size: 60px;
  font-weight: 200;
  line-height: 60px;
  margin-bottom: 6px;
  color: var(--primary);
  text-transform: uppercase;
  font-family: var(--font_ppeditor);
}
@media only screen and (max-width: 1199px) {
  .feature-work-7 .feature-work-7-item .content .title {
    font-size: 50px;
  }
}
@media only screen and (max-width: 991px) {
  .feature-work-7 .feature-work-7-item .content .title {
    font-size: 40px;
    line-height: 50px;
  }
}
@media only screen and (max-width: 767px) {
  .feature-work-7 .feature-work-7-item .content .title {
    font-size: 30px;
    line-height: 40px;
  }
}
.feature-work-7 .feature-work-7-item .content .title a:hover {
  color: var(--secondary);
}
.feature-work-7 .feature-work-7-item .content p {
  color: #111;
  font-size: 14px;
  font-weight: 400;
  line-height: 16px;
  letter-spacing: -0.7px;
  text-transform: uppercase;
  font-family: var(--font_bdogrotesk);
}
.feature-work-7 .feature-work-7-item .image {
  overflow: hidden;
  position: relative;
  transform: scale(0.9);
}
.feature-work-7 .feature-work-7-item .image img {
  transform-origin: center;
}

.impact-area .impact-inner {
  padding-top: 177px;
}
@media only screen and (max-width: 1919px) {
  .impact-area .impact-inner {
    padding-top: 150px;
  }
}
@media only screen and (max-width: 1399px) {
  .impact-area .impact-inner {
    padding-top: 120px;
  }
}
@media only screen and (max-width: 1199px) {
  .impact-area .impact-inner {
    padding-top: 100px;
  }
}
@media only screen and (max-width: 991px) {
  .impact-area .impact-inner {
    padding-top: 60px;
  }
}
.impact-area .impact-inner .impact-media {
  position: relative;
}
.impact-area .impact-inner .small-image {
  position: absolute;
  left: 50px;
  top: -177px;
}
@media only screen and (max-width: 767px) {
  .impact-area .impact-inner .small-image {
    position: inherit;
    margin-top: 30px;
  }
}
.impact-area .impact-inner .impact-content .designation {
      top: 70px;
    right: 60px;
    font-size: 24px;
    color: #fff;
    max-width: 475px;
  font-weight: 400;
  line-height: 30px;
  position: absolute;
  letter-spacing: 0px;
  text-transform: uppercase;
  font-family: var(--font_bdogrotesk);
}
.dark .impact-area .impact-inner .impact-content .designation {
  color: #FFFFFF;
}
@media only screen and (max-width: 767px) {
  .impact-area .impact-inner .impact-content .designation {
    top: 180px;
    left: 30px;
    max-width: 100%;
  }
}
@media (max-width: 575px) {
  .impact-area .impact-inner .impact-content .designation {
    top: 136px;
    left: 20px;
  }
}
.impact-area .impact-inner .impact-content .title {
    left: 50px;
    bottom: 100px;
    color: #F8F2EF;
    font-size: 100px;
    line-height: 120px;
    position: absolute;
    font-family: var(--font_ppeditor);
    letter-spacing: -2px;
    max-width: 1200px;
}
@media only screen and (max-width: 1399px) {
  .impact-area .impact-inner .impact-content .title {
    font-size: 80px;
    line-height: 100px;
  }
}
/* @media only screen and (max-width: 1199px) {
  .impact-area .impact-inner .impact-content .title {
    font-size: 100px;
    line-height: 110px;
  }
} */
@media only screen and (max-width: 991px) {
  .impact-area .impact-inner .impact-content .title {
    font-size: 70px;
    line-height: 80px;
  }
}
@media only screen and (max-width: 767px) {
  .impact-area .impact-inner .impact-content .title {
    font-size: 50px;
    line-height: 60px;
    top: 30px;
    left: 30px;
  }
}
@media (max-width: 575px) {
  .impact-area .impact-inner .impact-content .title {
    font-size: 28px;
    line-height: 40px;
    top: 30px;
    left: 20px;
  }
}

.award-area-7 .award-inner {
  /* gap: 30px;
  display: grid;
  grid-template-columns: 820px 1fr; */
  padding-top: 80px;
  border-top: 1px solid rgba(17, 17, 17, 0.15);
}
@media only screen and (max-width: 1919px) {
  /* .award-area-7 .award-inner {
    grid-template-columns: 720px 1fr;
  } */
}
@media only screen and (max-width: 1399px) {
  /* .award-area-7 .award-inner {
    grid-template-columns: 500px 1fr;
  } */
}
@media only screen and (max-width: 1199px) {
  /* .award-area-7 .award-inner {
    grid-template-columns: 250px 1fr;
  } */
}
/* @media only screen and (max-width: 991px) {
  .award-area-7 .award-inner {
    grid-template-columns: 1fr;
  }
} */
/* .award-area-7 .award-inner .award-section .title {
  font-size: 14px;
  font-weight: 400;
  line-height: 16px;
  letter-spacing: -0.7px;
  text-transform: uppercase;
} */
.award-area-7 .award-inner .award-content .award-list li {
  display: flex;
  font-size: 60px;
  font-weight: 200;
  line-height: 60px;
  color: var(--primary);
  align-items: baseline;
  text-transform: uppercase;
  font-family: var(--font_ppeditor);
}
@media only screen and (max-width: 1199px) {
  .award-area-7 .award-inner .award-content .award-list li {
    font-size: 50px;
  }
}
@media only screen and (max-width: 991px) {
  .award-area-7 .award-inner .award-content .award-list li {
    font-size: 45px;
    line-height: 55px;
  }
}
@media only screen and (max-width: 767px) {
  .award-area-7 .award-inner .award-content .award-list li {
    font-size: 35px;
    line-height: 50px;
  }
}
@media (max-width: 575px) {
  .award-area-7 .award-inner .award-content .award-list li {
    font-size: 30px;
    line-height: 30px;
    flex-wrap: wrap;
    margin-bottom: 20px;
  }
}
.award-area-7 .award-inner .award-content .award-list li span {
  font-size: 14px;
  font-weight: 400;
  line-height: 16px;
  color: var(--primary);
  letter-spacing: -0.7px;
  text-transform: uppercase;
  font-family: var(--font_bdogrotesk);
}
.award-area-7 .award-list {
  flex: 3;
  line-height: 1.8;
}
.award-area-7 .award-list span {
  font-size: 10px;
  margin-left: 8px;
  vertical-align: super;
  color: #555;
}

.fun-fact-area.fun-fact-7 .fun-fact-area-inner {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}
.fun-fact-area.fun-fact-7 .fun-fact__item {
  position: relative;
}
.fun-fact-area.fun-fact-7 .fun-fact__item .number {
  font-size: 60px;
  font-weight: 200;
  line-height: 60px;
  text-transform: uppercase;
  font-family: var(--font_ppeditor);
  position: absolute;
  left: 40px;
  bottom: 30px;
}
.fun-fact-area.fun-fact-7 .fun-fact__item.has--card {
  background-color: #F2E9E5;
}
.dark .fun-fact-area.fun-fact-7 .fun-fact__item.has--card {
  background-color: #1A1A1A;
}

.cta-area-7 .cta-inner {
  padding-bottom: 70px;
}
@media (max-width: 575px) {
  .cta-area-7 .cta-inner {
    padding-bottom: 50px;
  }
}
.cta-area-7 .cta-inner .cta-designation {
  font-size: 14px;
  font-weight: 400;
  line-height: 16px;
  text-align: center;
  color: var(--primary);
  letter-spacing: -0.7px;
  text-transform: uppercase;
  font-family: var(--font_bdogrotesk);
}
.cta-area-7 .cta-inner .cta-title {
  font-size: 180px;
  font-weight: 200;
  margin-top: 155px;
  text-align: center;
  line-height: 170px;
  color: var(--primary);
  text-transform: uppercase;
  font-family: var(--font_ppeditor);
}
@media only screen and (max-width: 1399px) {
  .cta-area-7 .cta-inner .cta-title {
    font-size: 160px;
    margin-top: 120px;
    line-height: 160px;
  }
}
@media only screen and (max-width: 1199px) {
  .cta-area-7 .cta-inner .cta-title {
    font-size: 130px;
    margin-top: 100px;
    line-height: 140px;
  }
}
@media only screen and (max-width: 991px) {
  .cta-area-7 .cta-inner .cta-title {
    font-size: 100px;
    margin-top: 70px;
    line-height: 115px;
  }
}
@media only screen and (max-width: 767px) {
  .cta-area-7 .cta-inner .cta-title {
    font-size: 70px;
    margin-top: 50px;
    line-height: 80px;
  }
}
@media (max-width: 575px) {
  .cta-area-7 .cta-inner .cta-title {
    font-size: 50px;
    margin-top: 20px;
    line-height: 55px;
  }
}

.funding-success .funding-success-inner .sub-title {
  font-size: 14px;
  font-weight: 400;
  line-height: 16px;
  text-align: center;
  letter-spacing: -0.7px;
  text-transform: uppercase;
  font-family: var(--font_bdogrotesk);
}
.funding-success .funding-success-inner .counter {
  line-height: 1;
  font-size: 350px;
  font-weight: 900;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  color: var(--primary);
  text-transform: uppercase;
  font-family: var(--font_ppeditor);
  flex-direction: column;
}
@media only screen and (max-width: 1919px) {
  .funding-success .funding-success-inner .counter {
    font-size: 450px;
  }
}
@media only screen and (max-width: 1399px) {
  .funding-success .funding-success-inner .counter {
    font-size: 350px;
  }
}
@media only screen and (max-width: 1199px) {
  .funding-success .funding-success-inner .counter {
    font-size: 250px;
  }
}
@media only screen and (max-width: 991px) {
  .funding-success .funding-success-inner .counter {
    font-size: 150px;
  }
}
@media only screen and (max-width: 767px) {
  .funding-success .funding-success-inner .counter {
    font-size: 100px;
    margin-top: 50px;
    display: none;
  }
}
@media (max-width: 575px) {
  .funding-success .funding-success-inner .counter {
    font-size: 80px;
  }
}
.funding-success .funding-success-inner .number {
  line-height: 1;
  font-size: 580px;
  font-weight: 200;
  text-align: center;
  margin-bottom: 30px;
  margin-top: 150px;
  color: var(--primary);
  text-transform: uppercase;
  font-family: var(--font_ppeditor);
  display: none;
}
@media only screen and (max-width: 767px) {
  .funding-success .funding-success-inner .number {
    font-size: 100px;
    margin-top: 50px;
    display: block;
  }
}
@media (max-width: 575px) {
  .funding-success .funding-success-inner .number {
    font-size: 80px;
  }
}
.funding-success .funding-success-inner .title {
  /* font-size: 60px; */
  /* font-weight: 200; */
  /* line-height: 60px; */
  text-align: center;
  /* text-transform: uppercase; */
  /* font-family: var(--font_ppeditor); */
}
@media only screen and (max-width: 1199px) {
  .funding-success .funding-success-inner .title {
    font-size: 50px;
  }
}
@media only screen and (max-width: 991px) {
  .funding-success .funding-success-inner .title {
    font-size: 40px;
    line-height: 50px;
  }
}
@media only screen and (max-width: 767px) {
  .funding-success .funding-success-inner .title {
    font-size: 30px;
    line-height: 40px;
  }
}
@media (max-width: 575px) {
  .funding-success .funding-success-inner .title {
    font-size: 25px;
    line-height: 35px;
  }
}

/* agency portfolio page css */
.section-title-9 {
  font-family: var(--font_bdogrotesk);
  font-size: 230px;
  font-weight: 400;
  line-height: 190px;
  letter-spacing: -16.1px;
}
@media only screen and (max-width: 1919px) {
  .section-title-9 {
    font-size: 190px;
    letter-spacing: -10px;
  }
}
@media only screen and (max-width: 1399px) {
  .section-title-9 {
    font-size: 160px;
    line-height: 160px;
    letter-spacing: -7px;
  }
}
@media only screen and (max-width: 1199px) {
  .section-title-9 {
    font-size: 130px;
    line-height: 130px;
    letter-spacing: -5px;
  }
}
@media only screen and (max-width: 991px) {
  .section-title-9 {
    font-size: 90px;
    line-height: 90px;
    letter-spacing: -2px;
  }
}
@media only screen and (max-width: 767px) {
  .section-title-9 {
    font-size: 65px;
    line-height: 80px;
    letter-spacing: 0;
  }
}
@media (max-width: 575px) {
  .section-title-9 {
    font-size: 36px;
    line-height: 46px;
  }
}

/* hero area 6 style  */
.hero-9-section-content {
  margin-top: 20px;
}
@media only screen and (max-width: 1199px) {
  .hero-9-section-content {
    margin-top: 107px;
  }
}
.hero-9-section-content .meta-list {
  max-width: 895px;
  margin-left: auto;
}
@media only screen and (max-width: 1199px) {
  .hero-9-section-content .meta-list {
    margin-left: 0;
    max-width: 100%;
  }
}
.hero-9-section-content .meta-list ul {
  display: grid;
  gap: 15px 40px;
  grid-template-columns: 169px 142px;
  justify-content: space-between;
}
@media (max-width: 575px) {
  .hero-9-section-content .meta-list ul {
    grid-template-columns: 1fr;
  }
}
.hero-9-section-content .meta-list li {
  font-size: 18px;
  font-weight: 400;
  line-height: 22px;
  letter-spacing: -1.26px;
  color: var(--primary);
  text-transform: capitalize;
  list-style: none;
}
.hero-9-section-content .meta-list li br {
  display: block;
}
.hero-9-section-content .section-title-wrapper {
  margin-top: 55px;
  margin-bottom: 70px;
}
@media only screen and (max-width: 1199px) {
  .hero-9-section-content .section-title-wrapper {
    margin-top: 40px;
    margin-bottom: 40px;
  }
}
@media only screen and (max-width: 991px) {
  .hero-9-section-content .section-title-wrapper {
    margin-top: 30px;
    margin-bottom: 30px;
  }
}

.hero-9-nav {
  position: relative;
  z-index: 1;
  margin-top: 50px;
}
@media only screen and (max-width: 767px) {
  .hero-9-nav {
    margin-top: 30px;
  }
}
.hero-9-nav .main-menu {
  margin-left: auto;
}
.hero-9-nav .main-menu li a {
  font-size: 16px;
  font-weight: 500;
  padding: 0 0;
  justify-content: space-between;
}
.hero-9-nav .main-menu li a:hover {
  color: var(--primary);
}
.hero-9-nav .main-menu > ul {
  gap: 40px;
}
.hero-9-nav .main-menu > ul > li {
  flex-grow: 1;
}
.hero-9-nav .main-menu > ul > li:hover > a {
  color: var(--secondary);
  border-color: var(--primary);
}
.hero-9-nav .main-menu ul.dp-menu {
  min-width: 100%;
}

.hero-9-nav-inner {
  border-top: 1px solid rgba(17, 17, 17, 0.2);
  border-bottom: 1px solid rgba(17, 17, 17, 0.2);
}
.dark .hero-9-nav-inner {
  border-color: rgba(255, 255, 255, 0.2);
}
.hero-9-nav-inner .hero-9-nav-wrapper {
  display: flex;
  padding: 21px 0;
  justify-content: space-between;
}
@media only screen and (max-width: 1199px) {
  .hero-9-nav-inner .hero-9-nav-wrapper {
    padding: 15px 0;
  }
}
.hero-9-nav-inner .date span {
  font-size: 16px;
  font-weight: 500;
  line-height: 20px;
  color: var(--primary);
  letter-spacing: -0.64px;
}
.hero-9-nav-inner .btn-line {
  font-size: 16px;
  font-weight: 500;
  line-height: 20px;
  position: relative;
  color: var(--primary);
  letter-spacing: -0.64px;
  margin-left: 265px;
}
@media only screen and (max-width: 1199px) {
  .hero-9-nav-inner .btn-line {
    margin-left: 0;
  }
}
.hero-9-nav-inner .btn-line::before {
  content: "";
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  position: absolute;
  background-color: currentColor;
  transition: all 0.3s;
}
.hero-9-nav-inner .btn-line:hover {
  color: var(--secondary);
}
.hero-9-nav-inner .btn-line:hover::before {
  width: 0;
}

/* service-9 style  */
.service-9 .service-9-inner {
  border-top: 1px solid rgba(17, 17, 17, 0.2);
}
.dark .service-9 .service-9-inner {
  border-color: rgba(255, 255, 255, 0.2);
}
.service-9__content {
  gap: 50px;
  display: grid;
  grid-template-columns: 750px 1fr;
}
@media only screen and (max-width: 1399px) {
  .service-9__content {
    grid-template-columns: 550px 1fr;
  }
}
@media only screen and (max-width: 1199px) {
  .service-9__content {
    grid-template-columns: 450px 1fr;
  }
}
@media only screen and (max-width: 991px) {
  .service-9__content {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}
.service-9__info {
  display: flex;
  padding-top: 94px;
  padding-right: 50px;
  flex-direction: column;
  border-right: 1px solid rgba(17, 17, 17, 0.2);
}
.dark .service-9__info {
  border-color: rgba(255, 255, 255, 0.2);
}
@media only screen and (max-width: 991px) {
  .service-9__info {
    border-right: none;
    padding-right: 0;
  }
}
@media only screen and (max-width: 1199px) {
  .service-9__info {
    padding-top: 60px;
  }
}
.service-9__info .designation {
  max-width: 301px;
  font-size: 20px;
  font-weight: 400;
  color: var(--primary);
  font-family: var(--font_bdogrotesk);
}
@media only screen and (max-width: 1399px) {
  .service-9__info .designation {
    max-width: 100%;
  }
}
.service-9__info .media {
  margin-top: auto;
}
@media only screen and (max-width: 1399px) {
  .service-9__info .media {
    margin-top: 40px;
  }
}
.service-9__wrapper {
  position: relative;
}
.service-9__wrap {
  padding-top: 94px;
}
@media only screen and (max-width: 1199px) {
  .service-9__wrap {
    padding-top: 60px;
  }
}
@media only screen and (max-width: 991px) {
  .service-9__wrap {
    padding-top: 0;
  }
}
.service-9__wrap .title {
  font-size: 50px;
  font-weight: 400;
  max-width: 659px;
  line-height: 50px;
  margin-bottom: 80px;
  color: var(--primary);
  letter-spacing: -2.5px;
}
@media only screen and (max-width: 1199px) {
  .service-9__wrap .title {
    font-size: 40px;
  }
}
@media only screen and (max-width: 767px) {
  .service-9__wrap .title {
    margin-bottom: 40px;
  }
}
@media (max-width: 575px) {
  .service-9__wrap .title {
    font-size: 20px;
    letter-spacing: 0;
    line-height: 30px;
  }
}
.service-9__wrap .btn-wrapper {
  text-align: right;
  margin-top: 230px;
}
@media only screen and (max-width: 1919px) {
  .service-9__wrap .btn-wrapper {
    margin-top: 150px;
  }
}
@media only screen and (max-width: 1399px) {
  .service-9__wrap .btn-wrapper {
    margin-top: 80px;
    text-align: left;
  }
}
@media only screen and (max-width: 991px) {
  .service-9__wrap .btn-wrapper {
    margin-top: 40px;
  }
}
.service-9__wrap .btn-explore {
  font-size: 16px;
  font-weight: 500;
  line-height: 20px;
  color: var(--primary);
  letter-spacing: -0.64px;
  position: relative;
}
.service-9__wrap .btn-explore::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  transition: all 0.3s;
  background-color: var(--primary);
}
.service-9__wrap .btn-explore:hover {
  color: var(--secondary);
}
.service-9__wrap .btn-explore:hover::before {
  width: 0;
}
.service-9 .service-9-list {
  margin: 0;
  padding: 0;
  list-style: none;
  position: relative;
  border-top: 1px solid #CFCFCF;
}
.dark .service-9 .service-9-list {
  border-color: #545454;
}
.service-9__item {
  z-index: 1;
  width: 100%;
  display: flex;
  padding-left: 0;
  font-size: 20px;
  font-weight: 400;
  line-height: 38px;
  color: var(--primary);
  align-items: center;
  position: relative;
  justify-content: space-between;
  border-bottom: 1px solid #CFCFCF;
  transition: 0.3s transform ease-in-out, background-color 0.3s ease;
}
.dark .service-9__item {
  border-color: #545454;
}
@media (max-width: 575px) {
  .service-9__item {
    font-size: 16px;
    padding: 12px 2px;
  }
}
.service-9__item a {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 0px;
}
.service-9__item a i {
  rotate: -45deg;
  font-size: 15px;
  color: var(--primary);
}
.service-9 .active-bg {
  left: 0;
  right: 0;
  z-index: 0;
  height: 0;
  opacity: 0;
  position: absolute;
  pointer-events: none;
  background: #F1F1F1;
  transform: translateY(0);
  transform-origin: top center;
  transition: transform 0.4s ease, height 0.4s ease, opacity 0.4s ease;
}
.dark .service-9 .active-bg {
  background-color: #1F1F1F;
}

/* work-area-9 gallery style  */
.work-area-9 .work-area-9-inner .main-title {
  font-size: 16px;
  font-weight: 500;
  line-height: 20px;
  letter-spacing: -0.64px;
  transform: translateY(100%);
  font-family: var(--font_dmsans);
}
@media only screen and (max-width: 767px) {
  .work-area-9 .work-area-9-inner .main-title {
    transform: translateY(0);
    margin-bottom: 20px;
  }
}
.work-area-9 .works-9-wrapper {
  display: grid;
  gap: 150px 0;
  grid-template-columns: auto auto;
  justify-content: space-between;
}
@media only screen and (max-width: 1399px) {
  .work-area-9 .works-9-wrapper {
    gap: 100px 0;
  }
}
@media only screen and (max-width: 1199px) {
  .work-area-9 .works-9-wrapper {
    gap: 100px;
  }
}
@media only screen and (max-width: 767px) {
  .work-area-9 .works-9-wrapper {
    grid-template-columns: auto;
    gap: 50px;
  }
}
.work-area-9 .works-9-wrapper > *:nth-child(1) {
  margin-top: 924px;
  max-width: 485px;
}
@media only screen and (max-width: 1199px) {
  .work-area-9 .works-9-wrapper > *:nth-child(1) {
    margin-top: 500px;
  }
}
@media only screen and (max-width: 991px) {
  .work-area-9 .works-9-wrapper > *:nth-child(1) {
    margin-top: 250px;
  }
}
@media only screen and (max-width: 767px) {
  .work-area-9 .works-9-wrapper > *:nth-child(1) {
    margin-top: 0px;
    max-width: 100%;
  }
}
.work-area-9 .works-9-wrapper > *:nth-child(2) {
  margin-left: -40px;
}
@media only screen and (max-width: 1399px) {
  .work-area-9 .works-9-wrapper > *:nth-child(2) {
    margin-left: 0;
  }
}
.work-area-9 .works-9-wrapper > *:nth-child(3) {
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
}
@media only screen and (max-width: 1199px) {
  .work-area-9 .works-9-wrapper > *:nth-child(3) {
    max-width: 700px;
  }
}
@media only screen and (max-width: 991px) {
  .work-area-9 .works-9-wrapper > *:nth-child(3) {
    max-width: 550px;
  }
}
.work-area-9 .works-9-wrapper > *:nth-child(4) {
  margin-top: 265px;
  margin-right: -40px;
}
@media only screen and (max-width: 1399px) {
  .work-area-9 .works-9-wrapper > *:nth-child(4) {
    margin-right: 0;
  }
}
@media only screen and (max-width: 767px) {
  .work-area-9 .works-9-wrapper > *:nth-child(4) {
    margin-top: 0px;
  }
}
.work-area-9 .works-9-wrapper > *:nth-child(5) {
  margin-left: auto;
}
@media only screen and (max-width: 767px) {
  .work-area-9 .works-9-wrapper > *:nth-child(5) {
    margin-left: inherit;
  }
}
.work-area-9 .works-9-wrapper > *:nth-child(6) {
  margin-left: auto;
  margin-right: auto;
}
@media only screen and (max-width: 1199px) {
  .work-area-9 .works-9-wrapper > *:nth-child(6) {
    max-width: 700px;
  }
}
@media only screen and (max-width: 991px) {
  .work-area-9 .works-9-wrapper > *:nth-child(6) {
    max-width: 550px;
  }
}
.work-area-9 .works-9-wrapper > *:nth-child(8) {
  margin-top: 321px;
  margin-left: -40px;
}
@media only screen and (max-width: 1399px) {
  .work-area-9 .works-9-wrapper > *:nth-child(8) {
    margin-left: 0;
  }
}
@media only screen and (max-width: 767px) {
  .work-area-9 .works-9-wrapper > *:nth-child(8) {
    margin-top: 0px;
  }
}
.work-area-9 .works-9-wrapper > *:nth-child(9) {
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
}
@media only screen and (max-width: 1199px) {
  .work-area-9 .works-9-wrapper > *:nth-child(9) {
    max-width: 700px;
  }
}
@media only screen and (max-width: 991px) {
  .work-area-9 .works-9-wrapper > *:nth-child(9) {
    max-width: 550px;
  }
}
.work-area-9 .works-9-wrapper > *:nth-child(10) {
  margin-top: 265px;
  margin-right: -40px;
}
@media only screen and (max-width: 1399px) {
  .work-area-9 .works-9-wrapper > *:nth-child(10) {
    margin-right: 0;
  }
}
@media only screen and (max-width: 767px) {
  .work-area-9 .works-9-wrapper > *:nth-child(10) {
    margin-top: 0px;
  }
}
.work-area-9 .works-9-wrapper > *:nth-child(11) {
  margin-left: auto;
}
@media only screen and (max-width: 767px) {
  .work-area-9 .works-9-wrapper > *:nth-child(11) {
    margin-left: inherit;
  }
}
.work-area-9 .span-2 {
  grid-column: span 2;
}
@media only screen and (max-width: 767px) {
  .work-area-9 .span-2 {
    grid-column: auto;
  }
}
@media only screen and (max-width: 767px) {
  .work-area-9 .work-box__item {
    width: 100%;
  }
}
.work-area-9 .work-box__item .thumb {
  overflow: hidden;
}
.work-area-9 .work-box__item .thumb .image {
  overflow: hidden;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .work-area-9 .work-box__item .thumb .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}
.work-area-9 .work-box__item .content {
  margin-top: 24px;
}
@media only screen and (max-width: 1199px) {
  .work-area-9 .work-box__item .content {
    margin-top: 14px;
  }
}
.work-area-9 .work-box__item .content .designation {
  font-size: 20px;
  font-weight: 400;
  max-width: 540px;
  line-height: 28px;
  color: var(--black);
  margin-bottom: 70px;
}
@media only screen and (max-width: 1199px) {
  .work-area-9 .work-box__item .content .designation {
    margin-bottom: 50px;
  }
}
@media only screen and (max-width: 767px) {
  .work-area-9 .work-box__item .content .designation {
    margin-bottom: 30px;
  }
}
.work-area-9 .work-box__item .title {
  font-size: 20px;
  font-weight: 400;
  line-height: 26px;
  letter-spacing: -0.05em;
}
@media only screen and (max-width: 1199px) {
  .work-area-9 .work-box__item .title {
    font-size: 18px;
  }
}
.work-area-9 .work-box__item .title a:hover {
  color: var(--secondary);
}
.work-area-9 .work-box__item .tag {
  font-size: 20px;
  font-weight: 400;
  line-height: 26px;
  letter-spacing: -0.05em;
  display: block;
  font-family: var(--font_bdogrotesk);
  color: var(--primary);
}
@media only screen and (max-width: 1199px) {
  .work-area-9 .work-box__item .tag {
    font-size: 18px;
  }
}
.work-area-9 .work-box__item .date {
  font-size: 20px;
  font-weight: 400;
  line-height: 26px;
  letter-spacing: -0.05em;
  display: block;
  font-family: var(--font_bdogrotesk);
  color: var(--primary);
}
@media only screen and (max-width: 1199px) {
  .work-area-9 .work-box__item .date {
    font-size: 18px;
  }
}

/* agency portfolio 2 page css */
.hero-area-10 .hero-area-10__inner {
  padding-top: 142px;
  padding-bottom: 100px;
  position: relative;
}
.dark .hero-area-10 .hero-area-10__inner {
  background: var(--black);
}
@media only screen and (max-width: 1199px) {
  .hero-area-10 .hero-area-10__inner {
    padding-top: 110px;
    padding-bottom: 80px;
  }
}
@media only screen and (max-width: 767px) {
  .hero-area-10 .hero-area-10__inner {
    padding-top: 90px;
    padding-bottom: 60px;
  }
}
@media (max-width: 575px) {
  .hero-area-10 .hero-area-10__inner {
    padding-top: 80px;
    padding-bottom: 60px;
  }
}
.hero-area-10 .hero-area-10__inner:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 130%;
  background: linear-gradient(180deg, #FFD80C 6.48%, #FFF 84.06%);
  top: 0;
  left: 0;
  z-index: -1;
}
.hero-area-10__content {
  padding-top: 25px;
  border-top: 1px solid var(--border);
}
.hero-area-10__wrapper {
  display: grid;
  margin-bottom: 190px;
  grid-template-columns: 815px auto;
}
@media only screen and (max-width: 1399px) {
  .hero-area-10__wrapper {
    margin-bottom: 150px;
    grid-template-columns: 515px auto;
  }
}
@media only screen and (max-width: 1199px) {
  .hero-area-10__wrapper {
    margin-bottom: 100px;
  }
}
@media only screen and (max-width: 991px) {
  .hero-area-10__wrapper {
    grid-template-columns: 250px auto;
  }
}
@media only screen and (max-width: 767px) {
  .hero-area-10__wrapper {
    margin-bottom: 50px;
    grid-template-columns: 150px auto;
  }
}
@media (max-width: 575px) {
  .hero-area-10__wrapper {
    grid-template-columns: auto;
    gap: 20px;
  }
}
.hero-area-10__wrapper .sub-title {
  font-size: 18px;
  font-weight: 400;
  line-height: 24px;
  color: var(--primary);
  font-family: var(--font_dmsans);
  position: relative;
  padding-left: 10px;
}
.hero-area-10__wrapper .sub-title::before {
  content: "";
  position: absolute;
  width: 5px;
  height: 5px;
  border-radius: 500px;
  background-color: var(--primary);
  left: 0;
  top: 50%;
  transform: translate(0px, -50%);
}
.hero-area-10__wrapper .text {
  max-width: 369px;
}
.hero-area-10__wrapper .text p {
  font-size: 18px;
  font-weight: 400;
  line-height: 26px;
  text-indent: 82px;
  color: var(--primary);
  margin-bottom: 50px;
}
@media only screen and (max-width: 767px) {
  .hero-area-10__wrapper .text p {
    margin-bottom: 30px;
  }
}
@media (max-width: 575px) {
  .hero-area-10__wrapper .text p {
    text-indent: 0;
  }
}
.hero-area-10__wrapper .text .btn-line {
  font-size: 16px;
  font-weight: 500;
  line-height: 20px;
  color: var(--primary);
  letter-spacing: -0.64px;
  display: inline-flex;
  gap: 20px;
  position: relative;
}
.hero-area-10__wrapper .text .btn-line::before {
  left: 0;
  content: "";
  width: 100%;
  bottom: -6px;
  height: 1px;
  position: absolute;
  transition: all 0.3s;
  background-color: var(--primary);
}
.hero-area-10__wrapper .text .btn-line:hover {
  opacity: 70%;
}
.hero-area-10__wrapper .text .btn-line:hover::before {
  width: 0;
}
.hero-area-10 .hero-area-10-title-wrap {
  position: relative;
}
.hero-area-10 .hero-area-10-title-wrap::before {
  top: -20px;
  right: 0;
  content: "+";
  font-size: 20px;
  font-weight: 3000;
  position: absolute;
  color: var(--primary);
  font-family: var(--font_awesome);
}
.hero-area-10 .hero-area-10-title-wrap::after {
  top: -20px;
  left: 0;
  content: "+";
  font-size: 20px;
  font-weight: 3000;
  position: absolute;
  color: var(--primary);
  font-family: var(--font_awesome);
}
.hero-area-10 .hero-area-10-title-wrap .pulse::before {
  bottom: 0px;
  right: 0;
  content: "+";
  font-size: 20px;
  font-weight: 3000;
  position: absolute;
  color: var(--primary);
  font-family: var(--font_awesome);
}
@media (max-width: 575px) {
  .hero-area-10 .hero-area-10-title-wrap .pulse::before {
    bottom: -15px;
  }
}
.hero-area-10 .hero-area-10-title-wrap .pulse::after {
  bottom: 0px;
  left: 0;
  content: "+";
  font-size: 20px;
  font-weight: 3000;
  position: absolute;
  color: var(--primary);
  font-family: var(--font_awesome);
}
@media only screen and (max-width: 767px) {
  .hero-area-10 .hero-area-10-title-wrap .pulse::after {
    bottom: -10px;
  }
}
@media (max-width: 575px) {
  .hero-area-10 .hero-area-10-title-wrap .pulse::after {
    bottom: -15px;
  }
}
.hero-area-10 .hero-area-10-title-wrap .title {
  font-size: 405px;
  font-weight: 300;
  line-height: 1;
  color: var(--primary);
  letter-spacing: -12.15px;
  text-transform: uppercase;
  font-family: var(--font_tartuffotrial);
}
@media only screen and (max-width: 1919px) {
  .hero-area-10 .hero-area-10-title-wrap .title {
    font-size: 310px;
  }
}
@media only screen and (max-width: 1399px) {
  .hero-area-10 .hero-area-10-title-wrap .title {
    font-size: 260px;
  }
}
@media only screen and (max-width: 1199px) {
  .hero-area-10 .hero-area-10-title-wrap .title {
    font-size: 220px;
  }
}
@media only screen and (max-width: 991px) {
  .hero-area-10 .hero-area-10-title-wrap .title {
    letter-spacing: -5px;
    font-size: 160px;
  }
}
@media only screen and (max-width: 767px) {
  .hero-area-10 .hero-area-10-title-wrap .title {
    letter-spacing: 0px;
    font-size: 110px;
  }
}
@media (max-width: 575px) {
  .hero-area-10 .hero-area-10-title-wrap .title {
    font-size: 60px;
  }
}
.hero-area-10 .hero-area-10-title-wrap .title span {
  font-style: italic;
  display: inline-block;
  transform: translateX(-44px);
}
@media only screen and (max-width: 1919px) {
  .hero-area-10 .hero-area-10-title-wrap .title span {
    transform: translateX(-15px);
  }
}
@media only screen and (max-width: 1399px) {
  .hero-area-10 .hero-area-10-title-wrap .title span {
    transform: translateX(0px);
  }
}

.Projects-area-10-inner {
  gap: 30px;
  display: grid;
  padding-top: 30px;
  grid-template-columns: 785px auto;
  border-top: 1px solid var(--border);
}
@media only screen and (max-width: 1919px) {
  .Projects-area-10-inner {
    grid-template-columns: 685px auto;
  }
}
@media only screen and (max-width: 1399px) {
  .Projects-area-10-inner {
    grid-template-columns: 585px auto;
  }
}
@media only screen and (max-width: 1199px) {
  .Projects-area-10-inner {
    grid-template-columns: 450px auto;
  }
}
@media only screen and (max-width: 991px) {
  .Projects-area-10-inner {
    grid-template-columns: 300px auto;
  }
}
@media only screen and (max-width: 767px) {
  .Projects-area-10-inner {
    grid-template-columns: auto;
  }
}
.Projects-area-10-inner .Projects__content .name {
  font-size: 18px;
  font-weight: 400;
  line-height: 24px;
  position: relative;
  color: var(--primary);
  padding-left: 8px;
  margin-bottom: 98px;
}
@media only screen and (max-width: 1399px) {
  .Projects-area-10-inner .Projects__content .name {
    margin-bottom: 80px;
  }
}
@media only screen and (max-width: 1199px) {
  .Projects-area-10-inner .Projects__content .name {
    margin-bottom: 50px;
  }
}
@media only screen and (max-width: 991px) {
  .Projects-area-10-inner .Projects__content .name {
    margin-bottom: 30px;
  }
}
.Projects-area-10-inner .Projects__content .name::before {
  top: 50%;
  left: 0;
  width: 5px;
  content: "";
  height: 5px;
  position: absolute;
  border-radius: 500px;
  background-color: var(--primary);
  transform: translate(0px, -50%);
}
.Projects-area-10-inner .Projects__content ul li {
  color: #999999;
  font-size: 30px;
  font-weight: 300;
  line-height: 36px;
  font-family: var(--font_tartuffotrial);
  list-style: none;
}
.dark .Projects-area-10-inner .Projects__content ul li {
  color: #555555;
}
@media (max-width: 575px) {
  .Projects-area-10-inner .Projects__content ul li {
    font-size: 25px;
  }
}
.Projects-area-10-inner .Projects__content ul li.active {
  color: var(--primary);
}
.Projects-area-10-inner .Projects-wrapper .title {
  font-size: 18px;
  font-weight: 400;
  line-height: 24px;
  padding-left: 8px;
  position: relative;
  margin-bottom: 98px;
  color: var(--primary);
}
@media only screen and (max-width: 1399px) {
  .Projects-area-10-inner .Projects-wrapper .title {
    margin-bottom: 80px;
  }
}
@media only screen and (max-width: 1199px) {
  .Projects-area-10-inner .Projects-wrapper .title {
    margin-bottom: 50px;
  }
}
@media only screen and (max-width: 991px) {
  .Projects-area-10-inner .Projects-wrapper .title {
    margin-bottom: 30px;
  }
}
.Projects-area-10-inner .Projects-wrapper .title::before {
  top: 50%;
  left: 0;
  width: 5px;
  content: "";
  height: 5px;
  position: absolute;
  border-radius: 500px;
  background-color: var(--primary);
  transform: translate(0px, -50%);
}
.Projects-area-10-inner .Projects-wrapper .Projects__item:not(:last-child) {
  margin-bottom: 100px;
}
@media only screen and (max-width: 991px) {
  .Projects-area-10-inner .Projects-wrapper .Projects__item:not(:last-child) {
    margin-bottom: 50px;
  }
}

.service-10-area .service-10__inner {
  background-color: #F1F1F1;
  padding-top: 30px;
}
.dark .service-10-area .service-10__inner {
  background-color: #171717;
}
.service-10-area .service-10__inner .sub-title {
  font-size: 18px;
  font-weight: 400;
  line-height: 24px;
  padding-left: 8px;
  position: relative;
  color: var(--primary);
}
.service-10-area .service-10__inner .sub-title::before {
  top: 50%;
  left: 0;
  width: 5px;
  content: "";
  height: 5px;
  position: absolute;
  border-radius: 500px;
  background-color: var(--primary);
  transform: translate(0px, -50%);
}
.service-10-area .service-10-border {
  padding-top: 30px;
  margin: 0px 30px;
  display: grid;
  grid-template-columns: 785px auto;
  border-top: 1px solid var(--border);
}
@media only screen and (max-width: 1399px) {
  .service-10-area .service-10-border {
    grid-template-columns: 515px auto;
  }
}
@media only screen and (max-width: 1199px) {
  .service-10-area .service-10-border {
    grid-template-columns: 415px auto;
  }
}
@media only screen and (max-width: 991px) {
  .service-10-area .service-10-border {
    grid-template-columns: 250px auto;
  }
}
@media only screen and (max-width: 767px) {
  .service-10-area .service-10-border {
    grid-template-columns: 150px auto;
  }
}
@media (max-width: 575px) {
  .service-10-area .service-10-border {
    grid-template-columns: auto;
    gap: 20px;
  }
}
.service-10-area .service-10__wrapper {
  position: relative;
}
.service-10-area .btn-explore {
  font-size: 16px;
  font-weight: 500;
  line-height: 20px;
  color: var(--primary);
  letter-spacing: -0.64px;
  position: relative;
  margin-top: 120px;
  display: inline-block;
}
@media only screen and (max-width: 1399px) {
  .service-10-area .btn-explore {
    margin-top: 100px;
  }
}
@media only screen and (max-width: 1199px) {
  .service-10-area .btn-explore {
    margin-top: 80px;
  }
}
@media only screen and (max-width: 991px) {
  .service-10-area .btn-explore {
    margin-top: 60px;
  }
}
@media (max-width: 575px) {
  .service-10-area .btn-explore {
    margin-top: 40px;
  }
}
.service-10-area .btn-explore::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  transition: all 0.3s;
  background-color: var(--primary);
}
.service-10-area .btn-explore:hover {
  color: var(--secondary);
}
.service-10-area .btn-explore:hover::before {
  width: 0;
}
.service-10-area .service-10-list {
  margin: 0;
  padding: 0;
  list-style: none;
  position: relative;
}
.service-10-area .service-10__item {
  transition: 0.3s transform ease-in-out, background-color 0.3s ease;
}
.service-10-area .service-10__item:not(:first-child) {
  border-top: 1px solid #CFCFCF;
}
.dark .service-10-area .service-10__item:not(:first-child) {
  border-color: #414141;
}
.service-10-area .service-10__item .title {
  z-index: 1;
  font-size: 30px;
  font-weight: 300;
  line-height: 30px;
  padding: 19.5px 0px;
  position: relative;
  color: var(--primary);
  font-family: var(--font_tartuffotrial);
}
@media (max-width: 575px) {
  .service-10-area .service-10__item .title {
    font-size: 16px;
    padding: 12px 2px;
  }
}
.service-10-area .active-bg {
  left: 0;
  right: 0;
  z-index: 0;
  height: 0;
  opacity: 0;
  position: absolute;
  pointer-events: none;
  background-color: var(--white);
  transform: translateY(0);
  transform-origin: top center;
  transition: transform 0.4s ease, height 0.4s ease, opacity 0.4s ease;
}
.dark .service-10-area .active-bg {
  background-color: var(--black);
}

.capabilities-area-10 .section-5-title-wrapper {
  gap: 20px;
  display: grid;
  padding-top: 30px;
  margin-bottom: 100px;
  grid-template-columns: 772px auto;
  border-top: 1px solid var(--border);
}
@media only screen and (max-width: 1919px) {
  .capabilities-area-10 .section-5-title-wrapper {
    grid-template-columns: 672px auto;
  }
}
@media only screen and (max-width: 1399px) {
  .capabilities-area-10 .section-5-title-wrapper {
    grid-template-columns: 500px auto;
  }
}
@media only screen and (max-width: 1199px) {
  .capabilities-area-10 .section-5-title-wrapper {
    grid-template-columns: 400px auto;
  }
}
@media only screen and (max-width: 991px) {
  .capabilities-area-10 .section-5-title-wrapper {
    grid-template-columns: 220px auto;
    margin-bottom: 60px;
  }
}
@media only screen and (max-width: 767px) {
  .capabilities-area-10 .section-5-title-wrapper {
    grid-template-columns: auto;
    margin-bottom: 60px;
  }
}
.capabilities-area-10 .section-5-title-wrapper span {
  font-size: 18px;
  font-weight: 400;
  line-height: 24px;
  padding-left: 8px;
  position: relative;
  color: var(--primary);
}
.capabilities-area-10 .section-5-title-wrapper span::before {
  top: 50%;
  left: 0;
  width: 5px;
  content: "";
  height: 5px;
  position: absolute;
  border-radius: 500px;
  background-color: var(--primary);
  transform: translate(0px, -50%);
}
.capabilities-area-10 .section-5-title-wrapper .title {
  font-size: 30px;
  font-weight: 300;
  line-height: 30px;
  color: var(--primary);
  max-width: 600px;
  font-family: var(--font_tartuffotrial);
}
@media (max-width: 575px) {
  .capabilities-area-10 .section-5-title-wrapper .title {
    font-size: 24px;
  }
}
.capabilities-area-10 .capabilities__wrapper {
  gap: 80px;
  display: grid;
  grid-template-columns: 1005px auto;
}
@media only screen and (max-width: 1919px) {
  .capabilities-area-10 .capabilities__wrapper {
    grid-template-columns: 800px auto;
  }
}
@media only screen and (max-width: 1399px) {
  .capabilities-area-10 .capabilities__wrapper {
    grid-template-columns: 600px auto;
  }
}
@media only screen and (max-width: 1199px) {
  .capabilities-area-10 .capabilities__wrapper {
    grid-template-columns: 500px auto;
    gap: 50px;
  }
}
@media only screen and (max-width: 991px) {
  .capabilities-area-10 .capabilities__wrapper {
    grid-template-columns: 360px auto;
    gap: 50px;
  }
}
@media only screen and (max-width: 767px) {
  .capabilities-area-10 .capabilities__wrapper {
    grid-template-columns: auto;
    gap: 50px;
  }
}
.capabilities-area-10 .capabilities__content {
  display: flex;
  flex-direction: column;
}
.capabilities-area-10 .capabilities__content .number {
  line-height: 1;
  font-size: 140px;
  font-weight: 300;
  margin-top: 90px;
  letter-spacing: -4.2px;
  text-transform: uppercase;
  font-family: var(--font_tartuffotrial);
}
@media only screen and (max-width: 1399px) {
  .capabilities-area-10 .capabilities__content .number {
    font-size: 110px;
    margin-top: 30px;
    letter-spacing: -2.2px;
  }
}
@media only screen and (max-width: 1199px) {
  .capabilities-area-10 .capabilities__content .number {
    font-size: 80px;
    margin-top: 30px;
    letter-spacing: 0;
  }
}
@media only screen and (max-width: 991px) {
  .capabilities-area-10 .capabilities__content .number {
    font-size: 60px;
    margin-top: 30px;
    letter-spacing: 0;
    margin-bottom: 20px;
  }
}
.capabilities-area-10 .capabilities__content .text {
  margin-top: auto;
}
.capabilities-area-10 .capabilities__content .text .sub-title {
  font-size: 30px;
  font-weight: 300;
  line-height: 30px;
  margin-bottom: 40px;
  color: var(--primary);
  font-family: var(--font_tartuffotrial);
}
.capabilities-area-10 .capabilities__content .text p {
  font-size: 20px;
  font-weight: 400;
  line-height: 28px;
  color: var(--primary);
  max-width: 417px;
}

/*# sourceMappingURL=ad-style.css.map */
