/* variable css */

/* common css */

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


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

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

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



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

/* Side info and offcanvas styling */
.offcanvas-overlay {
  position: fixed;
  height: 100%;
  width: 100%;
  background: #000;
  z-index: 900;
  top: 0;
  right: 0;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s;
}

.offcanvas-overlay.overlay-open {
  opacity: 0.5;
  visibility: visible;
}

.side-info-close {
  font-size: 20px;
  padding: 0;
  transition: all 0.3s linear;
  background-color: transparent;
  color: var(--black);
  width: 40px;
  height: 40px;
  border: 1px solid var(--black);
  border-radius: 50%;
  line-height: 38px;
}

.dark .side-info-close {
  border-color: var(--white);
  color: var(--white);
}

.side-info-close:hover {
  transform: rotate(90deg);
}

.side-info {
  background: var(--white) none repeat scroll 0 0;
  padding: 40px 45px;
  position: fixed;
  right: 0;
  top: 0;
  width: 500px;
  height: 100%;
  transform: translateX(calc(100% + 80px));
  transition: transform 0.45s ease-in-out, opacity 0.45s ease-in-out;
  z-index: 9999;
  overflow-y: scroll;
  overscroll-behavior-y: contain;
  scrollbar-width: none;
}

.dark .side-info {
  background-color: #1F1F1F;
}

@media only screen and (max-width: 1199px) {
  .side-info {
    width: 460px;
  }
}

@media (max-width: 575px) {
  .side-info {
    width: 280px;
    padding: 30px 20px;
  }
}

.side-info ::-webkit-scrollbar {
  display: none;
  /* Hide scrollbar */
}

.side-info.info-open {
  opacity: 1;
  transform: translateX(0);
  /* Show side info */
}

/* Offset header and logo styling */
.offset-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.offset-logo {
  width: 95px;
}

@media (max-width: 575px) {
  .offset-logo {
    width: 95px;
  }
}

.offset-logo img {
  width: 100%;
}

.offset-button {
  margin-top: 40px;
}

@media (min-width: 576px) {
  .offset-button {
    display: none;
  }
}

/* Offset widget box styling */
.offset-widget-box {
  margin-top: 40px;
}

.offset-widget-box .title {
  font-size: 24px;
  line-height: 1.33;
  margin-bottom: 15px;
}

@media only screen and (max-width: 1919px) {
  .offset-widget-box .title {
    margin-bottom: 22px;
  }
}

.offset-widget-box .contact-meta>*:not(:first-child) {
  margin-top: 16px;
}

.offset-widget-box .contact-item {
  display: flex;
  align-items: center;
  gap: 14px;
}

.offset-widget-box .contact-item span {
  color: var(--primary);
  font-weight: 500;
}

.offset-widget-box .contact-item span a:hover {
  color: var(--secondary);
}

.offset-widget-box .contact-item .icon {
  width: 40px;
  min-width: 40px;
  height: 40px;
  display: inline-flex;
  border: 1px solid var(--border);
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  color: var(--primary);
}

/* Mobile menu customization */
.mobile-menu {
  margin-top: 40px;
}

.mobile-menu.mean-container .mean-nav>ul {
  padding: 0;
  margin: 0;
  width: 100%;
  list-style-type: none;
  display: block !important;
}

.mobile-menu.mean-container .mean-nav>ul>li:last-child>a {
  border-bottom: 1px solid var(--border);
}

.mobile-menu.mean-container .mean-nav {
  background: none;
  margin-top: 0;
}

.mobile-menu.mean-container .mean-nav .new {
  font-size: 10px;
  font-weight: 600;
  background: #FFA38E;
  color: #999999;
  padding: 3px 7px;
  line-height: 1;
  display: flex;
  align-items: center;
  border-radius: 2px;
}

.mobile-menu.mean-container .mean-nav ul li a {
  width: 100%;
  padding: 15px 0;
  padding-inline-start: 0px;
  font-weight: 500;
  font-size: 18px;
  line-height: 1;
  color: var(--primary);
  text-transform: capitalize;
  border-top: 1px solid var(--border);
  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;
  opacity: 1;
}

@media only screen and (max-width: 767px) {
  .mobile-menu.mean-container .mean-nav ul li a {
    font-size: 20px;
  }
}

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

.mobile-menu.mean-container .mean-nav ul li a.mean-expand {
  width: 100%;
  height: 48px;
  justify-content: end;
  font-weight: 300;
  border: none !important;
  background-color: transparent;
}

@media only screen and (max-width: 767px) {
  .mobile-menu.mean-container .mean-nav ul li a.mean-expand {
    height: 50px;
  }
}

.mobile-menu.mean-container .mean-nav ul li a.mean-expand:hover {
  background: rgba(255, 255, 255, 0.1);
  opacity: 1;
}

.mobile-menu.mean-container .mean-nav ul li li:first-child {
  border-top: 1px solid var(--border);
}

.mobile-menu.mean-container .mean-nav ul li li a {
  font-size: 16px;
  text-transform: capitalize;
  border-top: none !important;
  padding: 12px 0;
  padding-inline-start: 15px;
}

.mobile-menu.mean-container .mean-nav ul li li a.mean-expand {
  height: 58px;
}

@media only screen and (max-width: 991px) {
  .mobile-menu.mean-container .mean-nav ul li li a.mean-expand {
    height: 25px;
  }
}

@media only screen and (max-width: 767px) {
  .mobile-menu.mean-container .mean-nav ul li li a.mean-expand {
    height: 22px;
  }
}

.mobile-menu.mean-container .mean-nav ul li li li:last-child {
  border-bottom: 1px solid var(--border);
}

.mobile-menu.mean-container .mean-nav ul li li li a {
  padding-left: 40px;
}

.mobile-menu.mean-container .mean-bar {
  padding-bottom: 30px;
  background: none;
  max-height: auto;
  overflow-y: scroll;
}

.mobile-menu.mean-container .mean-bar::-webkit-scrollbar {
  width: 0;
}

.mobile-menu.mean-container a.meanmenu-reveal {
  display: none !important;
}

/* Sticky header styling */
.header-sticky {
  transition: all 0.5s;
}

.transformed {
  position: fixed !important;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 800;
  transform: translateY(-100%);
}

.transformed .header-area__inner {
  height: 80px;
}

.sticky {
  position: fixed !important;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 800;
  background-color: #FFFFFF;
  transform: translateY(0%);
}

.sticky .header-area__inner {
  height: 80px;
}

.side-info-4 {
  top: 0;
  left: 0;
  z-index: 0;
  width: 100vw;
  height: 100vh;
  position: fixed;
  text-align: left;
  padding: 0 100px;
  overflow-y: scroll;
  background: var(--white);
  clip-path: inset(0 0 100% 0);
  transition: clip-path 0.9s ease-in-out, opacity 0.9s ease-in-out;
}

.dark .side-info-4 {
  background-color: var(--black);
}

@media only screen and (max-width: 991px) {
  .side-info-4 {
    padding: 0 20px;
  }
}

.side-info-4.info-open {
  opacity: 1;
  z-index: 99999999;
  clip-path: inset(0 0 0 0);
}

.side-info-4 .offcanvas-4 .offset-header {
  padding-top: 25px;
  display: flex;
  align-items: center;
  padding-bottom: 24px;
  justify-content: space-between;
  border-bottom: 1px solid var(--border);
}

.side-info-4 .offcanvas-4 .offset-header h6 {
  color: var(--secondary);
  font-size: 16px;
  font-weight: 400;
  line-height: 18px;
  letter-spacing: -0.48px;
  margin-right: auto;
}

@media only screen and (max-width: 767px) {
  .side-info-4 .offcanvas-4 .offset-header h6 {
    display: none;
  }
}

.side-info-4 .offcanvas-4 .offset-header .date {
  color: var(--secondary);
  font-size: 16px;
  font-weight: 400;
  line-height: 18px;
  font-family: var(--font_bdogrotesk);
  letter-spacing: -0.48px;
}

@media only screen and (max-width: 767px) {
  .side-info-4 .offcanvas-4 .offset-header .date {
    display: none;
  }
}

.side-info-4 .offcanvas-4 .offset-logo {
  width: 95px;
  margin-right: 225px;
}

@media only screen and (max-width: 767px) {
  .side-info-4 .offcanvas-4 .offset-logo {
    margin-right: 0;
  }
}

.side-info-4 .offcanvas-4 .offset-logo img {
  width: 100%;
}

.side-info-4 .offcanvas-4 .contact-meta {
  display: grid;
  margin-bottom: 92px;
  grid-template-columns: 325px auto 182px;
}

.side-info-4 .offcanvas-4 .contact-meta *:not(:first-child) {
  margin-top: 0px;
}

@media only screen and (max-width: 1919px) {
  .side-info-4 .offcanvas-4 .contact-meta {
    grid-template-columns: 200px auto 182px;
  }
}

.side-info-4 .offcanvas-4 .contact-item {
  gap: 0px;
  flex-direction: column;
  align-items: flex-start;
}

.side-info-4 .offcanvas-4 .contact-item .title {
  color: #999999;
  font-size: 18px;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: -0.54px;
  margin-bottom: 30px;
}

.dark .side-info-4 .offcanvas-4 .contact-item .title {
  color: #555555;
}

.side-info-4 .offcanvas-4 .contact-item .socail-media li {
  list-style: none;
}

.side-info-4 .offcanvas-4 .contact-item .socail-media li a {
  list-style: none;
  font-size: 18px;
  font-weight: 400;
  line-height: 50px;
  color: var(--primary);
  letter-spacing: -0.54px;
  font-family: var(--font_bdogrotesk);
}

.side-info-4 .offcanvas-4 .contact-item .socail-media li a:hover {
  color: var(--secondary);
}

.side-info-4 .offcanvas-4 .contact-item .nav-list li {
  list-style: none;
  transform: translateY(-20px);
}

.side-info-4 .offcanvas-4 .contact-item .nav-list li a {
  color: var(--secondary);
  font-size: 90px;
  font-weight: 400;
  line-height: 100px;
  letter-spacing: -4.5px;
  font-family: var(--font_bdogrotesk);
}

@media only screen and (max-width: 1919px) {
  .side-info-4 .offcanvas-4 .contact-item .nav-list li a {
    font-size: 80px;
  }
}

.side-info-4 .offcanvas-4 .contact-item .nav-list li a:hover {
  color: var(--primary);
}

.side-info-4 .offcanvas-4 .contact-item .info a {
  font-size: 18px;
  position: relative;
  font-weight: 400;
  line-height: 20px;
  color: var(--primary);
  font-family: var(--font_bdogrotesk);
}

.side-info-4 .offcanvas-4 .contact-item .info a::before {
  left: 0;
  bottom: 0;
  content: "";
  width: 100%;
  height: 2px;
  position: absolute;
  transition: all 0.3s;
  background: currentColor;
}

.side-info-4 .offcanvas-4 .contact-item .info a:hover {
  color: #555;
}

.side-info-4 .offcanvas-4 .contact-item .info a:hover::before {
  width: 0;
}

.side-info-4 .offcanvas-4-media {
  max-width: 440px;
  height: 290px;
  right: 30px;
  bottom: 30px;
  overflow: hidden;
  position: absolute;
  border-radius: 15px;
}

.side-info-4 .offcanvas-4-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.side-info-4 .offcanvas-4 .side-info-close {
  width: 200px;
  height: 70px;
  display: flex;
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
  padding: 29px 25px;
  border-radius: 15px;
  color: var(--primary);
  align-items: center;
  background-color: #F3F3F3;
  letter-spacing: -0.48px;
  justify-content: space-between;
  font-family: var(--font_bdogrotesk);
  border: 1px solid var(--border);
}

.dark .side-info-4 .offcanvas-4 .side-info-close {
  background-color: #1B1B1B;
}

.side-info-4 .offcanvas-4 .side-info-close:hover {
  transform: rotate(0deg);
  border-color: transparent;
  background-color: var(--black);
  color: var(--white);
}

.dark .side-info-4 .offcanvas-4 .side-info-close:hover {
  background-color: var(--white);
  color: var(--black);
}

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


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

@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.03em;
    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.03em;
  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.03em;
  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;
  }
}

@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-weight: 400;
  font-size: 14px;
  line-height: 15px;
  letter-spacing: -0.03em;
  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 320px;
  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-weight: 500;
  font-size: 18px;
  line-height: 1;
  letter-spacing: -0.03em;
  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-weight: 400;
  font-size: 18px;
  line-height: 26px;
  letter-spacing: -0.03em;
  list-style: none;
}

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


.services-6-wrapper>*:nth-child(2n):before {
  position: absolute;
  content: "";
  width: 1px;
  height: 100%;
  background-color: var(--border);
  top: 0;
  left: -50px;
}

.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.03em;
  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: #3a2d96;
}

.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: #3a2d96;
}

.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: -.05em;
  /* 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: 18px;
  font-weight: 400;
  line-height: 25px;
  /* max-width: 500px; */
}

.rr-bg-primary .approach-wrapper .approach-item p {
  color: rgba(255, 255, 255, 0.8);
}

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

@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: 207px;
}

.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: 100px;
  font-weight: 500;
  line-height: 90px;
  color: var(--primary);
  text-align: center;
  text-transform: uppercase;
  border-top: 1px solid var(--border);
  padding-top: 60px;
}

@media only screen and (max-width: 1919px) {
  .hero-7-area .hero-7-area-content .hero-7-area-title {
    font-size: 90px;
    line-height: 90px;
  }
}

@media only screen and (max-width: 1399px) {
  .hero-7-area .hero-7-area-content .hero-7-area-title {
    font-size: 90px;
    line-height: 90px;
  }
}


@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;
  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 {
  font-size: 14px;
  font-weight: 400;
  line-height: 16px;
  color: var(--primary);
  letter-spacing: -0.7px;
  text-transform: uppercase;
  font-family: var(--font_bdogrotesk);
}

.section-4-title-wrapper .section-4-subtitle span {
  color: #999;
}

.section-4-title-wrapper .section-4-title {
  font-size: 60px;
  font-weight: 400;
  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: 300;
  line-height: 28px;
  margin-bottom: 70px;
}

@media only screen and (max-width: 1399px) {
  .about-uss-7__content .over {
    margin-bottom: 50px;
    font-size: 120px;
  }
}

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

.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: 50px;
  font-size: 22px;
  color: #F8F2EF;
  max-width: 374px;
  font-weight: 400;
  /* line-height: 20px; */
  position: absolute;
  letter-spacing: -0.7px;
  /* text-transform: uppercase; */
}

.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: 50px;
  color: #F8F2EF;
  font-size: 180px;
  font-weight: 400;
  letter-spacing: -.03em;
  position: absolute;
  /* text-transform: capitalize; */
}

@media only screen and (max-width: 1399px) {
  .impact-area .impact-inner .impact-content .title {
    font-size: 90px;
    /* line-height: 130px; */
  }
}

@media only screen and (max-width: 1199px) {
  .impact-area .impact-inner .impact-content .title {
    font-size: 70px;
  }
}

@media only screen and (max-width: 991px) {
  .impact-area .impact-inner .impact-content .title {
    font-size: 70px;
  }
}

@media only screen and (max-width: 767px) {
  .impact-area .impact-inner .impact-content .title {
    font-size: 50px;
    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;
  padding-top: 40px;
  grid-template-columns: 820px 1fr;
  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: 580px;
  font-weight: 200;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  color: var(--primary);
  text-transform: uppercase;
  font-family: var(--font_ppeditor);
}

@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.03em;
}

@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.03em;
  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.03em;
  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;
  }
}

/* projects area 10 style  */
.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: 26px;
  font-weight: 500;
  line-height: 36px;
  font-family: var(--font_chillax);
  list-style: none;
  letter-spacing: -.03em;
  margin-bottom: 10px;
}

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

@media only screen and (max-width: 991px) {
  .Projects-area-10-inner .Projects-wrapper .Projects__item:not(:last-child) {
    margin-bottom: 50px;
  }
}

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