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

  Theme Name: Redixo - Creative Agency and Portfolio HTML Template
  Author: 
  Support: 
  Description: 
  Version: 1.0

-----------------------------------------------------------------------------------

/************ TABLE OF CONTENTS ***************
/* variable css */
/* typography css */
/* animation css */
/* common css */
/* theme css */
/* preloader css */
/* scroll css */
/* button css */
/* menu css */
/* modal css */
/* cursor css */
/* header css */
/* footer css */
/* digital agency page css */
/* startup agency page css */
/* creative agency page css */
/* design studio page css */
/* branding agency page css */
/* video production page css */
/* portfolio minimal page css */
/* Portfolio Grid page css */
/* full screen menu slider page css */
/* ai agency page css */
/* about us page css */
/* service page css */
/* service details page css */
/* work page css */
/* work details page css */
/* team page css */
/* team details page css */
/* blog page css */
/* blog details page css */
/* contact page css */
/* error page css */
/* marketing agency page css */
/* modern agency page css */
/* image reveal hover page css */
/* agency portfolio page css */
/* agency portfolio 2 page css */
/* portfolio massonary page css */
/* portfolio full page css */
/* full screen clam slider page css */
/* === Colors variable scss (index 01) === */
@import url("https://fonts.googleapis.com/css2?family=Bayon&family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap");
:root {
  --primary: #111111;
  --secondary: #555555;
  --border: rgba(17, 17, 17, 0.10);
  --bg: #111111;
  --black: #111111;
  --white: #FFFFFF;
  --action: #FF6A3A;
  --dark: #1A1A1A;
}
:root .dark {
  --primary: var(--white);
}

/* === Responsive variable scss (index 02) === */
/* === For Box Layout scss (index 03) === */
/* === Responsive container scss (index 04) === */
/* === heading scss (index 01) === */
/* === dark scss (index 01) === */
/* === bg primary  scss (index 01) === */
/* === Transition multiple scss (index 01) === */
/* === Transform scss (index 01) === */
/* === Flexbox scss (index 01) === */
/* === Font Family scss (index 01) === */
/* === Tartuffo Trial scss (index 02) === */
@font-face {
  font-family: "BDOGrotesk";
  src: url("../fonts/BDOGrotesk-Light.ttf");
  font-weight: 300;
}
@font-face {
  font-family: "BDOGrotesk";
  src: url("../fonts/BDOGrotesk-Regular.ttf");
  font-weight: 400;
}
@font-face {
  font-family: "BDOGrotesk";
  src: url("../fonts/BDOGrotesk-Medium.ttf");
  font-weight: 500;
}
@font-face {
  font-family: "BDOGrotesk";
  src: url("../fonts/BDOGrotesk-DemiBold.ttf");
  font-weight: 600;
}
@font-face {
  font-family: "BDOGrotesk";
  src: url("../fonts/BDOGrotesk-Bold.ttf");
  font-weight: 700;
}
@font-face {
  font-family: "BDOGrotesk";
  src: url("../fonts/BDOGrotesk-ExtraBold.ttf");
  font-weight: 800;
}
@font-face {
  font-family: "BDOGrotesk";
  src: url("../fonts/BDOGrotesk-Black.ttf");
  font-weight: 900;
}
:root {
  --font_body: "DM Sans", sans-serif;
  --font_BDOGrotesk: "BDOGrotesk";
  --font_Bayon: "Bayon", sans-serif;
  --font_awesome: "Font Awesome 6 Pro";
}

/* === Defalut Style scss (index 03) === */
* {
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font_body);
  line-height: 1;
  font-size: 16px;
  font-weight: 500;
  line-height: 20px;
  letter-spacing: -0.48px;
  color: #999999;
}
body.dark {
  background-color: var(--black);
  color: var(--white);
}

html {
  scroll-behavior: smooth;
}

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

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

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

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

p {
  padding: 0;
  margin: 0;
}

strong {
  font-weight: 500;
}

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

img {
  max-width: 100%;
}

.medium {
  font-weight: 600;
}

.bold {
  font-weight: 700;
}

/* === Gutter scss (index 03) === */
@media only screen and (max-width: 767px) {
  .g-0 {
    padding-right: 15px;
    padding-left: 15px;
  }
  .row.g-0 {
    padding-right: 0;
    padding-left: 0;
  }
  br {
    display: none;
  }
}
main {
  width: 100%;
}

h1 {
  font-size: 48px;
}

h2 {
  font-size: 36px;
}

h3 {
  font-size: 32px;
}

h4 {
  font-size: 24px;
}

h5 {
  font-size: 20px;
}

h6 {
  font-size: 18px;
}

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

.spin {
  animation-name: spin;
  animation-duration: 10s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}

@keyframes spin {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}
/* === Scrollbar scss (index 01) === */
::-webkit-scrollbar {
  width: 5px;
}

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

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

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

/* === positioning scss (index 02) === */
.rr-pos-rel {
  position: relative;
}

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

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

/* === Container scss (index 03) === */
.rr-container-1650 {
  max-width: 1650px;
}

.rr-container-1910 {
  max-width: 1910px;
}

.rr-container-1920 {
  max-width: 1910px;
}

.rr-container-1320 {
  max-width: 1290px;
}

/* === Background scss (index 04) === */
.rr-bg-primary {
  background-color: var(--primary);
}

/* === Parallax view scss (index 05) === */
.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);
}

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

/* === Section spacing  scss (index 07) === */
.section-spacing-bottom {
  padding-bottom: 100px;
}
@media only screen and (max-width: 1919px) {
  .section-spacing-bottom {
    padding-bottom: 90px;
  }
}
@media only screen and (max-width: 1399px) {
  .section-spacing-bottom {
    padding-bottom: 80px;
  }
}
@media only screen and (max-width: 1199px) {
  .section-spacing-bottom {
    padding-bottom: 60px;
  }
}

/* === ontainer styling with full HD support  scss (index 08) === */
.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 scss (index 09) === */
.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 scss (index 10) === */
.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-3 {
  background: #F1F1F1;
}

.offcanvas-overlay.overlay-open {
  opacity: 0.5;
  visibility: visible;
}
.offcanvas-overlay.overlay-open-3 {
  opacity: 1;
  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 scss (index 11) === */
.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 scss (index 12) === */
.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 scss (index 13) === */
.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;
}
.dark .mobile-menu.mean-container .mean-nav ul li a {
  border-top: 1px solid rgba(255, 255, 255, 0.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);
}
.dark .mobile-menu.mean-container .mean-nav ul li li:first-child {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.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 scss (index 14) === */
.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%);
}

/* === inverted text scss (index 15) === */
.text-invert > div {
  background-image: linear-gradient(to right, #fff 50%, rgba(255, 255, 255, 0.4) 50%);
  background-size: 200% 100%;
  background-position-x: 100%;
  color: transparent;
  background-clip: text;
  -webkit-background-clip: text;
}

/* === rr--hover-img canvas (Home) === */
.rr--hover-img canvas {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

/* Light mode background */
.switcher-button {
  position: fixed;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  width: 60px;
  height: 60px;
  cursor: pointer;
  border-radius: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: background 0.4s ease;
  z-index: 100;
  border: 1px solid var(--border);
  overflow: hidden;
}

.switcher-button.light-mode {
  background: #fff;
}

.switcher-button.dark-mode {
  background: #000;
}

.switcher-button-inner {
  position: relative;
  width: 100%;
  height: 100%;
}
.switcher-button-inner i {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-size: 20px;
  transition: transform 0.4s ease, opacity 0.4s ease;
}
.switcher-button-inner i.icon-light {
  color: var(--primary);
}
.switcher-button-inner i.icon-dark {
  transform: translate(-50%, 100%);
  opacity: 0;
  color: var(--white);
}

body.dark .switcher-button-inner i.icon-light {
  transform: translate(-50%, 100%);
  opacity: 0;
}
body.dark .switcher-button-inner i.icon-dark {
  transform: translate(-50%, -50%);
  opacity: 1;
}

/* === theme scss (index 01) === */
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);
}

/* === BG Color scss (index 02) === */
.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);
}

.dark-bg {
  background: #111111;
}

/* === Z-index scss (index 03) === */
.zi-1 {
  z-index: 1;
}
.zi-2 {
  z-index: 2;
}
.zi-0 {
  z-index: 0;
}
.zi--1 {
  z-index: -1;
}

/* === Text Border scss (index 04) === */
.text-underline {
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
  text-decoration-skip-ink: none;
}

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

/* === Text Indent scss (index 05) === */
.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);
}

.section-space {
  padding-top: 140px;
  padding-bottom: 140px;
}
@media only screen and (max-width: 1199px) {
  .section-space {
    padding-top: 110px;
    padding-bottom: 110px;
  }
}
@media only screen and (max-width: 991px) {
  .section-space {
    padding-top: 70px;
    padding-bottom: 80px;
  }
}
@media only screen and (max-width: 767px), (max-width: 575px) {
  .section-space {
    padding-top: 60px;
    padding-bottom: 70px;
  }
}

.section-space-top {
  padding-top: 140px;
}
@media only screen and (max-width: 1199px) {
  .section-space-top {
    padding-top: 110px;
  }
}
@media only screen and (max-width: 991px) {
  .section-space-top {
    padding-top: 70px;
  }
}
@media only screen and (max-width: 767px), (max-width: 575px) {
  .section-space-top {
    padding-top: 60px;
  }
}

.section-space-bottom {
  padding-bottom: 140px;
}
@media only screen and (max-width: 991px) {
  .section-space-bottom {
    padding-bottom: 70px;
  }
}
@media only screen and (max-width: 767px), (max-width: 575px) {
  .section-space-bottom {
    padding-bottom: 60px;
  }
}

.section-space-top-2 {
  padding-top: 120px;
}
@media only screen and (max-width: 991px) {
  .section-space-top-2 {
    padding-top: 70px;
  }
}
@media only screen and (max-width: 767px), (max-width: 575px) {
  .section-space-top-2 {
    padding-top: 60px;
  }
}

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

.mb-0 {
  margin-bottom: 0;
}

.mb-60 {
  margin-bottom: 60px;
}
@media only screen and (max-width: 991px) {
  .mb-60 {
    margin-bottom: 30px;
  }
}

.br-20 {
  border-radius: 20px;
}

.rr-bg-color {
  background: #000000;
}

.row {
  --bs-gutter-x: 20px;
  --bs-gutter-y: 20px;
}

/* === preloader scss (index 02) === */
.loader-wrap {
  position: fixed;
  z-index: 10;
  height: 100vh;
  width: 100vw;
  left: 0;
  top: 0;
  right: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background: var(--action);
  z-index: 99999999999999;
}

.loader-wrap svg {
  position: absolute;
  top: 0;
  width: 100vw;
  height: 110vh;
  fill: white;
}

.loader-wrap .loader-wrap-heading .load-text {
  font-size: 100px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--action);
  z-index: 20;
}
@media only screen and (max-width: 767px) {
  .loader-wrap .loader-wrap-heading .load-text {
    font-size: 50px;
  }
}

.load-text span {
  -webkit-animation: loading 1s infinite alternate;
  animation: loading 1s infinite alternate;
}

.load-text span:nth-child(1) {
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
}

.load-text span:nth-child(2) {
  -webkit-animation-delay: 0.1s;
  animation-delay: 0.1s;
}

.load-text span:nth-child(3) {
  -webkit-animation-delay: 0.2s;
  animation-delay: 0.2s;
}

.load-text span:nth-child(4) {
  -webkit-animation-delay: 0.3s;
  animation-delay: 0.3s;
}

.load-text span:nth-child(5) {
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
}

.load-text span:nth-child(6) {
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s;
}

.load-text span:nth-child(7) {
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
}

@-webkit-keyframes loading {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes loading {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
/* === scroll scss (index 01) === */
.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 scss (index 01) === */
.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);
  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(--white);
  left: 0;
  top: 0;
  height: 46px;
  width: 46px;
  cursor: pointer;
  display: block;
  z-index: 1;
  transition: all 200ms linear;
  border-radius: 50px;
  background: var(--primary);
}
.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;
}

/* === primary btn scss (index 01) === */
.rr-btn {
  z-index: 5;
  font-size: 16px;
  overflow: hidden;
  font-weight: 500;
  line-height: 20px;
  position: relative;
  padding: 11.5px 23px;
  align-items: center;
  display: inline-flex;
  border-radius: 500px;
  letter-spacing: -0.48px;
  justify-content: center;
  text-transform: capitalize;
  font-family: var(--font_body);
  background-color: transparent;
  background: #111111;
}
.rr-btn-6 {
  background: var(--white);
}
.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(--white);
}
.rr-btn:after {
  display: block;
  clear: both;
  content: "";
}
.rr-btn::before {
  background-color: #FF6A3A;
  content: "";
  width: 100%;
  height: 0;
  bottom: 0;
  position: absolute;
  transition: all 0.5s;
}
.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 {
  gap: 10px;
  display: flex;
  align-items: center;
  margin-right: 1px;
}
.rr-btn .btn-wrap .text-one i,
.rr-btn .btn-wrap .text-two i {
  font-size: 12px;
}
.rr-btn .btn-wrap .text-one {
  position: relative;
  color: #FFFFFF;
  transition: all 0.5s;
}
.rr-btn .btn-wrap .text-one-6 {
  color: #111111;
}
.rr-btn .btn-wrap .text-two {
  top: 100%;
  position: absolute;
  color: var(--white);
  transition: all 0.5s;
}

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

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

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

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

.cb-cursor-text {
  position: absolute;
  top: -28px;
  left: -34px;
  width: 89px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 400;
  font-size: 16px;
  line-height: 30px;
  letter-spacing: -0.02em;
  color: #111111;
  text-align: center;
  opacity: 0;
  transform: scale(0) rotate(10deg);
  transition: opacity 0.4s, transform 0.3s;
}

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

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

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

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

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

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

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

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

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

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

.cb-cursor.-text:before {
  background: var(--white);
  border-radius: 25px;
  opacity: 1;
  backdrop-filter: blur(10px);
  transform: scale(2);
}

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

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

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

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

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

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

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

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

/* header area style  */
.header-area {
  position: absolute;
  top: 30px;
  left: 0;
  width: 100%;
}
.header-area .header__button {
  display: flex;
  gap: 15px;
}
.header-area__inner {
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
  height: 100px;
  background: #FFFFFF;
  border-radius: 68px;
  padding-left: 50px;
  padding-right: 50px;
  justify-content: space-between;
}
@media only screen and (max-width: 1199px) {
  .header-area__inner {
    height: 80px;
    gap: 10px;
  }
}
@media only screen and (max-width: 991px) {
  .header-area__inner {
    padding-left: 30px;
    padding-right: 30px;
  }
}
.header-area .sticky,
.header-area .transformed {
  background-color: #FCF7F3;
}
.dark .header-area .header__logo .light-logo {
  display: none;
}
.header-area .header__logo .dark-logo {
  display: none;
}
.dark .header-area .header__logo .dark-logo {
  display: block;
}
.header-area .header__logo img {
  max-width: 120px;
}
.header-area .main-menu li a {
  font-weight: 500;
  font-size: 16px;
  line-height: 16px;
  color: #1A1A1A;
  padding: 42px 17px;
}
.header-area .main-menu li a:hover {
  color: var(--action);
}
.header-area .search-icon {
  color: var(--primary);
}
@media (max-width: 575px) {
  .header-area .header__meta {
    display: none;
  }
}
@media (max-width: 575px) {
  .header-area .header__button .rr-btn {
    display: none;
  }
}
.header-area .rr-btn {
  padding: 15px 30.3px;
  font-family: var(--font_body);
  font-weight: 500;
  font-size: 16px;
  line-height: 21px;
  letter-spacing: -0.04em;
  color: #FFFFFF;
}
.header-area .side-toggle {
  width: 50px;
  height: 50px;
  border: 1px solid rgba(17, 17, 17, 0.3);
  border-radius: 25px;
}
.header-area .side-toggle i {
  font-size: 22px;
}
.header-area .main-menu {
  padding-left: 30px;
}

/* header area 2 style  */
.header-area-2 {
  position: absolute;
  top: 30px;
  left: 0;
  width: 100%;
}
.header-area-2 .header__button {
  display: flex;
  gap: 15px;
}
.header-area-2__inner {
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
  height: 120px;
  background: #F1F1F1;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding-left: 50px;
  padding-right: 50px;
  justify-content: space-between;
}
.dark .header-area-2__inner {
  background: #141414;
  border: 1px solid rgba(255, 255, 255, 0.05);
}
@media only screen and (max-width: 1199px) {
  .header-area-2__inner {
    height: 80px;
    gap: 10px;
  }
}
@media only screen and (max-width: 991px) {
  .header-area-2__inner {
    padding-left: 30px;
    padding-right: 30px;
  }
}
.header-area-2 .sticky,
.header-area-2 .transformed {
  background-color: #FCF7F3;
}
.dark .header-area-2 .header__logo .light-logo {
  display: none;
}
.header-area-2 .header__logo .dark-logo {
  display: none;
}
.dark .header-area-2 .header__logo .dark-logo {
  display: block;
}
.header-area-2 .header__logo img {
  max-width: 120px;
}
.header-area-2 .header__nav {
  background: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 69px;
}
.dark .header-area-2 .header__nav {
  background: #111111;
  border: 1px solid rgba(255, 255, 255, 0.07);
}
.header-area-2 .main-menu li a {
  font-weight: 500;
  font-size: 16px;
  line-height: 16px;
  color: #1A1A1A;
  padding: 27px 17px;
}
.header-area-2 .main-menu li a:hover {
  color: var(--action);
}
.dark .header-area-2 .main-menu li a {
  color: var(--white);
}
.header-area-2 .search-icon {
  color: var(--primary);
}
@media (max-width: 575px) {
  .header-area-2 .header__meta {
    display: none;
  }
}
@media (max-width: 575px) {
  .header-area-2 .header__button .rr-btn {
    display: none;
  }
}
.header-area-2 .rr-btn {
  padding: 15px 30.3px;
  font-family: var(--font_body);
  font-weight: 500;
  font-size: 16px;
  line-height: 21px;
  letter-spacing: -0.04em;
  color: #FFFFFF;
}
.dark .header-area-2 .rr-btn {
  background: var(--white);
}
.dark .header-area-2 .rr-btn .text-one {
  color: #111111;
}
.header-area-2 .side-toggle {
  width: 50px;
  height: 50px;
  border: 1px solid rgba(17, 17, 17, 0.3);
  border-radius: 25px;
}
.dark .header-area-2 .side-toggle {
  border: 1px solid rgba(255, 255, 255, 0.3);
}
.header-area-2 .side-toggle i {
  font-size: 22px;
}
.header-area-2 .main-menu {
  padding-left: 30px;
}

.main-menu > ul > li:last-child > a {
  padding-right: 30px;
}

/* header area 3 style  */
.header-area-3 {
  position: absolute;
  top: 30px;
  left: 0;
  width: 100%;
}
.header-area-3 .header__button {
  display: flex;
  gap: 15px;
}
.header-area-3__inner {
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
  height: 100px;
  background: #F1F1F1;
  border-radius: 68px;
  padding-left: 50px;
  padding-right: 50px;
  justify-content: space-between;
}
@media only screen and (max-width: 1199px) {
  .header-area-3__inner {
    height: 80px;
    gap: 10px;
  }
}
@media only screen and (max-width: 991px) {
  .header-area-3__inner {
    padding-left: 30px;
    padding-right: 30px;
  }
}
.header-area-3 .sticky,
.header-area-3 .transformed {
  background-color: #FCF7F3;
}
.dark .header-area-3 .header__logo .light-logo {
  display: none;
}
.header-area-3 .header__logo .dark-logo {
  display: none;
}
.dark .header-area-3 .header__logo .dark-logo {
  display: block;
}
.header-area-3 .header__logo img {
  max-width: 120px;
}
.header-area-3 .main-menu li a {
  font-weight: 500;
  font-size: 16px;
  line-height: 16px;
  color: #1A1A1A;
  padding: 42px 17px;
}
.header-area-3 .main-menu li a:hover {
  color: var(--action);
}
.header-area-3 .search-icon {
  color: var(--primary);
}
@media (max-width: 575px) {
  .header-area-3 .header__meta {
    display: none;
  }
}
@media (max-width: 575px) {
  .header-area-3 .header__button .rr-btn {
    display: none;
  }
}
.header-area-3 .rr-btn {
  padding: 15px 30.3px;
  font-family: var(--font_body);
  font-weight: 500;
  font-size: 16px;
  line-height: 21px;
  letter-spacing: -0.04em;
  color: #FFFFFF;
}
.header-area-3 .side-toggle {
  width: 50px;
  height: 50px;
  border: 1px solid rgba(17, 17, 17, 0.3);
  border-radius: 25px;
}
.dark .header-area-3 .side-toggle {
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.header-area-3 .side-toggle i {
  font-size: 22px;
}
.header-area-3 .main-menu {
  padding-left: 30px;
}

/* header area 5 style  */
.header-area-5 {
  position: absolute;
  top: 0px;
  left: 0;
  width: 100%;
  z-index: 3;
}
.header-area-5 .header__button {
  display: flex;
  gap: 15px;
}
.header-area-5__inner {
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
  height: 100px;
  background: transparent;
  justify-content: space-between;
}
@media only screen and (max-width: 1199px) {
  .header-area-5__inner {
    height: 80px;
    gap: 10px;
  }
}
@media only screen and (max-width: 991px) {
  .header-area-5__inner {
    padding-left: 15px;
    padding-right: 15px;
  }
}
.header-area-5 .sticky,
.header-area-5 .transformed {
  background-color: #FCF7F3;
}
.dark .header-area-5 .header__logo .light-logo {
  display: none;
}
.header-area-5 .header__logo .dark-logo {
  display: none;
}
.dark .header-area-5 .header__logo .dark-logo {
  display: block;
}
.header-area-5 .header__logo img {
  max-width: 120px;
}
.header-area-5 .main-menu li a {
  font-weight: 500;
  font-size: 16px;
  line-height: 16px;
  color: #1A1A1A;
  padding: 22px 17px;
}
.dark .header-area-5 .main-menu li a {
  color: var(--white);
}
.header-area-5 .main-menu li a:hover {
  color: var(--action);
}
.header-area-5 .search-icon {
  color: var(--primary);
}
@media (max-width: 575px) {
  .header-area-5 .header__meta {
    display: none;
  }
}
@media (max-width: 575px) {
  .header-area-5 .header__button .rr-btn {
    display: none;
  }
}
.header-area-5 .rr-btn {
  padding: 15px 30.3px;
  font-family: var(--font_body);
  font-weight: 500;
  font-size: 16px;
  line-height: 21px;
  letter-spacing: -0.04em;
  color: #FFFFFF;
}
.dark .header-area-5 .rr-btn {
  background: var(--white);
}
.dark .header-area-5 .rr-btn .text-one {
  color: var(--dark);
}
.header-area-5 .side-toggle {
  width: 50px;
  height: 50px;
  border: 1px solid rgba(17, 17, 17, 0.3);
  border-radius: 25px;
}
.dark .header-area-5 .side-toggle {
  border: 1px solid rgba(255, 255, 255, 0.3);
}
.header-area-5 .side-toggle i {
  font-size: 22px;
}
.header-area-5 .main-menu {
  padding-left: 30px;
}

/* header area 6style  */
.header-area-6 {
  position: absolute;
  top: 20px;
  left: 0;
  width: 100%;
  z-index: 3;
}
.header-area-6 .header__button {
  display: flex;
  gap: 15px;
}
.header-area-6__inner {
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
  height: 100px;
  background: transparent;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0 130px 0 130px;
}
@media only screen and (max-width: 1919px) {
  .header-area-6__inner {
    padding: 0 30px 0 30px;
  }
}
@media only screen and (max-width: 1199px) {
  .header-area-6__inner {
    height: 80px;
    gap: 10px;
  }
}
@media only screen and (max-width: 991px) {
  .header-area-6__inner {
    padding-left: 10px;
    padding-right: 10px;
  }
}
.header-area-6 .sticky,
.header-area-6 .transformed {
  background-color: #FCF7F3;
}
.dark .header-area-6 .header__logo .light-logo {
  display: none;
}
.header-area-6 .header__logo .dark-logo {
  display: none;
}
.dark .header-area-6 .header__logo .dark-logo {
  display: block;
}
.header-area-6 .header__logo img {
  max-width: 120px;
}
.header-area-6 .main-menu li a {
  font-weight: 500;
  font-size: 16px;
  line-height: 16px;
  color: #FCF7F3;
  padding: 22px 17px;
}
.header-area-6 .main-menu li a:hover {
  color: var(--action);
}
.header-area-6 .search-icon {
  color: var(--primary);
}
@media (max-width: 575px) {
  .header-area-6 .header__meta {
    display: none;
  }
}
@media (max-width: 575px) {
  .header-area-6 .header__button .rr-btn {
    display: none;
  }
}
.header-area-6 .rr-btn {
  padding: 15px 30.3px;
  font-family: var(--font_body);
  font-weight: 500;
  font-size: 16px;
  line-height: 21px;
  letter-spacing: -0.04em;
  color: #FFFFFF;
}
.header-area-6 .side-toggle {
  width: 50px;
  height: 50px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 25px;
}
.header-area-6 .side-toggle i {
  font-size: 22px;
}
.header-area-6 .main-menu {
  padding-left: 30px;
}

.header-area-3 {
  position: absolute;
  top: 25px;
  left: 0;
  width: 100%;
}
.header-area-3__inner {
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
  height: 100px;
  padding: 20px 50px 20px 50px;
  margin-top: 10px;
  border-radius: 50px;
  width: 586px;
  margin: 0 auto;
  background: #F1F1F1;
  border: 1px solid rgba(17, 17, 17, 0.1);
  border-radius: 50px;
}
.dark .header-area-3__inner {
  background: #1A1A1A;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
@media only screen and (max-width: 1919px) {
  .header-area-3__inner {
    width: 700px;
  }
}
@media only screen and (max-width: 1199px) {
  .header-area-3__inner {
    width: 500px;
    height: 80px;
    padding: 10px 20px 10px 20px;
  }
}
@media only screen and (max-width: 991px) {
  .header-area-3__inner {
    width: 100%;
  }
}
.header-area-3__inner .line-loader {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4px;
}
.header-area-3__inner .line-loader span {
  display: block;
  width: 1px;
  background: rgba(17, 17, 17, 0.1);
  border-radius: 0.5px;
  animation: bounce 1.2s infinite ease-in-out;
}
.header-area-3__inner .line-loader span:nth-child(1) {
  height: 22px;
  animation-delay: -0.24s;
}
.header-area-3__inner .line-loader span:nth-child(2) {
  height: 45px;
  animation-delay: -0.12s;
}
.header-area-3__inner .line-loader span:nth-child(3) {
  height: 22px;
}
.dark .header-area-3__inner .line-loader span {
  background: rgba(255, 255, 255, 0.1);
}
.header-area-3 .sticky,
.header-area-3 .transformed {
  background-color: #FFFFFF;
}
.header-area-3 .header__logo img {
  width: 100px;
}
.header-area-3 .main-menu li a {
  font-size: 16px;
  font-weight: 500;
  padding: 29px 10px;
  color: var(--white);
}
.header-area-3 .main-menu li a:hover {
  color: var(--white);
}
.header-area-3 .search-icon {
  color: var(--primary);
}
.header-area-3 .rr-btn {
  font-size: 16px;
  text-transform: uppercase;
  font-weight: 500;
  padding: 22px 32px;
  border-radius: 20px;
  border: none;
}
.header-area-3 .rr-btn:hover {
  background-color: rgb(255, 216, 12);
}
.header-area-3 .rr-btn:before {
  background-color: rgb(255, 216, 12);
}
@media (max-width: 575px) {
  .header-area-3 .header__btn {
    display: none;
  }
}
.header-area-3 .header__navicon {
  position: relative;
}
.header-area-3 .side-toggle {
  width: 50px;
  height: 50px;
  cursor: pointer;
  transition: all 0.5s;
  border-radius: 50%;
}
.header-area-3 .dot {
  width: 4px;
  height: 4px;
  position: absolute;
  border-radius: 50%;
  background: var(--primary);
  transition: all 0.4s ease;
}
.header-area-3 .offcanvas-3 {
  top: 0;
  right: 0;
  height: auto;
  padding: 100px;
  position: absolute;
  border-radius: 20px;
  overflow-y: scroll;
  pointer-events: none;
  background-color: var(--white);
  transform-origin: 100% 0%;
  transition: all 0.5s ease-in;
  clip-path: inset(0% 0% 100% 100%);
  will-change: transform, opacity, filter;
  transform: translate3d(0, 0, 0) scale(0);
}
.dark .header-area-3 .offcanvas-3 {
  background-color: var(--black);
}
.header-area-3 .offcanvas-3.info-open {
  opacity: 1;
  filter: none;
  height: 900px;
  margin-top: -25px;
  margin-right: -55px;
  pointer-events: auto;
  width: 950px;
  overflow-y: scroll;
  clip-path: inset(0 0 0 0);
  transform: translate3d(0, 0, 0) scale(1);
  background: #F1F1F1;
}
.dark .header-area-3 .offcanvas-3.info-open {
  background: #1A1A1A;
}
@media only screen and (max-width: 1919px) {
  .header-area-3 .offcanvas-3.info-open {
    width: 710px;
    height: 100vh;
    padding: 100px 50px;
  }
}
@media only screen and (max-width: 1199px) {
  .header-area-3 .offcanvas-3.info-open {
    width: 510px;
    padding: 100px 30px 50px;
    margin: -25px;
    margin-right: -25px;
  }
}
@media only screen and (max-width: 991px) {
  .header-area-3 .offcanvas-3.info-open {
    width: calc(95vw - 25px);
    padding: 100px 30px 50px;
  }
}
@media (max-width: 575px) {
  .header-area-3 .offcanvas-3.info-open {
    padding: 100px 20px 50px;
    width: calc(100vw - 25px);
  }
}
.header-area-3 .offcanvas-3 .offset-header {
  display: flex;
  align-items: center;
  padding: 29px 30px;
  justify-content: space-between;
  border-radius: 20px;
  border: 1px solid rgba(17, 17, 17, 0.06);
  background-color: #F3F3F3;
}
.dark .header-area-3 .offcanvas-3 .offset-header {
  background-color: #1B1B1B;
  border-color: rgba(255, 255, 255, 0.06);
}
@media only screen and (max-width: 1199px) {
  .header-area-3 .offcanvas-3 .offset-header {
    padding: 25px 15px;
  }
}
@media (max-width: 575px) {
  .header-area-3 .offcanvas-3 .offset-header {
    gap: 15px;
    flex-wrap: wrap;
  }
}
.header-area-3 .offcanvas-3 .offset-header h6 {
  color: rgba(17, 17, 17, 0.5);
  font-size: 16px;
  font-weight: 400;
  line-height: 18px;
  letter-spacing: -0.48px;
  margin-right: auto;
}
.dark .header-area-3 .offcanvas-3 .offset-header h6 {
  color: rgba(255, 255, 255, 0.5);
}
@media only screen and (max-width: 1199px) {
  .header-area-3 .offcanvas-3 .offset-header h6 {
    font-size: 15px;
  }
}
.header-area-3 .offcanvas-3 .offset-header .date {
  color: rgba(17, 17, 17, 0.5);
  font-size: 16px;
  font-weight: 400;
  line-height: 18px;
  font-family: var(--font_body);
  letter-spacing: -0.48px;
}
.dark .header-area-3 .offcanvas-3 .offset-header .date {
  color: rgba(255, 255, 255, 0.5);
}
@media only screen and (max-width: 1199px) {
  .header-area-3 .offcanvas-3 .offset-header .date {
    font-size: 15px;
  }
}
.header-area-3 .offcanvas-3 .offset-logo {
  margin-right: 100px;
}
@media only screen and (max-width: 1919px) {
  .header-area-3 .offcanvas-3 .offset-logo {
    margin-right: 50px;
  }
}
@media only screen and (max-width: 1199px) {
  .header-area-3 .offcanvas-3 .offset-logo {
    margin-right: 20px;
  }
}
@media (max-width: 575px) {
  .header-area-3 .offcanvas-3 .offset-logo {
    width: 95px;
  }
}
.header-area-3 .offcanvas-3 .offset-logo img {
  width: 100%;
}
.header-area-3 .offcanvas-3 .contact-meta {
  display: grid;
  margin-bottom: 96px;
  grid-template-columns: 338px 1fr;
}
.header-area-3 .offcanvas-3 .contact-meta *:not(:first-child) {
  margin-top: 0px;
}
@media only screen and (max-width: 1919px) {
  .header-area-3 .offcanvas-3 .contact-meta {
    grid-template-columns: 225px 1fr;
  }
}
.header-area-3 .offcanvas-3 .contact-info {
  display: flex;
  gap: 154px;
}
.header-area-3 .offcanvas-3 .contact-info-item .title {
  color: #999999;
  font-size: 18px;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: -0.54px;
  margin-bottom: 25px;
}
.header-area-3 .offcanvas-3 .contact-info-item a {
  font-size: 18px;
  position: relative;
  font-weight: 400;
  line-height: 20px;
  color: var(--primary);
  font-family: var(--font_bdogrotesk);
}
.header-area-3 .offcanvas-3 .contact-info-item a::before {
  left: 0;
  bottom: 0;
  content: "";
  width: 100%;
  height: 1.5px;
  position: absolute;
  transition: all 0.3s;
  background: currentColor;
}
.header-area-3 .offcanvas-3 .contact-info-item a:hover {
  color: rgba(17, 17, 17, 0.5);
}
.header-area-3 .offcanvas-3 .contact-info-item a:hover::before {
  width: 0;
}
.header-area-3 .offcanvas-3 .contact-item {
  gap: 0px;
  flex-direction: column;
  align-items: flex-start;
}
.header-area-3 .offcanvas-3 .contact-item .title {
  font-size: 18px;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: -0.54px;
  color: #999999;
}
.dark .header-area-3 .offcanvas-3 .contact-item .title {
  color: #555555;
}
.header-area-3 .offcanvas-3 .contact-item .socail-media li {
  list-style: none;
}
.header-area-3 .offcanvas-3 .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);
}
.header-area-3 .offcanvas-3 .contact-item .socail-media li a:hover {
  color: rgba(17, 17, 17, 0.5);
}
.header-area-3 .offcanvas-3 .contact-item .nav-list li {
  list-style: none;
}
.header-area-3 .offcanvas-3 .contact-item .nav-list li a {
  color: #999;
  font-size: 50px;
  font-weight: 400;
  line-height: 60px;
  letter-spacing: -1.5px;
  font-family: var(--font_BDOGrotesk);
}
@media only screen and (max-width: 1919px) {
  .header-area-3 .offcanvas-3 .contact-item .nav-list li a {
    font-size: 40px;
  }
}
.header-area-3 .offcanvas-3 .contact-item .nav-list li a:hover {
  color: var(--black);
}
.dark .header-area-3 .offcanvas-3 .contact-item .nav-list li a:hover {
  color: var(--white);
}
.header-area-3 .offcanvas-3 .side-info-close {
  right: 20px;
  top: 20px;
  width: 107px;
  display: flex;
  font-size: 16px;
  font-weight: 400;
  position: absolute;
  line-height: 20px;
  border-radius: 15px;
  gap: 15px;
  border: none;
  background: transparent;
  color: var(--primary);
  align-items: center;
  letter-spacing: -0.48px;
  font-family: var(--font_bdogrotesk);
}
.header-area-3 .offcanvas-3 .side-info-close span {
  width: 50px;
  height: 50px;
  display: flex;
  min-width: 50px;
  border-radius: 50%;
  align-items: center;
  transition: all 0.3s;
  justify-content: center;
  border: 1px solid rgba(17, 17, 17, 0.15);
}
.dark .header-area-3 .offcanvas-3 .side-info-close span {
  border-color: rgba(255, 255, 255, 0.15);
}
.header-area-3 .offcanvas-3 .side-info-close:hover {
  transform: rotate(0deg);
}
.header-area-3 .offcanvas-3 .side-info-close:hover span {
  background: #FF6A3A;
  border-color: transparent;
  color: var(--black);
}

.header-area-10 {
  position: absolute;
  top: 0px;
  left: 0;
  width: 100%;
}
.header-area-10__inner {
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
  height: 88px;
  padding: 20px 50px 20px 50px;
  background: transparent;
  justify-content: space-between;
  border-bottom: 1px solid rgba(17, 17, 17, 0.1);
}
.dark .header-area-10__inner {
  background-color: var(--dark);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
@media only screen and (max-width: 1199px) {
  .header-area-10__inner {
    height: 80px;
    padding: 10px 20px 10px 20px;
  }
}
@media only screen and (max-width: 991px) {
  .header-area-10__inner {
    width: 100%;
  }
}
.header-area-10__inner .line-loader {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4px;
}
.header-area-10__inner .line-loader span {
  display: block;
  width: 1px;
  background: rgba(17, 17, 17, 0.1);
  border-radius: 0.5px;
  animation: bounce 1.2s infinite ease-in-out;
}
.header-area-10__inner .line-loader span:nth-child(1) {
  height: 22px;
  animation-delay: -0.24s;
}
.header-area-10__inner .line-loader span:nth-child(2) {
  height: 45px;
  animation-delay: -0.12s;
}
.header-area-10__inner .line-loader span:nth-child(3) {
  height: 22px;
}
.header-area-10 .sticky,
.header-area-10 .transformed {
  background-color: #FFFFFF;
}
.header-area-10 .header__logo img {
  width: 100px;
}
.header-area-10 .main-menu li a {
  font-size: 16px;
  font-weight: 500;
  padding: 29px 10px;
  color: var(--white);
}
.header-area-10 .main-menu li a:hover {
  color: var(--white);
}
.header-area-10 .search-icon {
  color: var(--primary);
}
.header-area-10 .rr-btn {
  font-size: 16px;
  text-transform: uppercase;
  font-weight: 500;
  padding: 22px 32px;
  border-radius: 20px;
  border: none;
}
.header-area-10 .rr-btn:hover {
  background-color: rgb(255, 216, 12);
}
.header-area-10 .rr-btn:before {
  background-color: rgb(255, 216, 12);
}
@media (max-width: 575px) {
  .header-area-10 .header__btn {
    display: none;
  }
}
.header-area-10 .header__navicon {
  position: relative;
}
.header-area-10 .side-toggle {
  width: 80px;
  height: 50px;
  cursor: pointer;
  transition: all 0.5s;
  border-radius: 50%;
}
.header-area-10 .side-toggle span {
  font-weight: 500;
  font-size: 15px;
  line-height: 16px;
  letter-spacing: -0.05em;
  text-transform: uppercase;
  color: var(--primary);
  font-family: var(--font_BDOGrotesk);
  margin-right: 4px;
}
.header-area-10 .dot {
  width: 4px;
  height: 4px;
  position: absolute;
  border-radius: 50%;
  background: var(--primary);
  transition: all 0.4s ease;
}
.header-area-10 .offcanvas-3 {
  top: 0;
  right: 0;
  height: auto;
  padding: 100px;
  position: absolute;
  border-radius: 20px;
  overflow-y: scroll;
  pointer-events: none;
  background-color: var(--white);
  transform-origin: 100% 0%;
  transition: all 0.5s ease-in;
  clip-path: inset(0% 0% 100% 100%);
  will-change: transform, opacity, filter;
  transform: translate3d(0, 0, 0) scale(0);
}
.dark .header-area-10 .offcanvas-3 {
  background-color: var(--black);
}
.header-area-10 .offcanvas-3.info-open {
  opacity: 1;
  filter: none;
  height: 900px;
  margin-top: -25px;
  margin-right: -55px;
  pointer-events: auto;
  width: 950px;
  overflow-y: scroll;
  clip-path: inset(0 0 0 0);
  transform: translate3d(0, 0, 0) scale(1);
  background: #F1F1F1;
}
.dark .header-area-10 .offcanvas-3.info-open {
  background: #1A1A1A;
}
@media only screen and (max-width: 1919px) {
  .header-area-10 .offcanvas-3.info-open {
    width: 710px;
    height: 100vh;
    padding: 100px 50px;
  }
}
@media only screen and (max-width: 1199px) {
  .header-area-10 .offcanvas-3.info-open {
    width: 510px;
    padding: 100px 30px 50px;
    margin: -25px;
    margin-right: -25px;
  }
}
@media only screen and (max-width: 991px) {
  .header-area-10 .offcanvas-3.info-open {
    width: calc(95vw - 25px);
    padding: 100px 30px 50px;
  }
}
@media (max-width: 575px) {
  .header-area-10 .offcanvas-3.info-open {
    padding: 100px 20px 50px;
    width: calc(100vw - 25px);
  }
}
.header-area-10 .offcanvas-3 .offset-header {
  display: flex;
  align-items: center;
  padding: 29px 30px;
  justify-content: space-between;
  border-radius: 20px;
  border: 1px solid rgba(17, 17, 17, 0.06);
  background-color: #F3F3F3;
}
.dark .header-area-10 .offcanvas-3 .offset-header {
  background-color: #1B1B1B;
  border-color: rgba(255, 255, 255, 0.06);
}
@media only screen and (max-width: 1199px) {
  .header-area-10 .offcanvas-3 .offset-header {
    padding: 25px 15px;
  }
}
@media (max-width: 575px) {
  .header-area-10 .offcanvas-3 .offset-header {
    gap: 15px;
    flex-wrap: wrap;
  }
}
.header-area-10 .offcanvas-3 .offset-header h6 {
  color: rgba(17, 17, 17, 0.5);
  font-size: 16px;
  font-weight: 400;
  line-height: 18px;
  letter-spacing: -0.48px;
  margin-right: auto;
}
.dark .header-area-10 .offcanvas-3 .offset-header h6 {
  color: rgba(255, 255, 255, 0.5);
}
@media only screen and (max-width: 1199px) {
  .header-area-10 .offcanvas-3 .offset-header h6 {
    font-size: 15px;
  }
}
.header-area-10 .offcanvas-3 .offset-header .date {
  color: rgba(17, 17, 17, 0.5);
  font-size: 16px;
  font-weight: 400;
  line-height: 18px;
  font-family: var(--font_body);
  letter-spacing: -0.48px;
}
.dark .header-area-10 .offcanvas-3 .offset-header .date {
  color: rgba(255, 255, 255, 0.5);
}
@media only screen and (max-width: 1199px) {
  .header-area-10 .offcanvas-3 .offset-header .date {
    font-size: 15px;
  }
}
.header-area-10 .offcanvas-3 .offset-logo {
  margin-right: 100px;
}
@media only screen and (max-width: 1919px) {
  .header-area-10 .offcanvas-3 .offset-logo {
    margin-right: 50px;
  }
}
@media only screen and (max-width: 1199px) {
  .header-area-10 .offcanvas-3 .offset-logo {
    margin-right: 20px;
  }
}
@media (max-width: 575px) {
  .header-area-10 .offcanvas-3 .offset-logo {
    width: 95px;
  }
}
.header-area-10 .offcanvas-3 .offset-logo img {
  width: 100%;
}
.header-area-10 .offcanvas-3 .contact-meta {
  display: grid;
  margin-bottom: 96px;
  grid-template-columns: 338px 1fr;
}
.header-area-10 .offcanvas-3 .contact-meta *:not(:first-child) {
  margin-top: 0px;
}
@media only screen and (max-width: 1919px) {
  .header-area-10 .offcanvas-3 .contact-meta {
    grid-template-columns: 225px 1fr;
  }
}
.header-area-10 .offcanvas-3 .contact-info {
  display: flex;
  gap: 154px;
}
.header-area-10 .offcanvas-3 .contact-info-item .title {
  color: #999999;
  font-size: 18px;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: -0.54px;
  margin-bottom: 25px;
}
.header-area-10 .offcanvas-3 .contact-info-item a {
  font-size: 18px;
  position: relative;
  font-weight: 400;
  line-height: 20px;
  color: var(--primary);
  font-family: var(--font_bdogrotesk);
}
.header-area-10 .offcanvas-3 .contact-info-item a::before {
  left: 0;
  bottom: 0;
  content: "";
  width: 100%;
  height: 1.5px;
  position: absolute;
  transition: all 0.3s;
  background: currentColor;
}
.header-area-10 .offcanvas-3 .contact-info-item a:hover {
  color: rgba(17, 17, 17, 0.5);
}
.header-area-10 .offcanvas-3 .contact-info-item a:hover::before {
  width: 0;
}
.header-area-10 .offcanvas-3 .contact-item {
  gap: 0px;
  flex-direction: column;
  align-items: flex-start;
}
.header-area-10 .offcanvas-3 .contact-item .title {
  font-size: 18px;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: -0.54px;
  color: #999999;
}
.dark .header-area-10 .offcanvas-3 .contact-item .title {
  color: #555555;
}
.header-area-10 .offcanvas-3 .contact-item .socail-media li {
  list-style: none;
}
.header-area-10 .offcanvas-3 .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);
}
.header-area-10 .offcanvas-3 .contact-item .socail-media li a:hover {
  color: rgba(17, 17, 17, 0.5);
}
.header-area-10 .offcanvas-3 .contact-item .nav-list li {
  list-style: none;
}
.header-area-10 .offcanvas-3 .contact-item .nav-list li a {
  color: #999;
  font-size: 50px;
  font-weight: 400;
  line-height: 60px;
  letter-spacing: -1.5px;
  font-family: var(--font_BDOGrotesk);
}
@media only screen and (max-width: 1919px) {
  .header-area-10 .offcanvas-3 .contact-item .nav-list li a {
    font-size: 40px;
  }
}
.header-area-10 .offcanvas-3 .contact-item .nav-list li a:hover {
  color: var(--black);
}
.dark .header-area-10 .offcanvas-3 .contact-item .nav-list li a:hover {
  color: var(--white);
}
.header-area-10 .offcanvas-3 .side-info-close {
  right: 20px;
  top: 20px;
  width: 107px;
  display: flex;
  font-size: 16px;
  font-weight: 400;
  position: absolute;
  line-height: 20px;
  border-radius: 15px;
  gap: 15px;
  border: none;
  background: transparent;
  color: var(--primary);
  align-items: center;
  letter-spacing: -0.48px;
  font-family: var(--font_bdogrotesk);
}
.header-area-10 .offcanvas-3 .side-info-close span {
  width: 50px;
  height: 50px;
  display: flex;
  min-width: 50px;
  border-radius: 50%;
  align-items: center;
  transition: all 0.3s;
  justify-content: center;
  border: 1px solid rgba(17, 17, 17, 0.15);
}
.dark .header-area-10 .offcanvas-3 .side-info-close span {
  border-color: rgba(255, 255, 255, 0.15);
}
.header-area-10 .offcanvas-3 .side-info-close:hover {
  transform: rotate(0deg);
}
.header-area-10 .offcanvas-3 .side-info-close:hover span {
  background: #FF6A3A;
  border-color: transparent;
  color: var(--black);
}

/* header area 11 style  */
.header-area-11 {
  position: absolute;
  top: 0px;
  left: 0;
  width: 100%;
  z-index: 3;
}
.header-area-11 .header__button {
  display: flex;
  gap: 15px;
}
.header-area-11__inner {
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
  height: 100px;
  background: transparent;
  justify-content: space-between;
  padding: 0 50px 0 50px;
}
@media only screen and (max-width: 1919px) {
  .header-area-11__inner {
    padding: 0 30px 0 30px;
  }
}
@media only screen and (max-width: 1199px) {
  .header-area-11__inner {
    height: 80px;
    gap: 10px;
  }
}
@media only screen and (max-width: 991px) {
  .header-area-11__inner {
    padding-left: 10px;
    padding-right: 10px;
  }
}
.header-area-11 .sticky,
.header-area-11 .transformed {
  background-color: #FCF7F3;
}
.dark .header-area-11 .header__logo .light-logo {
  display: none;
}
.header-area-11 .header__logo .dark-logo {
  display: none;
}
.dark .header-area-11 .header__logo .dark-logo {
  display: block;
}
.header-area-11 .header__logo img {
  max-width: 120px;
}
.header-area-11 .main-menu li a {
  font-weight: 500;
  font-size: 16px;
  line-height: 16px;
  color: #111111;
  padding: 22px 17px;
}
.dark .header-area-11 .main-menu li a {
  color: var(--white);
}
.header-area-11 .main-menu li a:hover {
  color: var(--action);
}
.header-area-11 .search-icon {
  color: var(--primary);
}
@media (max-width: 575px) {
  .header-area-11 .header__meta {
    display: none;
  }
}
@media (max-width: 575px) {
  .header-area-11 .header__button .rr-btn {
    display: none;
  }
}
.header-area-11 .rr-btn {
  padding: 15px 30.3px;
  font-family: var(--font_body);
  font-weight: 500;
  font-size: 16px;
  line-height: 21px;
  letter-spacing: -0.04em;
  color: #FFFFFF;
}
.header-area-11 .side-toggle {
  width: 100px;
  height: 50px;
}
.header-area-11 .side-toggle span {
  font-weight: 600;
  font-size: 14px;
  line-height: 16px;
  text-transform: uppercase;
  color: #111111;
  margin-left: 8px;
}
.dark .header-area-11 .side-toggle span {
  color: var(--white);
}
.header-area-11 .main-menu {
  padding-left: 30px;
}

.header-area-inner {
  position: absolute;
  top: 0px;
  left: 0;
  width: 100%;
}
.header-area-inner .header__button {
  display: flex;
  gap: 15px;
}
.header-area-inner__inner {
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
  height: 100px;
  background: transparent;
  padding-left: 0px;
  padding-right: 0px;
  justify-content: space-between;
}
@media only screen and (max-width: 1199px) {
  .header-area-inner__inner {
    height: 80px;
    gap: 10px;
  }
}
@media only screen and (max-width: 991px) {
  .header-area-inner__inner {
    padding-left: 0px;
    padding-right: 0px;
  }
}
.header-area-inner .sticky,
.header-area-inner .transformed {
  background-color: #FCF7F3;
}
.dark .header-area-inner .header__logo .light-logo {
  display: none;
}
.header-area-inner .header__logo .dark-logo {
  display: none;
}
.dark .header-area-inner .header__logo .dark-logo {
  display: block;
}
.header-area-inner .header__logo img {
  max-width: 120px;
}
.header-area-inner .main-menu li a {
  font-weight: 500;
  font-size: 16px;
  line-height: 16px;
  color: #1A1A1A;
  padding: 42px 17px;
}
.dark .header-area-inner .main-menu li a {
  color: var(--white);
}
.header-area-inner .main-menu li a:hover {
  color: var(--action);
}
.header-area-inner .search-icon {
  color: var(--primary);
}
@media (max-width: 575px) {
  .header-area-inner .header__meta {
    display: none;
  }
}
@media (max-width: 575px) {
  .header-area-inner .header__button .rr-btn {
    display: none;
  }
}
.header-area-inner .rr-btn {
  padding: 15px 30.3px;
  font-family: var(--font_body);
  font-weight: 500;
  font-size: 16px;
  line-height: 21px;
  letter-spacing: -0.04em;
  color: #FFFFFF;
}
.dark .header-area-inner .rr-btn {
  background: var(--white);
}
.dark .header-area-inner .rr-btn .text-one {
  color: var(--dark);
}
.header-area-inner .side-toggle {
  width: 50px;
  height: 50px;
  border: 1px solid rgba(17, 17, 17, 0.3);
  border-radius: 25px;
}
.dark .header-area-inner .side-toggle {
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.header-area-inner .side-toggle i {
  font-size: 22px;
}
.header-area-inner .main-menu {
  padding-left: 30px;
}

.header-area-8 {
  position: absolute;
  top: 0px;
  left: 0;
  width: 100%;
  z-index: 3;
}
.header-area-8 .header__button {
  display: flex;
  gap: 15px;
}
.header-area-8__inner {
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
  height: 100px;
  background: transparent;
  justify-content: space-between;
  padding: 0 50px 0 50px;
}
@media only screen and (max-width: 1919px) {
  .header-area-8__inner {
    padding: 0 30px 0 30px;
  }
}
@media only screen and (max-width: 1199px) {
  .header-area-8__inner {
    height: 80px;
    gap: 10px;
  }
}
@media only screen and (max-width: 991px) {
  .header-area-8__inner {
    padding-left: 10px;
    padding-right: 10px;
  }
}
.header-area-8 .sticky,
.header-area-8 .transformed {
  background-color: #FCF7F3;
}
.dark .header-area-8 .header__logo .light-logo {
  display: none;
}
.header-area-8 .header__logo .dark-logo {
  display: none;
}
.dark .header-area-8 .header__logo .dark-logo {
  display: block;
}
.header-area-8 .header__logo img {
  max-width: 120px;
}
.header-area-8 .main-menu li a {
  font-weight: 500;
  font-size: 16px;
  line-height: 16px;
  color: var(--white);
  padding: 22px 17px;
}
.header-area-8 .main-menu li a:hover {
  color: var(--action);
}
.header-area-8 .search-icon {
  color: var(--primary);
}
@media (max-width: 575px) {
  .header-area-8 .header__meta {
    display: none;
  }
}
@media (max-width: 575px) {
  .header-area-8 .header__button .rr-btn {
    display: none;
  }
}
.header-area-8 .rr-btn {
  padding: 15px 30.3px;
  font-family: var(--font_body);
  font-weight: 500;
  font-size: 16px;
  line-height: 21px;
  letter-spacing: -0.04em;
  color: #FFFFFF;
}
.header-area-8 .side-toggle {
  width: 100px;
  height: 50px;
}
.header-area-8 .side-toggle span {
  font-weight: 600;
  font-size: 14px;
  line-height: 16px;
  text-transform: uppercase;
  color: var(--white);
  margin-left: 8px;
}
.header-area-8 .main-menu {
  padding-left: 30px;
}

.header-area-9 {
  position: absolute;
  top: 0px;
  left: 0;
  width: 100%;
  z-index: 3;
}
.header-area-9 .header__button {
  display: flex;
  gap: 15px;
}
.header-area-9__inner {
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
  height: 100px;
  background: transparent;
  justify-content: space-between;
  padding: 0 50px 0 50px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
@media only screen and (max-width: 1919px) {
  .header-area-9__inner {
    padding: 0 30px 0 30px;
  }
}
@media only screen and (max-width: 1199px) {
  .header-area-9__inner {
    height: 80px;
    gap: 10px;
  }
}
@media only screen and (max-width: 991px) {
  .header-area-9__inner {
    padding-left: 10px;
    padding-right: 10px;
  }
}

.header-area-4 {
  position: absolute;
  top: 15px;
  left: 0;
  width: 100%;
  z-index: 99;
}
.header-area-4 .header__button {
  display: flex;
  gap: 15px;
}
.header-area-4__inner {
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
  background: transparent;
  border-radius: 68px;
  justify-content: center;
}
@media only screen and (max-width: 1199px) {
  .header-area-4__inner {
    height: 80px;
    gap: 10px;
    justify-content: space-between;
    padding: 0 20px;
    margin-top: 20px;
  }
}
@media only screen and (max-width: 991px) {
  .header-area-4__inner {
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media (max-width: 575px) {
  .header-area-4__inner {
    padding-left: 30px;
    padding-right: 30px;
    margin-top: -4px;
  }
}
.header-area-4 .sticky,
.header-area-4 .transformed {
  background-color: #FCF7F3;
}
.dark .header-area-4 .header__logo .light-logo {
  display: none;
}
.header-area-4 .header__logo .dark-logo {
  display: none;
}
.dark .header-area-4 .header__logo .dark-logo {
  display: block;
}
.header-area-4 .header__logo img {
  max-width: 120px;
}
.header-area-4 .main-menu li a {
  font-weight: 500;
  font-size: 16px;
  line-height: 16px;
  color: #1A1A1A;
  padding: 42px 17px;
}
.header-area-4 .main-menu li a:hover {
  color: var(--action);
}
.header-area-4 .search-icon {
  color: var(--primary);
}
@media (max-width: 575px) {
  .header-area-4 .header__meta {
    display: none;
  }
}
@media (max-width: 575px) {
  .header-area-4 .header__button .rr-btn {
    display: none;
  }
}
.header-area-4 .rr-btn {
  padding: 15px 30.3px;
  font-family: var(--font_body);
  font-weight: 500;
  font-size: 16px;
  line-height: 21px;
  letter-spacing: -0.04em;
  color: #FFFFFF;
}
.header-area-4 .side-toggle {
  width: 50px;
  height: 50px;
  border: 1px solid rgba(17, 17, 17, 0.3);
  border-radius: 25px;
}
.header-area-4 .side-toggle i {
  font-size: 22px;
}
.header-area-4 .main-menu {
  padding-left: 30px;
}

/* === footer scss (index 01) === */
.footer-area.footer-area-5 .footer-widget-wrapper-box {
  border-bottom: none;
}
.footer-area.footer-area-5 .footer-widget-wrapper-box::before {
  display: none;
}
.footer-area.footer-area-5 .footer-widget-box .title {
  color: #999999;
}
.dark .footer-area.footer-area-5 .footer-widget-box .title {
  color: #999999;
}
.footer-area.footer-area-5 .subscribe-form {
  max-width: 515px;
}
.footer-area.footer-area-5 .subscribe-form .input-field {
  display: flex;
  gap: 10px;
  background-color: var(--white);
  padding: 28px 30px;
  border-radius: 50px;
}
.dark .footer-area.footer-area-5 .subscribe-form .input-field {
  background-color: var(--black);
}
@media only screen and (max-width: 1919px) {
  .footer-area.footer-area-5 .subscribe-form .input-field {
    padding: 18px 30px;
  }
}
.footer-area.footer-area-5 .subscribe-form .input-field input {
  width: 100%;
  background-color: transparent;
  border: 0;
  outline: 0;
  font-size: 22px;
  line-height: 1;
  color: var(--primary);
}
.footer-area.footer-area-5 .subscribe-form .input-field input::placeholder {
  color: rgba(17, 17, 17, 0.3);
}
.dark .footer-area.footer-area-5 .subscribe-form .input-field input::placeholder {
  color: rgba(255, 255, 255, 0.3);
}
.footer-area.footer-area-5 .subscribe-form .input-field i {
  rotate: -45deg;
  font-size: 20px;
  color: var(--primary);
}
.footer-area.footer-area-5 .subscription-text {
  margin-top: 23px;
}
.footer-area.footer-area-5 .subscription-text .text {
  font-size: 22px;
  line-height: 28px;
  color: var(--primary);
  max-width: 345px;
}
.footer-area.footer-area-5 .subscription-text .text a {
  position: relative;
}
.footer-area.footer-area-5 .subscription-text .text a::before {
  transition: all 0.5s;
  width: 100%;
  height: 1px;
  position: absolute;
  bottom: 0;
  left: 0;
  content: "";
  background-color: currentColor;
}
.footer-area.footer-area-5 .subscription-text .text a:hover:hover::before {
  width: 0;
}
.footer-area.footer-area-5 .copyright-text .text a {
  color: #999999;
}
.dark .footer-area.footer-area-5 .copyright-text .text a {
  color: #999999;
}
.footer-area .copyright-area-5 {
  border-top: 1px solid var(--border);
}
.footer-area .footer-widget-wrapper-box {
  border-top: 1px solid rgba(17, 17, 17, 0.1);
  border-bottom: 1px solid rgba(17, 17, 17, 0.1);
  padding: 100px 0px;
  position: relative;
}
.dark .footer-area .footer-widget-wrapper-box {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
@media only screen and (max-width: 1919px) {
  .footer-area .footer-widget-wrapper-box {
    padding: 70px 0;
  }
}
@media only screen and (max-width: 1199px) {
  .footer-area .footer-widget-wrapper-box {
    padding: 50px 0;
  }
}
.footer-area .footer-widget-wrapper-box::before {
  content: "";
  position: absolute;
  right: 795px;
  background-color: rgba(17, 17, 17, 0.1);
  width: 1px;
  height: 100%;
  top: 0;
}
.dark .footer-area .footer-widget-wrapper-box::before {
  background-color: rgba(255, 255, 255, 0.1);
}
@media only screen and (max-width: 1919px) {
  .footer-area .footer-widget-wrapper-box::before {
    right: 670px;
  }
}
@media only screen and (max-width: 1399px) {
  .footer-area .footer-widget-wrapper-box::before {
    right: 580px;
  }
}
@media only screen and (max-width: 1199px) {
  .footer-area .footer-widget-wrapper-box::before {
    right: 480px;
  }
}
@media only screen and (max-width: 991px) {
  .footer-area .footer-widget-wrapper-box::before {
    display: none;
  }
}
.footer-area .footer-widget-wrapper-box .content .title {
  font-size: 90px;
  font-weight: 400;
  line-height: 85px;
  letter-spacing: -3.5px;
  font-family: var(--font_BDOGrotesk);
  color: var(--primary);
  display: inline-block;
}
.dark .footer-area .footer-widget-wrapper-box .content .title {
  color: var(--primary);
}
@media only screen and (max-width: 1919px) {
  .footer-area .footer-widget-wrapper-box .content .title {
    font-size: 80px;
    line-height: 85px;
  }
}
@media only screen and (max-width: 1399px) {
  .footer-area .footer-widget-wrapper-box .content .title {
    font-size: 70px;
    line-height: 74px;
  }
}
@media only screen and (max-width: 1199px) {
  .footer-area .footer-widget-wrapper-box .content .title {
    font-size: 60px;
    line-height: 70px;
  }
}
@media only screen and (max-width: 991px) {
  .footer-area .footer-widget-wrapper-box .content .title {
    font-size: 43px;
    line-height: 50px;
    letter-spacing: 0;
  }
}
@media (max-width: 575px) {
  .footer-area .footer-widget-wrapper-box .content .title {
    font-size: 35px;
    line-height: 45px;
  }
}
.footer-area .footer-widget-wrapper-box .content a {
  color: #111111;
  transition: all 0.3s;
  position: relative;
  font-weight: 400;
  font-size: 18px;
  line-height: 38px;
  letter-spacing: -0.02em;
  color: #111111;
}
.dark .footer-area .footer-widget-wrapper-box .content a {
  color: var(--white);
}
.footer-area .footer-widget-wrapper-box .content a::before {
  width: 100%;
  height: 2px;
  background-color: currentColor;
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  transition: all 0.5s;
  color: #111111;
}
.dark .footer-area .footer-widget-wrapper-box .content a::before {
  color: var(--white);
}
.footer-area .footer-widget-wrapper-box .content a:hover::before {
  width: 0%;
}
.footer-area .footer-widget-wrapper {
  display: grid;
  gap: 30px 170px;
  grid-template-columns: 1fr auto auto auto;
  justify-content: space-between;
}
@media only screen and (max-width: 1919px) {
  .footer-area .footer-widget-wrapper {
    gap: 30px 140px;
  }
}
@media only screen and (max-width: 1399px) {
  .footer-area .footer-widget-wrapper {
    gap: 30px 100px;
  }
}
@media only screen and (max-width: 1199px) {
  .footer-area .footer-widget-wrapper {
    gap: 30px 53px;
  }
}
@media only screen and (max-width: 991px) {
  .footer-area .footer-widget-wrapper {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
}
@media (max-width: 575px) {
  .footer-area .footer-widget-wrapper {
    grid-template-columns: 1fr;
  }
}
.footer-area .footer-widget-box .title {
  font-family: var(--font_body);
  font-weight: 400;
  font-size: 22px;
  line-height: 20px;
  color: #999999;
  margin-bottom: 30px;
  color: #999999;
}
.dark .footer-area .footer-widget-box .title {
  color: #555555;
}
@media only screen and (max-width: 1919px) {
  .footer-area .footer-widget-box .title {
    margin-bottom: 20px;
  }
}
.footer-area .footer-nav-list:hover li a {
  opacity: 0.5;
}
.footer-area .footer-nav-list li {
  font-size: 22px;
  line-height: 30px;
  color: var(--primary);
  transition-property: opacity;
  transition-duration: 500ms;
  list-style: none;
  font-weight: 400;
}
.footer-area .footer-nav-list li a {
  display: block;
}
.footer-area .footer-nav-list li a:hover {
  opacity: 1;
}
.footer-area .footer-nav-list li a:hover a strong {
  opacity: 1;
  top: -23px;
}
.footer-area .footer-nav-list li a a strong {
  opacity: 0;
  transition-property: opacity, top;
  transition-duration: 250ms;
}
.footer-area .copyright-area-inner {
  padding: 48px 0;
}
@media only screen and (max-width: 1919px) {
  .footer-area .copyright-area-inner {
    padding: 38px 0;
  }
}
@media only screen and (max-width: 1399px) {
  .footer-area .copyright-area-inner {
    padding: 28px 0;
  }
}
.footer-area .copyright-text .text {
  font-weight: 400;
  font-size: 22px;
  line-height: 24px;
  color: #111111;
  text-align: center;
}
.dark .footer-area .copyright-text .text {
  color: var(--white);
}
@media only screen and (max-width: 1399px) {
  .footer-area .copyright-text .text {
    font-size: 20px;
  }
}
.footer-area .copyright-text .text a {
  color: #999999;
  transition: all 0.3s;
  position: relative;
}
.dark .footer-area .copyright-text .text a {
  color: #555555;
}
.footer-area .copyright-text .text a::before {
  width: 0%;
  height: 1px;
  background-color: currentColor;
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  transition: all 0.5s;
}
.footer-area .copyright-text .text a:hover {
  color: var(--action);
}
.dark .footer-area .copyright-text .text a:hover {
  color: var(--action);
}
.footer-area .copyright-text .text a:hover::before {
  width: 100%;
}

.footer-area-4__wrapper {
  padding-top: 50px;
  padding-bottom: 30px;
  border-top: 2px solid rgba(255, 255, 255, 0.1);
}
.footer-area-4__content {
  margin-top: 20px;
}
@media only screen and (max-width: 767px) {
  .footer-area-4__content {
    margin-top: 50px;
  }
}
.footer-area-4__content .title {
  font-weight: 400;
  font-size: 30px;
  line-height: 38px;
  color: var(--white);
  font-family: var(--font_body);
}
@media only screen and (max-width: 1919px) {
  .footer-area-4__content .title br {
    display: none;
  }
}
@media only screen and (max-width: 1199px) {
  .footer-area-4__content .title {
    font-size: 27px;
    line-height: 31px;
  }
}
@media only screen and (max-width: 991px) {
  .footer-area-4__content .title {
    font-size: 26px;
    line-height: 31px;
  }
}
.footer-area-4__content a {
  font-weight: 400;
  font-size: 30px;
  line-height: 38px;
  color: rgba(255, 255, 255, 0.5);
  font-family: var(--font_body);
  position: relative;
}
.footer-area-4__content a::before {
  width: 100%;
  height: 1px;
  background-color: currentColor;
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  transition: all 0.5s;
  color: rgba(255, 255, 255, 0.5);
}
.footer-area-4__content a:hover a {
  color: rgba(255, 255, 255, 0.5);
}
.dark .footer-area-4__content a:hover {
  color: rgba(255, 255, 255, 0.5);
}
.footer-area-4__content a:hover::before {
  width: 0%;
}
.footer-area-4 .footer-widget-wrapper-box {
  border-top: 1px solid rgba(17, 17, 17, 0.1);
  border-bottom: 1px solid rgba(17, 17, 17, 0.1);
  margin-top: 50px;
  margin-bottom: 102px;
  position: relative;
}
@media only screen and (max-width: 1199px) {
  .footer-area-4 .footer-widget-wrapper-box {
    margin-bottom: 70px;
  }
}
@media only screen and (max-width: 991px) {
  .footer-area-4 .footer-widget-wrapper-box {
    margin-bottom: 30px;
  }
}
.footer-area-4 .footer-widget-wrapper-box::before {
  content: "";
  position: absolute;
  right: 795px;
  background-color: rgba(17, 17, 17, 0.1);
  width: 1px;
  height: 100%;
  top: 0;
}
@media only screen and (max-width: 1919px) {
  .footer-area-4 .footer-widget-wrapper-box::before {
    right: 670px;
  }
}
@media only screen and (max-width: 1399px) {
  .footer-area-4 .footer-widget-wrapper-box::before {
    right: 580px;
  }
}
@media only screen and (max-width: 1199px) {
  .footer-area-4 .footer-widget-wrapper-box::before {
    right: 480px;
  }
}
@media only screen and (max-width: 991px) {
  .footer-area-4 .footer-widget-wrapper-box::before {
    display: none;
  }
}
.footer-area-4 .footer-widget-wrapper-box .content .title {
  font-size: 90px;
  font-weight: 400;
  line-height: 85px;
  letter-spacing: -3.5px;
  font-family: var(--font_BDOGrotesk);
  color: var(--primary);
  display: inline-block;
}
.dark .footer-area-4 .footer-widget-wrapper-box .content .title {
  color: var(--primary);
}
@media only screen and (max-width: 1919px) {
  .footer-area-4 .footer-widget-wrapper-box .content .title {
    font-size: 80px;
    line-height: 85px;
  }
}
@media only screen and (max-width: 1399px) {
  .footer-area-4 .footer-widget-wrapper-box .content .title {
    font-size: 70px;
    line-height: 74px;
  }
}
@media only screen and (max-width: 1199px) {
  .footer-area-4 .footer-widget-wrapper-box .content .title {
    font-size: 60px;
    line-height: 70px;
  }
}
@media only screen and (max-width: 991px) {
  .footer-area-4 .footer-widget-wrapper-box .content .title {
    font-size: 43px;
    line-height: 50px;
    letter-spacing: 0;
  }
}
@media (max-width: 575px) {
  .footer-area-4 .footer-widget-wrapper-box .content .title {
    font-size: 35px;
    line-height: 45px;
  }
}
.footer-area-4 .footer-widget-wrapper-box .content a {
  color: #111111;
  transition: all 0.3s;
  position: relative;
  font-weight: 400;
  font-size: 18px;
  line-height: 38px;
  letter-spacing: -0.02em;
  color: #111111;
}
.dark .footer-area-4 .footer-widget-wrapper-box .content a {
  color: #555555;
}
.footer-area-4 .footer-widget-wrapper-box .content a::before {
  width: 100%;
  height: 1px;
  background-color: currentColor;
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  transition: all 0.5s;
  color: #111111;
}
.dark .footer-area-4 .footer-widget-wrapper-box .content a:hover {
  color: var(--white);
}
.footer-area-4 .footer-widget-wrapper-box .content a:hover::before {
  width: 0%;
}
@media only screen and (max-width: 991px) {
  .footer-area-4 .footer-widget-box {
    margin-bottom: 40px;
  }
}
@media (max-width: 575px) {
  .footer-area-4 .footer-widget-box {
    margin-bottom: 30px;
  }
}
.footer-area-4 .footer-widget-box .title {
  font-family: var(--font_body);
  font-weight: 400;
  font-size: 22px;
  line-height: 20px;
  color: #999999;
  margin-bottom: 25px;
  color: #999999;
}
.dark .footer-area-4 .footer-widget-box .title {
  color: #555555;
}
@media only screen and (max-width: 1919px) {
  .footer-area-4 .footer-widget-box .title {
    margin-bottom: 20px;
  }
}
.footer-area-4 .footer-nav-list:hover li a {
  opacity: 0.5;
}
.footer-area-4 .footer-nav-list li {
  font-weight: 500;
  font-size: 15px;
  line-height: 21px;
  text-transform: uppercase;
  color: #FFFFFF;
  font-family: var(--font_body);
  transition-property: opacity;
  transition-duration: 500ms;
  list-style: none;
}
.footer-area-4 .footer-nav-list li a {
  display: block;
}
.footer-area-4 .footer-nav-list li a:hover {
  opacity: 1;
}
.footer-area-4 .footer-nav-list li a:hover a strong {
  opacity: 1;
  top: -23px;
}
.footer-area-4 .footer-nav-list li a a strong {
  opacity: 0;
  transition-property: opacity, top;
  transition-duration: 250ms;
}
.footer-area-4 .footer-widget-wrapper {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 98px;
}
@media only screen and (max-width: 767px) {
  .footer-area-4 .footer-widget-wrapper {
    padding-top: 50px;
  }
}
.footer-area-4 .footer-widget-wrapper .widget-header {
  max-width: 400px;
}
@media (max-width: 575px) {
  .footer-area-4 .footer-widget-wrapper .widget-header {
    margin-bottom: 30px;
  }
}
.footer-area-4 .footer-widget-wrapper .widget-header .form-control:focus {
  color: none;
  background-color: none;
  border-color: #111111;
  outline: 0;
  box-shadow: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  font-weight: 400;
  font-size: 15px;
  line-height: 20px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}
.footer-area-4 .footer-widget-wrapper .widget-header .form-control {
  box-shadow: none;
  outline: none;
  background: inherit;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 0px;
  font-weight: 400;
  font-size: 15px;
  line-height: 20px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  padding-left: 0;
  padding-bottom: 16px;
  font-family: var(--font_body);
}
.footer-area-4 .footer-widget-wrapper .widget-header .ts-subscribe-form {
  position: relative;
}
.footer-area-4 .footer-widget-wrapper .widget-header .ts-subscribe-form .submit {
  position: absolute;
  right: 0;
  top: 5px;
  color: var(--white);
  font-size: 15px;
}
.footer-area-4 .footer-widget-wrapper .widget-header .text {
  font-weight: 400;
  font-size: 22px;
  line-height: 28px;
  color: var(--white);
  font-family: var(--font_body);
  margin-top: 29px;
}
.footer-area-4 .footer-widget-wrapper .widget-header .text a {
  font-weight: 400;
  font-size: 22px;
  line-height: 28px;
  color: var(--white);
  font-family: var(--font_body);
  display: inline;
  position: relative;
}
.footer-area-4 .footer-widget-wrapper .widget-header .text a::before {
  width: 100%;
  height: 1px;
  background-color: currentColor;
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  transition: all 0.5s;
  color: var(--white);
}
.footer-area-4 .footer-widget-wrapper .widget-header .text a:hover a {
  color: var(--white);
}
.dark .footer-area-4 .footer-widget-wrapper .widget-header .text a:hover {
  color: var(--white);
}
.footer-area-4 .footer-widget-wrapper .widget-header .text a:hover::before {
  width: 0%;
}
@media only screen and (max-width: 1199px) {
  .footer-area-4 .footer-widget-wrapper .widget-header .text {
    font-size: 20px;
  }
}
.footer-area-4 .footer-widget-wrapper .item-2 {
  margin-left: 100px;
}
@media only screen and (max-width: 991px) {
  .footer-area-4 .footer-widget-wrapper .item-2 {
    margin-left: 0px;
  }
}
.footer-area-4 .footer-widget-wrapper .item-3 {
  margin-left: 84px;
}
@media only screen and (max-width: 1199px) {
  .footer-area-4 .footer-widget-wrapper .item-3 {
    margin-left: 50px;
  }
}
@media only screen and (max-width: 991px) {
  .footer-area-4 .footer-widget-wrapper .item-3 {
    margin-left: 0px;
  }
}
.footer-area-4 .footer-widget-wrapper .item-4 {
  margin-left: 30px;
}
@media only screen and (max-width: 1919px) {
  .footer-area-4 .footer-widget-wrapper .item-4 {
    margin-left: 10px;
  }
}
@media only screen and (max-width: 1399px) {
  .footer-area-4 .footer-widget-wrapper .item-4 {
    margin-left: 0px;
  }
}
.footer-area-4 .footer-4-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-area-4 .footer-4-wrapper .copyright h3 {
  font-weight: 500;
  font-size: 15px;
  line-height: 21px;
  text-transform: uppercase;
  color: #FFFFFF;
  font-family: var(--font_body);
}
.footer-area-4 .footer-4-wrapper .copyright h3 a {
  color: #FFFFFF;
  position: relative;
}
.footer-area-4 .footer-4-wrapper .copyright h3 a::before {
  width: 100%;
  height: 1px;
  background-color: currentColor;
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  transition: all 0.5s;
  color: var(--white);
}
.footer-area-4 .footer-4-wrapper .copyright h3 a:hover a {
  color: var(--white);
}
.dark .footer-area-4 .footer-4-wrapper .copyright h3 a:hover {
  color: var(--white);
}
.footer-area-4 .footer-4-wrapper .copyright h3 a:hover::before {
  width: 0%;
}
.footer-area-4 .footer-4-wrapper .date h4 {
  font-weight: 500;
  font-size: 15px;
  line-height: 21px;
  text-transform: uppercase;
  color: #FFFFFF;
  font-family: var(--font_body);
}

.footer-area-5 {
  background: #141414;
  border-top: 1px solid rgba(252, 247, 243, 0.1);
}
.footer-area-5__wrapper {
  padding-bottom: 30px;
}
.footer-area-5__top .title {
  font-weight: 400;
  font-size: 332.609px;
  line-height: 254px;
  letter-spacing: -0.05em;
  color: var(--white);
  font-family: var(--font_Bayon);
}
@media only screen and (max-width: 1919px) {
  .footer-area-5__top .title {
    font-size: 271px;
    line-height: 221px;
  }
}
@media only screen and (max-width: 1399px) {
  .footer-area-5__top .title {
    font-size: 230px;
    line-height: 221px;
  }
}
@media only screen and (max-width: 1199px) {
  .footer-area-5__top .title {
    font-size: 190px;
    line-height: 114px;
  }
}
@media only screen and (max-width: 991px) {
  .footer-area-5__top .title {
    font-size: 144px;
    line-height: 112px;
  }
}
@media only screen and (max-width: 767px) {
  .footer-area-5__top .title {
    font-size: 110px;
    line-height: 108px;
  }
}
@media (max-width: 575px) {
  .footer-area-5__top .title {
    font-size: 60px;
    line-height: 63px;
  }
}
.footer-area-5 .footer-widget-wrapper-box {
  border-top: 1px solid rgba(17, 17, 17, 0.1);
  border-bottom: 1px solid rgba(17, 17, 17, 0.1);
  margin-bottom: 102px;
  position: relative;
}
@media only screen and (max-width: 1199px) {
  .footer-area-5 .footer-widget-wrapper-box {
    margin-bottom: 70px;
  }
}
@media only screen and (max-width: 991px) {
  .footer-area-5 .footer-widget-wrapper-box {
    margin-bottom: 30px;
  }
}
.footer-area-5 .footer-widget-wrapper-box::before {
  content: "";
  position: absolute;
  right: 795px;
  background-color: rgba(17, 17, 17, 0.1);
  width: 1px;
  height: 100%;
  top: 0;
}
@media only screen and (max-width: 1919px) {
  .footer-area-5 .footer-widget-wrapper-box::before {
    right: 670px;
  }
}
@media only screen and (max-width: 1399px) {
  .footer-area-5 .footer-widget-wrapper-box::before {
    right: 580px;
  }
}
@media only screen and (max-width: 1199px) {
  .footer-area-5 .footer-widget-wrapper-box::before {
    right: 480px;
  }
}
@media only screen and (max-width: 991px) {
  .footer-area-5 .footer-widget-wrapper-box::before {
    display: none;
  }
}
.footer-area-5 .footer-widget-wrapper-box .content .title {
  font-size: 90px;
  font-weight: 400;
  line-height: 85px;
  letter-spacing: -3.5px;
  font-family: var(--font_BDOGrotesk);
  color: var(--primary);
  display: inline-block;
}
.dark .footer-area-5 .footer-widget-wrapper-box .content .title {
  color: var(--primary);
}
@media only screen and (max-width: 1919px) {
  .footer-area-5 .footer-widget-wrapper-box .content .title {
    font-size: 80px;
    line-height: 85px;
  }
}
@media only screen and (max-width: 1399px) {
  .footer-area-5 .footer-widget-wrapper-box .content .title {
    font-size: 70px;
    line-height: 74px;
  }
}
@media only screen and (max-width: 1199px) {
  .footer-area-5 .footer-widget-wrapper-box .content .title {
    font-size: 60px;
    line-height: 70px;
  }
}
@media only screen and (max-width: 991px) {
  .footer-area-5 .footer-widget-wrapper-box .content .title {
    font-size: 43px;
    line-height: 50px;
    letter-spacing: 0;
  }
}
@media (max-width: 575px) {
  .footer-area-5 .footer-widget-wrapper-box .content .title {
    font-size: 35px;
    line-height: 45px;
  }
}
.footer-area-5 .footer-widget-wrapper-box .content a {
  color: #111111;
  transition: all 0.3s;
  position: relative;
  font-weight: 400;
  font-size: 18px;
  line-height: 38px;
  letter-spacing: -0.02em;
  color: #111111;
}
.dark .footer-area-5 .footer-widget-wrapper-box .content a {
  color: #555555;
}
.footer-area-5 .footer-widget-wrapper-box .content a::before {
  width: 100%;
  height: 1px;
  background-color: currentColor;
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  transition: all 0.5s;
  color: #111111;
}
.dark .footer-area-5 .footer-widget-wrapper-box .content a:hover {
  color: var(--white);
}
.footer-area-5 .footer-widget-wrapper-box .content a:hover::before {
  width: 0%;
}
.footer-area-5 .footer-widget-box {
  margin-bottom: 40px;
}
@media (max-width: 575px) {
  .footer-area-5 .footer-widget-box {
    margin-bottom: 30px;
  }
}
.footer-area-5 .footer-widget-box .title {
  font-family: var(--font_body);
  font-weight: 400;
  font-size: 22px;
  line-height: 20px;
  color: #999999;
  margin-bottom: 25px;
  color: #999999;
}
.dark .footer-area-5 .footer-widget-box .title {
  color: #555555;
}
@media only screen and (max-width: 1919px) {
  .footer-area-5 .footer-widget-box .title {
    margin-bottom: 20px;
  }
}
.footer-area-5 .footer-nav-list:hover li a {
  opacity: 0.5;
}
.footer-area-5 .footer-nav-list li {
  font-weight: 500;
  font-size: 15px;
  line-height: 21px;
  text-transform: uppercase;
  color: #FFFFFF;
  font-family: var(--font_body);
  transition-property: opacity;
  transition-duration: 500ms;
  list-style: none;
}
.footer-area-5 .footer-nav-list li a {
  display: block;
}
.footer-area-5 .footer-nav-list li a:hover {
  opacity: 1;
}
.footer-area-5 .footer-nav-list li a:hover a strong {
  opacity: 1;
  top: -23px;
}
.footer-area-5 .footer-nav-list li a a strong {
  opacity: 0;
  transition-property: opacity, top;
  transition-duration: 250ms;
}
.footer-area-5 .footer-widget-wrapper {
  padding-top: 68px;
}
@media only screen and (max-width: 767px) {
  .footer-area-5 .footer-widget-wrapper {
    padding-top: 50px;
  }
}
.footer-area-5 .footer-widget-wrapper .widget-header {
  max-width: 400px;
}
@media (max-width: 575px) {
  .footer-area-5 .footer-widget-wrapper .widget-header {
    margin-bottom: 30px;
  }
}
.footer-area-5 .footer-widget-wrapper .widget-header .form-control:focus {
  color: none;
  background-color: none;
  border-color: #111111;
  outline: 0;
  box-shadow: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  font-weight: 400;
  font-size: 15px;
  line-height: 20px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}
.footer-area-5 .footer-widget-wrapper .widget-header .form-control {
  box-shadow: none;
  outline: none;
  background: inherit;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 0px;
  font-weight: 400;
  font-size: 15px;
  line-height: 20px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  padding-left: 0;
  padding-bottom: 16px;
  font-family: var(--font_body);
}
.footer-area-5 .footer-widget-wrapper .widget-header .ts-subscribe-form {
  position: relative;
}
.footer-area-5 .footer-widget-wrapper .widget-header .ts-subscribe-form .submit {
  position: absolute;
  right: 0;
  top: 5px;
  color: var(--white);
  font-size: 15px;
}
.footer-area-5 .footer-widget-wrapper .widget-header .text {
  font-weight: 400;
  font-size: 22px;
  line-height: 28px;
  color: var(--white);
  font-family: var(--font_body);
  margin-top: 29px;
}
.footer-area-5 .footer-widget-wrapper .widget-header .text a {
  font-weight: 400;
  font-size: 22px;
  line-height: 28px;
  color: var(--white);
  font-family: var(--font_body);
  display: inline;
  position: relative;
}
.footer-area-5 .footer-widget-wrapper .widget-header .text a::before {
  width: 100%;
  height: 1px;
  background-color: currentColor;
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  transition: all 0.5s;
  color: var(--white);
}
.footer-area-5 .footer-widget-wrapper .widget-header .text a:hover a {
  color: var(--white);
}
.dark .footer-area-5 .footer-widget-wrapper .widget-header .text a:hover {
  color: var(--white);
}
.footer-area-5 .footer-widget-wrapper .widget-header .text a:hover::before {
  width: 0%;
}
@media only screen and (max-width: 1199px) {
  .footer-area-5 .footer-widget-wrapper .widget-header .text {
    font-size: 20px;
  }
}
.footer-area-5 .footer-widget-wrapper .item-2 {
  margin-left: 100px;
}
@media only screen and (max-width: 991px) {
  .footer-area-5 .footer-widget-wrapper .item-2 {
    margin-left: 0px;
  }
}
.footer-area-5 .footer-widget-wrapper .item-3 {
  margin-left: 84px;
}
@media only screen and (max-width: 1199px) {
  .footer-area-5 .footer-widget-wrapper .item-3 {
    margin-left: 50px;
  }
}
@media only screen and (max-width: 991px) {
  .footer-area-5 .footer-widget-wrapper .item-3 {
    margin-left: 0px;
  }
}
.footer-area-5 .footer-widget-wrapper .item-4 {
  margin-left: 30px;
}
@media only screen and (max-width: 1919px) {
  .footer-area-5 .footer-widget-wrapper .item-4 {
    margin-left: 10px;
  }
}
@media only screen and (max-width: 1399px) {
  .footer-area-5 .footer-widget-wrapper .item-4 {
    margin-left: 0px;
  }
}
.footer-area-5 .footer-4-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-area-5 .footer-4-wrapper .copyright h3 {
  font-weight: 500;
  font-size: 15px;
  line-height: 21px;
  text-transform: uppercase;
  color: #FFFFFF;
  font-family: var(--font_body);
}
.footer-area-5 .footer-4-wrapper .copyright h3 a {
  color: #FFFFFF;
  position: relative;
}
.footer-area-5 .footer-4-wrapper .copyright h3 a::before {
  width: 100%;
  height: 1px;
  background-color: currentColor;
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  transition: all 0.5s;
  color: var(--white);
}
.footer-area-5 .footer-4-wrapper .copyright h3 a:hover a {
  color: var(--white);
}
.dark .footer-area-5 .footer-4-wrapper .copyright h3 a:hover {
  color: var(--white);
}
.footer-area-5 .footer-4-wrapper .copyright h3 a:hover::before {
  width: 0%;
}
.footer-area-5 .footer-4-wrapper .date h4 {
  font-weight: 500;
  font-size: 15px;
  line-height: 21px;
  text-transform: uppercase;
  color: #FFFFFF;
  font-family: var(--font_body);
}

.footer-area-6 {
  border: 1px solid rgba(17, 17, 17, 0.1);
  padding-bottom: 30px;
  padding-top: 88px;
}
.dark .footer-area-6 {
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-area-6 .footer-widget-wrapper-box {
  margin-bottom: 112px;
  position: relative;
  display: grid;
  grid-template-columns: 440px 1fr 440px;
}
@media only screen and (max-width: 1399px) {
  .footer-area-6 .footer-widget-wrapper-box {
    grid-template-columns: 370px 1fr 370px;
  }
}
@media only screen and (max-width: 1199px) {
  .footer-area-6 .footer-widget-wrapper-box {
    margin-bottom: 70px;
    grid-template-columns: 300px 1fr 300px;
  }
}
@media only screen and (max-width: 991px) {
  .footer-area-6 .footer-widget-wrapper-box {
    grid-template-columns: 400px 1fr;
    margin-bottom: 30px;
    padding-top: 0px;
  }
}
@media only screen and (max-width: 767px) {
  .footer-area-6 .footer-widget-wrapper-box {
    grid-template-columns: 1fr;
    gap: 30px;
    padding-top: 0px;
  }
}
.footer-area-6 .footer-widget-wrapper-box .content .title {
  font-size: 90px;
  font-weight: 400;
  line-height: 85px;
  letter-spacing: -3.5px;
  font-family: var(--font_BDOGrotesk);
  color: var(--primary);
  display: inline-block;
}
.dark .footer-area-6 .footer-widget-wrapper-box .content .title {
  color: var(--primary);
}
@media only screen and (max-width: 1919px) {
  .footer-area-6 .footer-widget-wrapper-box .content .title {
    font-size: 80px;
    line-height: 85px;
  }
}
@media only screen and (max-width: 1399px) {
  .footer-area-6 .footer-widget-wrapper-box .content .title {
    font-size: 70px;
    line-height: 74px;
  }
}
@media only screen and (max-width: 1199px) {
  .footer-area-6 .footer-widget-wrapper-box .content .title {
    font-size: 60px;
    line-height: 70px;
  }
}
@media only screen and (max-width: 991px) {
  .footer-area-6 .footer-widget-wrapper-box .content .title {
    font-size: 43px;
    line-height: 50px;
    letter-spacing: 0;
  }
}
@media (max-width: 575px) {
  .footer-area-6 .footer-widget-wrapper-box .content .title {
    font-size: 35px;
    line-height: 45px;
  }
}
.footer-area-6 .footer-widget-wrapper-box .content a {
  color: #111111;
  transition: all 0.3s;
  position: relative;
  font-weight: 400;
  font-size: 18px;
  line-height: 38px;
  letter-spacing: -0.02em;
  color: #111111;
}
.dark .footer-area-6 .footer-widget-wrapper-box .content a {
  color: #555555;
}
.footer-area-6 .footer-widget-wrapper-box .content a::before {
  width: 100%;
  height: 1px;
  background-color: currentColor;
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  transition: all 0.5s;
  color: #111111;
}
.dark .footer-area-6 .footer-widget-wrapper-box .content a:hover {
  color: var(--white);
}
.footer-area-6 .footer-widget-wrapper-box .content a:hover::before {
  width: 0%;
}
.footer-area-6__wrapper .footer-center {
  text-align: center;
}
.footer-area-6__wrapper .footer-center .decs {
  font-weight: 500;
  font-size: 16px;
  line-height: 22px;
  letter-spacing: -0.03em;
  color: #555555;
  margin-top: 15px;
}
.dark .footer-area-6__wrapper .footer-center .decs {
  color: #999999;
}
.footer-area-6__wrapper .widget-header {
  max-width: 400px;
  position: relative;
}
.footer-area-6__wrapper .widget-header::before {
  position: absolute;
  content: "";
  right: -40px;
  top: -88px;
  background: rgba(17, 17, 17, 0.1);
  height: 623px;
  width: 1px;
}
.dark .footer-area-6__wrapper .widget-header::before {
  background: rgba(255, 255, 255, 0.1);
}
@media only screen and (max-width: 991px) {
  .footer-area-6__wrapper .widget-header::before {
    display: none;
  }
}
@media (max-width: 575px) {
  .footer-area-6__wrapper .widget-header {
    margin-bottom: 30px;
  }
}
.footer-area-6__wrapper .widget-header .form-control:focus {
  color: rgba(255, 255, 255, 0.5);
  background-color: none;
  border-color: #111111;
  outline: 0;
  box-shadow: none;
  border-bottom: 1px solid rgba(17, 17, 17, 0.1);
  font-weight: 400;
  font-size: 15px;
  line-height: 20px;
  text-transform: uppercase;
  color: #555555;
}
.footer-area-6__wrapper .widget-header .form-control {
  box-shadow: none;
  outline: none;
  background: inherit;
  border: none;
  border-bottom: 1px solid rgba(17, 17, 17, 0.1);
  border-radius: 0px;
  font-weight: 400;
  font-size: 15px;
  line-height: 20px;
  text-transform: uppercase;
  color: #555555;
  padding-left: 0;
  padding-bottom: 16px;
  font-family: var(--font_body);
}
.dark .footer-area-6__wrapper .widget-header .form-control {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.footer-area-6__wrapper .widget-header .ts-subscribe-form {
  position: relative;
}
.footer-area-6__wrapper .widget-header .ts-subscribe-form .submit {
  position: absolute;
  right: 0;
  top: 5px;
  color: #111111;
  font-size: 15px;
}
.dark .footer-area-6__wrapper .widget-header .ts-subscribe-form .submit i {
  color: #FCF7F3;
}
.footer-area-6__wrapper .widget-header .text {
  font-weight: 400;
  font-size: 22px;
  line-height: 28px;
  color: var(--primary);
  font-family: var(--font_body);
  margin-top: 29px;
}
.footer-area-6__wrapper .widget-header .text a {
  font-weight: 400;
  font-size: 22px;
  line-height: 28px;
  color: var(--primary);
  font-family: var(--font_body);
  display: inline;
  position: relative;
}
.footer-area-6__wrapper .widget-header .text a::before {
  width: 100%;
  height: 1px;
  background-color: currentColor;
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  transition: all 0.5s;
  color: var(--primary);
}
.footer-area-6__wrapper .widget-header .text a:hover a {
  color: var(--primary);
}
.dark .footer-area-6__wrapper .widget-header .text a:hover {
  color: var(--primary);
}
.footer-area-6__wrapper .widget-header .text a:hover::before {
  width: 0%;
}
@media only screen and (max-width: 1199px) {
  .footer-area-6__wrapper .widget-header .text {
    font-size: 20px;
  }
}
.footer-area-6 .footer-widget-wrapper {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  position: relative;
  padding-left: 40px;
}
.footer-area-6 .footer-widget-wrapper::before {
  position: absolute;
  content: "";
  left: 0;
  top: -88px;
  background: rgba(17, 17, 17, 0.1);
  height: 623px;
  width: 1px;
}
.dark .footer-area-6 .footer-widget-wrapper::before {
  background: rgba(255, 255, 255, 0.1);
}
@media only screen and (max-width: 991px) {
  .footer-area-6 .footer-widget-wrapper::before {
    display: none;
  }
}
@media only screen and (max-width: 991px) {
  .footer-area-6 .footer-widget-wrapper {
    padding-left: 0;
    margin-top: 40px;
  }
}
.footer-area-6 .footer-widget-box {
  margin-bottom: 122px;
}
@media only screen and (max-width: 1199px) {
  .footer-area-6 .footer-widget-box {
    margin-bottom: 70px;
  }
}
@media only screen and (max-width: 767px) {
  .footer-area-6 .footer-widget-box {
    margin-bottom: 50px;
  }
}
.footer-area-6 .footer-widget-box .title {
  font-family: var(--font_body);
  font-weight: 400;
  font-size: 22px;
  line-height: 20px;
  color: #999999;
  margin-bottom: 25px;
  color: #555555;
}
.dark .footer-area-6 .footer-widget-box .title {
  color: #555555;
}
@media only screen and (max-width: 1919px) {
  .footer-area-6 .footer-widget-box .title {
    margin-bottom: 20px;
  }
}
.footer-area-6 .footer-nav-list:hover li a {
  opacity: 0.5;
}
.footer-area-6 .footer-nav-list li {
  font-weight: 400;
  font-size: 18px;
  line-height: 24px;
  color: var(--primary);
  font-family: var(--font_body);
  transition-property: opacity;
  transition-duration: 500ms;
  list-style: none;
}
.dark .footer-area-6 .footer-nav-list li {
  color: #FCF7F3;
}
.footer-area-6 .footer-nav-list li a {
  display: block;
}
.footer-area-6 .footer-nav-list li a:hover {
  opacity: 1;
}
.footer-area-6 .footer-nav-list li a:hover a strong {
  opacity: 1;
  top: -23px;
}
.footer-area-6 .footer-nav-list li a a strong {
  opacity: 0;
  transition-property: opacity, top;
  transition-duration: 250ms;
}
.footer-area-6 .footer-widget-wrapper .widget-header {
  max-width: 400px;
}
@media (max-width: 575px) {
  .footer-area-6 .footer-widget-wrapper .widget-header {
    margin-bottom: 30px;
  }
}
.footer-area-6 .footer-widget-wrapper .widget-header .form-control:focus {
  color: none;
  background-color: none;
  border-color: #111111;
  outline: 0;
  box-shadow: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  font-weight: 400;
  font-size: 15px;
  line-height: 20px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}
.footer-area-6 .footer-widget-wrapper .widget-header .form-control {
  box-shadow: none;
  outline: none;
  background: inherit;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 0px;
  font-weight: 400;
  font-size: 15px;
  line-height: 20px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  padding-left: 0;
  padding-bottom: 16px;
  font-family: var(--font_body);
}
.footer-area-6 .footer-widget-wrapper .widget-header .ts-subscribe-form {
  position: relative;
}
.footer-area-6 .footer-widget-wrapper .widget-header .ts-subscribe-form .submit {
  position: absolute;
  right: 0;
  top: 5px;
  color: var(--white);
  font-size: 15px;
}
.footer-area-6 .footer-widget-wrapper .widget-header .text {
  font-weight: 400;
  font-size: 22px;
  line-height: 28px;
  color: var(--white);
  font-family: var(--font_body);
  margin-top: 29px;
}
.footer-area-6 .footer-widget-wrapper .widget-header .text a {
  font-weight: 400;
  font-size: 22px;
  line-height: 28px;
  color: var(--white);
  font-family: var(--font_body);
  display: inline;
  position: relative;
}
.footer-area-6 .footer-widget-wrapper .widget-header .text a::before {
  width: 100%;
  height: 1px;
  background-color: currentColor;
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  transition: all 0.5s;
  color: var(--white);
}
.footer-area-6 .footer-widget-wrapper .widget-header .text a:hover a {
  color: var(--white);
}
.dark .footer-area-6 .footer-widget-wrapper .widget-header .text a:hover {
  color: var(--white);
}
.footer-area-6 .footer-widget-wrapper .widget-header .text a:hover::before {
  width: 0%;
}
@media only screen and (max-width: 1199px) {
  .footer-area-6 .footer-widget-wrapper .widget-header .text {
    font-size: 20px;
  }
}
.footer-area-6 .widget-header .footer-widget-box .footer-nav-list li {
  font-weight: 500;
  font-size: 15px;
  line-height: 21px;
  text-transform: uppercase;
  color: #111111;
}
.dark .footer-area-6 .widget-header .footer-widget-box .footer-nav-list li {
  color: #FCF7F3;
}
.footer-area-6 .footer-6-wrapper-box {
  border-top: 1px solid rgba(17, 17, 17, 0.1);
  padding-top: 33px;
}
.dark .footer-area-6 .footer-6-wrapper-box {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-area-6 .footer-6-wrapper-box .footer-6-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-area-6 .footer-6-wrapper-box .footer-6-wrapper .copyright h3 {
  font-weight: 500;
  font-size: 15px;
  line-height: 21px;
  text-transform: uppercase;
  color: #111111;
  font-family: var(--font_body);
}
.dark .footer-area-6 .footer-6-wrapper-box .footer-6-wrapper .copyright h3 {
  color: #FCF7F3;
}
.footer-area-6 .footer-6-wrapper-box .footer-6-wrapper .copyright h3 a {
  color: #111111;
  position: relative;
}
.dark .footer-area-6 .footer-6-wrapper-box .footer-6-wrapper .copyright h3 a {
  color: #FCF7F3;
}
.footer-area-6 .footer-6-wrapper-box .footer-6-wrapper .copyright h3 a::before {
  width: 100%;
  height: 1px;
  background-color: currentColor;
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  transition: all 0.5s;
  color: var(--primary);
}
.footer-area-6 .footer-6-wrapper-box .footer-6-wrapper .copyright h3 a:hover a {
  color: var(--primary);
}
.dark .footer-area-6 .footer-6-wrapper-box .footer-6-wrapper .copyright h3 a:hover {
  color: var(--white);
}
.footer-area-6 .footer-6-wrapper-box .footer-6-wrapper .copyright h3 a:hover::before {
  width: 0%;
}
.footer-area-6 .footer-6-wrapper-box .footer-6-wrapper .date h4 {
  font-weight: 500;
  font-size: 15px;
  line-height: 21px;
  text-transform: uppercase;
  color: #111111;
  font-family: var(--font_body);
}
.dark .footer-area-6 .footer-6-wrapper-box .footer-6-wrapper .date h4 {
  color: #FCF7F3;
}
.footer-area-6 .footer-6-wrapper-box .footer-6-wrapper .footer-6-social ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.footer-area-6 .footer-6-wrapper-box .footer-6-wrapper .footer-6-social ul li {
  list-style: none;
  color: #111111;
}
.footer-area-6 .footer-6-wrapper-box .footer-6-wrapper .footer-6-social ul li a i {
  font-size: 16px;
}
.dark .footer-area-6 .footer-6-wrapper-box .footer-6-wrapper .footer-6-social ul li a i {
  color: #FCF7F3;
}

.footer-area-10 {
  background: #FCF7F3;
  border-top: 1px solid rgba(17, 17, 17, 0.1);
  overflow: hidden;
}
.dark .footer-area-10 {
  background: #141414;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.about__wrapper {
  border-bottom: 1px solid rgba(17, 17, 17, 0.1);
  border-top: 14px solid #FF6A3A;
}
.dark .about__wrapper {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.about__item-box {
  display: grid;
  grid-template-columns: 565px 1fr;
  padding-bottom: 50px;
}
@media only screen and (max-width: 1399px) {
  .about__item-box {
    grid-template-columns: 430px 1fr;
  }
}
@media only screen and (max-width: 1199px) {
  .about__item-box {
    grid-template-columns: 320px 1fr;
  }
}
@media only screen and (max-width: 991px) {
  .about__item-box {
    grid-template-columns: 1fr;
  }
}
.about__item-box .counter__item {
  display: flex;
  align-items: center;
  margin-top: 45px;
}
@media only screen and (max-width: 991px) {
  .about__item-box .counter__item {
    margin-top: 0;
  }
}
.about__item-box .counter__item h2 {
  font-weight: 500;
  font-size: 64px;
  line-height: 0.8;
  color: var(--primary);
  font-family: var(--font_BDOGrotesk);
  display: flex;
  align-items: center;
  letter-spacing: -4px;
}
.about__item-box .counter__item h2 span {
  font-weight: 500;
  font-size: 64px;
  line-height: 0.8;
  color: var(--primary);
  font-family: var(--font_BDOGrotesk);
  letter-spacing: -4.6px;
}
.about__item-box .counter__item h3 {
  font-weight: 500;
  font-size: 64px;
  line-height: 1;
  color: var(--primary);
  font-family: var(--font_BDOGrotesk);
  margin-left: 20px;
  letter-spacing: -1px;
}
.about__item-box .counter__box {
  position: relative;
}
.about__item-box .counter__box::before {
  content: "";
  position: absolute;
  right: 0;
  top: -41.5%;
  height: 526px;
  width: 1px;
  background: rgba(17, 17, 17, 0.1);
}
.dark .about__item-box .counter__box::before {
  background: rgba(255, 255, 255, 0.1);
}
@media only screen and (max-width: 1199px) {
  .about__item-box .counter__box::before {
    top: -47.5%;
    height: 487px;
  }
}
@media only screen and (max-width: 991px) {
  .about__item-box .counter__box::before {
    display: none;
  }
}
.about__item-box .counter__box .decs {
  font-weight: 500;
  font-size: 16px;
  line-height: 25px;
  color: #999999;
  font-family: var(--font_body);
  margin-top: 5px;
}
.about__content {
  margin-left: 98px;
}
@media only screen and (max-width: 1919px) {
  .about__content {
    margin-left: 50px;
  }
}
@media only screen and (max-width: 1199px) {
  .about__content {
    margin-left: 30px;
  }
}
@media only screen and (max-width: 991px) {
  .about__content {
    margin-left: 0px;
    margin-top: 40px;
  }
}
@media (max-width: 575px) {
  .about__content {
    margin-left: 0px;
    margin-top: 30px;
  }
}
.about__content .title {
  font-weight: 500;
  font-size: 48px;
  line-height: 58px;
  letter-spacing: -0.05em;
  color: var(--primary);
  margin-bottom: 23px;
}
@media only screen and (max-width: 1919px) {
  .about__content .title {
    font-size: 43px;
    line-height: 58px;
  }
  .about__content .title br {
    display: none;
  }
}
@media only screen and (max-width: 1199px) {
  .about__content .title {
    font-size: 38px;
    line-height: 48px;
  }
}
@media only screen and (max-width: 991px) {
  .about__content .title {
    font-size: 36px;
    line-height: 42px;
  }
}
@media only screen and (max-width: 767px) {
  .about__content .title {
    font-size: 33px;
    line-height: 40px;
  }
}
@media (max-width: 575px) {
  .about__content .title {
    font-size: 26px;
    line-height: 30px;
  }
}
.about__content .decs {
  font-weight: 500;
  font-size: 16px;
  line-height: 27px;
  letter-spacing: -0.03em;
  color: rgba(17, 17, 17, 0.5);
}
.dark .about__content .decs {
  color: rgba(255, 255, 255, 0.5);
}
@media only screen and (max-width: 1199px) {
  .about__content .decs br {
    display: none;
  }
}

.banner-img {
  overflow: hidden;
}
.banner-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-section-2__area .section-2-info {
  gap: 211px;
}
@media only screen and (max-width: 1199px) {
  .about-section-2__area .section-2-info {
    gap: 100px;
  }
}
@media only screen and (max-width: 991px) {
  .about-section-2__area .section-2-info {
    gap: 40px;
  }
}
@media only screen and (max-width: 767px) {
  .about-section-2__area .section-2-info {
    gap: 30px;
  }
}
.about-section-2__wrapper {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
@media only screen and (max-width: 1199px) {
  .about-section-2__wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 575px) {
  .about-section-2__wrapper {
    grid-template-columns: repeat(1, 1fr);
  }
}
.about-section-2__wrapper .item-1 a {
  margin-top: 10px;
  padding: 30px 30px;
  background: #1A1A1A;
  padding: 30px 30px;
  display: inline-block;
  border-radius: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 500;
  font-size: 16px;
  line-height: 16px;
  text-transform: uppercase;
  color: #FFFFFF;
  position: relative;
}
.about-section-2__wrapper .item-1 a i {
  font-size: 30px;
  font-weight: 400;
}
.about-section-2__wrapper .item-1 a::before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  height: 100%;
  width: 0;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-in-out;
}
.about-section-2__wrapper .item-1 a:hover {
  z-index: 1;
}
.about-section-2__wrapper .item-1 a:hover::before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  transition: all 0.4s ease-in-out;
  opacity: 1;
  visibility: visible;
  z-index: -1;
}
.about-section-2__wrapper .item-2 a {
  margin-top: 10px;
  padding: 30px 30px;
  background: #FF6A3A;
  padding: 30px 30px;
  display: inline-block;
  border-radius: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 500;
  font-size: 16px;
  line-height: 16px;
  text-transform: uppercase;
  color: #FFFFFF;
  position: relative;
}
.about-section-2__wrapper .item-2 a i {
  font-size: 30px;
  font-weight: 400;
}
.about-section-2__wrapper .item-2 a::before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  height: 100%;
  width: 0;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-in-out;
}
.about-section-2__wrapper .item-2 a:hover {
  z-index: 1;
}
.about-section-2__wrapper .item-2 a:hover::before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  transition: all 0.4s ease-in-out;
  opacity: 1;
  visibility: visible;
  z-index: -1;
}
.about-section-2__wrapper .item-2 .about-section-2__card {
  background: #FF6A3A;
}
.about-section-2__wrapper .item-3 a {
  margin-top: 10px;
  padding: 30px 30px;
  background: #F1F1F1;
  padding: 30px 30px;
  display: inline-block;
  border-radius: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 500;
  font-size: 16px;
  line-height: 16px;
  text-transform: uppercase;
  color: var(--primary);
  position: relative;
}
.dark .about-section-2__wrapper .item-3 a {
  color: #111111;
}
.about-section-2__wrapper .item-3 a i {
  font-size: 30px;
  font-weight: 400;
  color: var(--primary);
}
.dark .about-section-2__wrapper .item-3 a i {
  color: #111111;
}
.about-section-2__wrapper .item-3 a::before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  height: 100%;
  width: 0;
  background: rgba(17, 17, 17, 0.1);
  border-radius: 20px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-in-out;
}
.about-section-2__wrapper .item-3 a:hover {
  z-index: 1;
}
.about-section-2__wrapper .item-3 a:hover::before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background: rgba(17, 17, 17, 0.1);
  border-radius: 20px;
  transition: all 0.4s ease-in-out;
  opacity: 1;
  visibility: visible;
  z-index: -1;
}
.about-section-2__wrapper .item-3 .about-section-2__card {
  background: #F1F1F1;
}
.about-section-2__wrapper .item-3 .about-section-2__card .decs {
  color: var(--primary);
}
.dark .about-section-2__wrapper .item-3 .about-section-2__card .decs {
  color: #111111;
}
.about-section-2__wrapper .item-3 .about-section-2__card .odometer {
  color: var(--primary);
}
.dark .about-section-2__wrapper .item-3 .about-section-2__card .odometer {
  color: #111111;
}
.about-section-2__card {
  background: #1A1A1A;
  padding: 47px 50px 31px 50px;
  border-radius: 20px;
}
@media only screen and (max-width: 767px) {
  .about-section-2__card {
    padding: 47px 30px 31px 30px;
  }
}
.about-section-2__card .decs {
  font-weight: 400;
  font-size: 30px;
  line-height: 28px;
  color: #FFFFFF;
  margin-bottom: 44px;
}
.about-section-2__card h2 {
  position: relative;
  margin-left: -13px;
}
.about-section-2__card h2 .plus {
  font-weight: 400;
  font-size: 50px;
  line-height: 100px;
  letter-spacing: -0.05em;
  color: #FFFFFF;
  position: absolute;
  bottom: -9%;
}
.about-section-2__card .odometer {
  font-family: var(--font_BDOGrotesk);
  font-weight: 400;
  font-size: 110px;
  line-height: 1;
  letter-spacing: -0.05em;
  color: #FFFFFF;
  margin-right: 10px;
}
@media only screen and (max-width: 1399px) {
  .about-section-2__card .odometer {
    font-size: 87px;
    line-height: 1;
  }
}
.about-section-2__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}

.about-section-4__wrapper {
  text-align: center;
}
.about-section-4__content {
  margin-top: 27px;
  margin-bottom: 59px;
}
@media only screen and (max-width: 767px) {
  .about-section-4__content {
    margin-bottom: 40px;
  }
}
.about-section-4__content .title {
  font-weight: 400;
  font-size: 64px;
  line-height: 75px;
  letter-spacing: -0.05em;
  color: rgba(255, 255, 255, 0.4);
}
.about-section-4__content .title span {
  color: rgba(255, 255, 255, 0.4);
}
@media only screen and (max-width: 1199px) {
  .about-section-4__content .title span br {
    display: none;
  }
}
@media only screen and (max-width: 1399px) {
  .about-section-4__content .title {
    font-size: 50px;
    line-height: 60px;
  }
}
@media only screen and (max-width: 1199px) {
  .about-section-4__content .title {
    font-size: 50px;
    line-height: 60px;
  }
  .about-section-4__content .title br {
    display: none;
  }
}
@media only screen and (max-width: 767px) {
  .about-section-4__content .title {
    font-size: 43px;
    line-height: 46px;
  }
}
@media (max-width: 575px) {
  .about-section-4__content .title {
    font-size: 31px;
    line-height: 34px;
  }
}
.about-section-4__btn .rr-btn {
  background: var(--white);
  padding: 26px 44px;
}
.about-section-4__btn .rr-btn .text-one {
  font-weight: 500;
  font-size: 18px;
  line-height: 18px;
  letter-spacing: -0.02em;
  color: var(--primary);
  font-family: var(--font_body);
}

.about-section-5__wrapper {
  position: relative;
}
.about-section-5__wrapper .shapes {
  padding-bottom: 60px;
}
@media only screen and (max-width: 767px) {
  .about-section-5__wrapper .shapes {
    display: none;
  }
}
.about-section-5__wrapper .shapes .shape-1 {
  position: absolute;
  top: -10px;
  left: 0;
}
@media only screen and (max-width: 991px) {
  .about-section-5__wrapper .shapes .shape-1 {
    top: 20px;
  }
}
.about-section-5__wrapper .shapes .shape-2 {
  position: absolute;
  bottom: -80px;
  left: 0;
}
@media only screen and (max-width: 991px) {
  .about-section-5__wrapper .shapes .shape-2 {
    bottom: -50px;
  }
}
.about-section-5__wrapper .shapes .shape-3 {
  position: absolute;
  top: -35px;
  left: 40px;
}
@media only screen and (max-width: 1399px) {
  .about-section-5__wrapper .shapes .shape-3 {
    left: 15px;
  }
}
@media only screen and (max-width: 1399px) and (max-width: 991px) {
  .about-section-5__wrapper .shapes .shape-3 {
    left: 10px;
  }
}
.about-section-5__wrapper .shapes .shape-4 {
  position: absolute;
  top: -35px;
  right: 40px;
}
@media only screen and (max-width: 1399px) {
  .about-section-5__wrapper .shapes .shape-4 {
    right: 15px;
  }
}
@media only screen and (max-width: 991px) {
  .about-section-5__wrapper .shapes .shape-4 {
    right: 10px;
  }
}
.about-section-5__content {
  text-align: center;
}
.about-section-5__content .title {
  font-weight: 400;
  font-size: 48px;
  line-height: 48px;
  letter-spacing: -0.05em;
  color: var(--primary);
  margin-bottom: 65px;
}
@media only screen and (max-width: 1919px) {
  .about-section-5__content .title {
    font-size: 42px;
    line-height: 48px;
  }
}
@media only screen and (max-width: 1399px) {
  .about-section-5__content .title br {
    display: none;
  }
}
@media only screen and (max-width: 1199px) {
  .about-section-5__content .title {
    font-size: 35px;
    line-height: 40px;
  }
}
@media only screen and (max-width: 991px) {
  .about-section-5__content .title {
    font-size: 36px;
    line-height: 38px;
    margin-bottom: 35px;
  }
}
@media (max-width: 575px) {
  .about-section-5__content .title {
    font-size: 29px;
    line-height: 32px;
    margin-bottom: 35px;
  }
}
.about-section-5__btn {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
.about-section-5__btn .rr-btn {
  padding: 21px 44px;
}
.dark .about-section-5__btn .rr-btn {
  background: var(--white);
}
.dark .about-section-5__btn .rr-btn .text-one {
  color: #111111;
}
.about-section-5__btn .rr-btn-2 {
  padding: 21px 44px;
  background: #FF6A3A;
  position: relative;
}

.about-page .team-section-4__item .team-section-4__content .title {
  font-weight: 400;
  font-size: 24px;
  line-height: 35px;
  letter-spacing: -0.05em;
  color: var(--primary);
}
.about-page .team-section-4__item .team-section-4__content .text {
  font-weight: 400;
  font-size: 18px;
  line-height: 35px;
  letter-spacing: -0.02em;
  color: rgba(17, 17, 17, 0.5);
}

.about__page {
  padding-top: 70px;
}
.about__page-content-box {
  display: grid;
  grid-template-columns: 1fr 770px;
  gap: 30px;
}
@media only screen and (max-width: 1199px) {
  .about__page-content-box {
    grid-template-columns: 1fr 600px;
  }
}
@media only screen and (max-width: 991px) {
  .about__page-content-box {
    grid-template-columns: 1fr 500px;
  }
}
@media only screen and (max-width: 767px) {
  .about__page-content-box {
    grid-template-columns: 1fr;
  }
}
.about__page-content-box .sub-content .sub-title {
  font-weight: 500;
  font-size: 18px;
  line-height: 25px;
  letter-spacing: -0.02em;
  color: #FF6A3A;
  font-family: var(--font_body);
}
.about__page-content-box .content .decs {
  margin-bottom: 35px;
}
.about__page-content-box .content p {
  font-weight: 400;
  font-size: 30px;
  line-height: 38px;
  color: var(--primary);
}
@media only screen and (max-width: 1199px) {
  .about__page-content-box .content p br {
    display: none;
  }
}
@media only screen and (max-width: 991px) {
  .about__page-content-box .content p {
    font-size: 26px;
    line-height: 30px;
  }
}
@media (max-width: 575px) {
  .about__page-content-box .content p {
    font-size: 23px;
    line-height: 27px;
  }
}
.about__page-list {
  margin-top: 365px;
}
@media only screen and (max-width: 991px) {
  .about__page-list {
    margin-top: 300px;
  }
}
@media only screen and (max-width: 767px) {
  .about__page-list {
    margin-top: 30px;
  }
}
.about__page-list ul li {
  font-weight: 400;
  font-size: 30px;
  line-height: 35px;
  letter-spacing: -0.07em;
  color: var(--primary);
  font-family: var(--font_BDOGrotesk);
  list-style: none;
  position: relative;
  padding-left: 15px;
  margin-bottom: 2px;
}
.about__page-list ul li::before {
  position: absolute;
  content: "";
  left: 0;
  top: 16px;
  height: 6px;
  width: 6px;
  background: var(--primary);
}
.about__page-card {
  background: #F1F1F1;
  padding: 50px 50px 34px 50px;
}
.dark .about__page-card {
  background: #FFFFFF;
}
@media only screen and (max-width: 1199px) {
  .about__page-card {
    padding: 50px 22px 34px 22px;
  }
}
.about__page-card .content {
  margin-bottom: 170px;
}
@media only screen and (max-width: 767px) {
  .about__page-card .content {
    margin-bottom: 70px;
  }
}
.about__page-card .content .text {
  font-weight: 400;
  font-size: 20px;
  line-height: 22px;
  color: #111111;
  font-family: var(--font_body);
}
.about__page-card .content .text span {
  color: rgba(17, 17, 17, 0.5);
}
.about__page-card .counter h2 {
  font-weight: 400;
  font-size: 90px;
  line-height: 85px;
  letter-spacing: -0.07em;
  color: #111111;
  font-family: var(--font_BDOGrotesk);
}
.about__page-card .counter h2 span {
  font-weight: 400;
  font-size: 90px;
  line-height: 85px;
  letter-spacing: -0.05em;
  color: #111111;
  font-family: var(--font_BDOGrotesk);
}
.about__page-card .counter h2 span.odometer-formatting-mark {
  display: none;
}
.about__page-item-box {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  margin-top: 80px;
}
@media only screen and (max-width: 991px) {
  .about__page-item-box {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (max-width: 767px) {
  .about__page-item-box {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 50px;
  }
}
@media (max-width: 575px) {
  .about__page-item-box {
    grid-template-columns: repeat(1, 1fr);
    margin-top: 50px;
  }
}
.about__page-item-box .card-2 {
  background: #FF6A3A;
}
.about__page-item-box .card-2 .content .text {
  color: var(--white);
  font-family: var(--font_body);
}
.about__page-item-box .card-2 .content .text span {
  color: rgba(255, 255, 255, 0.5);
}
.about__page-item-box .card-2 .counter h2 {
  color: var(--white);
}
.about__page-item-box .card-2 .counter h2 span {
  color: var(--white);
}
.about__page-item-box .card-3 {
  background: #111111;
}
.dark .about__page-item-box .card-3 {
  background: #1A1A1A;
}
.about__page-item-box .card-3 .content .text {
  color: var(--white);
  font-family: var(--font_body);
}
.about__page-item-box .card-3 .content .text span {
  color: rgba(255, 255, 255, 0.5);
}
.about__page-item-box .card-3 .counter h2 {
  color: var(--white);
}
.about__page-item-box .card-3 .counter h2 span {
  color: var(--white);
}

.hero__wrapper {
  padding: 224px 0 91px 0;
  background: linear-gradient(75.26deg, #FF6A3A 1.74%, #ED3B01 100.82%);
  border-radius: 0px;
}
@media only screen and (max-width: 1199px) {
  .hero__wrapper {
    padding: 180px 0 80px 0;
  }
}
@media only screen and (max-width: 991px) {
  .hero__wrapper {
    padding: 160px 0 70px 0;
  }
}
@media only screen and (max-width: 767px) {
  .hero__wrapper {
    padding: 150px 0 60px 0;
  }
}
.hero__heading .title {
  font-weight: 500;
  font-size: 96px;
  line-height: 96px;
  letter-spacing: -0.05em;
  color: #FFFFFF;
}
@media only screen and (max-width: 1199px) {
  .hero__heading .title {
    font-size: 70px;
    line-height: 85px;
  }
}
@media only screen and (max-width: 991px) {
  .hero__heading .title {
    font-size: 65px;
    line-height: 70px;
    margin-bottom: 30px;
  }
}
@media (max-width: 575px) {
  .hero__heading .title {
    font-size: 50px;
    line-height: 52px;
    margin-bottom: 30px;
  }
}
@media only screen and (max-width: 991px) {
  .hero__heading .title br {
    display: none;
  }
}
.hero__content {
  margin-left: 32px;
}
@media only screen and (max-width: 1919px) {
  .hero__content {
    margin-left: 0;
  }
}
.hero__content .decs {
  font-weight: 400;
  font-size: 18px;
  line-height: 21px;
  letter-spacing: -0.03em;
  color: #FFFFFF;
  margin-bottom: 22px;
  margin-top: 15px;
}
@media only screen and (max-width: 1919px) {
  .hero__content .decs br {
    display: none;
  }
}
.hero__list li {
  list-style: none;
  font-weight: 400;
  font-size: 18px;
  line-height: 21px;
  color: #FCF7F3;
  font-family: var(--font_BDOGrotesk);
  margin-bottom: 7px;
}
.hero__list li:last-child {
  margin-bottom: 0;
}
.hero__shape {
  margin-top: 52px;
}
@media (max-width: 575px) {
  .hero__shape {
    margin-top: 40px;
  }
}

.hero-section-2__wrapper {
  padding-top: 157px;
}
@media only screen and (max-width: 1199px) {
  .hero-section-2__wrapper {
    padding-top: 120px;
  }
}
.hero-section-2__wrapper-box {
  padding: 30px 50px 42px 50px;
  background: #F1F1F1;
  border-radius: 20px;
}
.dark .hero-section-2__wrapper-box {
  background: #141414;
  border: 1px solid rgba(255, 255, 255, 0.05);
}
@media only screen and (max-width: 1399px) {
  .hero-section-2__wrapper-box {
    padding-left: 40px;
    padding: 30px 20px 42px 20px;
  }
}
.hero-section-2__content .title {
  font-weight: 500;
  font-size: 128px;
  line-height: 128px;
  color: var(--primary);
  font-family: var(--font_BDOGrotesk);
  margin-bottom: 31px;
}
@media only screen and (max-width: 1399px) {
  .hero-section-2__content .title {
    font-size: 114px;
    line-height: 116px;
  }
}
@media only screen and (max-width: 1199px) {
  .hero-section-2__content .title {
    font-size: 85px;
    line-height: 86px;
  }
  .hero-section-2__content .title br {
    display: none;
  }
}
@media only screen and (max-width: 767px) {
  .hero-section-2__content .title {
    font-size: 60px;
    line-height: 65px;
  }
}
@media (max-width: 575px) {
  .hero-section-2__content .title {
    font-size: 33px;
    line-height: 40px;
    margin-bottom: 20px;
  }
}
.hero-section-2__content .decs {
  font-weight: 400;
  font-size: 18px;
  line-height: 25px;
  letter-spacing: -0.03em;
  color: rgba(17, 17, 17, 0.5);
  font-family: var(--font_body);
}
.dark .hero-section-2__content .decs {
  color: rgba(255, 255, 255, 0.5);
}
@media (max-width: 575px) {
  .hero-section-2__content .decs br {
    display: none;
  }
}
.hero-section-2__social-box {
  margin-left: 80px;
  margin-top: 111px;
}
@media only screen and (max-width: 1399px) {
  .hero-section-2__social-box {
    margin-left: 28px;
    margin-top: 40px;
  }
}
@media only screen and (max-width: 1199px) {
  .hero-section-2__social-box {
    margin-left: 0px;
    margin-top: 40px;
  }
}
@media only screen and (max-width: 991px) {
  .hero-section-2__social-box {
    margin-top: 25px;
  }
}
.hero-section-2__social-box .decs {
  font-weight: 400;
  font-size: 18px;
  line-height: 20px;
  letter-spacing: -0.05em;
  color: rgba(17, 17, 17, 0.5);
  margin-bottom: 45px;
}
.hero-section-2__social-box .decs strong {
  text-decoration: underline;
  font-weight: 400;
  font-size: 18px;
  line-height: 20px;
  letter-spacing: -0.05em;
  color: rgba(17, 17, 17, 0.5);
}
.dark .hero-section-2__social-box .decs strong {
  color: rgba(255, 255, 255, 0.5);
}
@media only screen and (max-width: 991px) {
  .hero-section-2__social-box .decs {
    margin-bottom: 20px;
  }
  .hero-section-2__social-box .decs br {
    display: none;
  }
}
.dark .hero-section-2__social-box .decs {
  color: rgba(255, 255, 255, 0.5);
}
.hero-section-2__list {
  display: flex;
  flex-wrap: wrap;
}
.hero-section-2__list li {
  font-weight: 400;
  font-size: 18px;
  line-height: 22px;
  color: rgba(17, 17, 17, 0.5);
  list-style: none;
  margin: 0;
  margin-right: 20px;
  margin-bottom: 9px;
  position: relative;
  transition: all 0.3s ease-in-out;
}
.dark .hero-section-2__list li {
  color: rgba(255, 255, 255, 0.5);
}
.dark .hero-section-2__list li::before {
  width: 100%;
  height: 1px;
  background-color: currentColor;
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  transition: all 0.5s;
  color: rgba(255, 255, 255, 0.5);
}
.hero-section-2__list li:last-child {
  margin-right: 0;
}
.hero-section-2__list li::before {
  width: 100%;
  height: 1px;
  background-color: currentColor;
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  transition: all 0.5s;
  color: rgba(17, 17, 17, 0.5);
}
.hero-section-2__list li:hover a {
  color: var(--primary);
}
.dark .hero-section-2__list li:hover {
  color: var(--white);
}
.dark .hero-section-2__list li:hover::before {
  width: 0%;
  color: var(--white);
}
.hero-section-2__list li:hover::before {
  width: 0%;
  color: var(--primary);
}
.hero-section-2__item .hero-btn {
  margin-bottom: 10px;
  margin-top: 10px;
}
.hero-section-2__item .hero-btn a {
  padding: 30px 30px;
  background: #FF6A3A;
  display: inline-block;
  border-radius: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 400;
  font-size: 20px;
  line-height: 16px;
  color: #FFFFFF;
}
.hero-section-2__item .hero-btn a i {
  font-size: 30px;
  color: var(--white);
  font-weight: 400;
}
.hero-section-2__item-box {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
@media only screen and (max-width: 991px) {
  .hero-section-2__item-box {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (max-width: 767px) {
  .hero-section-2__item-box {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 575px) {
  .hero-section-2__item-box {
    grid-template-columns: repeat(1, 1fr);
  }
}
.hero-section-2__item-box .item-1 a {
  position: relative;
}
.hero-section-2__item-box .item-1 a::before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  height: 100%;
  width: 0;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease-in-out;
}
.hero-section-2__item-box .item-1 a:hover {
  z-index: 1;
}
.hero-section-2__item-box .item-1 a:hover::before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  transition: all 0.4s ease-in-out;
  opacity: 1;
  visibility: visible;
  z-index: -1;
}
.hero-section-2__item-box .item-2 a {
  background: #1A1A1A;
  position: relative;
}
.hero-section-2__item-box .item-2 a::before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  height: 100%;
  width: 0;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease-in-out;
}
.hero-section-2__item-box .item-2 a:hover {
  z-index: 1;
}
.hero-section-2__item-box .item-2 a:hover::before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  transition: all 0.4s ease-in-out;
  opacity: 1;
  visibility: visible;
  z-index: -1;
}
.hero-section-2__item-box .item-3 a {
  background: #F1F1F1;
  color: var(--primary);
  position: relative;
}
.dark .hero-section-2__item-box .item-3 a {
  color: #111111;
}
.hero-section-2__item-box .item-3 a i {
  color: var(--primary);
}
.dark .hero-section-2__item-box .item-3 a i {
  color: #111111;
}
.hero-section-2__item-box .item-3 a::before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  height: 100%;
  width: 0;
  background: rgba(17, 17, 17, 0.1);
  border-radius: 20px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease-in-out;
}
.hero-section-2__item-box .item-3 a:hover {
  z-index: 1;
}
.hero-section-2__item-box .item-3 a:hover::before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background: rgba(17, 17, 17, 0.1);
  border-radius: 20px;
  transition: all 0.4s ease-in-out;
  opacity: 1;
  visibility: visible;
  z-index: -1;
}
.hero-section-2__thumb {
  overflow: hidden;
  border-radius: 20px;
}
.hero-section-2__thumb img {
  border-radius: 20px;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-section-3__wrapper {
  padding-top: 210px;
}
@media only screen and (max-width: 1199px) {
  .hero-section-3__wrapper {
    padding-top: 170px;
  }
}
@media only screen and (max-width: 767px) {
  .hero-section-3__wrapper {
    padding-top: 150px;
  }
}
@media (max-width: 575px) {
  .hero-section-3__wrapper {
    padding-top: 130px;
  }
}
.hero-section-3__info .title {
  font-weight: 400;
  font-size: 96px;
  line-height: 105px;
  letter-spacing: -0.05em;
  color: var(--primary);
  font-family: var(--font_BDOGrotesk);
  margin-bottom: 36px;
}
@media only screen and (max-width: 1399px) {
  .hero-section-3__info .title {
    font-size: 80px;
    line-height: 87px;
  }
}
@media only screen and (max-width: 1199px) {
  .hero-section-3__info .title {
    font-size: 68px;
    line-height: 72px;
  }
  .hero-section-3__info .title br {
    display: none;
  }
}
@media only screen and (max-width: 767px) {
  .hero-section-3__info .title {
    font-size: 60px;
    line-height: 63px;
  }
}
@media (max-width: 575px) {
  .hero-section-3__info .title {
    font-size: 35px;
    line-height: 41px;
  }
}
.hero-section-3__meta-box {
  display: grid;
  grid-template-columns: 1fr 190px;
  gap: 160px;
  margin-left: -10px;
  margin-top: 40px;
  align-items: center;
  justify-content: space-between;
}
@media only screen and (max-width: 1919px) {
  .hero-section-3__meta-box {
    gap: 80px;
  }
}
@media only screen and (max-width: 1399px) {
  .hero-section-3__meta-box {
    margin-top: 0;
    margin-bottom: 30px;
  }
}
@media only screen and (max-width: 1199px) {
  .hero-section-3__meta-box {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-left: 0;
  }
}
@media only screen and (max-width: 991px) {
  .hero-section-3__meta-box {
    grid-template-columns: 1fr auto;
    gap: 30px;
    margin-left: 0;
  }
}
@media only screen and (max-width: 767px) {
  .hero-section-3__meta-box {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-left: 0;
  }
}
.hero-section-3__meta-box .content .decs {
  font-weight: 500;
  font-size: 16px;
  line-height: 21px;
  letter-spacing: -0.04em;
  color: rgba(17, 17, 17, 0.5);
}
.dark .hero-section-3__meta-box .content .decs {
  color: rgba(255, 255, 255, 0.5);
}
.hero-section-3__author-box {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 18px;
}
.hero-section-3__author-box .author-img img {
  width: 63px;
  height: 63px;
  object-fit: cover;
}
.hero-section-3__author-box .author-img .author {
  margin-left: -17px;
}
.hero-section-3__author-box .author-text .decs {
  font-weight: 500;
  font-size: 18px;
  line-height: 22px;
  color: var(--primary);
  font-family: var(--font_body);
}
.hero-section-3__list ul {
  display: flex;
  flex-wrap: wrap;
}
.hero-section-3__list ul li {
  font-weight: 500;
  font-size: 18px;
  line-height: 22px;
  color: rgba(17, 17, 17, 0.5);
  font-family: var(--font_body);
  list-style: none;
  margin-right: 20px;
  margin-bottom: 10px;
}
.dark .hero-section-3__list ul li {
  color: rgba(255, 255, 255, 0.5);
}
.hero-section-3__list ul li:last-child {
  margin-bottom: 0;
  margin-right: 0;
}
.hero-section-3__list ul li a {
  background: linear-gradient(#111111 0%, #111111 98%);
  background-size: 0 1px;
  background-repeat: no-repeat;
  background-position: left 100%;
  color: rgba(17, 17, 17, 0.5);
  transition: all 0.3s ease-in-out;
}
.hero-section-3__list ul li a:hover {
  color: var(--primary);
  background-size: 100% 2px;
}
.dark .hero-section-3__list ul li a {
  background: linear-gradient(#FFFFFF 0%, #FFFFFF 98%);
  background-size: 0 1px;
  background-repeat: no-repeat;
  background-position: left 100%;
  color: rgba(255, 255, 255, 0.5);
  transition: all 0.3s ease-in-out;
}
.dark .hero-section-3__list ul li a:hover {
  color: #FFFFFF;
  background-size: 100% 2px;
}
.hero-section-3__item-wrapper {
  display: grid;
  grid-template-columns: 1fr 435px 535px;
  gap: 20px;
  padding-top: 50px;
  border-top: 1px solid rgba(17, 17, 17, 0.1);
}
.dark .hero-section-3__item-wrapper {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
@media only screen and (max-width: 1399px) {
  .hero-section-3__item-wrapper {
    grid-template-columns: 1fr 361px 376px;
  }
}
@media only screen and (max-width: 1199px) {
  .hero-section-3__item-wrapper {
    grid-template-columns: 1fr 313px 320px;
  }
}
@media only screen and (max-width: 991px) {
  .hero-section-3__item-wrapper {
    grid-template-columns: 380px 1fr;
  }
}
@media only screen and (max-width: 767px) {
  .hero-section-3__item-wrapper {
    grid-template-columns: 1fr;
  }
}
.hero-section-3__video {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.hero-section-3__video .service-video {
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: 15px;
}
.hero-section-3__card {
  background: #FF6A3A;
  border-radius: 15px;
  padding: 45px 50px;
}
@media only screen and (max-width: 1199px) {
  .hero-section-3__card {
    padding: 45px 15px;
  }
}
.hero-section-3__card .title {
  font-weight: 400;
  font-size: 33.7979px;
  line-height: 33px;
  letter-spacing: -0.05em;
  color: #FFFFFF;
  margin-bottom: 200px;
}
@media only screen and (max-width: 991px) {
  .hero-section-3__card .title br {
    display: none;
  }
}
@media only screen and (max-width: 767px) {
  .hero-section-3__card .title {
    margin-bottom: 70px;
  }
}
@media (max-width: 575px) {
  .hero-section-3__card .title {
    font-size: 27.7979px;
    line-height: 28px;
    margin-bottom: 50px;
  }
}
.hero-section-3__card .text {
  font-weight: 400;
  font-size: 20px;
  line-height: 28px;
  letter-spacing: -0.01em;
  color: #FFFFFF;
}
@media only screen and (max-width: 1399px) {
  .hero-section-3__card .text br {
    display: none;
  }
}
.hero-section-3__item {
  background: #F1F1F1;
  border-radius: 15px;
  padding: 50px 50px 45px 50px;
}
.dark .hero-section-3__item {
  background: var(--dark);
}
@media only screen and (max-width: 1199px) {
  .hero-section-3__item {
    padding: 45px 15px;
  }
}
.hero-section-3__item .decs {
  font-weight: 400;
  font-size: 18px;
  line-height: 25px;
  letter-spacing: -0.02em;
  color: rgba(17, 17, 17, 0.5);
}
.dark .hero-section-3__item .decs {
  color: rgba(255, 255, 255, 0.5);
}
@media only screen and (max-width: 1399px) {
  .hero-section-3__item .decs br {
    display: none;
  }
}
.hero-section-3__item .rr-btn {
  padding: 25px 50px;
  margin-top: 23px;
}
.dark .hero-section-3__item .rr-btn {
  background: var(--white);
}
.dark .hero-section-3__item .rr-btn .text-one {
  color: #111111;
}
.hero-section-3__list-box {
  display: flex;
  gap: 15px;
  align-items: center;
  margin-bottom: 57px;
}
@media (max-width: 575px) {
  .hero-section-3__list-box {
    margin-bottom: 21px;
  }
}
.hero-section-3__img {
  width: 74px;
  height: 139px;
  object-fit: cover;
}
.hero-section-3__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 37px;
}
.hero-section-3__brand ul li {
  font-weight: 400;
  font-size: 18px;
  line-height: 22px;
  color: var(--primary);
  font-family: var(--font_body);
  list-style: none;
  margin-bottom: 2px;
}
.dark .hero-section-3__brand ul li {
  color: var(--white);
}

.hero-section-5 {
  padding-top: 71px;
}
@media only screen and (max-width: 1399px) {
  .hero-section-5 {
    padding-top: 80px;
  }
}
@media only screen and (max-width: 1199px) {
  .hero-section-5 {
    padding-top: 70px;
  }
}
.hero-section-5__wrapper {
  background: linear-gradient(76.77deg, #FF6A3A 0.36%, #FF3E00 37.22%, #742004 99.66%);
  padding-top: 430px;
  padding-bottom: 100px;
  margin-left: 15px;
  margin-right: 15px;
  border-radius: 0 0 20px 20px;
  position: relative;
}
@media only screen and (max-width: 1399px) {
  .hero-section-5__wrapper {
    padding-top: 250px;
  }
}
@media only screen and (max-width: 1199px) {
  .hero-section-5__wrapper {
    padding-top: 170px;
  }
}
@media only screen and (max-width: 991px) {
  .hero-section-5__wrapper {
    padding-top: 150px;
  }
}
@media only screen and (max-width: 767px) {
  .hero-section-5__wrapper {
    padding-bottom: 70px;
  }
}
@media (max-width: 575px) {
  .hero-section-5__wrapper {
    padding-bottom: 60px;
    padding-top: 130px;
  }
}
.hero-section-5__wrapper .shapes .shape-1 {
  position: absolute;
  left: 0;
  top: 0px;
}
@media only screen and (max-width: 1399px) {
  .hero-section-5__wrapper .shapes .shape-1 {
    top: -2px;
  }
}
@media only screen and (max-width: 1199px) {
  .hero-section-5__wrapper .shapes .shape-1 {
    top: -3px;
  }
}
@media only screen and (max-width: 991px) {
  .hero-section-5__wrapper .shapes .shape-1 {
    top: -5px;
  }
}
@media only screen and (max-width: 767px) {
  .hero-section-5__wrapper .shapes .shape-1 {
    top: -6px;
  }
}
@media (max-width: 575px) {
  .hero-section-5__wrapper .shapes .shape-1 {
    top: -9px;
  }
}
.hero-section-5__wrapper .shapes .shape-1 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-section-5__wrapper .shapes .shape-2 {
  position: absolute;
  left: 50%;
  transform: translate(-50%, 0%);
  text-align: center;
  bottom: 0;
  z-index: 1;
  mix-blend-mode: multiply;
}
.hero-section-5__wrapper .shapes .shape-2 img {
  object-fit: cover;
}
@media only screen and (max-width: 1199px) {
  .hero-section-5__wrapper .shapes .shape-2 {
    display: none;
  }
}
.hero-section-5__wrapper .shapes .shape-3 {
  position: absolute;
  left: 50%;
  top: 39.5%;
  transform: translate(-50%, -50%);
  text-align: center;
}
@media only screen and (max-width: 1399px) {
  .hero-section-5__wrapper .shapes .shape-3 {
    top: 46.5%;
  }
}
@media only screen and (max-width: 1199px) {
  .hero-section-5__wrapper .shapes .shape-3 {
    display: none;
  }
}
.hero-section-5__wrapper .hero__info-left {
  position: absolute;
  left: 26.1%;
  top: 38%;
  transform: translate(-50%, -50%);
  z-index: 2;
}
@media only screen and (max-width: 1919px) {
  .hero-section-5__wrapper .hero__info-left {
    left: 17.4%;
  }
}
@media only screen and (max-width: 1399px) {
  .hero-section-5__wrapper .hero__info-left {
    top: 27%;
    left: 15.8%;
  }
}
@media only screen and (max-width: 1199px) {
  .hero-section-5__wrapper .hero__info-left {
    top: 20%;
    left: 15.8%;
  }
}
@media only screen and (max-width: 991px) {
  .hero-section-5__wrapper .hero__info-left {
    top: 20%;
    left: 20.8%;
  }
}
@media only screen and (max-width: 767px) {
  .hero-section-5__wrapper .hero__info-left {
    top: 17%;
    left: 28%;
  }
}
@media (max-width: 575px) {
  .hero-section-5__wrapper .hero__info-left {
    top: 14%;
    left: 54%;
    width: 100%;
  }
}
.hero-section-5__wrapper .hero__info-left span {
  font-weight: 400;
  font-size: 20px;
  line-height: 28px;
  letter-spacing: -0.05em;
  color: #FFFFFF;
  font-family: var(--font_BDOGrotesk);
}
@media (max-width: 575px) {
  .hero-section-5__wrapper .hero__info-left span {
    font-size: 16px;
  }
}
.hero-section-5__wrapper .hero__info-left span svg {
  margin-left: 5px;
}
.hero-section-5__wrapper .hero__info-right {
  position: absolute;
  right: 8.8%;
  top: 38%;
  transform: translate(-50%, -50%);
  z-index: 2;
}
@media only screen and (max-width: 1919px) {
  .hero-section-5__wrapper .hero__info-right {
    right: -6.8%;
  }
}
@media only screen and (max-width: 1399px) {
  .hero-section-5__wrapper .hero__info-right {
    top: 24%;
    right: -10.8%;
  }
}
@media only screen and (max-width: 1199px) {
  .hero-section-5__wrapper .hero__info-right {
    top: 20%;
    right: -8.8%;
  }
}
@media only screen and (max-width: 991px) {
  .hero-section-5__wrapper .hero__info-right {
    top: 20%;
    right: -14.8%;
  }
}
@media only screen and (max-width: 767px) {
  .hero-section-5__wrapper .hero__info-right {
    top: 12%;
    left: 40%;
  }
}
@media (max-width: 575px) {
  .hero-section-5__wrapper .hero__info-right {
    top: 8%;
    left: 54%;
    width: 100%;
  }
}
.hero-section-5__wrapper .hero__info-right span {
  font-weight: 400;
  font-size: 20px;
  line-height: 28px;
  letter-spacing: -0.05em;
  color: #FFFFFF;
  font-family: var(--font_BDOGrotesk);
}
@media (max-width: 575px) {
  .hero-section-5__wrapper .hero__info-right span {
    font-size: 15px;
    line-height: 26px;
  }
}
.hero-section-5__list {
  max-width: 413px;
  position: relative;
  z-index: 2;
}
@media only screen and (max-width: 767px) {
  .hero-section-5__list {
    max-width: 100%;
  }
}
.hero-section-5__list .title {
  font-weight: 400;
  font-size: 20px;
  line-height: 28px;
  letter-spacing: -0.05em;
  color: #FFFFFF;
  margin-bottom: 40px;
}
.hero-section-5__list .title svg {
  margin-left: 5px;
  margin-top: 15px;
}
.hero-section-5__list ul li {
  list-style: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6px 0;
}
.hero-section-5__list ul li:first-child {
  border-top: 1px solid rgba(255, 255, 255, 0.3);
}
.hero-section-5__list ul li span {
  font-weight: 400;
  font-size: 18px;
  line-height: 30px;
  letter-spacing: -0.05em;
  color: #FCF7F3;
  font-family: var(--font_BDOGrotesk);
}
.hero-section-5__list ul li .number {
  font-weight: 400;
  font-size: 18px;
  line-height: 30px;
  letter-spacing: -0.05em;
  color: #FCF7F3;
  font-family: var(--font_BDOGrotesk);
}
.hero-section-5__content {
  margin-left: 30px;
  margin-top: 15px;
  position: relative;
  z-index: 2;
}
@media only screen and (max-width: 1199px) {
  .hero-section-5__content {
    margin-left: 0px;
    margin-top: 0px;
  }
}
@media only screen and (max-width: 767px) {
  .hero-section-5__content {
    margin-left: 0px;
    margin-top: 40px;
  }
}
.hero-section-5__content .title {
  font-weight: 400;
  font-size: 170px;
  line-height: 130px;
  letter-spacing: -0.05em;
  color: var(--white);
  font-family: var(--font_Bayon);
  margin-bottom: 31px;
}
@media only screen and (max-width: 1919px) {
  .hero-section-5__content .title {
    font-size: 140px;
    line-height: 130px;
  }
}
@media only screen and (max-width: 1399px) {
  .hero-section-5__content .title {
    font-size: 113px;
    line-height: 111px;
  }
}
@media only screen and (max-width: 1199px) {
  .hero-section-5__content .title {
    font-size: 130px;
    line-height: 100px;
  }
}
@media only screen and (max-width: 991px) {
  .hero-section-5__content .title {
    font-size: 120px;
    line-height: 96px;
  }
}
@media only screen and (max-width: 767px) {
  .hero-section-5__content .title {
    font-size: 102px;
    line-height: 62px;
  }
  .hero-section-5__content .title br {
    display: none;
  }
}
@media (max-width: 575px) {
  .hero-section-5__content .title {
    font-size: 54px;
    line-height: 52px;
    margin-bottom: 15px;
  }
}
.hero-section-5__content .decs {
  font-weight: 400;
  font-size: 20px;
  line-height: 28px;
  letter-spacing: -0.05em;
  color: var(--white);
  font-family: var(--font_BDOGrotesk);
}

.hero-section-6 {
  padding-top: 20px;
}
.hero-section-6__wrapper {
  padding-top: 390px;
  padding-bottom: 50px;
  border-radius: 20px;
  object-fit: cover;
  background-size: cover;
  position: relative;
}
@media only screen and (max-width: 1399px) {
  .hero-section-6__wrapper {
    padding-top: 230px;
  }
}
@media only screen and (max-width: 1199px) {
  .hero-section-6__wrapper {
    padding-top: 180px;
  }
}
@media only screen and (max-width: 991px) {
  .hero-section-6__wrapper {
    padding-top: 140px;
  }
}
@media only screen and (max-width: 767px) {
  .hero-section-6__wrapper {
    padding-top: 120px;
  }
}
.hero-section-6__wrapper::before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 20px;
}
.hero-section-6__content {
  position: relative;
  z-index: 1;
  text-align: center;
}
.hero-section-6__content .title {
  font-weight: 400;
  font-size: 96px;
  line-height: 96px;
  letter-spacing: -0.07em;
  color: var(--white);
  font-family: var(--font_BDOGrotesk);
  margin-bottom: 326px;
}
@media only screen and (max-width: 1399px) {
  .hero-section-6__content .title {
    margin-bottom: 160px;
  }
}
@media only screen and (max-width: 1199px) {
  .hero-section-6__content .title {
    margin-bottom: 100px;
  }
}
@media only screen and (max-width: 991px) {
  .hero-section-6__content .title {
    font-size: 70px;
    line-height: 75px;
    margin-bottom: 80px;
  }
}
@media only screen and (max-width: 767px) {
  .hero-section-6__content .title {
    font-size: 55px;
    line-height: 57px;
    margin-bottom: 41px;
  }
}
@media (max-width: 575px) {
  .hero-section-6__content .title {
    font-size: 36px;
    line-height: 43px;
    margin-bottom: 41px;
  }
}
.hero-section-6__content .down h4 {
  font-weight: 500;
  font-size: 16px;
  line-height: 21px;
  letter-spacing: -0.01em;
  text-decoration-line: underline;
  text-transform: uppercase;
  color: #FFFFFF;
}
.hero-section-6__content .down h4 a:hover {
  color: white;
}

.hero-section-10 {
  padding-top: 88px;
  border-bottom: 2px solid rgba(17, 17, 17, 0.1);
  background: #FCF7F3;
}
.dark .hero-section-10 {
  background: var(--dark);
  border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}
@media only screen and (max-width: 1199px) {
  .hero-section-10 {
    padding-top: 80px;
  }
}
.hero-section-10__wrapper {
  padding-top: 58px;
  padding-bottom: 45px;
  margin: 0 15px 0 15px;
  border-left: 1px solid rgba(17, 17, 17, 0.1);
  border-right: 1px solid rgba(17, 17, 17, 0.1);
  position: relative;
}
.dark .hero-section-10__wrapper {
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}
@media only screen and (max-width: 767px) {
  .hero-section-10__wrapper {
    padding-top: 40px;
  }
}
.hero-section-10__item {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.hero-section-10__heading .title {
  font-weight: 400;
  font-size: 140px;
  line-height: 120px;
  letter-spacing: -0.05em;
  color: var(--primary);
  font-family: var(--font_BDOGrotesk);
}
@media only screen and (max-width: 1399px) {
  .hero-section-10__heading .title {
    font-size: 115px;
    line-height: 115px;
  }
}
@media only screen and (max-width: 1199px) {
  .hero-section-10__heading .title {
    font-size: 90px;
    line-height: 93px;
  }
}
@media only screen and (max-width: 991px) {
  .hero-section-10__heading .title br {
    display: none;
  }
}
@media only screen and (max-width: 767px) {
  .hero-section-10__heading .title {
    font-size: 70px;
    line-height: 68px;
  }
}
@media (max-width: 575px) {
  .hero-section-10__heading .title {
    font-size: 40px;
    line-height: 42px;
  }
}
.hero-section-10__content {
  padding-top: 292px;
}
@media only screen and (max-width: 1399px) {
  .hero-section-10__content {
    padding-top: 150px;
  }
}
@media only screen and (max-width: 1199px) {
  .hero-section-10__content {
    padding-top: 110px;
  }
}
@media only screen and (max-width: 991px) {
  .hero-section-10__content {
    padding-top: 0px;
    margin-top: 20px;
  }
}
.hero-section-10__content .decs {
  font-weight: 400;
  font-size: 18px;
  line-height: 24px;
  color: rgba(17, 17, 17, 0.5);
  font-family: var(--font_BDOGrotesk);
}
.dark .hero-section-10__content .decs {
  color: rgba(255, 255, 255, 0.5);
}
@media only screen and (max-width: 991px) {
  .hero-section-10__content .decs br {
    display: none;
  }
}

.hero-section-4 {
  padding-left: 15px;
  padding-right: 15px;
}
.hero-section-4__wrapper {
  padding-top: 164px;
  border-radius: 20px;
  background-position: center center;
  position: relative;
}
@media only screen and (max-width: 1919px) {
  .hero-section-4__wrapper {
    padding-top: 130px;
  }
}
@media only screen and (max-width: 1199px) {
  .hero-section-4__wrapper {
    padding-top: 95px;
    padding-bottom: 0px;
  }
}
.hero-section-4__wrapper .header__nav {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 45px;
  padding-left: 35px;
}
@media only screen and (max-width: 1399px) {
  .hero-section-4__wrapper .header__nav {
    margin-top: 52px;
  }
}
.hero-section-4__wrapper .main-menu li a {
  color: white;
}
.hero-section-4__wrapper .shapes .shape-1 {
  position: absolute;
  left: 0px;
  top: 36%;
}
.hero-section-4__wrapper .shapes .shape-2 {
  position: absolute;
  right: 0px;
  top: 36%;
}
.hero-section-4__background-thumb {
  position: absolute;
  top: 34px;
  right: 0;
}
@media only screen and (max-width: 1919px) {
  .hero-section-4__background-thumb {
    height: 845px;
  }
}
@media only screen and (max-width: 1399px) {
  .hero-section-4__background-thumb {
    height: 830px;
  }
}
@media only screen and (max-width: 1199px) {
  .hero-section-4__background-thumb {
    height: 700px;
  }
}
@media only screen and (max-width: 991px) {
  .hero-section-4__background-thumb {
    height: 970px;
  }
}
@media only screen and (max-width: 767px) {
  .hero-section-4__background-thumb {
    height: 845px;
  }
}
@media (max-width: 575px) {
  .hero-section-4__background-thumb {
    top: -15px;
    height: 1020px;
  }
}
.hero-section-4__background-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}
.hero-section-4__info {
  position: relative;
}
.hero-section-4__info .shape-2 {
  position: absolute;
  right: 55px;
  z-index: 9;
  bottom: 18px;
}
@media only screen and (max-width: 1919px) {
  .hero-section-4__info .shape-2 {
    right: 0;
  }
}
@media only screen and (max-width: 1399px) {
  .hero-section-4__info .shape-2 {
    display: none;
  }
}
.hero-section-4__info .title {
  font-weight: 400;
  font-size: 140px;
  line-height: 135px;
  letter-spacing: -0.05em;
  color: #111111;
  font-family: var(--font_BDOGrotesk);
  margin-bottom: 45px;
}
@media only screen and (max-width: 1919px) {
  .hero-section-4__info .title {
    font-size: 128px;
    line-height: 128px;
  }
}
@media only screen and (max-width: 1199px) {
  .hero-section-4__info .title {
    font-size: 95px;
    line-height: 95px;
  }
}
@media only screen and (max-width: 991px) {
  .hero-section-4__info .title {
    font-size: 80px;
    line-height: 87px;
  }
  .hero-section-4__info .title br {
    display: none;
  }
}
@media only screen and (max-width: 767px) {
  .hero-section-4__info .title {
    font-size: 57px;
    line-height: 63px;
  }
}
@media (max-width: 575px) {
  .hero-section-4__info .title {
    font-size: 51px;
    line-height: 50px;
  }
}
.hero-section-4__box {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
  padding-top: 50px;
  position: relative;
  z-index: 999999;
}
@media only screen and (max-width: 991px) {
  .hero-section-4__box {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 575px) {
  .hero-section-4__box {
    grid-template-columns: repeat(2, 1fr);
  }
}
.hero-section-4__thumb {
  position: relative;
  z-index: 999999999999996;
  cursor: pointer;
  transition: transform 0.3s ease;
}
.hero-section-4__thumb:hover {
  transform: scale(1.05);
}
.hero-section-4__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}
.hero-section-4__full-thumb img {
  position: absolute;
  width: 100vw;
  z-index: 888;
  top: 0%;
  left: 0%;
  height: 107vh;
  object-fit: cover;
  transition: all 0.6s ease;
  background-size: cover;
}
@media only screen and (max-width: 1919px) {
  .hero-section-4__full-thumb img {
    height: 113vh;
  }
}
@media only screen and (max-width: 1199px) {
  .hero-section-4__full-thumb img {
    height: 93vh;
  }
}
@media only screen and (max-width: 991px) {
  .hero-section-4__full-thumb img {
    height: 126vh;
  }
}
.hero-section-4__list ul li {
  font-weight: 400;
  font-size: 18px;
  line-height: 21px;
  letter-spacing: -0.03em;
  color: #111111;
  list-style: none;
  font-family: var(--font_BDOGrotesk);
}
.hero-section-4__inner {
  border-bottom: 1px solid rgba(17, 17, 17, 0.3);
  position: relative;
}
.hero-section-4__content {
  margin-top: 105px;
  margin-left: 16px;
  position: relative;
}
@media only screen and (max-width: 1919px) {
  .hero-section-4__content {
    margin-left: 0;
  }
}
@media only screen and (max-width: 991px) {
  .hero-section-4__content {
    margin-top: 0;
  }
}
.hero-section-4__content .text {
  font-weight: 400;
  font-size: 20px;
  line-height: 28px;
  letter-spacing: -0.05em;
  color: #111111;
  margin-top: 64px;
}
@media only screen and (max-width: 1919px) {
  .hero-section-4__content .text br {
    display: none;
  }
}
@media only screen and (max-width: 991px) {
  .hero-section-4__content .text {
    margin-top: 25px;
    margin-bottom: 40px;
  }
}

.team-section__info {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
  margin-bottom: 60px;
}
@media only screen and (max-width: 991px) {
  .team-section__info {
    margin-bottom: 40px;
  }
}
.team-section__heading .sub-title {
  font-weight: 500;
  font-size: 20px;
  line-height: 27px;
  letter-spacing: -0.03em;
  color: var(--primary);
  font-family: var(--font_BDOGrotesk);
  margin-bottom: 12px;
}
.team-section__heading .title {
  font-weight: 500;
  font-size: 48px;
  line-height: 58px;
  letter-spacing: -0.05em;
  color: var(--primary);
  font-family: var(--font_BDOGrotesk);
}
@media (max-width: 575px) {
  .team-section__heading .title {
    font-size: 35px;
    line-height: 40px;
  }
}
.team-section__btn {
  margin: auto 0 0 0;
}
.team-section__btn .team-btn {
  font-weight: 400;
  font-size: 18px;
  line-height: 26px;
  color: var(--primary);
  text-align: center;
}
.team-section__btn .team-btn i {
  transform: rotate(-40deg);
  color: var(--primary);
  font-weight: 600;
  transition: all 0.3s;
}
.team-section__btn a {
  color: #999999;
  transition: all 0.3s;
  position: relative;
}
.team-section__btn a::before {
  width: 100%;
  height: 1px;
  background-color: currentColor;
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  transition: all 0.5s;
  color: var(--primary);
}
.dark .team-section__btn a:hover {
  color: var(--white);
}
.team-section__btn a:hover::before {
  width: 0%;
}
.team-section__btn a:hover i {
  transform: rotate(0deg);
}
@media only screen and (max-width: 991px) {
  .team-section__item {
    margin-bottom: 30px;
  }
}
.team-section__content .title {
  font-family: var(--font_BDOGrotesk);
  font-weight: 400;
  font-size: 24px;
  line-height: 35px;
  letter-spacing: -0.05em;
  color: var(--primary);
  margin-top: 11px;
  margin-bottom: 0;
}
.team-section__content .title a {
  background: linear-gradient(#111111 0%, #111111 98%);
  background-size: 0 2px;
  background-repeat: no-repeat;
  background-position: left 100%;
  color: var(--primary);
  transition: all 0.3s ease-in-out;
}
.team-section__content .title a:hover {
  color: var(--primary);
  background-size: 100% 2px;
}
.dark .team-section__content .title a {
  background: linear-gradient(#FFFFFF 0%, #FFF 98%);
  background-size: 0 2px;
  background-repeat: no-repeat;
  background-position: left 100%;
  color: var(--white);
  transition: all 0.3s ease-in-out;
}
.dark .team-section__content .title a:hover {
  color: var(--white);
  background-size: 100% 2px;
}
.team-section__content span {
  font-weight: 400;
  font-size: 16px;
  font-size: 16px;
  line-height: 27px;
  letter-spacing: -0.02em;
  color: #999999;
  font-family: var(--font_body);
}
.team-section__thumb {
  position: relative;
}
.team-section__thumb::before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(17, 17, 17, 0.15);
}
.team-section__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-section-2__heading .sub-title {
  font-weight: 500;
  font-size: 20px;
  line-height: 27px;
  letter-spacing: -0.03em;
  color: var(--primary);
  font-family: var(--font_BDOGrotesk);
  margin-bottom: 12px;
}
.team-section-2__heading .title {
  font-weight: 500;
  font-size: 48px;
  line-height: 58px;
  letter-spacing: -0.05em;
  color: var(--primary);
  font-family: var(--font_BDOGrotesk);
}
@media (max-width: 575px) {
  .team-section-2__heading .title {
    font-size: 35px;
    line-height: 40px;
  }
}
.team-section-2__btn {
  margin: auto 0 0 0;
}
.team-section-2__btn .team-btn {
  font-weight: 400;
  font-size: 18px;
  line-height: 26px;
  color: var(--primary);
  text-align: center;
}
.team-section-2__btn .team-btn i {
  transform: rotate(0deg);
  color: var(--primary);
  font-weight: 600;
  transition: all 0.3s;
}
.team-section-2__btn a {
  color: #999999;
  transition: all 0.3s;
  position: relative;
}
.dark .team-section-2__btn a {
  color: #555555;
}
.team-section-2__btn a::before {
  width: 0%;
  height: 1px;
  background-color: currentColor;
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  transition: all 0.5s;
}
.team-section-2__btn a:hover {
  color: var(--action);
}
.team-section-2__btn a:hover i {
  color: var(--action);
  transform: rotate(-40deg);
}
.dark .team-section-2__btn a:hover {
  color: var(--white);
}
.team-section-2__btn a:hover::before {
  width: 100%;
}
@media only screen and (max-width: 991px) {
  .team-section-2__item {
    margin-bottom: 30px;
  }
}
@media only screen and (max-width: 991px) {
  .team-section-2__item:last-child {
    margin-bottom: 0px;
  }
}
.team-section-2__content .title {
  font-family: var(--font_BDOGrotesk);
  font-weight: 400;
  font-size: 24px;
  line-height: 35px;
  letter-spacing: -0.05em;
  color: var(--primary);
  margin-top: 11px;
  margin-bottom: 0;
}
.team-section-2__content .title a {
  background: linear-gradient(#111111 0%, #111111 98%);
  background-size: 0 2px;
  background-repeat: no-repeat;
  background-position: left 100%;
  color: var(--primary);
  transition: all 0.3s ease-in-out;
}
.team-section-2__content .title a:hover {
  color: var(--primary);
  background-size: 100% 2px;
}
.team-section-2__content span {
  font-weight: 400;
  font-size: 18px;
  line-height: 35px;
  letter-spacing: -0.02em;
  color: #999999;
  font-family: var(--font_body);
}
.team-section-2__thumb {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}
.team-section-2__thumb::before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(17, 17, 17, 0.15);
  border-radius: 20px;
}
.team-section-2__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}
.team-section-2 .section-2-info .title {
  padding-left: 19px;
}
@media only screen and (max-width: 1399px) {
  .team-section-2 .section-2-info .title {
    padding-left: 0;
  }
}

.section-2-info {
  display: flex;
  gap: 230px;
  flex-wrap: wrap;
  margin-bottom: 55px;
}
@media only screen and (max-width: 1399px) {
  .section-2-info {
    gap: 140px;
  }
}
@media only screen and (max-width: 1199px) {
  .section-2-info {
    gap: 120px;
  }
}
@media only screen and (max-width: 991px) {
  .section-2-info {
    gap: 70px;
  }
}
@media only screen and (max-width: 767px) {
  .section-2-info {
    gap: 20px;
  }
}
.section-2-info .sub-title {
  font-weight: 400;
  font-size: 20px;
  line-height: 27px;
  letter-spacing: -0.03em;
  color: var(--primary);
}
.section-2-info .sub-title img {
  margin-right: 10px;
  margin-top: -3px;
}
.section-2-info .title {
  font-weight: 400;
  font-size: 96px;
  line-height: 106px;
  letter-spacing: -0.05em;
  color: var(--primary);
  font-family: var(--font_BDOGrotesk);
}
@media only screen and (max-width: 1919px) {
  .section-2-info .title {
    font-size: 80px;
    line-height: 95px;
  }
}
@media only screen and (max-width: 1399px) {
  .section-2-info .title {
    font-size: 70px;
    line-height: 77px;
  }
}
@media only screen and (max-width: 1199px) {
  .section-2-info .title {
    font-size: 57px;
    line-height: 64px;
  }
}
@media only screen and (max-width: 991px) {
  .section-2-info .title {
    font-size: 44px;
    line-height: 53px;
  }
}
@media (max-width: 575px) {
  .section-2-info .title {
    font-size: 33px;
    line-height: 38px;
  }
}
@media only screen and (max-width: 767px) {
  .section-2-info .title br {
    display: none;
  }
}

@media only screen and (max-width: 991px) {
  .team-section-3__item {
    margin-bottom: 30px;
  }
}
.team-section-3__content .title {
  font-family: var(--font_BDOGrotesk);
  font-weight: 400;
  font-size: 24px;
  line-height: 35px;
  letter-spacing: -0.05em;
  color: var(--primary);
  margin-top: 11px;
  margin-bottom: 0;
}
.team-section-3__content .title a {
  background: linear-gradient(#111111 0%, #111111 98%);
  background-size: 0 2px;
  background-repeat: no-repeat;
  background-position: left 100%;
  color: var(--primary);
  transition: all 0.3s ease-in-out;
}
.team-section-3__content .title a:hover {
  color: var(--primary);
  background-size: 100% 2px;
}
.team-section-3__content span {
  font-weight: 400;
  font-size: 18px;
  line-height: 35px;
  letter-spacing: -0.02em;
  color: #999999;
  font-family: var(--font_body);
}
.team-section-3__thumb {
  position: relative;
}
.team-section-3__thumb::before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(17, 17, 17, 0.15);
}
.team-section-3__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section-3__info {
  text-align: center;
  margin-bottom: 60px;
}
@media (max-width: 575px) {
  .section-3__info {
    margin-bottom: 40px;
  }
}
.section-3__info .sub-title {
  font-weight: 500;
  font-size: 18px;
  line-height: 25px;
  letter-spacing: -0.02em;
  color: #FF6A3A;
  font-family: var(--font_body);
  margin-bottom: 10px;
}
.section-3__info .title {
  font-weight: 400;
  font-size: 48px;
  line-height: 58px;
  letter-spacing: -0.05em;
  color: var(--primary);
  font-family: var(--font_BDOGrotesk);
}
@media (max-width: 575px) {
  .section-3__info .title {
    font-size: 32px;
    line-height: 35px;
  }
}

.team-section-4__info {
  margin-bottom: 60px;
}
@media only screen and (max-width: 767px) {
  .team-section-4__info {
    margin-bottom: 40px;
  }
}
.team-section-4__info .title {
  font-weight: 400;
  font-size: 80px;
  line-height: 80px;
  letter-spacing: -0.05em;
  color: #FFFFFF;
}
@media only screen and (max-width: 767px) {
  .team-section-4__info .title {
    font-size: 60px;
    line-height: 66px;
  }
}
@media (max-width: 575px) {
  .team-section-4__info .title {
    font-size: 37px;
    line-height: 44px;
  }
}
.team-section-4__wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0px;
  gap: 30px;
}
@media only screen and (max-width: 991px) {
  .team-section-4__wrapper {
    flex-wrap: wrap;
  }
}
@media (max-width: 575px) {
  .team-section-4__wrapper {
    justify-content: center;
  }
}
.team-section-4__wrapper:nth-child(2) {
  margin-bottom: 70px;
}
@media only screen and (max-width: 991px) {
  .team-section-4__wrapper:nth-child(2) {
    margin-bottom: 30px;
  }
}
.team-section-4__item {
  width: 300px;
}
@media only screen and (max-width: 767px) {
  .team-section-4__item {
    width: 250px;
  }
}
@media (max-width: 575px) {
  .team-section-4__item {
    width: 300px;
  }
}
.team-section-4__thumb img {
  border-radius: 150px;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.team-section-4__content {
  text-align: center;
  margin-top: 24px;
}
.team-section-4__content .title {
  font-weight: 400;
  font-size: 24px;
  line-height: 35px;
  letter-spacing: -0.05em;
  color: #FFFFFF;
}
.team-section-4__content .title a {
  background: linear-gradient(#FFFFFF 0%, #FFFFFF 98%);
  background-size: 0 1px;
  background-repeat: no-repeat;
  background-position: left 100%;
  color: #FFFFFF;
  transition: all 0.3s ease-in-out;
}
.team-section-4__content .title a:hover {
  color: #FFFFFF;
  background-size: 100% 2px;
}
.team-section-4__content .text {
  font-weight: 400;
  font-size: 18px;
  line-height: 35px;
  letter-spacing: -0.02em;
  color: #999999;
  font-family: var(--font_body);
}
.team-section-4__btn {
  text-align: center;
}
.team-section-4__btn a {
  font-weight: 400;
  font-size: 24px;
  line-height: 32px;
  letter-spacing: -0.05em;
  color: #FFFFFF;
  text-align: center;
  position: relative;
  background: linear-gradient(#FFFFFF 0%, #FFFFFF 98%);
  background-size: 0 1px;
  background-repeat: no-repeat;
  background-position: left 100%;
  color: #FFFFFF;
  transition: all 0.3s ease-in-out;
}
.team-section-4__btn a:hover {
  color: #FFFFFF;
  background-size: 100% 2px;
}
.team-section-4-about-page .team-section-4__content .title {
  font-weight: 400;
  font-size: 24px;
  line-height: 35px;
  letter-spacing: -0.05em;
  color: var(--primary);
}
.team-section-4-about-page .team-section-4__content .title a {
  background: linear-gradient(#111111 0%, #111111 98%);
  background-size: 0 1px;
  background-repeat: no-repeat;
  background-position: left 100%;
  color: var(--primary);
  transition: all 0.3s ease-in-out;
}
.team-section-4-about-page .team-section-4__content .title a:hover {
  color: var(--primary);
  background-size: 100% 2px;
}
.dark .team-section-4-about-page .team-section-4__content .title a {
  background: linear-gradient(#FFFFFF 0%, #FFFFFF 98%);
  background-size: 0 1px;
  background-repeat: no-repeat;
  background-position: left 100%;
  color: var(--white);
  transition: all 0.3s ease-in-out;
}
.dark .team-section-4-about-page .team-section-4__content .title a:hover {
  color: var(--white);
  background-size: 100% 2px;
}
.team-section-4-about-page .team-section-4__item .team-section-4__btn {
  text-align: center;
}
.team-section-4-about-page .team-section-4__item .team-section-4__btn a {
  font-weight: 400;
  font-size: 24px;
  line-height: 32px;
  letter-spacing: -0.05em;
  color: var(--primary);
  text-align: center;
  position: relative;
  background: linear-gradient(var(--primary) 0%, var(--primary) 8%);
  background-size: 0 1px;
  background-repeat: no-repeat;
  background-position: left 100%;
  color: var(--primary);
  transition: all 0.3s ease-in-out;
}
.team-section-4-about-page .team-section-4__item .team-section-4__btn a:hover {
  color: var(--primary);
  background-size: 100% 2px;
}

.team-details__wrapper {
  padding-top: 150px;
  padding-bottom: 140px;
}
.team-details__inner {
  display: grid;
  grid-template-columns: 1fr 600px;
  gap: 100px;
}
@media only screen and (max-width: 1399px) {
  .team-details__inner {
    gap: 75px;
  }
}
@media only screen and (max-width: 1199px) {
  .team-details__inner {
    gap: 35px;
    grid-template-columns: 1fr 500px;
  }
}
@media only screen and (max-width: 991px) {
  .team-details__inner {
    gap: 40px;
    grid-template-columns: 1fr;
  }
}
.team-details__content .details {
  margin-bottom: 61px;
}
@media only screen and (max-width: 991px) {
  .team-details__content .details {
    margin-bottom: 40px;
  }
}
@media (max-width: 575px) {
  .team-details__content .details {
    margin-bottom: 30px;
  }
}
.team-details__content .details .name {
  font-weight: 400;
  font-size: 90px;
  line-height: 85px;
  letter-spacing: -0.05em;
  color: var(--primary);
  font-family: var(--font_BDOGrotesk);
  margin-bottom: 29px;
}
@media only screen and (max-width: 991px) {
  .team-details__content .details .name {
    font-size: 60px;
    line-height: 75px;
  }
  .team-details__content .details .name br {
    display: none;
  }
}
@media only screen and (max-width: 767px) {
  .team-details__content .details .name {
    font-size: 55px;
    line-height: 55px;
    margin-bottom: 20px;
  }
}
@media (max-width: 575px) {
  .team-details__content .details .name {
    font-size: 36px;
    line-height: 42px;
  }
}
.team-details__content .details .meta {
  font-weight: 400;
  font-size: 30px;
  line-height: 30px;
  letter-spacing: -0.05em;
  color: var(--primary);
  font-family: var(--font_BDOGrotesk);
}
.team-details__content .text {
  margin-bottom: 27px;
}
.team-details__content p {
  font-weight: 400;
  font-size: 20px;
  line-height: 28px;
  color: #555555;
}
.dark .team-details__content p {
  color: #999999;
}
.team-details__social {
  margin-top: 55px;
}
.team-details__social ul:first-child {
  border-top: 1px solid #878482;
}
.team-details__social ul li {
  font-weight: 400;
  font-size: 20px;
  line-height: 28px;
  color: var(--primary);
  font-family: var(--font_body);
  list-style: none;
  border-bottom: 1px solid #878482;
  padding: 10.5px 0;
  transition: all 0.3s ease-in-out;
}
.team-details__social ul li i {
  font-weight: 400;
  font-size: 20px;
  margin-right: 2px;
  transition: all 0.3s ease-in-out;
}
.team-details__social ul li:hover {
  background: #F1F1F1;
}
.dark .team-details__social ul li:hover {
  background: var(--dark);
}
.team-details__social ul li:hover i {
  margin-left: 20px;
}
@media only screen and (max-width: 991px) {
  .team-details__thumb {
    max-height: 600px;
  }
}
@media (max-width: 575px) {
  .team-details__thumb {
    max-height: 100%;
  }
}
.team-details__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-join__wrapper {
  padding-top: 85px;
}
@media only screen and (max-width: 991px) {
  .team-join__wrapper {
    padding-top: 50px;
  }
}
@media (max-width: 575px) {
  .team-join__wrapper {
    padding-top: 40px;
  }
}
.team-join__content {
  text-align: center;
}
.team-join__content .title {
  font-weight: 400;
  font-size: 50px;
  line-height: 50px;
  letter-spacing: -0.07em;
  color: var(--primary);
  margin-bottom: 45px;
}
@media only screen and (max-width: 991px) {
  .team-join__content .title {
    font-size: 40px;
    line-height: 44px;
  }
}
@media only screen and (max-width: 767px) {
  .team-join__content .title {
    font-size: 40px;
    line-height: 44px;
  }
  .team-join__content .title br {
    display: none;
  }
}
@media (max-width: 575px) {
  .team-join__content .title {
    font-size: 33px;
    line-height: 37px;
  }
}
.team-join__content .rr-btn {
  padding: 25px 50.6px;
}
.dark .team-join__content .rr-btn {
  background: var(--white);
}
.dark .team-join__content .rr-btn .text-one {
  color: #111111;
}

.team-page__wrapper {
  padding-top: 190px;
  padding-bottom: 135px;
}
@media only screen and (max-width: 1399px) {
  .team-page__wrapper {
    padding-top: 150px;
  }
}
@media only screen and (max-width: 1199px) {
  .team-page__wrapper {
    padding-top: 120px;
    padding-bottom: 100px;
  }
}
@media only screen and (max-width: 991px) {
  .team-page__wrapper {
    padding-top: 100px;
    padding-bottom: 80px;
  }
}
@media only screen and (max-width: 767px) {
  .team-page__wrapper {
    padding-top: 100px;
    padding-bottom: 50px;
  }
}
.team-page__inner .sub-title {
  border-bottom: 1px solid rgba(17, 17, 17, 0.15);
  padding-bottom: 10px;
  margin-bottom: 40px;
}
@media only screen and (max-width: 991px) {
  .team-page__inner .sub-title {
    margin-bottom: 30px;
  }
}
.team-page__inner .sub-title h4 {
  font-weight: 500;
  font-size: 18px;
  line-height: 38px;
  letter-spacing: -0.02em;
  color: #FF6A3A;
  font-family: var(--font_BDOGrotesk);
}
.team-page__content-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
}
.team-page__heading .title {
  font-weight: 400;
  font-size: 90px;
  line-height: 85px;
  letter-spacing: -0.05em;
  color: var(--primary);
  font-family: var(--font_BDOGrotesk);
}
@media only screen and (max-width: 1399px) {
  .team-page__heading .title {
    font-size: 76px;
    line-height: 82px;
  }
}
@media only screen and (max-width: 1199px) {
  .team-page__heading .title {
    font-size: 60px;
    line-height: 66px;
  }
}
@media only screen and (max-width: 991px) {
  .team-page__heading .title {
    font-size: 60px;
    line-height: 66px;
  }
  .team-page__heading .title br {
    display: none;
  }
}
@media only screen and (max-width: 767px) {
  .team-page__heading .title {
    font-size: 42px;
    line-height: 46px;
  }
}
@media (max-width: 575px) {
  .team-page__heading .title {
    font-size: 30px;
    line-height: 35px;
  }
}
.team-page__content .media:first-child {
  margin-left: 18px;
}
.team-page__content .media img {
  border: 3px solid var(--white);
  border-radius: 50%;
  max-width: 60px;
  max-height: 60px;
  object-fit: cover;
  margin-left: -18px;
}
.dark .team-page__content .media img {
  border: 3px solid var(--dark);
}
.team-page__content .text {
  font-weight: 400;
  font-size: 20px;
  line-height: 24px;
  color: rgba(17, 17, 17, 0.5);
  margin-top: 25px;
  margin-bottom: 43px;
}
.dark .team-page__content .text {
  color: rgba(255, 255, 255, 0.5);
}
@media only screen and (max-width: 991px) {
  .team-page__content .text {
    margin-bottom: 25px;
  }
  .team-page__content .text br {
    display: none;
  }
}
.team-page__content .text strong {
  color: var(--primary);
}
.team-page__content .team-page-btn {
  position: relative;
  font-weight: 400;
  font-size: 18px;
  line-height: 38px;
  letter-spacing: -0.02em;
  color: var(--primary);
  font-family: var(--font_body);
}
.team-page__content .team-page-btn::before {
  width: 100%;
  height: 1px;
  background-color: currentColor;
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  transition: all 0.5s;
  color: var(--primary);
}
.dark .team-page__content .team-page-btn:hover {
  color: var(--white);
}
.team-page__content .team-page-btn:hover::before {
  width: 0%;
}

.project-section__info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 60px;
}
@media only screen and (max-width: 991px) {
  .project-section__info {
    align-items: inherit;
  }
}
.project-section__info .sub-title {
  font-family: var(--font_BDOGrotesk);
  font-weight: 500;
  font-size: 20px;
  line-height: 27px;
  letter-spacing: -0.03em;
  color: var(--primary);
}
.project-section__info .sub-title img {
  margin-right: 4px;
}
.project-section__info .title {
  font-family: var(--font_BDOGrotesk);
  font-weight: 500;
  font-size: 48px;
  line-height: 58px;
  letter-spacing: -0.05em;
  color: var(--primary);
  padding-left: 40px;
}
@media only screen and (max-width: 991px) {
  .project-section__info .title {
    padding-left: 0;
    font-size: 40px;
    line-height: 48px;
  }
}
@media only screen and (max-width: 767px) {
  .project-section__info .title {
    padding-left: 0;
    font-size: 40px;
    line-height: 48px;
  }
  .project-section__info .title br {
    display: none;
  }
}
@media (max-width: 575px) {
  .project-section__info .title {
    font-size: 32px;
    line-height: 35px;
  }
}
.project-section__info .project-btn {
  font-weight: 400;
  font-size: 18px;
  line-height: 26px;
  color: var(--primary);
  text-align: center;
  transition: all 0.3s ease-in-out;
  position: relative;
}
.project-section__info .project-btn::before {
  width: 100%;
  height: 1px;
  background-color: currentColor;
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  transition: all 0.5s;
  color: var(--primary);
}
.dark .project-section__info .project-btn:hover {
  color: var(--white);
}
.project-section__info .project-btn:hover::before {
  width: 0%;
}
.project-section__info .project-btn i {
  transform: rotate(-40deg);
  color: var(--primary);
  font-weight: 600;
  transition: all 0.3s;
}
.project-section__info .project-btn:hover i {
  transform: rotate(0deg);
}
.project-section__item {
  border: 1px solid rgba(17, 17, 17, 0.1);
}
.dark .project-section__item {
  border: 1px solid rgba(255, 255, 255, 0.1);
}
@media only screen and (max-width: 991px) {
  .project-section__item {
    margin-bottom: 20px;
  }
}
.project-section__item-2 {
  margin-top: -52px;
}
@media only screen and (max-width: 1919px) {
  .project-section__item-2 {
    margin-top: -45px;
  }
}
@media only screen and (max-width: 1399px) {
  .project-section__item-2 {
    margin-top: -36px;
  }
}
@media only screen and (max-width: 991px) {
  .project-section__item-2 {
    margin-top: 0px;
  }
}
.project-section__thumb {
  overflow: hidden;
}
.project-section__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  cursor: none;
}
.project-section__content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  padding: 22px 30px;
}
@media only screen and (max-width: 1399px) {
  .project-section__content {
    padding: 22px 20px;
  }
}
.project-section__content .title {
  font-family: var(--font_BDOGrotesk);
  font-weight: 500;
  font-size: 18px;
  line-height: 27px;
  letter-spacing: -0.03em;
  color: rgba(17, 17, 17, 0.5);
  transition: all 0.3s ease-in-out;
}
.project-section__content .title a {
  background: linear-gradient(#111111 0%, #111111 98%);
  background-size: 0 2px;
  background-repeat: no-repeat;
  background-position: left 100%;
  color: var(--primary);
  transition: all 0.3s ease-in-out;
}
.project-section__content .title a:hover {
  color: var(--primary);
  background-size: 100% 2px;
}
.dark .project-section__content .title a {
  background: linear-gradient(#FFFFFF 0%, #FFFFFF 98%);
  background-size: 0 2px;
  background-repeat: no-repeat;
  background-position: left 100%;
  color: var(--white);
  transition: all 0.3s ease-in-out;
}
.dark .project-section__content .title a:hover {
  color: var(--white);
  background-size: 100% 2px;
}
@media only screen and (max-width: 1199px) {
  .project-section__content .title br {
    display: none;
  }
}

.banner-section-2-img {
  overflow: hidden;
}
.banner-section-2-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.project-section-2__box {
  display: grid;
  grid-template-columns: auto 533px;
  gap: 10px;
  margin-bottom: 65px;
}
.project-section-2__box:last-child {
  margin-bottom: 0;
}
@media only screen and (max-width: 1919px) {
  .project-section-2__box {
    grid-template-columns: auto 449px;
  }
}
@media only screen and (max-width: 991px) {
  .project-section-2__box {
    grid-template-columns: auto 280px;
  }
}
@media only screen and (max-width: 767px) {
  .project-section-2__box {
    grid-template-columns: auto 280px;
    margin-bottom: 15px;
  }
}
@media (max-width: 575px) {
  .project-section-2__box {
    grid-template-columns: 1fr;
    margin-bottom: 0;
  }
}
.project-section-2__box-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
@media (max-width: 575px) {
  .project-section-2__box-2 {
    grid-template-columns: repeat(1, 1fr);
  }
}
.project-section-2__box-3 {
  grid-template-columns: 533px 1fr;
}
@media only screen and (max-width: 1919px) {
  .project-section-2__box-3 {
    grid-template-columns: 449px 1fr;
  }
}
@media only screen and (max-width: 991px) {
  .project-section-2__box-3 {
    grid-template-columns: 280px 1fr;
  }
}
@media only screen and (max-width: 767px) {
  .project-section-2__box-3 {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 575px) {
  .project-section-2__box-3 {
    grid-template-columns: 1fr;
  }
}
@media only screen and (max-width: 767px) {
  .project-section-2__item {
    margin-bottom: 70px;
  }
}
.project-section-2__item .project-thumb {
  position: relative;
  height: 702px;
  overflow: hidden;
  border-radius: 20px;
}
@media only screen and (max-width: 991px) {
  .project-section-2__item .project-thumb {
    height: 100%;
  }
}
.project-section-2__item .project-thumb img {
  border-radius: 20px;
  width: 100%;
  height: 100%;
  object-fit: cover;
  cursor: none;
}
.project-section-2__item .project-meta {
  position: absolute;
  display: flex;
  gap: 5px;
  top: 30px;
  left: 30px;
}
@media (max-width: 575px) {
  .project-section-2__item .project-meta {
    left: 15px;
  }
}
.project-section-2__item .project-meta span {
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  letter-spacing: -0.05em;
  color: var(--primary);
  border-radius: 17px;
  padding: 4px 13px;
  font-family: var(--font_BDOGrotesk);
  background: var(--white);
}
.dark .project-section-2__item .project-meta span {
  color: #111111;
}
.project-section-2__item .title {
  font-weight: 400;
  font-size: 24px;
  line-height: 26px;
  letter-spacing: -0.05em;
  color: var(--primary);
  font-family: var(--font_BDOGrotesk);
  margin-top: 17px;
}
.project-section-2__item .title a {
  background: linear-gradient(#111111 0%, #111111 98%);
  background-size: 0 2px;
  background-repeat: no-repeat;
  background-position: left 100%;
  color: var(--primary);
  transition: all 0.3s ease-in-out;
}
.project-section-2__item .title a:hover {
  color: var(--primary);
  background-size: 100% 2px;
}
.dark .project-section-2__item .title a {
  background: linear-gradient(#FFFFFF 0%, #FFFFFF 98%);
  background-size: 0 2px;
  background-repeat: no-repeat;
  background-position: left 100%;
  color: #FFFFFF;
  transition: all 0.3s ease-in-out;
}
.dark .project-section-2__item .title a:hover {
  color: #FFFFFF;
  background-size: 100% 2px;
}

.project-section-5 .section-5__info {
  display: flex;
  align-items: end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
}
.project-section-5__wrapper {
  display: grid;
  grid-template-columns: 1fr 967px;
  gap: 30px;
}
@media only screen and (max-width: 1919px) {
  .project-section-5__wrapper {
    grid-template-columns: 1fr 860px;
  }
}
@media only screen and (max-width: 1399px) {
  .project-section-5__wrapper {
    grid-template-columns: 1fr 650px;
  }
}
@media only screen and (max-width: 1199px) {
  .project-section-5__wrapper {
    grid-template-columns: 1fr 550px;
  }
}
@media only screen and (max-width: 991px) {
  .project-section-5__wrapper {
    grid-template-columns: 1fr 450px;
  }
}
@media only screen and (max-width: 767px) {
  .project-section-5__wrapper {
    grid-template-columns: 1fr 282px;
  }
}
@media (max-width: 575px) {
  .project-section-5__wrapper {
    grid-template-columns: 1fr;
  }
}
.project-section-5__btn {
  margin-bottom: 20px;
}
.project-section-5__btn .project-btn {
  font-weight: 400;
  font-size: 14px;
  line-height: 30px;
  letter-spacing: -0.05em;
  text-transform: uppercase;
  color: var(--primary);
  font-family: var(--font_BDOGrotesk);
}
.project-section-5__btn .project-btn i {
  font-weight: 400;
  margin-left: 4px;
}
.project-section-5__btn a {
  position: relative;
}
.project-section-5__btn a::before {
  width: 100%;
  height: 1px;
  background-color: currentColor;
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  transition: all 0.5s;
  color: var(--primary);
}
.dark .project-section-5__btn a:hover {
  color: var(--white);
}
.project-section-5__btn a:hover::before {
  width: 0%;
}
.project-section-5__item {
  padding-left: 30px;
  border-left: 1px solid rgba(17, 17, 17, 0.1);
}
.dark .project-section-5__item {
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}
@media only screen and (max-width: 991px) {
  .project-section-5__item {
    padding-left: 20px;
  }
}
@media only screen and (max-width: 767px) {
  .project-section-5__item {
    padding-left: 15px;
  }
}
@media (max-width: 575px) {
  .project-section-5__item {
    padding-left: 0px;
    border-left: none;
  }
}
.project-section-5__box {
  border-bottom: 1px solid rgba(17, 17, 17, 0.1);
  padding-bottom: 30px;
  padding-top: 48px;
  max-height: 667px;
  height: 100%;
}
.dark .project-section-5__box {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
@media only screen and (max-width: 1919px) {
  .project-section-5__box {
    max-height: 597px;
  }
}
@media only screen and (max-width: 1399px) {
  .project-section-5__box {
    max-height: 457px;
  }
}
@media only screen and (max-width: 1199px) {
  .project-section-5__box {
    max-height: 389px;
  }
}
@media only screen and (max-width: 991px) {
  .project-section-5__box {
    max-height: 332px;
  }
}
@media only screen and (max-width: 767px) {
  .project-section-5__box {
    max-height: 210px;
    height: inherit;
  }
}
@media (max-width: 575px) {
  .project-section-5__box {
    max-height: 240px;
    height: inherit;
    padding-top: 25px;
  }
}
.project-section-5__box:first-child {
  padding-top: 0;
  max-height: 623px;
}
@media only screen and (max-width: 1919px) {
  .project-section-5__box:first-child {
    max-height: 552px;
  }
}
@media only screen and (max-width: 1399px) {
  .project-section-5__box:first-child {
    max-height: 410px;
  }
}
@media only screen and (max-width: 1199px) {
  .project-section-5__box:first-child {
    max-height: 346px;
  }
}
@media only screen and (max-width: 991px) {
  .project-section-5__box:first-child {
    max-height: 284px;
  }
}
@media only screen and (max-width: 767px) {
  .project-section-5__box:first-child {
    max-height: 176px;
  }
}
@media (max-width: 575px) {
  .project-section-5__box:first-child {
    max-height: 180px;
  }
}
.project-section-5__content .top-content {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: auto;
}
.project-section-5__content .top-content .title {
  font-weight: 400;
  font-size: 20px;
  line-height: 27px;
  letter-spacing: -0.05em;
  color: var(--primary);
  font-family: var(--font_BDOGrotesk);
}
.project-section-5__content .top-content .title a {
  background: linear-gradient(var(--primary) 0%, var(--primary) 98%);
  background-size: 0 2px;
  background-repeat: no-repeat;
  background-position: left 100%;
  color: var(--primary);
  transition: all 0.3s ease-in-out;
}
.project-section-5__content .top-content .title a:hover {
  color: var(--primary);
  background-size: 100% 2px;
}
.project-section-5__content .top-content .number {
  font-weight: 400;
  font-size: 20px;
  line-height: 27px;
  letter-spacing: -0.05em;
  color: var(--primary);
  font-family: var(--font_BDOGrotesk);
}
.project-section-5__content .bottom-content {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: space-between;
  height: 100%;
  margin-top: 256px;
}
@media only screen and (max-width: 1919px) {
  .project-section-5__content .bottom-content {
    margin-top: 225px;
  }
}
@media only screen and (max-width: 1399px) {
  .project-section-5__content .bottom-content {
    margin-top: 155px;
  }
}
@media only screen and (max-width: 1199px) {
  .project-section-5__content .bottom-content {
    margin-top: 130px;
  }
}
@media only screen and (max-width: 991px) {
  .project-section-5__content .bottom-content {
    margin-top: 100px;
  }
}
@media only screen and (max-width: 767px) {
  .project-section-5__content .bottom-content {
    margin-top: 100px;
  }
}
.project-section-5__content .bottom-content .meta .date {
  font-weight: 400;
  font-size: 16px;
  line-height: 21px;
  letter-spacing: -0.03em;
  color: rgba(17, 17, 17, 0.5);
  font-family: var(--font_BDOGrotesk);
}
.dark .project-section-5__content .bottom-content .meta .date {
  color: rgba(255, 255, 255, 0.5);
}
.project-section-5__content .bottom-content .button .project-btn {
  font-weight: 400;
  font-size: 14px;
  line-height: 30px;
  letter-spacing: -0.05em;
  text-transform: uppercase;
  color: var(--primary);
  font-family: var(--font_BDOGrotesk);
}
.project-section-5__content .bottom-content .button .project-btn i {
  margin-left: 8px;
  font-weight: 400;
  color: var(--primary);
}
.project-section-5__content .bottom-content .button a {
  position: relative;
}
.project-section-5__content .bottom-content .button a::before {
  width: 100%;
  height: 1px;
  background-color: currentColor;
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  transition: all 0.5s;
  color: var(--primary);
}
.dark .project-section-5__content .bottom-content .button a:hover {
  color: var(--white);
}
.project-section-5__content .bottom-content .button a:hover::before {
  width: 0%;
}
.project-section-5__thumb {
  margin-bottom: 45px;
  overflow: hidden;
  max-height: 622px;
}
@media only screen and (max-width: 767px) {
  .project-section-5__thumb {
    margin-bottom: 30px;
  }
}
.project-section-5__thumb:last-child {
  margin-bottom: 0;
}
.project-section-5__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.portfolio-section-6 {
  padding-top: 20px;
}
.portfolio-section-6__wrapper {
  display: grid;
  grid-template-columns: 793px 1fr;
  gap: 20px;
  padding-bottom: 20px;
}
@media only screen and (max-width: 1919px) {
  .portfolio-section-6__wrapper {
    grid-template-columns: 576px 1fr;
  }
}
@media only screen and (max-width: 1199px) {
  .portfolio-section-6__wrapper {
    grid-template-columns: 450px 1fr;
  }
}
@media only screen and (max-width: 991px) {
  .portfolio-section-6__wrapper {
    grid-template-columns: 340px 1fr;
  }
}
@media only screen and (max-width: 767px) {
  .portfolio-section-6__wrapper {
    grid-template-columns: 1fr;
  }
}
.portfolio-section-6__thumb {
  position: relative;
  max-height: 1000px;
  border-radius: 20px;
}
@media only screen and (max-width: 1919px) {
  .portfolio-section-6__thumb {
    height: 723px;
  }
}
@media only screen and (max-width: 1399px) {
  .portfolio-section-6__thumb {
    height: 623px;
  }
}
@media only screen and (max-width: 1199px) {
  .portfolio-section-6__thumb {
    height: 523px;
  }
}
@media only screen and (max-width: 991px) {
  .portfolio-section-6__thumb {
    height: 500px;
  }
}
@media only screen and (max-width: 767px) {
  .portfolio-section-6__thumb {
    height: 450px;
  }
}
@media (max-width: 575px) {
  .portfolio-section-6__thumb {
    height: 350px;
  }
}
.portfolio-section-6__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}
.portfolio-section-6__thumb::before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.14);
  border-radius: 20px;
}
.portfolio-section-6__thumb .content {
  position: absolute;
  left: 60px;
  bottom: 50px;
}
@media only screen and (max-width: 991px) {
  .portfolio-section-6__thumb .content {
    left: 25px;
  }
}
.portfolio-section-6__thumb .content .title {
  font-weight: 400;
  font-size: 32px;
  line-height: 32px;
  letter-spacing: -0.07em;
  color: var(--white);
  font-family: var(--font_BDOGrotesk);
  margin-bottom: 26px;
}
.portfolio-section-6__thumb .content .title a {
  background: linear-gradient(#FFFFFF 0%, #FFFFFF 98%);
  background-size: 0 2px;
  background-repeat: no-repeat;
  background-position: left 100%;
  color: #FFFFFF;
  transition: all 0.3s ease-in-out;
}
.portfolio-section-6__thumb .content .title a:hover {
  color: #FFFFFF;
  background-size: 100% 2px;
}
.portfolio-section-6__thumb .content .rr-btn {
  padding: 15.5px 28.5px;
}
.portfolio-section-6__banner .portfolio__thumb {
  position: relative;
  margin-bottom: 20px;
  overflow: hidden;
  border-radius: 20px;
}
@media only screen and (max-width: 767px) {
  .portfolio-section-6__banner .portfolio__thumb {
    height: 400px;
  }
}
.portfolio-section-6__banner .portfolio__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}
.portfolio-section-6__banner .portfolio__thumb::before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.14);
  border-radius: 20px;
}
.portfolio-section-6__banner .portfolio__thumb .content {
  position: absolute;
  left: 50%;
  bottom: 50px;
  transform: translate(-50%, 0%);
  text-align: center;
  width: 100%;
}
@media only screen and (max-width: 767px) {
  .portfolio-section-6__banner .portfolio__thumb .content {
    bottom: 25px;
  }
}
.portfolio-section-6__banner .portfolio__thumb .content .title {
  font-weight: 400;
  font-size: 32px;
  line-height: 32px;
  letter-spacing: -0.07em;
  color: var(--white);
  font-family: var(--font_BDOGrotesk);
  margin-bottom: 26px;
}
.portfolio-section-6__banner .portfolio__thumb .content .title a {
  background: linear-gradient(#FFFFFF 0%, #FFFFFF 98%);
  background-size: 0 2px;
  background-repeat: no-repeat;
  background-position: left 100%;
  color: #FFFFFF;
  transition: all 0.3s ease-in-out;
}
.portfolio-section-6__banner .portfolio__thumb .content .title a:hover {
  color: #FFFFFF;
  background-size: 100% 2px;
}
.portfolio-section-6__banner .portfolio__thumb .content .rr-btn {
  padding: 15.5px 28.5px;
}

.portfolio-section-6__wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  transition: all 0.5s ease;
}
.portfolio-section-6__item {
  flex: 1;
  overflow: hidden;
  transition: all 0.6s ease;
  border-radius: 20px;
}
@media only screen and (max-width: 767px) {
  .portfolio-section-6__item {
    flex: inherit;
  }
}
.portfolio-section-6__item img {
  width: 100%;
  height: 1000px;
  object-fit: cover;
  transition: all 0.6s ease;
  transform: scale(1);
  border-radius: 20px;
}
.portfolio-section-6__item:hover {
  flex: 2;
}
@media only screen and (max-width: 1199px) {
  .portfolio-section-6__item:hover {
    flex: 1.5;
  }
}
@media only screen and (max-width: 991px) {
  .portfolio-section-6__item:hover {
    flex: 1;
  }
}
@media only screen and (max-width: 767px) {
  .portfolio-section-6__item:hover {
    flex: inherit;
  }
}
.portfolio-section-6__item:hover img {
  transform: scale(1);
}
.portfolio-section-6__wrapper:hover .portfolio-section-6__item {
  opacity: 1;
}
.portfolio-section-6__wrapper:hover .portfolio-section-6__item:hover {
  flex: 2;
  opacity: 1;
}
@media only screen and (max-width: 767px) {
  .portfolio-section-6__wrapper:hover .portfolio-section-6__item:hover {
    flex: inherit;
    opacity: 1;
  }
}

.works-section-10 {
  background: #FCF7F3;
  border-bottom: 1px solid rgba(17, 17, 17, 0.1);
}
.dark .works-section-10 {
  background: var(--dark);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.works-section-10__box {
  border-bottom: 1px solid rgba(17, 17, 17, 0.1);
}
.dark .works-section-10__box {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.works-section-10__box:last-child {
  border-bottom: none;
}
.works-section-10__wrapper {
  margin: 0 15px 0 15px;
  border-left: 1px solid rgba(17, 17, 17, 0.1);
  border-right: 1px solid rgba(17, 17, 17, 0.1);
  padding-top: 50px;
}
.dark .works-section-10__wrapper {
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}
.works-section-10__inner {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 50px 10px;
  padding: 0 15px 0 15px;
  padding-bottom: 45px;
}
@media only screen and (max-width: 1199px) {
  .works-section-10__inner {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media only screen and (max-width: 991px) {
  .works-section-10__inner {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 575px) {
  .works-section-10__inner {
    grid-template-columns: repeat(1, 1fr);
  }
}
.works-section-10__inner .work-box-10 .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.works-section-10__inner .work-box-10 .content {
  margin-top: 10px;
}
.works-section-10__inner .work-box-10 .content .title {
  font-weight: 400;
  font-size: 18px;
  line-height: 26px;
  letter-spacing: -0.05em;
  color: var(--primary);
  font-family: var(--font_BDOGrotesk);
}
.works-section-10__inner-3 {
  display: grid;
  grid-template-columns: auto auto auto 738px;
  padding-bottom: 140px;
}
@media only screen and (max-width: 1919px) {
  .works-section-10__inner-3 {
    grid-template-columns: auto auto auto 500px;
  }
}
@media only screen and (max-width: 1399px) {
  .works-section-10__inner-3 {
    grid-template-columns: auto auto auto 400px;
  }
}
@media only screen and (max-width: 1199px) {
  .works-section-10__inner-3 {
    grid-template-columns: repeat(3, 1fr);
    padding-bottom: 90px;
  }
}
@media only screen and (max-width: 991px) {
  .works-section-10__inner-3 {
    grid-template-columns: repeat(2, 1fr);
    padding-bottom: 70px;
  }
}
@media only screen and (max-width: 767px) {
  .works-section-10__inner-3 {
    padding-bottom: 60px;
  }
}
@media (max-width: 575px) {
  .works-section-10__inner-3 {
    grid-template-columns: repeat(1, 1fr);
  }
}

.portfolio-section-11__box {
  padding-top: 155px;
  padding-bottom: 40px;
}
@media only screen and (max-width: 1199px) {
  .portfolio-section-11__box {
    padding-top: 155px;
    padding-bottom: 40px;
  }
}
.portfolio-section-11__inner {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-right: -300px;
  margin-left: -195px;
  margin-bottom: 80px;
}
@media only screen and (max-width: 1199px) {
  .portfolio-section-11__inner {
    margin-right: -100px;
    margin-left: -80px;
    margin-bottom: 70px;
  }
}
@media only screen and (max-width: 767px) {
  .portfolio-section-11__inner {
    margin-right: 10px;
    margin-left: 10px;
    margin-bottom: 70px;
  }
}
.portfolio-section-11__item .thumb {
  position: relative;
}
.portfolio-section-11__item .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s ease-in-out;
}
.portfolio-section-11__item .thumb .content {
  text-align: center;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-in-out;
}
.portfolio-section-11__item .thumb .content .title {
  font-weight: 400;
  font-size: 36px;
  line-height: 36px;
  letter-spacing: -0.05em;
  color: var(--white);
  margin-bottom: 15px;
}
@media (max-width: 575px) {
  .portfolio-section-11__item .thumb .content .title {
    font-size: 28px;
    line-height: 22px;
    letter-spacing: -0.05em;
    color: var(--white);
    margin-bottom: 8px;
  }
}
.portfolio-section-11__item .thumb .content .title a {
  background: linear-gradient(#FFFFFF 0%, #FFFFFF 98%);
  background-size: 0 2px;
  background-repeat: no-repeat;
  background-position: left 100%;
  color: #FFFFFF;
  transition: all 0.3s ease-in-out;
}
.portfolio-section-11__item .thumb .content .title a:hover {
  color: #FFFFFF;
  background-size: 100% 2px;
}
.portfolio-section-11__item .thumb .content span {
  font-weight: 400;
  font-size: 14px;
  line-height: 27px;
  color: rgba(255, 255, 255, 0.5);
}
.portfolio-section-11__box .swiper-slide.swiper-slide-active .thumb img {
  border-radius: 281.5px;
}
.portfolio-section-11__box .swiper-slide.swiper-slide-active .thumb .content {
  opacity: 1;
  visibility: visible;
}
.portfolio-section-11__box .arrow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 50px 0 50px;
  gap: 20px;
}
@media (max-width: 575px) {
  .portfolio-section-11__box .arrow {
    flex-wrap: wrap;
  }
}
.portfolio-section-11__box .arrow .swiper-horizontal > .swiper-pagination-bullets,
.portfolio-section-11__box .arrow .swiper-pagination-bullets.swiper-pagination-horizontal,
.portfolio-section-11__box .arrow .swiper-pagination-custom,
.portfolio-section-11__box .arrow .swiper-pagination-fraction {
  bottom: 0px !important;
  left: 0;
  width: 100%;
}
.portfolio-section-11__box .arrow .swiper-pagination {
  position: relative;
  text-align: center;
  transition: 0.3s opacity;
  transform: translate3d(0, 0, 0);
  z-index: 10;
}
.portfolio-section-11__box .arrow .swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.portfolio-section-11__box .arrow .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 4px);
  width: 44px;
  height: 10px;
  border-radius: 5px;
}
.portfolio-section-11__box .arrow .rr-button h5 {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
  font-weight: 600;
  font-size: 14px;
  line-height: 16px;
  text-transform: uppercase;
  color: rgba(17, 17, 17, 0.5);
  border: 1px solid rgba(17, 17, 17, 0.1);
  border-radius: 15px;
  padding: 6px 19.3px;
  transition: all 0.3s ease-in-out;
}
.dark .portfolio-section-11__box .arrow .rr-button h5 {
  color: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.portfolio-section-11__box .arrow .rr-button h5 i {
  font-size: 13px;
  transition: all 0.3s ease-in-out;
}
.portfolio-section-11__box .arrow .rr-button h5:hover {
  border: 1px solid #111111;
  color: var(--primary);
}
.dark .portfolio-section-11__box .arrow .rr-button h5:hover {
  border: 1px solid #FFFFFF;
  color: var(--white);
}

.portfolio-section-11__box .arrow .swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.portfolio-section-11__box .arrow .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 4px);
  width: 44px;
  height: 10px;
  border-radius: 5px;
  background: #111111;
}
.dark .portfolio-section-11__box .arrow .swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.dark .portfolio-section-11__box .arrow .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  background: var(--white);
}

.portfolio__wrapper {
  padding-top: 190px;
  padding-bottom: 100px;
}
@media only screen and (max-width: 1199px) {
  .portfolio__wrapper {
    padding-top: 120px;
  }
}
@media only screen and (max-width: 767px) {
  .portfolio__wrapper {
    padding-top: 100px;
    padding-bottom: 70px;
  }
}
.portfolio__wrapper .service-item {
  display: flex;
  gap: 226px;
  margin-left: 520px;
  margin-top: 93px;
}
@media only screen and (max-width: 1199px) {
  .portfolio__wrapper .service-item {
    margin-left: 400px;
    margin-top: 50px;
  }
}
@media only screen and (max-width: 991px) {
  .portfolio__wrapper .service-item {
    margin-left: 140px;
    margin-top: 50px;
  }
}
@media only screen and (max-width: 767px) {
  .portfolio__wrapper .service-item {
    margin-left: 0px;
    margin-top: 50px;
  }
}
@media (max-width: 575px) {
  .portfolio__wrapper .service-item {
    margin-left: 0px;
    margin-top: 50px;
    gap: 100px;
  }
}
.portfolio__wrapper .service-item .content .title {
  font-weight: 400;
  font-size: 18px;
  line-height: 18px;
  letter-spacing: -0.05em;
  color: var(--primary);
}
.portfolio__wrapper .service-list ul li {
  font-weight: 400;
  font-size: 18px;
  line-height: 22px;
  letter-spacing: -0.05em;
  color: #999999;
  font-family: var(--font_BDOGrotesk);
  list-style: none;
  margin-bottom: 1px;
  transition: all 0.3s ease-in-out;
}
.portfolio__wrapper .service-list ul li:hover {
  color: var(--primary);
}
.portfolio__info .sub-title {
  border-bottom: 1px solid rgba(17, 17, 17, 0.15);
  padding-bottom: 10px;
}
.dark .portfolio__info .sub-title {
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}
.portfolio__info .sub-title h4 {
  font-weight: 500;
  font-size: 18px;
  line-height: 38px;
  letter-spacing: -0.02em;
  color: #FF6A3A;
  font-family: var(--font_body);
}
.portfolio__heading .title {
  font-weight: 400;
  font-size: 90px;
  line-height: 85px;
  letter-spacing: -0.05em;
  color: var(--primary);
  font-family: var(--font_BDOGrotesk);
  margin-top: 40px;
}
@media only screen and (max-width: 767px) {
  .portfolio__heading .title {
    font-size: 68px;
    line-height: 73px;
    margin-top: 30px;
  }
  .portfolio__heading .title br {
    display: none;
  }
}
@media (max-width: 575px) {
  .portfolio__heading .title {
    font-size: 40px;
    line-height: 46px;
    margin-top: 25px;
  }
}

.portfolio-details-page__inner {
  padding-top: 200px;
  padding-bottom: 80px;
}
@media only screen and (max-width: 1399px) {
  .portfolio-details-page__inner {
    padding-top: 150px;
  }
}
@media only screen and (max-width: 1199px) {
  .portfolio-details-page__inner {
    padding-top: 120px;
  }
}
@media only screen and (max-width: 991px) {
  .portfolio-details-page__inner {
    padding-top: 100px;
    padding-bottom: 70px;
  }
}
@media only screen and (max-width: 767px) {
  .portfolio-details-page__inner {
    padding-top: 100px;
    padding-bottom: 50px;
  }
}
.portfolio-details-page__inner .portfolio-wrapper {
  display: grid;
  grid-template-columns: 355px 1fr;
  gap: 50px;
  margin-bottom: 77px;
}
@media only screen and (max-width: 991px) {
  .portfolio-details-page__inner .portfolio-wrapper {
    grid-template-columns: 300px 1fr;
    gap: 30px;
    margin-bottom: 50px;
  }
}
@media only screen and (max-width: 767px) {
  .portfolio-details-page__inner .portfolio-wrapper {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 50px;
  }
}
@media only screen and (max-width: 767px) {
  .portfolio-details-page__inner .portfolio-wrapper {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 30px;
  }
}
.portfolio-details-page__inner .portfolio-info .title {
  font-weight: 400;
  font-size: 140px;
  line-height: 130px;
  letter-spacing: -0.05em;
  color: var(--primary);
  font-family: var(--font_BDOGrotesk);
}
@media only screen and (max-width: 1399px) {
  .portfolio-details-page__inner .portfolio-info .title {
    font-size: 106px;
    line-height: 108px;
  }
}
@media only screen and (max-width: 1199px) {
  .portfolio-details-page__inner .portfolio-info .title {
    font-size: 82px;
    line-height: 90px;
  }
}
@media only screen and (max-width: 991px) {
  .portfolio-details-page__inner .portfolio-info .title {
    font-size: 64px;
    line-height: 70px;
  }
  .portfolio-details-page__inner .portfolio-info .title br {
    display: none;
  }
}
@media (max-width: 575px) {
  .portfolio-details-page__inner .portfolio-info .title {
    font-size: 46px;
    line-height: 47px;
  }
}
.portfolio-details-page__inner .portfolio-thumb {
  position: relative;
  overflow: hidden;
}
.portfolio-details-page__inner .portfolio-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 15px;
}
.portfolio-details-page__inner .portfolio-thumb .logo {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}
.portfolio-details-page__inner .portfolio-list-info .title {
  font-weight: 400;
  font-size: 18px;
  line-height: 38px;
  letter-spacing: -0.02em;
  color: var(--primary);
  font-family: var(--font_body);
}
.portfolio-details-page__inner .portfolio-list:first-child {
  border-top: 1px solid #E7E7E7;
  max-width: 520px;
}
.dark .portfolio-details-page__inner .portfolio-list:first-child {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
@media only screen and (max-width: 991px) {
  .portfolio-details-page__inner .portfolio-list:first-child {
    max-width: 100%;
  }
}
.portfolio-details-page__inner .portfolio-list {
  margin-left: -8px;
}
@media only screen and (max-width: 991px) {
  .portfolio-details-page__inner .portfolio-list {
    margin-left: 0;
    margin-bottom: 30px;
    margin-top: 30px;
  }
}
.portfolio-details-page__inner .portfolio-item {
  display: grid;
  grid-template-columns: 184px 1fr;
  max-width: 520px;
  border-bottom: 1px solid #E7E7E7;
  padding: 17.5px 0;
}
.dark .portfolio-details-page__inner .portfolio-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
@media only screen and (max-width: 1399px) {
  .portfolio-details-page__inner .portfolio-item {
    grid-template-columns: 150px 1fr;
  }
}
@media only screen and (max-width: 1199px) {
  .portfolio-details-page__inner .portfolio-item {
    grid-template-columns: 120px 1fr;
  }
}
@media only screen and (max-width: 991px) {
  .portfolio-details-page__inner .portfolio-item {
    max-width: 100%;
    grid-template-columns: 220px 1fr;
  }
}
@media only screen and (max-width: 767px) {
  .portfolio-details-page__inner .portfolio-item {
    max-width: 100%;
    grid-template-columns: 180px 1fr;
  }
}
@media (max-width: 575px) {
  .portfolio-details-page__inner .portfolio-item {
    max-width: 100%;
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
.portfolio-details-page__inner .portfolio-item span {
  font-weight: 500;
  font-size: 18px;
  line-height: 14px;
  color: rgba(17, 17, 17, 0.5);
  font-family: var(--font_body);
}
.dark .portfolio-details-page__inner .portfolio-item span {
  color: rgba(255, 255, 255, 0.5);
}
.portfolio-details-page__inner .portfolio-item h4 {
  font-weight: 500;
  font-size: 18px;
  line-height: 19px;
  color: var(--primary);
  font-family: var(--font_body);
}
.portfolio-details-page__inner .portfolio-content {
  margin-left: 55px;
}
@media only screen and (max-width: 1199px) {
  .portfolio-details-page__inner .portfolio-content {
    margin-left: 0;
  }
}
.portfolio-details-page__inner .portfolio-content .text {
  font-weight: 400;
  font-size: 18px;
  line-height: 26px;
  color: var(--primary);
  font-family: var(--font_body);
  margin-bottom: 30px;
}
@media only screen and (max-width: 1919px) {
  .portfolio-details-page__inner .portfolio-content .text br {
    display: none;
  }
}
.portfolio-details-page__inner .portfolio-content .portfolio-btn {
  position: relative;
  font-weight: 500;
  font-size: 18px;
  line-height: 26px;
  color: var(--primary);
  font-family: var(--font_body);
}
.portfolio-details-page__inner .portfolio-content .portfolio-btn::before {
  width: 100%;
  height: 1px;
  background-color: currentColor;
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  transition: all 0.5s;
  color: var(--primary);
}
.dark .portfolio-details-page__inner .portfolio-content .portfolio-btn:hover {
  color: var(--white);
}
.portfolio-details-page__inner .portfolio-content .portfolio-btn:hover::before {
  width: 0%;
}

.portfolio-details-thumb {
  overflow: hidden;
  position: relative;
}
.portfolio-details-thumb img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.portfolio-details-thumb .logo {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.portfolio-details__content-box {
  display: grid;
  grid-template-columns: 1fr 659px;
  margin-top: 65px;
  margin-bottom: 65px;
}
@media only screen and (max-width: 1199px) {
  .portfolio-details__content-box {
    grid-template-columns: 1fr 500px;
  }
}
@media only screen and (max-width: 991px) {
  .portfolio-details__content-box {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}
@media only screen and (max-width: 767px) {
  .portfolio-details__content-box {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 40px;
  }
}
.portfolio-details__inner {
  margin-bottom: 40px;
}
.portfolio-details__item {
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
}
@media only screen and (max-width: 767px) {
  .portfolio-details__item {
    flex-wrap: wrap;
  }
}
.portfolio-details__item .thumb {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
}
.portfolio-details__item .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 15px;
}
.portfolio-details__item .thumb .logo {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}
.portfolio-details__wrap {
  display: flex;
  align-items: center;
  gap: 105px;
  margin-bottom: 94px;
}
@media only screen and (max-width: 991px) {
  .portfolio-details__wrap {
    gap: 40px;
    margin-bottom: 50px;
  }
}
@media only screen and (max-width: 767px) {
  .portfolio-details__wrap {
    gap: 40px;
    margin-bottom: 50px;
    flex-wrap: wrap;
  }
}
.portfolio-details__wrap .content .title {
  font-weight: 400;
  font-size: 30px;
  line-height: 27px;
  letter-spacing: -0.05em;
  color: var(--primary);
  margin-bottom: 17px;
}
.portfolio-details__wrap .content .decs {
  font-weight: 400;
  font-size: 20px;
  line-height: 28px;
  color: rgba(17, 17, 17, 0.5);
  font-family: var(--font_body);
}
.dark .portfolio-details__wrap .content .decs {
  color: rgba(255, 255, 255, 0.5);
}
@media only screen and (max-width: 1199px) {
  .portfolio-details__wrap .content .decs br {
    display: none;
  }
}
.portfolio-details__banner {
  overflow: hidden;
  border-radius: 15px;
}
.portfolio-details__banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 15px;
}
.portfolio-details__info .title {
  font-weight: 400;
  font-size: 50px;
  line-height: 50px;
  letter-spacing: -0.05em;
  color: var(--primary);
}
@media only screen and (max-width: 991px) {
  .portfolio-details__info .title br {
    display: none;
  }
}
@media (max-width: 575px) {
  .portfolio-details__info .title {
    font-size: 34px;
    line-height: 37px;
  }
}
.portfolio-details__content .decs {
  font-weight: 400;
  font-size: 20px;
  line-height: 28px;
  color: rgba(17, 17, 17, 0.5);
  font-family: var(--font_body);
  margin-bottom: 27px;
}
.dark .portfolio-details__content .decs {
  color: rgba(255, 255, 255, 0.5);
}
@media only screen and (max-width: 1199px) {
  .portfolio-details__content .decs br {
    display: none;
  }
}
.portfolio-details__list ul li {
  font-weight: 400;
  font-size: 20px;
  line-height: 28px;
  color: var(--primary);
  list-style: none;
  font-family: var(--font_body);
}

.portfolio-8 {
  width: 100vw;
  height: 100vh;
  max-width: 100vw;
  max-width: 100vw;
}
.portfolio-8__item {
  width: 100vw;
  height: 100vh;
  position: relative;
  background-size: cover;
  background-repeat: no-repeat;
}
.portfolio-8__content {
  z-index: 9;
  position: absolute;
  left: 50%;
  bottom: 80px;
  transform: translate(-50%, -50%);
  text-align: center;
  width: 100%;
}
@media only screen and (max-width: 767px) {
  .portfolio-8__content {
    bottom: 170px;
  }
}
.portfolio-8__content-title {
  opacity: 0;
  font-weight: 400;
  font-size: 75px;
  line-height: 75px;
  letter-spacing: -0.05em;
  color: #FFFFFF;
}
@media only screen and (max-width: 767px) {
  .portfolio-8__content-title {
    font-size: 50px;
    line-height: 53px;
  }
}
.portfolio-8__content-title a:hover {
  color: var(--white);
}
.portfolio-8__list {
  opacity: 1;
  display: flex;
  align-items: center;
  transform: translateY(-100px);
  margin-left: 50px;
  position: relative;
  z-index: 99;
}
@media only screen and (max-width: 991px) {
  .portfolio-8__list {
    margin-left: 10px;
    opacity: 1;
    display: flex;
    align-items: center;
    transform: translateY(-85px);
  }
}
@media only screen and (max-width: 767px) {
  .portfolio-8__list {
    transform: translateY(-145px);
    margin-left: 20px;
  }
}
.portfolio-8__list li {
  list-style: none;
}
.portfolio-8__list li:last-child {
  font-weight: 600;
  font-size: 14px;
  line-height: 16px;
  padding: 10px 18px;
  border-radius: 20px;
  color: var(--white);
  text-transform: uppercase;
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.portfolio-8__list li a {
  font-weight: 600;
  font-size: 14px;
  line-height: 16px;
  padding: 10px 18px;
  border-radius: 20px;
  color: var(--white);
  text-transform: uppercase;
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.portfolio-8 .swiper-slide-active .portfolio-8__item {
  animation-name: qodef-animate-slide-out;
  animation-duration: 1.3s;
  animation-fill-mode: forwards;
}
.portfolio-8 .swiper-slide-active .portfolio-8__content-title {
  transition: all 2200ms ease;
  animation: slideFadeIn 2.2s ease forwards;
  opacity: 1;
  text-align: center;
}
.portfolio-8 .swiper-slide-active .portfolio-8__list {
  opacity: 1;
  transform: translatey(0px);
  transition: all 2000ms ease;
}
.portfolio-8__slider {
  width: 100vw;
  height: 100vh;
}
.portfolio-8__slider__arrow {
  gap: 40px;
  right: 50px;
  bottom: 50px;
  z-index: 99;
  display: flex;
  position: absolute;
  align-items: center;
}
@media only screen and (max-width: 991px) {
  .portfolio-8__slider__arrow {
    gap: 20px;
    bottom: 60px;
  }
}
@media only screen and (max-width: 767px) {
  .portfolio-8__slider__arrow {
    left: 20px;
    bottom: 40px;
  }
}
@media (max-width: 575px) {
  .portfolio-8__slider__arrow {
    left: 30px;
  }
}
.portfolio-8__slider__arrow-prev, .portfolio-8__slider__arrow-next {
  gap: 8px;
  display: flex;
  font-size: 14px;
  font-weight: 600;
  align-items: center;
  color: var(--white);
}
.portfolio-8 .swiper {
  width: 100vw;
  height: 100vh;
  max-width: 100vw;
  max-width: 100vw;
}
.portfolio-8 img {
  margin: 0 !important;
  padding: 0 !important;
}
.portfolio-8 .swiper-slicer-image {
  max-width: unset;
}
.portfolio-8 .portfolio-8-pagination {
  position: absolute;
  z-index: 9;
  position: absolute;
  left: 43%;
  bottom: 60px;
  transform: translate(-50%, -50%);
  display: flex;
  gap: 5px;
  top: inherit;
  right: 0;
  transform: inherit;
}
@media only screen and (max-width: 991px) {
  .portfolio-8 .portfolio-8-pagination {
    left: 38%;
  }
}
@media only screen and (max-width: 767px) {
  .portfolio-8 .portfolio-8-pagination {
    left: 20px;
    bottom: 75px;
  }
}
@media (max-width: 575px) {
  .portfolio-8 .portfolio-8-pagination {
    left: 30px;
  }
}
.portfolio-8 .swiper-pagination-bullet {
  width: 48px;
  height: 10px;
  display: inline-block;
  margin: 0 5px;
  overflow: hidden;
  transition: 0.4s;
  position: relative;
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.3);
}
.portfolio-8 .swiper-pagination-bullet::before {
  content: "";
  width: 150px;
  height: 100%;
  position: absolute;
  transition: 0.6s;
  z-index: 9;
  left: 0;
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.3);
}
.portfolio-8 .swiper-pagination-bullet::after {
  content: "";
  width: 0;
  height: 100%;
  position: absolute;
  transition: 0.6s;
  z-index: 8;
  left: 0;
  background-color: white;
}
.portfolio-8 .swiper-pagination-bullet-active::after {
  opacity: 1;
  width: 100%;
}

.feature-section-4__wrapper {
  display: grid;
  grid-template-columns: 1fr 605px;
  gap: 300px;
}
@media only screen and (max-width: 1919px) {
  .feature-section-4__wrapper {
    gap: 200px;
  }
}
@media only screen and (max-width: 1399px) {
  .feature-section-4__wrapper {
    grid-template-columns: 1fr 500px;
    gap: 100px;
  }
}
@media only screen and (max-width: 1199px) {
  .feature-section-4__wrapper {
    grid-template-columns: 1fr 459px;
    gap: 60px;
  }
}
@media only screen and (max-width: 991px) {
  .feature-section-4__wrapper {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}
@media only screen and (max-width: 991px) {
  .feature-section-4__wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
.feature-section-4__item {
  margin-bottom: 95px;
}
@media only screen and (max-width: 1199px) {
  .feature-section-4__item {
    margin-bottom: 60px;
  }
}
@media only screen and (max-width: 767px) {
  .feature-section-4__item {
    margin-bottom: 0px;
  }
}
.feature-section-4__item .heading {
  margin-bottom: 95px;
}
@media only screen and (max-width: 1199px) {
  .feature-section-4__item .heading {
    margin-bottom: 60px;
  }
}
@media (max-width: 575px) {
  .feature-section-4__item .heading {
    margin-bottom: 50px;
  }
}
.feature-section-4__item .heading .title {
  font-weight: 400;
  font-size: 80px;
  line-height: 80px;
  letter-spacing: -0.05em;
  color: #FFFFFF;
  font-family: var(--font_BDOGrotesk);
}
@media only screen and (max-width: 1919px) {
  .feature-section-4__item .heading .title {
    font-size: 66px;
    line-height: 68px;
  }
}
@media only screen and (max-width: 1199px) {
  .feature-section-4__item .heading .title {
    font-size: 53px;
    line-height: 52px;
  }
}
@media only screen and (max-width: 1199px) {
  .feature-section-4__item .heading .title {
    font-size: 40px;
    line-height: 42px;
  }
}
@media (max-width: 575px) {
  .feature-section-4__item .heading .title {
    font-size: 34px;
    line-height: 34px;
  }
}
.feature-section-4__item .content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 15px;
}
.feature-section-4__item .content .title {
  font-weight: 400;
  font-size: 20px;
  line-height: 27px;
  letter-spacing: -0.05em;
  color: #FCF7F3;
  font-family: var(--font_BDOGrotesk);
}
@media (max-width: 575px) {
  .feature-section-4__item .content .title {
    font-size: 18px;
    line-height: 22px;
  }
}
.feature-section-4__item .content span {
  font-weight: 400;
  font-size: 16px;
  line-height: 27px;
  color: rgba(252, 247, 243, 0.5);
  font-family: var(--font_body);
}
.feature-section-4__item .thumb {
  overflow: hidden;
}
.feature-section-4__item .thumb img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.feature-section-4__inner {
  display: flex;
  justify-content: center;
}
@media only screen and (max-width: 767px) {
  .feature-section-4__inner .feature-section-4__item {
    margin: 40px 0;
  }
}
.feature-section-4__inner .feature-section-4__item .thumb {
  max-width: 555px;
}
@media only screen and (max-width: 991px) {
  .feature-section-4__inner .feature-section-4__item .thumb {
    max-width: 400px;
  }
}
@media only screen and (max-width: 767px) {
  .feature-section-4__inner .feature-section-4__item .thumb {
    max-width: 100%;
  }
}
.feature-section-4__inner .feature-section-4__item .thumb img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.feature-section-4__wrapper-3 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 406px;
}
@media only screen and (max-width: 1199px) {
  .feature-section-4__wrapper-3 {
    grid-template-columns: 1fr 1fr;
    gap: 100px;
  }
}
@media only screen and (max-width: 991px) {
  .feature-section-4__wrapper-3 {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}
@media only screen and (max-width: 767px) {
  .feature-section-4__wrapper-3 {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
.feature-section-4__wrapper-3 .feature-section-4__item {
  max-width: 605px;
}

.Portfolio-section-3__item-box {
  display: grid;
  grid-template-columns: 1fr 800px;
  gap: 20px;
  position: relative;
  z-index: 1;
}
@media only screen and (max-width: 1919px) {
  .Portfolio-section-3__item-box {
    grid-template-columns: 1fr 745px;
  }
}
@media only screen and (max-width: 1399px) {
  .Portfolio-section-3__item-box {
    grid-template-columns: 1fr 580px;
  }
}
@media only screen and (max-width: 1199px) {
  .Portfolio-section-3__item-box {
    grid-template-columns: 1fr 520px;
  }
}
@media only screen and (max-width: 991px) {
  .Portfolio-section-3__item-box {
    grid-template-columns: 1fr 400px;
  }
}
@media only screen and (max-width: 767px) {
  .Portfolio-section-3__item-box {
    grid-template-columns: 1fr;
  }
}
.Portfolio-section-3__item-box > *:nth-child(1) {
  max-width: 527px;
}
@media only screen and (max-width: 767px) {
  .Portfolio-section-3__item-box > *:nth-child(1) {
    max-width: 100%;
  }
}
.Portfolio-section-3__item-box > *:nth-child(2) {
  margin-top: 100px;
}
@media only screen and (max-width: 1399px) {
  .Portfolio-section-3__item-box > *:nth-child(2) {
    margin-top: 50px;
  }
}
@media only screen and (max-width: 991px) {
  .Portfolio-section-3__item-box > *:nth-child(2) {
    margin-top: 50px;
  }
}
@media only screen and (max-width: 767px) {
  .Portfolio-section-3__item-box > *:nth-child(2) {
    margin-top: 30px;
  }
}
@media (max-width: 575px) {
  .Portfolio-section-3__item-box > *:nth-child(2) {
    margin-top: 20px;
  }
}
.Portfolio-section-3__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 15px;
}
.Portfolio-section-3__content .title {
  font-weight: 400;
  font-size: 20px;
  line-height: 27px;
  letter-spacing: -0.05em;
  color: var(--primary);
}
.Portfolio-section-3__content .title a {
  background: linear-gradient(#111111 0%, #111111 98%);
  background-size: 0 1px;
  background-repeat: no-repeat;
  background-position: left 100%;
  color: var(--primary);
  transition: all 0.3s ease-in-out;
}
.Portfolio-section-3__content .title a:hover {
  color: var(--primary);
  background-size: 100% 2px;
}
.Portfolio-section-3__content .date {
  font-weight: 400;
  font-size: 16px;
  line-height: 21px;
  color: #999999;
  font-family: var(--font_body);
}
.Portfolio-section-3__wrapper > *:nth-child(2) {
  display: grid;
  grid-template-columns: 1fr 674px 1fr;
}
@media only screen and (max-width: 1199px) {
  .Portfolio-section-3__wrapper > *:nth-child(2) {
    grid-template-columns: 1fr 509px 1fr;
  }
}
@media only screen and (max-width: 991px) {
  .Portfolio-section-3__wrapper > *:nth-child(2) {
    grid-template-columns: 1fr 460px 1fr;
  }
}
@media only screen and (max-width: 767px) {
  .Portfolio-section-3__wrapper > *:nth-child(2) {
    grid-template-columns: 1fr;
  }
}
.Portfolio-section-3__wrapper > *:nth-child(3) {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 18px;
  margin-top: 100px;
}
@media only screen and (max-width: 1399px) {
  .Portfolio-section-3__wrapper > *:nth-child(3) {
    margin-top: 50px;
  }
}
@media only screen and (max-width: 1199px) {
  .Portfolio-section-3__wrapper > *:nth-child(3) {
    margin-top: 50px;
    grid-template-columns: 1fr 30px 1fr;
  }
}
@media only screen and (max-width: 1199px) {
  .Portfolio-section-3__wrapper > *:nth-child(3) {
    margin-top: 50px;
    grid-template-columns: 1fr 30px 1fr;
  }
}
@media only screen and (max-width: 991px) {
  .Portfolio-section-3__wrapper > *:nth-child(3) {
    margin-top: 50px;
    grid-template-columns: 1fr 0px 1fr;
  }
}
@media only screen and (max-width: 767px) {
  .Portfolio-section-3__wrapper > *:nth-child(3) {
    grid-template-columns: 1fr;
    margin-top: 30px;
  }
}
@media (max-width: 575px) {
  .Portfolio-section-3__wrapper > *:nth-child(3) {
    margin-top: 20px;
    grid-template-columns: 1fr;
  }
}
.Portfolio-section-3__wrapper > *:nth-child(4) {
  display: grid;
  grid-template-columns: 1fr 527px 1fr;
  gap: 20px;
}
@media only screen and (max-width: 1399px) {
  .Portfolio-section-3__wrapper > *:nth-child(4) {
    grid-template-columns: 1fr 421px 1fr;
  }
}
@media only screen and (max-width: 1199px) {
  .Portfolio-section-3__wrapper > *:nth-child(4) {
    grid-template-columns: 200px 421px 1fr;
  }
}
@media only screen and (max-width: 991px) {
  .Portfolio-section-3__wrapper > *:nth-child(4) {
    grid-template-columns: 0px 421px 1fr;
  }
}
@media only screen and (max-width: 767px) {
  .Portfolio-section-3__wrapper > *:nth-child(4) {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 575px) {
  .Portfolio-section-3__wrapper > *:nth-child(4) {
    grid-template-columns: 1fr;
  }
}
.Portfolio-section-3__content-box {
  margin-top: 290px;
  margin-left: 160px;
}
@media only screen and (max-width: 1919px) {
  .Portfolio-section-3__content-box {
    margin-left: 40px;
  }
}
@media only screen and (max-width: 1399px) {
  .Portfolio-section-3__content-box {
    margin-top: 170px;
  }
}
@media only screen and (max-width: 1199px) {
  .Portfolio-section-3__content-box {
    margin-top: 110px;
    margin-left: 0;
  }
}
@media only screen and (max-width: 767px) {
  .Portfolio-section-3__content-box {
    margin-top: 40px;
    margin-left: 0;
  }
}
.Portfolio-section-3__content-box .text {
  font-weight: 400;
  font-size: 20px;
  line-height: 28px;
  color: #999999;
  font-family: var(--font_body);
  letter-spacing: 0;
  margin-bottom: 35px;
}
.dark .Portfolio-section-3__content-box .text {
  color: #555555;
}
@media only screen and (max-width: 1399px) {
  .Portfolio-section-3__content-box .text br {
    display: none;
  }
}
.Portfolio-section-3__content-box .rr-btn {
  background: inherit;
  border: 1px solid rgba(17, 17, 17, 0.1);
  border-radius: 35px;
  padding: 24px 48.2px;
}
.dark .Portfolio-section-3__content-box .rr-btn {
  border: 1px solid rgba(255, 255, 255, 0.15);
}
.Portfolio-section-3__content-box .rr-btn .text-one {
  color: var(--primary);
}
.Portfolio-section-3__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* === clam-slider (Home) === */
.clam-slider {
  position: relative;
  padding: 0 50px;
}
@media (max-width: 575px) {
  .clam-slider {
    padding: 0 25px;
  }
}
.clam-slider::before {
  content: "";
  left: 0px;
  bottom: 330px;
  position: absolute;
  width: 1920px;
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
  z-index: 2;
}
@media only screen and (max-width: 767px) {
  .clam-slider::before {
    bottom: 230px;
  }
}
.clam-slider::after {
  content: "";
  left: 0px;
  bottom: 100px;
  position: absolute;
  width: 1920px;
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
  z-index: 2;
}
.clam-slider .header-area-8__inner {
  padding: 50px 0;
}

.clam-slider #clam-slider-holder {
  width: 100%;
  height: 100vh;
  position: relative;
  overflow: hidden;
  opacity: 0;
}
.clam-slider #clam-slider-main {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: visible;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 100px;
}
@media only screen and (max-width: 1199px) {
  .clam-slider #clam-slider-main {
    margin-top: 80px;
  }
}
.clam-slider #canvas-slider {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  right: 0;
  overflow: hidden;
  -webkit-transition: width 0.5s ease-in-out 0;
  transition: width 0.5s ease-in-out 0s;
}
.clam-slider #canvas-slider::before {
  content: "";
  position: absolute;
  background: rgba(17, 17, 17, 0.15);
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 1;
}
.clam-slider #canvas-slider img {
  width: 100%;
  height: 100%;
  position: relative;
  display: none;
  z-index: 100;
  cursor: pointer;
  object-position: center;
  object-fit: cover;
}
.clam-slider__content {
  overflow: hidden;
  z-index: 9;
  left: 50px;
  bottom: 240px;
  position: absolute;
}
@media only screen and (max-width: 1199px) {
  .clam-slider__content {
    left: 80px;
  }
}
@media (max-width: 575px) {
  .clam-slider__content {
    left: 15px;
    bottom: 200px;
  }
}
.clam-slider__content span {
  opacity: 0;
  font-weight: 400;
  font-size: 75px;
  line-height: 75px;
  letter-spacing: -0.05em;
  color: var(--white);
  overflow: hidden;
  transform: translateY(-100%);
  display: inline-block;
  font-family: var(--font_BDOGrotesk);
}
@media only screen and (max-width: 1399px) {
  .clam-slider__content span {
    font-size: 65px;
    line-height: 65px;
  }
}
@media only screen and (max-width: 1199px) {
  .clam-slider__content span {
    font-size: 65px;
    line-height: 65px;
  }
}
@media only screen and (max-width: 991px) {
  .clam-slider__content span {
    font-size: 70px;
    line-height: 70px;
  }
}
@media only screen and (max-width: 767px) {
  .clam-slider__content span {
    font-size: 40px;
    line-height: 40px;
  }
}
.clam-slider__content-wrapper {
  overflow: hidden;
  margin-top: 332px;
}
@media only screen and (max-width: 1919px) {
  .clam-slider__content-wrapper {
    margin-top: 220px;
  }
}
@media (max-width: 575px) {
  .clam-slider__content-wrapper {
    margin-top: 183px;
  }
}
.clam-slider .sub-title {
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  color: var(--white);
  letter-spacing: -0.48px;
  display: flex;
  gap: 7px;
  align-items: center;
  left: 480px;
  bottom: 380px;
  position: absolute;
  z-index: 1;
}
@media only screen and (max-width: 767px) {
  .clam-slider .sub-title {
    left: 80px;
  }
}
@media (max-width: 575px) {
  .clam-slider .sub-title {
    left: 15px;
  }
}
.clam-slider__meta-list {
  opacity: 0;
  overflow: hidden;
  text-align: right;
  margin-right: 400px;
  transform: translateY(-100%);
}
@media only screen and (max-width: 1199px) {
  .clam-slider__meta-list {
    margin-right: 200px;
  }
}
@media only screen and (max-width: 991px) {
  .clam-slider__meta-list {
    margin-right: 90px;
  }
}
@media only screen and (max-width: 767px) {
  .clam-slider__meta-list {
    margin-right: 0;
    text-align: left;
    margin-left: 90px;
  }
}
@media (max-width: 575px) {
  .clam-slider__meta-list {
    grid-template-columns: auto;
    gap: 10px;
    margin: 0 15px;
  }
}
.clam-slider__meta-list li {
  font-size: 15px;
  font-weight: 500;
  line-height: 16px;
  list-style: none;
  color: var(--white);
  letter-spacing: -0.75px;
  text-transform: uppercase;
  font-size: 100px;
  overflow: hidden;
  font-weight: 500;
  line-height: 108px;
  letter-spacing: -3px;
}
@media only screen and (max-width: 1199px) {
  .clam-slider__meta-list li {
    font-size: 90px;
    line-height: 90px;
  }
}
@media only screen and (max-width: 991px) {
  .clam-slider__meta-list li {
    font-size: 70px;
    line-height: 70px;
  }
}
@media only screen and (max-width: 767px) {
  .clam-slider__meta-list li {
    font-size: 40px;
    line-height: 40px;
  }
}
.clam-slider .swiper-slide-active .clam-slider__content span {
  opacity: 1;
  transform: translatey(0px);
  display: block;
  transition: all 2000ms ease;
}
.clam-slider .swiper-slide-active .clam-slider__meta-list {
  opacity: 1;
  transform: translatey(0px);
  transition: all 1500ms ease;
}
.clam-slider__arrow {
  gap: 148px;
  z-index: 9;
  right: 100px;
  bottom: 101px;
  position: absolute;
  align-items: center;
  justify-content: space-between;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  padding: 50px 0 50px 50px;
}
@media only screen and (max-width: 1399px) {
  .clam-slider__arrow {
    border-left: none;
    padding: 50px 0 50px 50px;
  }
}
.clam-slider__arrow::before {
  content: "";
  left: -742%;
  bottom: 0px;
  position: absolute;
  width: 1px;
  height: 230px;
  background: rgba(255, 255, 255, 0.1);
  z-index: 2;
}
@media only screen and (max-width: 1919px) {
  .clam-slider__arrow::before {
    left: -400%;
  }
}
@media only screen and (max-width: 1399px) {
  .clam-slider__arrow::before {
    display: none;
  }
}
@media only screen and (max-width: 1199px) {
  .clam-slider__arrow {
    right: 165px;
  }
}
@media only screen and (max-width: 991px) {
  .clam-slider__arrow {
    right: 60px;
    bottom: 580px;
    gap: 120px;
  }
}
@media only screen and (max-width: 767px) {
  .clam-slider__arrow {
    bottom: 594px;
    gap: 60px;
    left: 70px;
    right: inherit;
  }
}
@media (max-width: 575px) {
  .clam-slider__arrow {
    display: none;
  }
}
.clam-slider__arrow-prev, .clam-slider__arrow-next {
  color: var(--white);
}
.clam-slider__arrow-prev:hover, .clam-slider__arrow-next:hover {
  border-color: rgba(255, 255, 255, 0.3);
}
.clam-slider__arrow-prev {
  display: block;
  margin-bottom: 50px;
}
.clam-slider__arrow-prev span {
  display: flex;
  align-items: center;
  font-weight: 600;
  font-size: 14px;
  line-height: 16px;
  text-transform: uppercase;
  color: #FFFFFF;
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  font-family: var(--font_body);
  padding: 11px 20.2px;
}
.clam-slider__arrow-prev span i {
  font-size: 13px;
  font-weight: 400;
}
.clam-slider__arrow-next span {
  display: flex;
  align-items: center;
  font-weight: 600;
  font-size: 14px;
  line-height: 16px;
  text-transform: uppercase;
  color: #FFFFFF;
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  font-family: var(--font_body);
  padding: 11px 20.2px;
}
.clam-slider__arrow-next span i {
  font-size: 13px;
  font-weight: 400;
}
.clam-slider .clam-slider-pagination-wrapper {
  left: 0%;
  right: 0;
  z-index: 9;
  bottom: 52px;
  margin: 0 auto;
  position: absolute;
  display: inline-block;
}
@media (max-width: 575px) {
  .clam-slider .clam-slider-pagination-wrapper {
    display: none;
  }
}
.clam-slider .clam-slider-pagination-wrapper .clam-slider-pagination {
  gap: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.clam-slider .swiper-pagination-bullet {
  width: 7px;
  opacity: 1;
  height: 7px;
  overflow: hidden;
  transition: 0.4s;
  margin: 0 !important;
  border-radius: 500px;
  display: inline-block;
  background: rgba(255, 255, 255, 0.4);
}
.clam-slider .swiper-pagination-bullet-active {
  opacity: 1;
  background-color: var(--white);
}
.clam-slider .clam-slider-counter {
  z-index: 9;
  right: 404px;
  opacity: 0.7;
  bottom: 490px;
  display: flex;
  color: white;
  font-size: 30px;
  font-size: 22px;
  font-weight: 500;
  line-height: 24px;
  position: absolute;
  align-items: center;
  letter-spacing: -0.66px;
}
@media only screen and (max-width: 1199px) {
  .clam-slider .clam-slider-counter {
    right: 200px;
  }
}
@media only screen and (max-width: 991px) {
  .clam-slider .clam-slider-counter {
    right: 100px;
    bottom: 510px;
  }
}
@media only screen and (max-width: 767px) {
  .clam-slider .clam-slider-counter {
    right: 100px;
    bottom: 550px;
    left: 70px;
  }
}
@media (max-width: 575px) {
  .clam-slider .clam-slider-counter {
    left: 15px;
  }
}
.clam-slider__copyright {
  z-index: 1;
  left: 50px;
  width: 100%;
  bottom: 35px;
  display: flex;
  max-width: 1790px;
  position: absolute;
  justify-content: space-between;
}
@media only screen and (max-width: 1919px) {
  .clam-slider__copyright {
    max-width: 1350px;
  }
}
@media only screen and (max-width: 1399px) {
  .clam-slider__copyright {
    max-width: 1050px;
  }
}
@media only screen and (max-width: 1199px) {
  .clam-slider__copyright {
    max-width: 900px;
  }
}
@media only screen and (max-width: 991px) {
  .clam-slider__copyright {
    max-width: 700px;
  }
}
@media only screen and (max-width: 767px) {
  .clam-slider__copyright {
    max-width: 500px;
  }
}
@media (max-width: 575px) {
  .clam-slider__copyright {
    flex-direction: column;
    left: 20px;
  }
}
.clam-slider__copyright span {
  font-size: 16px;
  font-weight: 500;
  line-height: 31px;
  letter-spacing: -0.48px;
  color: rgba(255, 255, 255, 0.7);
}
.clam-slider__copyright .social {
  color: #FFF;
  font-size: 16px;
  font-weight: 500;
  line-height: 31px;
  position: relative;
  padding-left: 16px;
  letter-spacing: -0.48px;
}
.clam-slider__copyright .social::before {
  top: 50%;
  left: 0;
  width: 6px;
  content: "";
  height: 6px;
  position: absolute;
  border-radius: 500px;
  background: currentColor;
  transform: translate(0px, -50%);
}
.clam-slider__copyright .copyright-text {
  font-size: 16px;
  font-weight: 500;
  line-height: 31px;
  letter-spacing: -0.48px;
  color: rgba(255, 255, 255, 0.7);
}
.clam-slider__copyright .copyright-text a {
  color: var(--white);
  position: relative;
}
.clam-slider__copyright .copyright-text a::before {
  left: 0;
  bottom: 0;
  width: 100%;
  content: "";
  height: 1px;
  position: absolute;
  transition: all 0.3s;
  background: currentColor;
}
.clam-slider__copyright .copyright-text a:hover::before {
  width: 0;
}

.blog-section__info {
  text-align: center;
  margin-bottom: 60px;
}
@media (max-width: 575px) {
  .blog-section__info {
    margin-bottom: 40px;
  }
}
.blog-section__info .sub-title {
  font-family: var(--font_BDOGrotesk);
  font-weight: 500;
  font-size: 20px;
  line-height: 27px;
  letter-spacing: -0.03em;
  color: var(--primary);
  text-align: center;
  margin-bottom: 10px;
}
.blog-section__info .sub-title img {
  margin-right: 5px;
  margin-top: -2px;
}
.blog-section__info .title {
  font-weight: 500;
  font-size: 48px;
  line-height: 58px;
  letter-spacing: -0.05em;
  color: var(--primary);
  font-family: var(--font_BDOGrotesk);
}
@media only screen and (max-width: 767px) {
  .blog-section__info .title {
    font-size: 40px;
    line-height: 48px;
  }
}
@media (max-width: 575px) {
  .blog-section__info .title {
    font-size: 32px;
    line-height: 36px;
  }
}
@media only screen and (max-width: 767px) {
  .blog-section__info .title br {
    display: none;
  }
}
.blog-section__item-box {
  display: grid;
  grid-template-columns: 390px 1fr;
  border-right: 1px solid rgba(17, 17, 17, 0.1);
  margin-right: -20px;
}
.dark .blog-section__item-box {
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}
@media only screen and (max-width: 1399px) {
  .blog-section__item-box {
    grid-template-columns: 300px 1fr;
  }
}
@media only screen and (max-width: 1199px) {
  .blog-section__item-box {
    grid-template-columns: 1fr;
  }
}
@media only screen and (max-width: 767px) {
  .blog-section__item-box {
    grid-template-columns: 1fr;
    border-bottom: 1px solid rgba(17, 17, 17, 0.1);
  }
}
.blog-section__item-box-2 {
  border-right: none;
}
.dark .blog-section__item-box-2 {
  border-right: none;
}
.blog-section__content {
  padding: 20px 30px 20px 30px;
}
@media only screen and (max-width: 1399px) {
  .blog-section__content {
    padding: 20px 15px 20px 20px;
  }
}
@media only screen and (max-width: 1199px) {
  .blog-section__content {
    padding: 0px 15px 20px 20px;
  }
}
@media only screen and (max-width: 767px) {
  .blog-section__content {
    padding: 0px 15px 20px 30px;
  }
}
@media (max-width: 575px) {
  .blog-section__content {
    padding: 0px 15px 20px 15px;
  }
}
.blog-section__content .title {
  font-weight: 500;
  font-size: 24px;
  line-height: 34px;
  letter-spacing: -0.05em;
  color: var(--primary);
  font-family: var(--font_BDOGrotesk);
  margin-top: 20px;
}
.blog-section__content .title a {
  background: linear-gradient(#111111 0%, #111111 98%);
  background-size: 0 2px;
  background-repeat: no-repeat;
  background-position: left 100%;
  color: var(--primary);
  transition: all 0.3s ease-in-out;
}
.blog-section__content .title a:hover {
  color: var(--primary);
  background-size: 100% 2px;
}
.dark .blog-section__content .title a {
  background: linear-gradient(#FFFFFF 0%, #FFF 98%);
  background-size: 0 2px;
  background-repeat: no-repeat;
  background-position: left 100%;
  color: var(--white);
  transition: all 0.3s ease-in-out;
}
.dark .blog-section__content .title a:hover {
  color: var(--white);
  background-size: 100% 2px;
}
@media only screen and (max-width: 1919px) {
  .blog-section__content .title br {
    display: none;
  }
}
@media only screen and (max-width: 1399px) {
  .blog-section__content .title {
    font-size: 21px;
    line-height: 26px;
  }
}
.blog-section__content .section-title {
  position: relative;
}
.blog-section__content .section-title:hover::before {
  width: 0;
}
.blog-section__content .section-title:hover .icon .first {
  transform: translate(100%, -100%);
}
.blog-section__content .section-title:hover .icon .second {
  transform: translate(0%, 0%);
}
.blog-section__content .section-title .icon {
  --white-space: 0.07em;
  display: inline-block;
  line-height: 0;
  position: relative;
  overflow: hidden;
  transform: translate(0, var(--white-space));
}
@media only screen and (max-width: 1199px) {
  .blog-section__content .section-title .icon {
    margin-left: 19px;
  }
}
@media (max-width: 575px) {
  .blog-section__content .section-title .icon {
    margin-left: 14px;
  }
}
.blog-section__content .section-title .icon .first {
  transition: all 0.3s;
  width: 0.72em;
  box-sizing: content-box;
  padding: var(--white-space);
}
.blog-section__content .section-title .icon .second {
  position: absolute;
  bottom: 0;
  left: 0;
  transform: translate(-100%, 100%);
  transition: all 0.3s;
  width: 0.72em;
  box-sizing: content-box;
  padding: var(--white-space);
}
.blog-section__meta {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 203px;
}
@media only screen and (max-width: 1399px) {
  .blog-section__meta {
    margin-bottom: 80px;
  }
}
@media only screen and (max-width: 1199px) {
  .blog-section__meta {
    margin-bottom: 60px;
  }
}
.blog-section__meta span {
  font-weight: 400;
  font-size: 18px;
  line-height: 35px;
  letter-spacing: -0.02em;
  color: #999999;
  font-family: var(--font_body);
}
.blog-section__meta span img {
  margin-right: 3px;
  margin-top: -5px;
}
.blog-section__meta .date {
  position: relative;
}
.blog-section__meta .date::before {
  position: absolute;
  content: "";
  left: -14px;
  top: 10px;
  height: 13px;
  width: 1px;
  background: rgba(17, 17, 17, 0.1);
}
@media only screen and (max-width: 1399px) {
  .blog-section__meta .date::before {
    left: -10px;
  }
}
@media only screen and (max-width: 1199px) {
  .blog-section__meta .date::before {
    display: none;
  }
}
.blog-section__wrapper {
  border: 1px solid rgba(17, 17, 17, 0.1);
}
.dark .blog-section__wrapper {
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.blog-section__wrapper-2 {
  border: none;
  border-left: 1px solid rgba(17, 17, 17, 0.1);
  border-bottom: 1px solid rgba(17, 17, 17, 0.1);
  border-right: 1px solid rgba(17, 17, 17, 0.1);
}
.dark .blog-section__wrapper-2 {
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}
.blog-section__thumb {
  padding: 30px;
  border-right: 1px solid rgba(17, 17, 17, 0.1);
  overflow: hidden;
}
.dark .blog-section__thumb {
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}
@media (max-width: 575px) {
  .blog-section__thumb {
    border-right: none;
    padding: 15px;
  }
}
.blog-section__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.blog-section-2 {
  margin-left: 8px;
  padding-left: 0;
  padding-right: 52px;
}
@media only screen and (max-width: 1199px) {
  .blog-section-2 {
    padding-right: 30px;
  }
}
@media only screen and (max-width: 767px) {
  .blog-section-2 {
    padding-right: 30px;
    padding-left: 20px;
  }
}
@media (max-width: 575px) {
  .blog-section-2 {
    padding-right: 15px;
    padding-left: 10px;
  }
}

.blog-section-3__wrapper {
  border-top: 15px solid #FF6A3A;
  padding-bottom: 260px;
}
.blog-section-3__wrapper-2 {
  border-top: none;
}
@media only screen and (max-width: 1399px) {
  .blog-section-3__wrapper {
    padding-bottom: 200px;
  }
}
@media only screen and (max-width: 991px) {
  .blog-section-3__wrapper {
    padding-bottom: 30px;
  }
}
.blog-section-3__thumb {
  max-width: 558px;
}
@media only screen and (max-width: 991px) {
  .blog-section-3__thumb {
    max-width: 100%;
  }
}
.blog-section-3__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 575px) {
  .blog-section-3__thumb img {
    height: 350px;
  }
}
.blog-section-3__box {
  position: relative;
}
@media only screen and (max-width: 1199px) {
  .blog-section-3__box {
    margin-bottom: 40px;
  }
}
.blog-section-3__card {
  background: #F1F1F1;
  padding: 35px 35px 33px 35px;
  max-width: 390px;
  position: absolute;
  top: 166px;
  right: 0;
}
.dark .blog-section-3__card {
  background: #1A1A1A;
}
@media only screen and (max-width: 1199px) {
  .blog-section-3__card {
    top: 115px;
  }
}
@media only screen and (max-width: 991px) {
  .blog-section-3__card {
    top: inherit;
    bottom: 0;
  }
}
@media only screen and (max-width: 767px) {
  .blog-section-3__card {
    padding: 25px 20px 20px 20px;
  }
}
.blog-section-3__content .meta {
  display: flex;
  gap: 10px;
}
.blog-section-3__content .meta span {
  font-weight: 500;
  font-size: 14px;
  line-height: 27px;
  color: #FFFFFF;
  font-family: var(--font_body);
  background: #FF6A3A;
  border-radius: 15px;
  padding: 1.5px 18px;
}
.blog-section-3__content .title {
  font-weight: 400;
  font-size: 30px;
  line-height: 32px;
  letter-spacing: -0.05em;
  color: var(--primary);
  margin-bottom: 24px;
  margin-top: 44px;
}
@media only screen and (max-width: 767px) {
  .blog-section-3__content .title {
    margin-top: 30px;
  }
  .blog-section-3__content .title br {
    display: none;
  }
}
@media only screen and (max-width: 767px) {
  .blog-section-3__content .title {
    font-size: 25px;
    line-height: 28px;
    margin-bottom: 20px;
  }
}
.blog-section-3__content .title a {
  background: linear-gradient(#111111 0%, #111111 98%);
  background-size: 0 2px;
  background-repeat: no-repeat;
  background-position: left 100%;
  color: var(--primary);
  transition: all 0.3s ease-in-out;
}
.blog-section-3__content .title a:hover {
  color: var(--primary);
  background-size: 100% 2px;
}
.dark .blog-section-3__content .title a {
  background: linear-gradient(#FFFFFF 0%, #FFFFFF 98%);
  background-size: 0 2px;
  background-repeat: no-repeat;
  background-position: left 100%;
  color: #FFFFFF;
  transition: all 0.3s ease-in-out;
}
.dark .blog-section-3__content .title a:hover {
  color: #FFFFFF;
  background-size: 100% 2px;
}
.blog-section-3__content .author {
  display: flex;
  gap: 8px;
  align-items: center;
}
.blog-section-3__content .author img {
  width: 22px;
  height: 22px;
  object-fit: cover;
  border-radius: 11px;
}
.blog-section-3__content .author h4 {
  font-weight: 500;
  font-size: 14px;
  line-height: 27px;
  color: var(--primary);
  margin-right: 11px;
}
.blog-section-3__content .author h4 span {
  color: rgba(17, 17, 17, 0.5);
  margin-left: 15px;
}
.blog-section-3__content .author span {
  color: rgba(17, 17, 17, 0.5);
  margin-left: 5px;
}
.dark .blog-section-3__content .author span {
  color: rgba(255, 255, 255, 0.5);
}

.blog-section-5__thumb {
  position: relative;
  transition: all 0.3s ease-in-out;
}
.blog-section-5__thumb::before {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(7px);
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s ease-in-out;
}
.blog-section-5__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.blog-section-5__thumb .meta {
  display: flex;
  gap: 10px;
  align-items: center;
  position: absolute;
  bottom: 35px;
  left: 35px;
}
@media (max-width: 575px) {
  .blog-section-5__thumb .meta {
    bottom: 20px;
    left: 20px;
  }
}
.blog-section-5__thumb .meta span {
  font-weight: 400;
  font-size: 16px;
  line-height: 0.8;
  letter-spacing: -0.07em;
  color: #111111;
  font-family: var(--font_BDOGrotesk);
  background: #FFFFFF;
  border-radius: 16px;
  padding: 10px 16px;
}
.blog-section-5__thumb .icon {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  width: 100%;
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s ease-in-out;
}
.blog-section-5__content .title {
  font-weight: 400;
  font-size: 36px;
  line-height: 36px;
  letter-spacing: -0.07em;
  color: var(--primary);
  margin-top: 27px;
  margin-bottom: 15px;
}
@media only screen and (max-width: 1919px) {
  .blog-section-5__content .title {
    font-size: 32px;
    line-height: 36px;
  }
}
@media only screen and (max-width: 1399px) {
  .blog-section-5__content .title br {
    display: none;
  }
}
@media only screen and (max-width: 1199px) {
  .blog-section-5__content .title {
    font-size: 28px;
    line-height: 32px;
    margin-top: 20px;
    margin-bottom: 10px;
  }
}
@media only screen and (max-width: 991px) {
  .blog-section-5__content .title {
    font-size: 30px;
    line-height: 36px;
  }
}
@media (max-width: 575px) {
  .blog-section-5__content .title {
    font-size: 28px;
    line-height: 34px;
  }
}
.blog-section-5__content .title a {
  background: linear-gradient(#111111 0%, #111111 98%);
  background-size: 0 1px;
  background-repeat: no-repeat;
  background-position: left 100%;
  transition: all 0.3s ease-in-out;
}
.blog-section-5__content .title a:hover {
  color: var(--primary);
  background-size: 100% 2px;
}
.dark .blog-section-5__content .title a {
  background: linear-gradient(#FFFFFF 0%, #FFFFFF 98%);
  background-size: 0 1px;
  background-repeat: no-repeat;
  background-position: left 100%;
  transition: all 0.3s ease-in-out;
}
.dark .blog-section-5__content .title a:hover {
  color: #FFFFFF;
  background-size: 100% 2px;
}
.blog-section-5__content .author h4 {
  font-weight: 400;
  font-size: 14px;
  line-height: 27px;
  color: rgba(17, 17, 17, 0.5);
  font-family: var(--font_body);
}
.blog-section-5__content .author h4 span {
  color: var(--primary);
}
.dark .blog-section-5__content .author h4 {
  color: rgba(255, 255, 255, 0.5);
}
@media only screen and (max-width: 991px) {
  .blog-section-5__item {
    margin-bottom: 0px;
  }
  .blog-section-5__item:last-child {
    margin-bottom: 30px;
  }
}
.blog-section-5__item:hover .blog-section-5__thumb::before {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(7px);
  opacity: 1;
  visibility: visible;
}
.blog-section-5__item:hover .blog-section-5__thumb .icon {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  width: 100%;
  opacity: 1;
  visibility: visible;
}

.blog-section-6__info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 63px;
}
@media only screen and (max-width: 991px) {
  .blog-section-6__info {
    margin-bottom: 40px;
  }
}
.blog-section-6__info .title {
  font-weight: 400;
  font-size: 80px;
  line-height: 80px;
  letter-spacing: -0.05em;
  color: var(--primary);
  font-family: var(--font_BDOGrotesk);
}
@media only screen and (max-width: 991px) {
  .blog-section-6__info .title {
    font-size: 60px;
    line-height: 70px;
  }
}
@media only screen and (max-width: 767px) {
  .blog-section-6__info .title {
    font-size: 50px;
    line-height: 60px;
  }
}
@media (max-width: 575px) {
  .blog-section-6__info .title {
    font-size: 39px;
    line-height: 43px;
  }
}
.blog-section-6__info .blog-btn {
  font-weight: 400;
  font-size: 14px;
  line-height: 30px;
  letter-spacing: -0.05em;
  text-transform: uppercase;
  color: var(--primary);
  font-family: var(--font_BDOGrotesk);
}
.blog-section-6__info .blog-btn i {
  margin-left: 7px;
  font-weight: 400;
  color: var(--primary);
}
.blog-section-6__info a {
  position: relative;
}
.blog-section-6__info a::before {
  width: 100%;
  height: 1px;
  background-color: currentColor;
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  transition: all 0.5s;
  color: var(--primary);
}
.dark .blog-section-6__info a:hover {
  color: var(--white);
}
.blog-section-6__info a:hover::before {
  width: 0%;
}
.blog-section-6__thumb {
  position: relative;
  transition: all 0.3s ease-in-out;
}
.blog-section-6__thumb::before {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(7px);
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s ease-in-out;
  border-radius: 20px;
}
.blog-section-6__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}
.blog-section-6__thumb .meta {
  display: flex;
  gap: 10px;
  align-items: center;
  position: absolute;
  bottom: 35px;
  left: 35px;
}
@media (max-width: 575px) {
  .blog-section-6__thumb .meta {
    bottom: 20px;
    left: 20px;
  }
}
.blog-section-6__thumb .meta span {
  font-weight: 400;
  font-size: 16px;
  line-height: 0.8;
  letter-spacing: -0.07em;
  color: #111111;
  font-family: var(--font_BDOGrotesk);
  background: #FFFFFF;
  border-radius: 16px;
  padding: 10px 16px;
}
.blog-section-6__thumb .icon {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  width: 100%;
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s ease-in-out;
}
.blog-section-6__content .title {
  font-weight: 400;
  font-size: 36px;
  line-height: 36px;
  letter-spacing: -0.07em;
  color: var(--primary);
  margin-top: 27px;
  margin-bottom: 15px;
}
@media only screen and (max-width: 1919px) {
  .blog-section-6__content .title {
    font-size: 32px;
    line-height: 36px;
  }
}
@media only screen and (max-width: 1399px) {
  .blog-section-6__content .title br {
    display: none;
  }
}
@media only screen and (max-width: 1199px) {
  .blog-section-6__content .title {
    font-size: 28px;
    line-height: 32px;
    margin-top: 20px;
    margin-bottom: 10px;
  }
}
@media only screen and (max-width: 991px) {
  .blog-section-6__content .title {
    font-size: 30px;
    line-height: 36px;
  }
}
@media (max-width: 575px) {
  .blog-section-6__content .title {
    font-size: 28px;
    line-height: 34px;
  }
}
.blog-section-6__content .title a {
  background: linear-gradient(#111111 0%, #111111 98%);
  background-size: 0 1px;
  background-repeat: no-repeat;
  background-position: left 100%;
  transition: all 0.3s ease-in-out;
}
.blog-section-6__content .title a:hover {
  color: var(--primary);
  background-size: 100% 2px;
}
.dark .blog-section-6__content .title a {
  background: linear-gradient(#FFFFFF 0%, #FFFFFF 98%);
  background-size: 0 1px;
  background-repeat: no-repeat;
  background-position: left 100%;
  transition: all 0.3s ease-in-out;
}
.dark .blog-section-6__content .title a:hover {
  color: var(--white);
  background-size: 100% 2px;
}
.blog-section-6__content .author h4 {
  font-weight: 400;
  font-size: 14px;
  line-height: 27px;
  color: rgba(17, 17, 17, 0.5);
  font-family: var(--font_body);
}
.dark .blog-section-6__content .author h4 {
  color: rgba(255, 255, 255, 0.5);
}
.blog-section-6__content .author h4 span {
  color: var(--primary);
}
@media only screen and (max-width: 991px) {
  .blog-section-6__item {
    margin-bottom: 0px;
  }
  .blog-section-6__item:last-child {
    margin-bottom: 30px;
  }
}
.blog-section-6__item:hover .blog-section-6__thumb::before {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(7px);
  opacity: 1;
  visibility: visible;
  border-radius: 20px;
}
.blog-section-6__item:hover .blog-section-6__thumb .icon {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  width: 100%;
  opacity: 1;
  visibility: visible;
}

.blog-page__inner {
  display: grid;
  grid-template-columns: 1fr 1015px;
  gap: 30px;
}
@media only screen and (max-width: 1399px) {
  .blog-page__inner {
    grid-template-columns: 1fr 880px;
  }
}
@media only screen and (max-width: 1199px) {
  .blog-page__inner {
    grid-template-columns: 1fr 725px;
  }
}
@media only screen and (max-width: 991px) {
  .blog-page__inner {
    grid-template-columns: 1fr;
  }
}
.blog-page__item {
  display: flex;
  gap: 60px;
  border-bottom: 1px solid #E7E7E7;
  padding-top: 40px;
  padding-bottom: 40px;
}
.dark .blog-page__item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.blog-page__item:first-child {
  border-top: 1px solid #E7E7E7;
}
.dark .blog-page__item:first-child {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
@media only screen and (max-width: 1399px) {
  .blog-page__item {
    gap: 30px;
  }
}
@media (max-width: 575px) {
  .blog-page__item {
    gap: 30px;
    flex-wrap: wrap;
  }
}
.blog-page__item .thumb {
  overflow: hidden;
  border-radius: 15px;
}
.blog-page__item .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 15px;
}
.blog-page__item .content .title {
  font-weight: 400;
  font-size: 30px;
  line-height: 32px;
  letter-spacing: -0.05em;
  color: var(--primary);
  margin-bottom: 33px;
}
.blog-page__item .content .title a {
  background: linear-gradient(#111111 0%, #111111 98%);
  background-size: 0 2px;
  background-repeat: no-repeat;
  background-position: left 100%;
  color: var(--primary);
  transition: all 0.3s ease-in-out;
}
.blog-page__item .content .title a:hover {
  color: var(--primary);
  background-size: 100% 2px;
}
.dark .blog-page__item .content .title a {
  background: linear-gradient(#FFFFFF 0%, #FFFFFF 98%);
  background-size: 0 2px;
  background-repeat: no-repeat;
  background-position: left 100%;
  color: var(--white);
  transition: all 0.3s ease-in-out;
}
.dark .blog-page__item .content .title a:hover {
  color: var(--white);
  background-size: 100% 2px;
}
@media only screen and (max-width: 1399px) {
  .blog-page__item .content .title {
    font-weight: 400;
    font-size: 25px;
    line-height: 29px;
  }
}
@media only screen and (max-width: 1199px) {
  .blog-page__item .content .title br {
    display: none;
  }
}
.blog-page__item .content .author {
  display: flex;
  gap: 8px;
  align-items: center;
}
.blog-page__item .content .author img {
  border-radius: 11px;
}
.blog-page__item .content .author .name {
  font-weight: 500;
  font-size: 14px;
  line-height: 27px;
  color: #555555;
  font-family: var(--font_body);
}
.blog-page__item .content .author .name span {
  color: var(--primary);
}
.blog-page__item .content .meta {
  display: flex;
  gap: 5px;
  margin-bottom: 165px;
}
@media (max-width: 575px) {
  .blog-page__item .content .meta {
    margin-bottom: 30px;
  }
}
.blog-page__item .content .meta span {
  font-weight: 500;
  font-size: 14px;
  line-height: 27px;
  color: #111111;
  font-family: var(--font_body);
  background: #F1F1F1;
  border-radius: 15px;
  padding: 1.5px 17px;
}
.blog-page__list ul li {
  font-weight: 400;
  font-size: 18px;
  line-height: 26px;
  letter-spacing: -0.05em;
  color: var(--primary);
  font-family: var(--font_BDOGrotesk);
  list-style: none;
}

.blog-details-area .blog-details-area-inner .section-header {
  padding-top: 150px;
}
@media only screen and (max-width: 1199px) {
  .blog-details-area .blog-details-area-inner .section-header {
    padding-top: 140px;
  }
}
@media only screen and (max-width: 991px) {
  .blog-details-area .blog-details-area-inner .section-header {
    padding-top: 120px;
  }
}
.blog-details-area .blog-details-area-inner .section-header .section-title-wrapper {
  display: grid;
  grid-template-columns: 463px 1fr;
  margin-bottom: 100px;
}
@media only screen and (max-width: 1399px) {
  .blog-details-area .blog-details-area-inner .section-header .section-title-wrapper {
    grid-template-columns: 380px 1fr;
  }
}
@media only screen and (max-width: 1199px) {
  .blog-details-area .blog-details-area-inner .section-header .section-title-wrapper {
    grid-template-columns: 300px 1fr;
    margin-bottom: 70px;
  }
}
@media only screen and (max-width: 991px) {
  .blog-details-area .blog-details-area-inner .section-header .section-title-wrapper {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}
@media only screen and (max-width: 991px) {
  .blog-details-area .blog-details-area-inner .section-header .section-title-wrapper {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 50px;
  }
}
.blog-details-area .blog-details-area-inner .section-header .section-title-wrapper .author-box .author {
  display: flex;
  gap: 15px;
  margin-top: 96px;
}
@media only screen and (max-width: 1399px) {
  .blog-details-area .blog-details-area-inner .section-header .section-title-wrapper .author-box .author {
    margin-top: 70px;
  }
}
@media only screen and (max-width: 767px) {
  .blog-details-area .blog-details-area-inner .section-header .section-title-wrapper .author-box .author {
    margin-top: 30px;
  }
}
.blog-details-area .blog-details-area-inner .section-header .section-title-wrapper .author-box .author .thumb img {
  width: 100%;
  max-width: 65px;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}
.blog-details-area .blog-details-area-inner .section-header .section-title-wrapper .author-box .author .list span {
  font-weight: 400;
  font-size: 14px;
  line-height: 16px;
  color: var(--primary);
  font-family: var(--font_body);
}
.blog-details-area .blog-details-area-inner .section-header .section-title-wrapper .author-box .author .list h4 {
  font-weight: 500;
  font-size: 16px;
  line-height: 14px;
  color: var(--primary);
  margin: 7px 0;
}
.blog-details-area .blog-details-area-inner .section-header .section-title-wrapper .meta .name {
  font-weight: 500;
  font-size: 14px;
  line-height: 14px;
  color: var(--primary);
  font-family: var(--font_body);
  background: #F1F1F1;
  border-radius: 17.5px;
  display: inline-block;
  padding: 10.5px 14.3px;
  margin-bottom: 5px;
}
.dark .blog-details-area .blog-details-area-inner .section-header .section-title-wrapper .meta .name {
  background: #1A1A1A;
}
.blog-details-area .blog-details-area-inner .section-header .section-title-wrapper .meta .date {
  font-weight: 500;
  font-size: 14px;
  line-height: 14px;
  color: var(--primary);
  font-family: var(--font_body);
  background: #F1F1F1;
  border-radius: 17.5px;
  padding: 10.5px 14.3px;
  max-width: 105px;
}
.dark .blog-details-area .blog-details-area-inner .section-header .section-title-wrapper .meta .date {
  background: #1A1A1A;
}
.blog-details-area .blog-details-area-inner .section-header .section-title-wrapper .title-wrapper h2 {
  font-weight: 400;
  font-size: 90px;
  line-height: 85px;
  letter-spacing: -0.05em;
  color: var(--primary);
  font-family: var(--font_BDOGrotesk);
}
@media only screen and (max-width: 1399px) {
  .blog-details-area .blog-details-area-inner .section-header .section-title-wrapper .title-wrapper h2 {
    font-size: 70px;
    line-height: 72px;
  }
}
@media only screen and (max-width: 1199px) {
  .blog-details-area .blog-details-area-inner .section-header .section-title-wrapper .title-wrapper h2 {
    font-size: 60px;
    line-height: 63px;
  }
}
@media only screen and (max-width: 991px) {
  .blog-details-area .blog-details-area-inner .section-header .section-title-wrapper .title-wrapper h2 {
    font-size: 47px;
    line-height: 55px;
  }
}
@media (max-width: 575px) {
  .blog-details-area .blog-details-area-inner .section-header .section-title-wrapper .title-wrapper h2 {
    font-size: 35px;
    line-height: 39px;
  }
}
.blog-details-area .blog-details-area-inner .section-header .image-wrapper {
  overflow: hidden;
  border-radius: 15px;
  margin-bottom: 50px;
}
@media (max-width: 575px) {
  .blog-details-area .blog-details-area-inner .section-header .image-wrapper {
    height: 300px;
  }
}
.blog-details-area .blog-details-area-inner .section-header .image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.blog-details-area .blog-details-area-inner .section-details .text-wrapper .text {
  font-weight: 400;
  font-size: 18px;
  line-height: 26px;
  color: #555555;
  font-family: var(--font_body);
  letter-spacing: 0;
}
.blog-details-area .blog-details-area-inner .section-details .text-wrapper .dec {
  font-weight: 400;
  font-size: 18px;
  line-height: 26px;
  color: #555555;
  font-family: var(--font_body);
  margin-top: 25px;
  letter-spacing: 0;
}
.dark .blog-details-area .blog-details-area-inner .section-details .text-wrapper .dec {
  color: rgba(255, 255, 255, 0.5);
}
.blog-details-area .blog-details-area-inner .section-details .details-info {
  margin-top: 45px;
}
@media (max-width: 575px) {
  .blog-details-area .blog-details-area-inner .section-details .details-info {
    margin-top: 30px;
  }
}
.blog-details-area .blog-details-area-inner .section-details .details-info .title {
  font-weight: 400;
  font-size: 50px;
  line-height: 35px;
  letter-spacing: -0.07em;
  color: var(--primary);
  font-family: var(--font_BDOGrotesk);
  margin-bottom: 30px;
}
@media (max-width: 575px) {
  .blog-details-area .blog-details-area-inner .section-details .details-info .title {
    font-size: 30px;
    line-height: 35px;
    margin-bottom: 20px;
  }
}
.blog-details-area .blog-details-area-inner .section-details .details-info .feature-list {
  margin-left: 18px;
  margin-top: 27px;
  margin-bottom: 28px;
}
.blog-details-area .blog-details-area-inner .section-details .details-info .feature-list ul li {
  font-weight: 400;
  font-size: 18px;
  line-height: 26px;
  color: #555555;
  font-family: var(--font_body);
}
.dark .blog-details-area .blog-details-area-inner .section-details .details-info .feature-list ul li {
  color: rgba(255, 255, 255, 0.5);
}
.blog-details-area .blog-details-area-inner .section-details .details-info .gallery-wrapper {
  display: flex;
  gap: 20px;
  margin-top: 25px;
  margin-bottom: 20px;
}
@media only screen and (max-width: 767px) {
  .blog-details-area .blog-details-area-inner .section-details .details-info .gallery-wrapper {
    flex-wrap: wrap;
  }
}
.blog-details-area .blog-details-area-inner .section-details .details-info .gallery-wrapper .image {
  overflow: hidden;
  border-radius: 15px;
}
.blog-details-area .blog-details-area-inner .section-details .details-info .gallery-wrapper img {
  overflow: hidden;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 15px;
}
.blog-details-area .blog-details-area-inner .section-details .text-wrapper .text {
  font-weight: 400;
  font-size: 18px;
  line-height: 26px;
  color: #555555;
}
.dark .blog-details-area .blog-details-area-inner .section-details .text-wrapper .text {
  color: rgba(255, 255, 255, 0.5);
}
.blog-details-area .blog-details-area-inner .section-details .thumb-text-wrapper {
  margin-top: 23px;
  display: grid;
  gap: 20px 30px;
  grid-template-columns: 1fr 1fr;
}
@media only screen and (max-width: 991px) {
  .blog-details-area .blog-details-area-inner .section-details .thumb-text-wrapper {
    grid-template-columns: 1fr;
  }
}
.blog-details-area .blog-details-area-inner .section-details .thumb-text-wrapper .thumb {
  overflow: hidden;
  border-radius: 15px;
}
.blog-details-area .blog-details-area-inner .section-details .thumb-text-wrapper .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.blog-details-area .blog-details-area-inner .section-details .thumb-text-wrapper .text-wrapper .text {
  margin-bottom: 18px;
}
.blog-details-area .blog-details-area-inner .section-details .thumb-text-wrapper .text-wrapper p {
  font-weight: 400;
  font-size: 18px;
  line-height: 26px;
  color: #555555;
}
.dark .blog-details-area .blog-details-area-inner .section-details .thumb-text-wrapper .text-wrapper p {
  color: rgba(255, 255, 255, 0.5);
}
@media only screen and (max-width: 1399px) {
  .blog-details-area .blog-details-area-inner .section-details .thumb-text-wrapper .text-wrapper p br {
    display: none;
  }
}
.blog-details-area .blog-details-area-inner .section-details .tags-wrapper {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-top: 65px;
  margin-bottom: 93px;
  flex-wrap: wrap;
}
@media only screen and (max-width: 991px) {
  .blog-details-area .blog-details-area-inner .section-details .tags-wrapper {
    margin-top: 51px;
    margin-bottom: 65px;
  }
}
.blog-details-area .blog-details-area-inner .section-details .tags-wrapper .heading {
  font-weight: 400;
  font-size: 20px;
  line-height: 28px;
  color: var(--primary);
}
.blog-details-area .blog-details-area-inner .section-details .tags-wrapper .tags {
  display: flex;
  align-items: center;
  gap: 5px;
  flex-wrap: wrap;
}
.blog-details-area .blog-details-area-inner .section-details .tags-wrapper .tags .tag {
  font-weight: 500;
  font-size: 14px;
  line-height: 28px;
  color: #555555;
  font-family: var(--font_body);
  border: 1px solid rgba(17, 17, 17, 0.1);
  border-radius: 16.5px;
  padding: 0px 16px;
}
.dark .blog-details-area .blog-details-area-inner .section-details .tags-wrapper .tags .tag {
  color: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.blog-details-area .blog-details-area-inner .section-details .comment-wrap {
  margin-top: 100px;
}
@media only screen and (max-width: 1399px) {
  .blog-details-area .blog-details-area-inner .section-details .comment-wrap {
    margin-top: 60px;
  }
}
.blog-details-area .blog-details-area-inner .section-details .comment-wrap .title {
  font-weight: 400;
  font-size: 50px;
  line-height: 35px;
  letter-spacing: -0.05em;
  color: var(--primary);
  font-family: var(--font_BDOGrotesk);
}
.blog-details-area .blog-details-area-inner .section-details .comment-formwrap {
  display: grid;
  gap: 60px 30px;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 61px;
}
@media only screen and (max-width: 1399px) {
  .blog-details-area .blog-details-area-inner .section-details .comment-formwrap {
    gap: 40px 30px;
    margin-top: 32px;
  }
}
@media only screen and (max-width: 1199px) {
  .blog-details-area .blog-details-area-inner .section-details .comment-formwrap {
    gap: 30px 30px;
  }
}
@media only screen and (max-width: 767px) {
  .blog-details-area .blog-details-area-inner .section-details .comment-formwrap {
    grid-template-columns: repeat(1, 1fr);
  }
}
.blog-details-area .blog-details-area-inner .section-details .comment-formwrap .message {
  grid-column: span 2;
}
@media only screen and (max-width: 767px) {
  .blog-details-area .blog-details-area-inner .section-details .comment-formwrap .message {
    grid-column: auto;
  }
}
.blog-details-area .blog-details-area-inner .section-details .comment-formfield input {
  width: 100%;
  height: 40px;
  border: none;
  border-bottom: 1px solid rgba(17, 17, 17, 0.2);
  outline: none;
  background-color: transparent;
  transition: all 0.5s;
  font-weight: 400;
  font-size: 18px;
  line-height: 16px;
  color: var(--primary);
}
.dark .blog-details-area .blog-details-area-inner .section-details .comment-formfield input {
  border-color: rgba(255, 255, 255, 0.2);
}
@media only screen and (max-width: 1199px) {
  .blog-details-area .blog-details-area-inner .section-details .comment-formfield input {
    font-size: 16px;
  }
}
.blog-details-area .blog-details-area-inner .section-details .comment-formfield input:focus {
  border-color: var(--primary);
}
.blog-details-area .blog-details-area-inner .section-details .comment-formfield input::placeholder {
  color: var(--primary);
}
.blog-details-area .blog-details-area-inner .section-details .comment-formfield input:-webkit-autofill, .blog-details-area .blog-details-area-inner .section-details .comment-formfield input:-webkit-autofill:focus {
  transition: background-color 0s 600000s, color 0s 600000s !important;
}
.blog-details-area .blog-details-area-inner .section-details .comment-formfield select {
  width: 100%;
  height: 40px;
  border: none;
  border-bottom: 1px solid var(--primary);
  outline: none;
  background-color: transparent;
  transition: all 0.5s;
  color: var(--primary);
}
.blog-details-area .blog-details-area-inner .section-details .comment-formfield select:focus {
  border-color: var(--primary);
}
.blog-details-area .blog-details-area-inner .section-details .comment-formfield select option {
  width: 100%;
  max-width: 100%;
}
.blog-details-area .blog-details-area-inner .section-details .rr-btn {
  padding: 25px 38.1px;
}
.dark .blog-details-area .blog-details-area-inner .section-details .rr-btn {
  background: var(--white);
}
.dark .blog-details-area .blog-details-area-inner .section-details .rr-btn .text-one {
  color: #111111;
}
.blog-details-area .blog-details-area-inner .section-details .submit-btn {
  margin-top: 50px;
}
@media only screen and (max-width: 1399px) {
  .blog-details-area .blog-details-area-inner .section-details .submit-btn {
    margin-top: 40px;
  }
}

.blog-details-blog-page .blog-info {
  margin-bottom: 95px;
}
@media only screen and (max-width: 1199px) {
  .blog-details-blog-page .blog-info {
    margin-bottom: 60px;
  }
}
@media (max-width: 575px) {
  .blog-details-blog-page .blog-info {
    margin-bottom: 30px;
  }
}
.blog-details-blog-page .blog-info .title {
  font-weight: 400;
  font-size: 90px;
  line-height: 85px;
  letter-spacing: -0.05em;
  color: var(--primary);
  font-family: var(--font_BDOGrotesk);
}
@media only screen and (max-width: 1199px) {
  .blog-details-blog-page .blog-info .title {
    font-size: 71px;
    line-height: 74px;
  }
}
@media only screen and (max-width: 767px) {
  .blog-details-blog-page .blog-info .title {
    font-size: 71px;
    line-height: 74px;
  }
  .blog-details-blog-page .blog-info .title br {
    display: none;
  }
}
@media (max-width: 575px) {
  .blog-details-blog-page .blog-info .title {
    font-size: 48px;
    line-height: 56px;
  }
}
.blog-details-blog-page .blog-page-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}
@media only screen and (max-width: 1919px) {
  .blog-details-blog-page .blog-page-wrapper {
    gap: 40px;
  }
}
@media only screen and (max-width: 1199px) {
  .blog-details-blog-page .blog-page-wrapper {
    gap: 40px;
    grid-template-columns: 1fr;
  }
}
.blog-details-blog-page .blog-page-item {
  display: grid;
  grid-template-columns: 390px 1fr;
  gap: 30px;
  padding: 40px 0;
  border-bottom: 1px solid #E7E7E7;
  border-top: 1px solid #E7E7E7;
}
.dark .blog-details-blog-page .blog-page-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
@media only screen and (max-width: 1399px) {
  .blog-details-blog-page .blog-page-item {
    grid-template-columns: 300px 1fr;
    gap: 20px;
  }
}
@media only screen and (max-width: 1199px) {
  .blog-details-blog-page .blog-page-item {
    grid-template-columns: 240px 1fr;
  }
}
@media only screen and (max-width: 991px) {
  .blog-details-blog-page .blog-page-item {
    grid-template-columns: 350px 1fr;
  }
}
@media only screen and (max-width: 767px) {
  .blog-details-blog-page .blog-page-item {
    grid-template-columns: 265px 1fr;
  }
}
@media (max-width: 575px) {
  .blog-details-blog-page .blog-page-item {
    grid-template-columns: 1fr;
  }
}
.blog-details-blog-page .blog-page-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 15px;
}
.blog-details-blog-page .blog-page-meta {
  display: flex;
  align-items: center;
  gap: 5px;
}
.blog-details-blog-page .blog-page-meta span {
  font-weight: 500;
  font-size: 14px;
  line-height: 27px;
  color: var(--primary);
  font-family: var(--font_body);
  background: #F1F1F1;
  border-radius: 15px;
  padding: 1.5px 17px;
}
.dark .blog-details-blog-page .blog-page-meta span {
  background: #1A1A1A;
}
.blog-details-blog-page .blog-page-content .title {
  font-weight: 400;
  font-size: 30px;
  line-height: 32px;
  letter-spacing: -0.05em;
  color: var(--primary);
  font-family: var(--font_BDOGrotesk);
  margin-top: 167px;
  margin-bottom: 35px;
}
@media only screen and (max-width: 1919px) {
  .blog-details-blog-page .blog-page-content .title br {
    display: none;
  }
}
@media only screen and (max-width: 1199px) {
  .blog-details-blog-page .blog-page-content .title {
    font-size: 26px;
    line-height: 28px;
    letter-spacing: -0.05em;
    color: var(--primary);
    margin-top: 120px;
    margin-bottom: 35px;
  }
}
@media only screen and (max-width: 767px) {
  .blog-details-blog-page .blog-page-content .title {
    font-size: 23px;
    line-height: 25px;
    margin-top: 100px;
    margin-bottom: 35px;
  }
}
@media (max-width: 575px) {
  .blog-details-blog-page .blog-page-content .title {
    margin-top: 30px;
    margin-bottom: 30px;
  }
}
.blog-details-blog-page .blog-page-content .title a {
  background: linear-gradient(#111111 0%, #111111 98%);
  background-size: 0 2px;
  background-repeat: no-repeat;
  background-position: left 100%;
  color: var(--primary);
  transition: all 0.3s ease-in-out;
}
.blog-details-blog-page .blog-page-content .title a:hover {
  color: var(--primary);
  background-size: 100% 2px;
}
.dark .blog-details-blog-page .blog-page-content .title a {
  background: linear-gradient(#FFFFFF 0%, #FFFFFF 98%);
  background-size: 0 2px;
  background-repeat: no-repeat;
  background-position: left 100%;
  color: var(--white);
  transition: all 0.3s ease-in-out;
}
.dark .blog-details-blog-page .blog-page-content .title a:hover {
  color: var(--white);
  background-size: 100% 2px;
}
.blog-details-blog-page .blog-page-content .author-box {
  display: flex;
  align-items: center;
  gap: 8px;
}
.blog-details-blog-page .blog-page-content .author-box .auhtor-img img {
  border-radius: 11px;
}
.blog-details-blog-page .blog-page-content .author-box .author-details h4 {
  font-weight: 500;
  font-size: 14px;
  line-height: 27px;
  color: var(--primary);
  font-family: var(--font_body);
}
.blog-details-blog-page .blog-page-content .author-box .author-details h4 strong {
  margin: 0 15px;
  color: #555555;
}
.blog-details-blog-page .blog-page-content .author-box .author-details h4 span {
  color: #555555;
}

@media only screen and (max-width: 991px) {
  .service__wrap {
    margin-bottom: 40px;
  }
}
.service__wrap .sub-title {
  font-family: var(--font_BDOGrotesk);
  font-weight: 500;
  font-size: 20px;
  line-height: 27px;
  letter-spacing: -0.03em;
  color: var(--primary);
  margin-bottom: 330px;
}
@media only screen and (max-width: 1199px) {
  .service__wrap .sub-title {
    margin-bottom: 320px;
  }
}
@media only screen and (max-width: 991px) {
  .service__wrap .sub-title {
    margin-bottom: 15px;
  }
}
@media (max-width: 575px) {
  .service__wrap .sub-title {
    font-size: 18px;
    line-height: 25px;
  }
}
.service__wrap .sub-title img {
  margin-right: 4px;
  margin-top: -4px;
}
.service__wrap .content .title {
  font-weight: 500;
  font-size: 48px;
  line-height: 58px;
  letter-spacing: -0.05em;
  color: var(--primary);
  font-family: var(--font_BDOGrotesk);
  margin-bottom: 16px;
}
@media only screen and (max-width: 991px) {
  .service__wrap .content .title br {
    display: none;
  }
}
@media only screen and (max-width: 767px) {
  .service__wrap .content .title {
    font-size: 36px;
    line-height: 40px;
  }
}
@media (max-width: 575px) {
  .service__wrap .content .title {
    font-size: 28px;
    line-height: 34px;
  }
}
.service__wrap .content .decs {
  font-weight: 500;
  font-size: 16px;
  line-height: 27px;
  letter-spacing: -0.03em;
  color: rgba(17, 17, 17, 0.5);
  font-family: var(--font_body);
}
.dark .service__wrap .content .decs {
  color: rgba(255, 255, 255, 0.5);
}
@media only screen and (max-width: 1199px) {
  .service__wrap .content .decs br {
    display: none;
  }
}
.service__item-wrapper {
  margin-left: 15px;
}
@media only screen and (max-width: 1199px) {
  .service__item-wrapper {
    margin-left: 0;
  }
}
.service__item-box {
  display: grid;
  grid-template-columns: 526px 360px 1fr;
  border: 1px solid rgba(17, 17, 17, 0.1);
  align-items: center;
  transition: all 0.3s ease-in-out;
  margin-bottom: 5px;
  position: relative;
  overflow: hidden;
}
.dark .service__item-box {
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.service__item-box:last-child {
  margin-bottom: 0;
}
@media only screen and (max-width: 1919px) {
  .service__item-box {
    grid-template-columns: 400px 360px 1fr;
  }
}
@media only screen and (max-width: 1399px) {
  .service__item-box {
    grid-template-columns: 280px 360px 1fr;
  }
}
@media only screen and (max-width: 1199px) {
  .service__item-box {
    grid-template-columns: 222px 300px 1fr;
  }
}
@media only screen and (max-width: 991px) {
  .service__item-box {
    grid-template-columns: 240px 350px 1fr;
  }
}
@media only screen and (max-width: 767px) {
  .service__item-box {
    grid-template-columns: 180px 237px 1fr;
    gap: 20px;
  }
}
@media (max-width: 575px) {
  .service__item-box {
    grid-template-columns: 1fr;
    gap: 20px;
    text-align: center;
    padding: 20px;
  }
}
.service__item-box::before {
  position: absolute;
  content: "";
  right: 0;
  top: 0;
  height: 100%;
  width: 0;
  background: #F1F1F1;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s ease-in-out;
}
.service__item-box:hover::before {
  position: absolute;
  content: "";
  right: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background: #F1F1F1;
  opacity: 1;
  visibility: visible;
}
.dark .service__item-box:hover::before {
  background: #1A1A1A;
}
.service__item-box:hover .service__title {
  padding-left: 78px;
}
@media only screen and (max-width: 1199px) {
  .service__item-box:hover .service__title {
    padding-left: 40px;
  }
}
@media only screen and (max-width: 767px) {
  .service__item-box:hover .service__title {
    padding-left: 20px;
  }
}
@media (max-width: 575px) {
  .service__item-box:hover .service__title {
    padding-left: 0px;
  }
}
.service__item-box:hover .service__title span {
  left: 0;
  top: -52px;
  visibility: visible;
  opacity: 1;
}
.service__item-box:hover .service__content .decs {
  color: var(--primary);
}
.dark .service__item-box:hover .service__content .decs {
  color: #999999;
  opacity: 0.8;
}
.service__title {
  padding-left: 48px;
  position: relative;
  transition: all 0.3s ease-in-out;
}
@media only screen and (max-width: 1199px) {
  .service__title {
    padding-left: 20px;
  }
}
@media (max-width: 575px) {
  .service__title {
    padding-left: 0px;
  }
}
.service__title h3 {
  font-weight: 500;
  font-size: 24px;
  line-height: 32px;
  letter-spacing: -0.05em;
  color: var(--primary);
  font-family: var(--font_BDOGrotesk);
}
@media only screen and (max-width: 1199px) {
  .service__title h3 {
    font-size: 20px;
  }
}
.service__title span {
  position: absolute;
  height: 136px;
  width: 26px;
  background: #FF6A3A;
  left: -10px;
  top: -52px;
  transition: all 0.3s ease-in-out;
  opacity: 0;
  visibility: hidden;
}
@media only screen and (max-width: 767px) {
  .service__title span {
    display: none;
  }
}
.service__icon-box {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #F1F1F1;
  padding: 34px 0;
  position: relative;
  z-index: 2;
}
.dark .service__icon-box {
  background: #1A1A1A;
}
@media only screen and (max-width: 767px) {
  .service__icon-box {
    background: inherit;
  }
}
@media (max-width: 575px) {
  .service__icon-box {
    padding: 0;
  }
}
.service__icon-box .icon {
  width: 66px;
  height: 66px;
  border: 1px solid rgba(17, 17, 17, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.service__content {
  position: relative;
  z-index: 2;
}
.service__content .decs {
  font-weight: 400;
  font-size: 16px;
  line-height: 25px;
  color: #999999;
  font-family: var(--font_body);
  transition: all 0.3s ease-in-out;
}
@media only screen and (max-width: 767px) {
  .service__content .decs {
    line-height: 20px;
  }
  .service__content .decs br {
    display: none;
  }
}
.dark .service__content .decs {
  color: #999999;
}

.service-section-2__info {
  display: flex;
  gap: 167px;
  margin-bottom: 56px;
  flex-wrap: wrap;
}
@media only screen and (max-width: 1199px) {
  .service-section-2__info {
    gap: 90px;
  }
}
@media only screen and (max-width: 991px) {
  .service-section-2__info {
    gap: 30px;
    margin-bottom: 40px;
  }
}
.service-section-2__sub-title .sub-title {
  font-weight: 400;
  font-size: 20px;
  line-height: 27px;
  letter-spacing: -0.03em;
  color: var(--primary);
  font-family: var(--font_BDOGrotesk);
  margin-bottom: 200px;
}
@media only screen and (max-width: 1399px) {
  .service-section-2__sub-title .sub-title {
    margin-bottom: 100px;
  }
}
@media only screen and (max-width: 1199px) {
  .service-section-2__sub-title .sub-title {
    margin-bottom: 100px;
  }
  .service-section-2__sub-title .sub-title br {
    display: none;
  }
}
@media only screen and (max-width: 991px) {
  .service-section-2__sub-title .sub-title {
    margin-bottom: 20px;
  }
}
.service-section-2__sub-title .sub-title img {
  margin-right: 6px;
  margin-top: -4px;
}
.service-section-2__sub-title .decs {
  font-weight: 400;
  font-size: 18px;
  line-height: 20px;
  letter-spacing: -0.05em;
  color: rgba(17, 17, 17, 0.5);
  font-family: var(--font_body);
}
@media only screen and (max-width: 991px) {
  .service-section-2__sub-title .decs br {
    display: none;
  }
}
.service-section-2__title h2 {
  font-weight: 400;
  font-size: 96px;
  line-height: 106px;
  letter-spacing: -0.05em;
  color: var(--primary);
  font-family: var(--font_BDOGrotesk);
}
@media only screen and (max-width: 1399px) {
  .service-section-2__title h2 {
    font-size: 70px;
    line-height: 75px;
  }
}
@media only screen and (max-width: 1199px) {
  .service-section-2__title h2 {
    font-size: 62px;
    line-height: 64px;
  }
}
@media only screen and (max-width: 991px) {
  .service-section-2__title h2 br {
    display: none;
  }
}
@media only screen and (max-width: 767px) {
  .service-section-2__title h2 {
    font-size: 42px;
    line-height: 48px;
  }
}
@media (max-width: 575px) {
  .service-section-2__title h2 {
    font-size: 25px;
    line-height: 32px;
  }
}
.service-section-2__wrapper {
  display: grid;
  grid-template-columns: repeat(2, 390px 1fr);
  gap: 10px;
}
@media only screen and (max-width: 1399px) {
  .service-section-2__wrapper {
    grid-template-columns: repeat(2, 350px 1fr);
  }
}
@media only screen and (max-width: 991px) {
  .service-section-2__wrapper {
    grid-template-columns: repeat(1, 1fr);
  }
}
.service-section-2__item {
  display: grid;
  grid-template-columns: 395px 692px 1fr;
  background: #F1F1F1;
  border: 1px solid rgba(17, 17, 17, 0.05);
  border-radius: 20px;
  align-items: center;
  padding: 23px 50px;
  margin-bottom: 10px;
  transition: all 0.4s ease-in-out;
}
.dark .service-section-2__item {
  background: #1A1A1A;
  border: 1px solid rgba(255, 255, 255, 0.05);
}
@media only screen and (max-width: 1919px) {
  .service-section-2__item {
    grid-template-columns: 329px 512px 1fr;
  }
}
@media only screen and (max-width: 1399px) {
  .service-section-2__item {
    grid-template-columns: 268px 414px 1fr;
  }
}
@media only screen and (max-width: 1199px) {
  .service-section-2__item {
    grid-template-columns: 199px 336px 1fr;
    padding: 23px 20px;
  }
}
@media only screen and (max-width: 991px) {
  .service-section-2__item {
    grid-template-columns: 240px 420px 1fr;
    padding: 23px 20px;
  }
}
@media only screen and (max-width: 767px) {
  .service-section-2__item {
    grid-template-columns: 175px 315px 1fr;
    padding: 23px 15px;
  }
}
@media (max-width: 575px) {
  .service-section-2__item {
    grid-template-columns: 1fr;
    gap: 15px;
    padding: 23px 15px;
    text-align: center;
  }
}
.service-section-2__item:last-child {
  margin-bottom: 0;
}
.service-section-2__item:hover {
  background: #FF6A3A;
}
.service-section-2__item:hover .title {
  margin-left: 0;
}
.service-section-2__item:hover .title span {
  opacity: 1;
  overflow: visible;
  color: var(--white);
}
.service-section-2__item:hover .title h4 {
  color: #FFFFFF;
}
.service-section-2__item:hover .title h4 a {
  color: inherit;
}
.service-section-2__item:hover .content .decs {
  color: var(--white);
}
.dark .service-section-2__item:hover .content .decs {
  color: var(--white);
}
.service-section-2__item:hover .icon i {
  color: var(--white);
}
.service-section-2__item .title {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: -36px;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 575px) {
  .service-section-2__item .title {
    justify-content: center;
  }
}
.service-section-2__item .title span {
  font-weight: 400;
  font-size: 20px;
  line-height: 27px;
  letter-spacing: -0.03em;
  color: var(--primary);
  opacity: 0;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
}
.service-section-2__item .title h4 {
  font-weight: 400;
  font-size: 20px;
  line-height: 27px;
  letter-spacing: -0.03em;
  color: var(--primary);
  transition: all 0.1s ease-in-out;
}
.service-section-2__item .title h4 a {
  transition: all 0.1s ease-in-out;
}
.service-section-2__item .content {
  transition: all 0.3s ease-in-out;
}
.service-section-2__item .content .decs {
  font-weight: 400;
  font-size: 18px;
  line-height: 25px;
  letter-spacing: -0.03em;
  color: rgba(17, 17, 17, 0.5);
  transition: all 0.3s ease-in-out;
}
.dark .service-section-2__item .content .decs {
  color: rgba(255, 255, 255, 0.5);
}
.service-section-2__item .icon {
  transition: all 0.3s ease-in-out;
  text-align: center;
}
.service-section-2__item .icon i {
  font-size: 30px;
  color: var(--primary);
  font-weight: 400;
  transition: all 0.3s ease-in-out;
}
.service-section-2__item .title span {
  opacity: 0;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
}
.service-section-2__item.active {
  background: #FF6A3A;
}
.service-section-2__item.active .title {
  margin-left: 0;
}
.service-section-2__item.active .title span {
  opacity: 1;
  overflow: visible;
  color: #fff;
}
.service-section-2__item.active .title h4 {
  color: #fff;
}
.service-section-2__item.active .title h4 a {
  color: inherit;
}
.service-section-2__item.active .content .decs {
  color: #fff;
}
.service-section-2__item.active .icon i {
  color: #fff;
}
@media only screen and (max-width: 991px) {
  .service-section-2__thumb {
    height: 350px;
  }
}
@media (max-width: 575px) {
  .service-section-2__thumb {
    height: 100%;
  }
}
.service-section-2__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
  transition: all 0.4s ease-in-out;
}

.service-section-3__wrapper {
  display: grid;
  grid-template-columns: 554px 1fr;
  gap: 10px;
}
@media only screen and (max-width: 1399px) {
  .service-section-3__wrapper {
    grid-template-columns: 450px 1fr;
  }
}
@media only screen and (max-width: 1199px) {
  .service-section-3__wrapper {
    grid-template-columns: 380px 1fr;
  }
}
@media only screen and (max-width: 991px) {
  .service-section-3__wrapper {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
.service-section-3__card {
  padding: 30px 30px 15px 30px;
  border: 1px solid rgba(17, 17, 17, 0.1);
}
.dark .service-section-3__card {
  border: 1px solid rgba(255, 255, 255, 0.1);
}
@media only screen and (max-width: 1199px) {
  .service-section-3__card {
    padding: 30px 14px 15px 15px;
  }
}
.service-section-3__card .awards-section-3__heading {
  margin-bottom: 280px;
}
@media only screen and (max-width: 991px) {
  .service-section-3__card .awards-section-3__heading {
    margin-bottom: 30px;
  }
}
.service-section-3__card .text {
  font-weight: 400;
  font-size: 18px;
  line-height: 27px;
  letter-spacing: -0.03em;
  color: rgba(17, 17, 17, 0.5);
  font-family: var(--font_body);
}
@media only screen and (max-width: 991px) {
  .service-section-3__card .text br {
    display: none;
  }
}
.dark .service-section-3__card .text {
  color: rgba(255, 255, 255, 0.5);
}
.service-section-3__item {
  display: grid;
  grid-template-columns: 1fr 470px 50px;
  border: 1px solid rgba(17, 17, 17, 0.1);
  padding: 42px 45px 42px 50px;
  align-items: center;
  margin-bottom: 10px;
  transition: all 0.3s ease-in-out;
}
.dark .service-section-3__item {
  border: 1px solid rgba(255, 255, 255, 0.1);
}
@media only screen and (max-width: 1919px) {
  .service-section-3__item {
    grid-template-columns: 1fr 380px 50px;
  }
}
@media only screen and (max-width: 1399px) {
  .service-section-3__item {
    grid-template-columns: 1fr 344px 50px;
  }
}
@media only screen and (max-width: 1199px) {
  .service-section-3__item {
    padding: 42px 20px 42px 19px;
    grid-template-columns: 1fr 318px 50px;
  }
}
@media only screen and (max-width: 991px) {
  .service-section-3__item {
    grid-template-columns: 1fr 408px 50px;
  }
}
@media only screen and (max-width: 767px) {
  .service-section-3__item {
    grid-template-columns: 1fr 268px 50px;
    gap: 20px;
  }
}
@media (max-width: 575px) {
  .service-section-3__item {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
.service-section-3__item:last-child {
  margin-bottom: 0;
}
.service-section-3__item:hover {
  background: #F1F1F1;
}
.dark .service-section-3__item:hover {
  background: var(--dark);
}
.service-section-3__item:hover .content .decs {
  color: var(--primary);
}
.service-section-3__item:hover .icon {
  width: 47px;
  height: 47px;
  border-radius: 50%;
  transition: all 0.3s ease;
  margin-left: 0;
}
.service-section-3__item:hover .icon svg {
  opacity: 1;
  transform: scale(1) rotate(-33deg);
}
.service-section-3__item .name .title {
  font-weight: 500;
  font-size: 24px;
  line-height: 32px;
  letter-spacing: -0.05em;
  color: var(--primary);
}
@media only screen and (max-width: 1199px) {
  .service-section-3__item .name .title {
    font-size: 19px;
    line-height: 25px;
  }
}
.service-section-3__item .content .decs {
  font-weight: 400;
  font-size: 16px;
  line-height: 25px;
  color: #999999;
  transition: all 0.3s ease-in-out;
}
.service-section-3__item .service-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 575px) {
  .service-section-3__item .service-icon {
    justify-content: left;
  }
}
.service-section-3__item .icon {
  background: #FF6A3A;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.service-section-3__item .icon svg {
  color: var(--white);
  opacity: 0;
  transform: scale(0) rotate(-33deg);
  transition: all 0.3s ease;
}

.service-section-4 .team-section-4__info {
  margin-bottom: 85px;
}
@media only screen and (max-width: 767px) {
  .service-section-4 .team-section-4__info {
    margin-bottom: 60px;
  }
}
.service-section-4__item-box {
  display: grid;
  grid-template-columns: 270px 1fr 1fr 1fr;
  margin-top: -21px;
}
@media only screen and (max-width: 1399px) {
  .service-section-4__item-box {
    grid-template-columns: 224px 1fr 1fr 1fr;
  }
}
@media only screen and (max-width: 1199px) {
  .service-section-4__item-box {
    grid-template-columns: 500px 1fr;
  }
}
@media only screen and (max-width: 991px) {
  .service-section-4__item-box {
    grid-template-columns: 368px 1fr;
  }
}
@media only screen and (max-width: 767px) {
  .service-section-4__item-box {
    grid-template-columns: 270px 1fr;
  }
}
@media (max-width: 575px) {
  .service-section-4__item-box {
    grid-template-columns: 1fr;
  }
}
.service-section-4__item-box > *:nth-child(2) {
  border-left: none;
}
@media (max-width: 575px) {
  .service-section-4__item-box > *:nth-child(2) {
    border-left: 1px solid rgba(255, 255, 255, 0.1);
  }
}
.service-section-4__wrapper .item-box-1 {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: none;
}
.service-section-4__item {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-top: none;
  border-left: none;
}
@media only screen and (max-width: 1199px) {
  .service-section-4__item {
    border: 1px solid rgba(255, 255, 255, 0.1);
  }
}
.service-section-4__item .left-content {
  margin-top: 35px;
}
@media only screen and (max-width: 1199px) {
  .service-section-4__item .left-content {
    padding-left: 25px;
  }
}
@media (max-width: 575px) {
  .service-section-4__item .left-content {
    margin-bottom: 20px;
  }
}
.service-section-4__item .left-content .decs {
  font-weight: 400;
  font-size: 16px;
  line-height: 21px;
  color: rgba(255, 255, 255, 0.4);
  font-family: var(--font_body);
}
.service-section-4__item .left-content-2 {
  margin-top: 328px;
}
@media only screen and (max-width: 1919px) {
  .service-section-4__item .left-content-2 {
    margin-top: 250px;
  }
}
@media only screen and (max-width: 1399px) {
  .service-section-4__item .left-content-2 {
    margin-top: 170px;
  }
}
@media only screen and (max-width: 1199px) {
  .service-section-4__item .left-content-2 {
    margin-top: 200px;
    padding-left: 25px;
  }
}
@media (max-width: 575px) {
  .service-section-4__item .left-content-2 {
    margin-top: 151px;
    padding-left: 25px;
    margin-bottom: 30px;
  }
}
.service-section-4__item .left-content-2 .decs {
  font-weight: 400;
  font-size: 16px;
  line-height: 21px;
  color: rgba(255, 255, 255, 0.4);
  font-family: var(--font_body);
}
.service-section-4__item .content .title {
  font-weight: 400;
  font-size: 32px;
  line-height: 1;
  letter-spacing: -0.07em;
  color: #FFFFFF;
  margin-bottom: 25px;
}
.service-section-4__item .content .title a {
  background: linear-gradient(#FFFFFF 0%, #FFFFFF 98%);
  background-size: 0 1px;
  background-repeat: no-repeat;
  background-position: left 100%;
  color: #FFFFFF;
  transition: all 0.3s ease-in-out;
}
.service-section-4__item .content .title a:hover {
  color: #FFFFFF;
  background-size: 100% 2px;
}
.service-section-4__item .content .decs {
  font-weight: 400;
  font-size: 18px;
  line-height: 21px;
  color: rgba(255, 255, 255, 0.4);
  font-family: var(--font_body);
}
.service-section-4__item:hover .service-section-4__thumb img {
  opacity: 1;
  visibility: visible;
}
.service-section-4__item:hover .icon svg {
  color: var(--white);
}
.service-section-4__thumb {
  position: relative;
}
@media only screen and (max-width: 1199px) {
  .service-section-4__thumb {
    height: 300px;
  }
}
.service-section-4__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-in-out;
  position: relative;
}
.service-section-4__thumb img::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: rgba(0, 0, 0, 0.5);
}
.service-section-4__thumb .icon {
  position: absolute;
  right: 40px;
  top: 40px;
}
@media only screen and (max-width: 1399px) {
  .service-section-4__thumb .icon {
    right: 30px;
    top: 25px;
  }
}
.service-section-4__thumb .icon svg {
  transition: all 0.3s ease-in-out;
  color: rgba(255, 255, 255, 0.15);
}
.service-section-4__thumb .content {
  position: absolute;
  bottom: 38px;
  left: 40px;
}
@media only screen and (max-width: 1399px) {
  .service-section-4__thumb .content {
    bottom: 25px;
    left: 25px;
  }
}
@media (max-width: 575px) {
  .service-section-4__thumb .content {
    left: 14px;
  }
}
.service-section-4__border {
  max-width: 1495px;
  height: 1px;
  background: rgba(255, 255, 255, 0.15);
  margin: 0 0 0 auto;
}
@media only screen and (max-width: 1919px) {
  .service-section-4__border {
    max-width: 1250px;
  }
}
@media only screen and (max-width: 1399px) {
  .service-section-4__border {
    max-width: 1052px;
  }
}
@media only screen and (max-width: 1199px) {
  .service-section-4__border {
    display: none;
  }
}
.service-section-4__meta {
  position: relative;
}
.service-section-4__meta .deta {
  transform: translateY(-12px);
}
@media only screen and (max-width: 1199px) {
  .service-section-4__meta .deta {
    transform: translateY(23px);
    padding-left: 25px;
  }
}
.service-section-4__meta .deta span {
  font-weight: 400;
  font-size: 18px;
  line-height: 21px;
  color: rgba(255, 255, 255, 0.4);
}
.service-section-4__btn a {
  font-weight: 400;
  font-size: 14px;
  line-height: 30px;
  letter-spacing: -0.05em;
  text-transform: uppercase;
  color: #FFFFFF;
  position: relative;
}
.service-section-4__btn a i {
  margin-left: 15px;
}
.service-section-4__btn a span {
  margin-right: 40px;
}
.service-section-4__btn a::before {
  width: 100%;
  height: 1px;
  background-color: currentColor;
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  transition: all 0.5s;
  color: var(--white);
}
.service-section-4__btn a:hover a {
  color: var(--white);
}
.dark .service-section-4__btn a:hover {
  color: var(--white);
}
.service-section-4__btn a:hover::before {
  width: 0%;
}
.service-section-4__item-box .item-2 {
  border-bottom: none;
}

.service-section-5 {
  overflow: hidden;
}
.service-section-5__content .title {
  font-weight: 400;
  font-size: 24px;
  line-height: 36px;
  letter-spacing: -0.07em;
  color: var(--primary);
  font-family: var(--font_BDOGrotesk);
  margin-top: 23px;
  margin-bottom: 9px;
}
.service-section-5__content .decs {
  font-weight: 400;
  font-size: 16px;
  line-height: 21px;
  letter-spacing: -0.03em;
  color: rgba(17, 17, 17, 0.5);
  font-family: var(--font_BDOGrotesk);
}
.dark .service-section-5__content .decs {
  color: rgba(255, 255, 255, 0.5);
}
.service-section-5__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.service-section-5__wrapper {
  display: grid;
  grid-template-columns: 477px 1fr;
  gap: 50px;
}
@media only screen and (max-width: 1199px) {
  .service-section-5__wrapper {
    grid-template-columns: 342px 1fr;
  }
}
@media only screen and (max-width: 991px) {
  .service-section-5__wrapper {
    grid-template-columns: 280px 1fr;
    gap: 20px;
  }
}
@media only screen and (max-width: 767px) {
  .service-section-5__wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
.service-section-5__box {
  margin-right: -150px;
}
.service-section-5__item {
  border-bottom: 1px solid rgba(17, 17, 17, 0.2);
  padding: 35.5px 0;
  transition: all 0.3s ease-in-out;
}
.dark .service-section-5__item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
@media only screen and (max-width: 991px) {
  .service-section-5__item {
    padding: 20.5px 0;
  }
}
@media (max-width: 575px) {
  .service-section-5__item {
    padding: 16.5px 0;
  }
}
.service-section-5__item:first-child {
  border-top: 1px solid rgba(17, 17, 17, 0.2);
}
.dark .service-section-5__item:first-child {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}
.service-section-5__item:hover {
  background: rgba(17, 17, 17, 0.1);
}
.dark .service-section-5__item:hover {
  background: rgba(255, 255, 255, 0.1);
}
.service-section-5__item:hover .content {
  margin-left: 30px;
}
@media (max-width: 575px) {
  .service-section-5__item:hover .content {
    margin-left: 15px;
  }
}
.service-section-5__item:hover .content .title {
  color: var(--primary);
}
.service-section-5__item:hover .content .title a {
  color: var(--primary);
}
.service-section-5__item:hover .content img {
  opacity: 1;
  visibility: visible;
}
.service-section-5__item .content {
  display: flex;
  gap: 45px;
  align-items: center;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 575px) {
  .service-section-5__item .content {
    gap: 25px;
  }
}
.service-section-5__item .content .title {
  font-weight: 400;
  font-size: 100px;
  line-height: 100px;
  letter-spacing: -0.07em;
  color: rgba(17, 17, 17, 0.4);
  transition: all 0.3s ease-in-out;
}
.dark .service-section-5__item .content .title {
  color: rgba(255, 255, 255, 0.4);
}
@media only screen and (max-width: 1399px) {
  .service-section-5__item .content .title {
    font-size: 80px;
    line-height: 64px;
  }
}
@media only screen and (max-width: 1199px) {
  .service-section-5__item .content .title {
    font-size: 70px;
    line-height: 42px;
  }
}
@media only screen and (max-width: 991px) {
  .service-section-5__item .content .title {
    font-size: 50px;
    line-height: 42px;
  }
}
@media (max-width: 575px) {
  .service-section-5__item .content .title {
    font-size: 30px;
    line-height: 23px;
  }
}
.service-section-5__item .content .title a {
  transition: all 0.3s ease-in-out;
}
.service-section-5__item .content img {
  width: 69px;
  height: 69px;
  object-fit: cover;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-in-out;
}

.service-section-5__thumb img {
  transition: opacity 0.4s ease;
}

.service-section-5__thumb img {
  transition: opacity 0.4s ease;
}

.hero-area-service-details {
  padding-top: 150px;
}
.hero-area-service-details .service-meta {
  z-index: 1;
  display: grid;
  gap: 10px 60px;
  position: relative;
  grid-template-columns: 1fr 1045px;
}
@media only screen and (max-width: 1919px) {
  .hero-area-service-details .service-meta {
    grid-template-columns: 1fr 845px;
  }
}
@media only screen and (max-width: 1399px) {
  .hero-area-service-details .service-meta {
    grid-template-columns: 1fr 645px;
  }
}
@media only screen and (max-width: 1199px) {
  .hero-area-service-details .service-meta {
    grid-template-columns: 1fr 585px;
  }
}
@media only screen and (max-width: 991px) {
  .hero-area-service-details .service-meta {
    grid-template-columns: 1fr;
  }
}
.hero-area-service-details .service-meta .serial {
  font-weight: 400;
  font-size: 18px;
  line-height: 20px;
  color: #555555;
  font-family: var(--font_body);
  display: inline-block;
}
.hero-area-service-details .service-meta .tag {
  font-size: 18px;
  font-weight: 400;
  line-height: 20px;
  display: inline-block;
}
.hero-area-service-details .service-meta .next-item {
  font-weight: 400;
  font-size: 18px;
  line-height: 20px;
  color: #555555;
  display: inline-block;
  position: absolute;
  right: 0;
  top: 0;
}
.hero-area-service-details .section-header {
  display: grid;
  margin-top: -42px;
  justify-content: flex-end;
  grid-template-columns: 792px;
}
@media only screen and (max-width: 991px) {
  .hero-area-service-details .section-header {
    margin-top: 30px;
    grid-template-columns: 1fr;
  }
}
.hero-area-service-details .section-header .title-wrapper .section-title {
  font-weight: 400;
  font-size: 90px;
  line-height: 85px;
  letter-spacing: -0.05em;
  color: var(--primary);
}
@media only screen and (max-width: 1199px) {
  .hero-area-service-details .section-header .title-wrapper .section-title {
    font-size: 70px;
    line-height: 80px;
    letter-spacing: 0;
  }
}
@media only screen and (max-width: 991px) {
  .hero-area-service-details .section-header .title-wrapper .section-title {
    font-size: 60px;
    line-height: 70px;
  }
}
@media only screen and (max-width: 767px) {
  .hero-area-service-details .section-header .title-wrapper .section-title {
    font-size: 50px;
    line-height: 60px;
  }
}
@media (max-width: 575px) {
  .hero-area-service-details .section-header .title-wrapper .section-title {
    font-size: 40px;
    line-height: 50px;
  }
}
.hero-area-service-details .section-content-wrapper {
  margin-top: 62px;
  display: grid;
  gap: 50px;
  grid-template-columns: 500px 1fr;
  border-top: 1px solid rgba(17, 17, 17, 0.1);
}
.dark .hero-area-service-details .section-content-wrapper {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
@media only screen and (max-width: 1199px) {
  .hero-area-service-details .section-content-wrapper {
    grid-template-columns: 420px 1fr;
    gap: 30px;
  }
}
@media only screen and (max-width: 991px) {
  .hero-area-service-details .section-content-wrapper {
    grid-template-columns: 1fr;
    margin-top: 50px;
  }
}
.hero-area-service-details .section-content {
  border-right: 1px solid rgba(17, 17, 17, 0.1);
  padding-top: 50px;
}
.dark .hero-area-service-details .section-content {
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}
@media only screen and (max-width: 991px) {
  .hero-area-service-details .section-content {
    border-right: none;
    padding-top: 30px;
  }
}
.hero-area-service-details .section-content .title {
  font-weight: 400;
  font-size: 30px;
  line-height: 35px;
  letter-spacing: -0.05em;
  color: var(--primary);
  font-family: var(--font_BDOGrotesk);
  margin-bottom: 100px;
}
@media only screen and (max-width: 1399px) {
  .hero-area-service-details .section-content .title {
    margin-bottom: 80px;
  }
}
@media only screen and (max-width: 1199px) {
  .hero-area-service-details .section-content .title {
    margin-bottom: 60px;
  }
}
@media only screen and (max-width: 991px) {
  .hero-area-service-details .section-content .title {
    margin-bottom: 30px;
    letter-spacing: 0;
  }
  .hero-area-service-details .section-content .title br {
    display: none;
  }
}
.hero-area-service-details .section-content .text {
  font-weight: 400;
  font-size: 18px;
  line-height: 26px;
  color: #555555;
  max-width: 395px;
}
.dark .hero-area-service-details .section-content .text {
  color: #999999;
}
.hero-area-service-details .section-thumb {
  margin-top: 50px;
}
@media only screen and (max-width: 991px) {
  .hero-area-service-details .section-thumb {
    margin-top: 30px;
  }
}
.hero-area-service-details .section-thumb img {
  width: 100%;
}
.hero-area-service-details .feature-list {
  margin-top: 45px;
}
.hero-area-service-details .feature-list ul {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}
.hero-area-service-details .feature-list ul li {
  font-weight: 400;
  font-size: 18px;
  line-height: 26px;
  display: inline-flex;
  padding: 11px 19px;
  align-items: center;
  color: var(--primary);
  border-radius: 500px;
  border: 1px solid var(--border);
}
.dark .hero-area-service-details .feature-list ul li {
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.value-area .section-content-wrapper {
  display: grid;
  gap: 40px 60px;
  grid-template-columns: 460px 1fr;
}
@media only screen and (max-width: 1399px) {
  .value-area .section-content-wrapper {
    grid-template-columns: 360px 1fr;
  }
}
@media only screen and (max-width: 1199px) {
  .value-area .section-content-wrapper {
    grid-template-columns: 1fr;
  }
}
.value-area .section-content-wrapper .subtitle-wrapper .section-subtitle {
  font-weight: 400;
  font-size: 16px;
  line-height: 30px;
  letter-spacing: -0.02em;
  color: var(--primary);
  font-family: var(--font_BDOGrotesk);
}
.value-area .values-wrapper {
  display: grid;
  gap: 100px 70px;
  grid-template-columns: 1fr 1fr;
}
@media only screen and (max-width: 1399px) {
  .value-area .values-wrapper {
    gap: 80px 50px;
  }
}
@media only screen and (max-width: 1199px) {
  .value-area .values-wrapper {
    gap: 60px 50px;
  }
}
@media (max-width: 575px) {
  .value-area .values-wrapper {
    gap: 50px;
  }
}
@media only screen and (max-width: 767px) {
  .value-area .values-wrapper {
    grid-template-columns: 1fr;
  }
}
.value-area .value-box {
  border-top: 3px solid rgba(17, 17, 17, 0.1);
}
.dark .value-area .value-box {
  border-top: 3px solid rgba(255, 255, 255, 0.1);
}
.value-area .value-box .sub-title {
  font-weight: 400;
  font-size: 16px;
  line-height: 30px;
  letter-spacing: -0.02em;
  color: var(--primary);
  margin-top: 35px;
}
@media only screen and (max-width: 1199px) {
  .value-area .value-box .sub-title {
    margin-top: 20px;
  }
}
.value-area .value-box .number {
  font-weight: 400;
  font-size: 90px;
  line-height: 85px;
  letter-spacing: -0.05em;
  color: var(--primary);
  margin-top: 83px;
}
@media only screen and (max-width: 1399px) {
  .value-area .value-box .number {
    font-size: 60px;
    margin-top: 40px;
  }
}
@media only screen and (max-width: 1199px) {
  .value-area .value-box .number {
    font-size: 50px;
    margin-top: 0;
    letter-spacing: 0px;
  }
}
@media only screen and (max-width: 991px) {
  .value-area .value-box .number {
    font-size: 40px;
  }
}
@media only screen and (max-width: 767px) {
  .value-area .value-box .number {
    font-size: 35px;
  }
}
.value-area .value-box .text {
  font-weight: 400;
  font-size: 18px;
  line-height: 26px;
  color: rgba(17, 17, 17, 0.5);
  margin-top: 35px;
  letter-spacing: 0px;
}
.dark .value-area .value-box .text {
  color: rgba(255, 255, 255, 0.5);
}
@media only screen and (max-width: 1199px) {
  .value-area .value-box .text {
    margin-top: 10px;
  }
}

.skill-inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 100px;
}
@media only screen and (max-width: 1199px) {
  .skill-inner {
    gap: 50px;
  }
}
@media only screen and (max-width: 991px) {
  .skill-inner {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
}
@media (max-width: 575px) {
  .skill-inner {
    grid-template-columns: repeat(1, 1fr);
    gap: 40px;
  }
}
.skill-item {
  position: relative;
}
.skill-item:last-child::before {
  display: none;
}
.skill-item::before {
  position: absolute;
  content: "";
  right: -50px;
  top: 0;
  height: 183px;
  width: 1px;
  background: rgba(17, 17, 17, 0.1);
}
.dark .skill-item::before {
  background: rgba(255, 255, 255, 0.1);
}
@media only screen and (max-width: 1199px) {
  .skill-item::before {
    right: -25px;
  }
}
@media only screen and (max-width: 991px) {
  .skill-item::before {
    display: none;
  }
}
.skill-content .title {
  font-weight: 400;
  font-size: 30px;
  line-height: 30px;
  letter-spacing: -0.07em;
  color: var(--primary);
  margin-bottom: 32px;
}
.skill-content .decs {
  font-weight: 400;
  font-size: 18px;
  line-height: 26px;
  color: rgba(17, 17, 17, 0.5);
  letter-spacing: 0;
  font-family: var(--font_body);
}
.dark .skill-content .decs {
  color: rgba(255, 255, 255, 0.5);
}
@media only screen and (max-width: 1399px) {
  .skill-content .decs br {
    display: none;
  }
}

.service-details-awards .awards-section__info {
  display: flex;
  justify-content: space-between;
  margin-bottom: 65px;
  flex-wrap: wrap;
  gap: 30px;
}
@media only screen and (max-width: 991px) {
  .service-details-awards .awards-section__info {
    margin-bottom: 50px;
  }
}
.service-details-awards .awards-section__info .title {
  font-weight: 400;
  font-size: 50px;
  line-height: 50px;
  letter-spacing: -0.05em;
  color: var(--primary);
  font-family: var(--font_BDOGrotesk);
}
@media only screen and (max-width: 991px) {
  .service-details-awards .awards-section__info .title br {
    display: none;
  }
}
@media only screen and (max-width: 767px) {
  .service-details-awards .awards-section__info .title {
    font-size: 45px;
    line-height: 45px;
  }
}
@media only screen and (max-width: 767px) {
  .service-details-awards .awards-section__info .title {
    font-size: 27px;
    line-height: 31px;
  }
}
.service-details-awards .awards-section__info .text {
  font-weight: 400;
  font-size: 18px;
  line-height: 20px;
  letter-spacing: -0.05em;
  color: var(--primary);
  font-family: var(--font_BDOGrotesk);
}
.service-details-awards .awards-section__inner {
  display: grid;
  grid-template-columns: 1fr 452px;
  gap: 40px;
}
@media only screen and (max-width: 1199px) {
  .service-details-awards .awards-section__inner {
    grid-template-columns: 1fr 330px;
    gap: 30px;
  }
}
@media only screen and (max-width: 991px) {
  .service-details-awards .awards-section__inner {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}
.service-details-awards .awards-section__item-box:first-child {
  border-top: 1px solid rgba(17, 17, 17, 0.1);
}
.dark .service-details-awards .awards-section__item-box:first-child {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.service-details-awards .awards-section__item {
  display: grid;
  grid-template-columns: 115px 1fr 360px;
  border-bottom: 1px solid rgba(17, 17, 17, 0.1);
  padding: 37.5px 0;
}
.dark .service-details-awards .awards-section__item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
@media only screen and (max-width: 1399px) {
  .service-details-awards .awards-section__item {
    grid-template-columns: 100px 1fr 260px;
  }
}
@media only screen and (max-width: 767px) {
  .service-details-awards .awards-section__item {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 25.5px 0;
  }
}
.service-details-awards .awards-section__item .number span {
  font-weight: 400;
  font-size: 30px;
  line-height: 30px;
  letter-spacing: -0.05em;
  color: var(--primary);
  font-family: var(--font_BDOGrotesk);
}
.service-details-awards .awards-section__item .heading .title {
  font-weight: 400;
  font-size: 30px;
  line-height: 30px;
  letter-spacing: -0.05em;
  color: #111111;
}
@media only screen and (max-width: 1199px) {
  .service-details-awards .awards-section__item .heading .title {
    font-size: 24px;
    line-height: 26px;
  }
}
@media only screen and (max-width: 767px) {
  .service-details-awards .awards-section__item .heading .title {
    font-size: 21px;
    line-height: 24px;
  }
}
.service-details-awards .awards-section__item .heading .title a {
  background: linear-gradient(#111111 0%, #111111 98%);
  background-size: 0 2px;
  background-repeat: no-repeat;
  background-position: left 100%;
  color: var(--primary);
  transition: all 0.3s ease-in-out;
}
.service-details-awards .awards-section__item .heading .title a:hover {
  color: var(--primary);
  background-size: 100% 2px;
}
.dark .service-details-awards .awards-section__item .heading .title a {
  background: linear-gradient(#FFFFFF 0%, #FFFFFF 98%);
  background-size: 0 2px;
  background-repeat: no-repeat;
  background-position: left 100%;
  color: var(--white);
  transition: all 0.3s ease-in-out;
}
.dark .service-details-awards .awards-section__item .heading .title a:hover {
  color: var(--white);
  background-size: 100% 2px;
}
.service-details-awards .awards-section__item .content .decs {
  font-weight: 400;
  font-size: 18px;
  line-height: 26px;
  color: #555555;
  font-family: var(--font_body);
  letter-spacing: 0px;
}
.dark .service-details-awards .awards-section__item .content .decs {
  color: #999999;
}
@media only screen and (max-width: 1199px) {
  .service-details-awards .awards-section__item .content .decs {
    font-size: 17px;
    line-height: 22px;
  }
}
.service-details-awards .awards-section__thumb {
  overflow: hidden;
}
@media only screen and (max-width: 991px) {
  .service-details-awards .awards-section__thumb {
    height: 550px;
  }
}
@media (max-width: 575px) {
  .service-details-awards .awards-section__thumb {
    height: 100%;
  }
}
.service-details-awards .awards-section__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-page__item {
  display: grid;
  grid-template-columns: 1fr 546px 546px 140px;
  border: 1px solid rgba(17, 17, 17, 0.1);
  padding: 22.5px 0;
  position: relative;
  transition: all 0.5s ease-in-out;
  margin-bottom: 5px;
  overflow: hidden;
}
.dark .service-page__item {
  border: 1px solid rgba(255, 255, 255, 0.1);
}
@media only screen and (max-width: 1919px) {
  .service-page__item {
    grid-template-columns: 1fr 442px 470px 140px;
  }
}
@media only screen and (max-width: 1399px) {
  .service-page__item {
    grid-template-columns: 1fr 381px 427px 140px;
  }
}
@media only screen and (max-width: 1199px) {
  .service-page__item {
    grid-template-columns: 1fr 329px 310px 110px;
  }
}
@media only screen and (max-width: 991px) {
  .service-page__item {
    grid-template-columns: 1fr 308px 230px 90px;
  }
}
@media only screen and (max-width: 767px) {
  .service-page__item {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 0;
  }
}
@media (max-width: 575px) {
  .service-page__item {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}
.service-page__item::before {
  position: absolute;
  content: "";
  right: 0;
  top: 0;
  height: 100%;
  width: 140px;
  background: #F1F1F1;
  transition: all 0.5s ease-in-out;
}
.dark .service-page__item::before {
  background: #1A1A1A;
}
@media only screen and (max-width: 767px) {
  .service-page__item::before {
    width: 0px;
  }
}
.service-page__item:hover::before {
  position: absolute;
  content: "";
  right: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background: #F1F1F1;
}
.dark .service-page__item:hover::before {
  background: #1A1A1A;
}
.service-page__item:hover .service-page__thumb img {
  opacity: 1;
  visibility: visible;
}
.service-page__item:hover .icon svg {
  color: #FF6A3A;
}
.service-page__item:hover .number span {
  left: 0;
  top: -24px;
  visibility: visible;
  opacity: 1;
}
.service-page__item:hover .number h4 {
  margin-left: 80px;
}
@media only screen and (max-width: 991px) {
  .service-page__item:hover .number h4 {
    margin-left: 40px;
  }
}
.service-page__item .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
}
.service-page__item .icon svg {
  color: var(--primary);
  transition: all 0.3s ease-in-out;
}
.service-page__item .number {
  position: relative;
  z-index: 2;
}
.service-page__item .number h4 {
  font-weight: 400;
  font-size: 18px;
  line-height: 18px;
  letter-spacing: -0.05em;
  color: var(--primary);
  font-family: var(--font_BDOGrotesk);
  margin-left: 50px;
  transition: all 0.3s ease-in-out;
}
@media only screen and (max-width: 991px) {
  .service-page__item .number h4 {
    margin-left: 30px;
  }
}
@media (max-width: 575px) {
  .service-page__item .number h4 {
    margin-left: 20px;
  }
}
.service-page__item .number span {
  position: absolute;
  height: 255px;
  width: 30px;
  background: #FF6A3A;
  left: -10px;
  top: -24px;
  transition: all 0.3s ease-in-out;
  opacity: 0;
  visibility: hidden;
}
@media only screen and (max-width: 767px) {
  .service-page__item .number span {
    display: none;
  }
}
.service-page__content {
  display: grid;
  gap: 50px;
  position: relative;
  z-index: 2;
  grid-template-columns: 106px 1fr;
}
@media only screen and (max-width: 1199px) {
  .service-page__content {
    gap: 50px;
  }
}
@media only screen and (max-width: 991px) {
  .service-page__content {
    gap: 30px;
  }
}
@media (max-width: 575px) {
  .service-page__content {
    gap: 30px;
    margin-left: 20px;
  }
}
.service-page__content .title h3 {
  font-weight: 400;
  font-size: 18px;
  line-height: 18px;
  letter-spacing: -0.05em;
  color: var(--primary);
  font-family: var(--font_BDOGrotesk);
}
.service-page__thumb {
  max-width: 412px;
  position: relative;
  z-index: 2;
}
.service-page__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease-in-out;
}
.service-page__list ul li {
  font-weight: 400;
  font-size: 18px;
  line-height: 26px;
  letter-spacing: -0.05em;
  color: #555555;
  font-family: var(--font_BDOGrotesk);
  list-style: none;
}
.dark .service-page__list ul li {
  color: #999999;
}
@media only screen and (max-width: 991px) {
  .service-page__list ul li {
    font-size: 15px;
    line-height: 24px;
  }
}

.service-pages .breadcrumb-section__wrapper {
  margin-bottom: 30px;
}

.brand-section-2__info {
  text-align: center;
  margin-bottom: 63px;
}
.brand-section-2__info .decs {
  font-weight: 400;
  font-size: 20px;
  line-height: 28px;
  color: var(--primary);
  font-family: var(--font_body);
}
.brand-section-2__thumb {
  width: 215px;
  height: 140px;
  border: 1px solid rgba(17, 17, 17, 0.1);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.dark .brand-section-2__thumb {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
}
.brand-section-2__box .h1-brand__slider .swiper-wrapper {
  display: flex;
  column-gap: 10px;
  align-items: center;
  justify-content: space-between;
  transition-timing-function: linear;
}
.brand-section-2__box .h1-brand__slider .swiper-wrapper .swiper-slide {
  width: auto;
}

.banner-3-img {
  overflow: hidden;
  position: relative;
}
.banner-3-img::before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
}
.banner-3-img img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.brand-section-4 {
  padding-top: 70px;
}
.brand-section-4__info {
  text-align: center;
  margin-bottom: 48px;
}
.brand-section-4__info .decs {
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  letter-spacing: -0.05em;
  color: #FFFFFF;
  font-family: var(--font_body);
}
.brand-section-4__box {
  padding: 55px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
}
.brand-section-4__box .h4-brand__slider .swiper-wrapper {
  display: flex;
  column-gap: 120px;
  align-items: center;
  justify-content: space-between;
  transition-timing-function: linear;
}
@media only screen and (max-width: 1399px) {
  .brand-section-4__box .h4-brand__slider .swiper-wrapper {
    column-gap: 50px;
  }
}
.brand-section-4__box .h4-brand__slider .swiper-wrapper .swiper-slide {
  width: auto;
}

.video-section-4__wrapper {
  overflow: hidden;
  position: relative;
  margin-bottom: 0;
}
@media only screen and (max-width: 1199px) {
  .video-section-4__wrapper .experience-4-video {
    height: 600px;
  }
}
@media only screen and (max-width: 767px) {
  .video-section-4__wrapper .experience-4-video {
    height: 500px;
  }
}
@media (max-width: 575px) {
  .video-section-4__wrapper .experience-4-video {
    height: 400px;
  }
}
.video-section-4__content {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  width: 100%;
}
.video-section-4__content .decs {
  font-weight: 400;
  font-size: 20px;
  line-height: 28px;
  letter-spacing: -0.05em;
  color: #FFFFFF;
  font-family: var(--font_BDOGrotesk);
}
@media (max-width: 575px) {
  .video-section-4__content .decs br {
    display: none;
  }
}

.banner-5-img {
  overflow: hidden;
  position: relative;
}
.banner-5-img::before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.2);
  z-index: 1;
}
.banner-5-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-section-2 {
  background: #F1F1F1;
}
.dark .testimonial-section-2 {
  background: #141414;
  border: 1px solid rgba(255, 255, 255, 0.05);
}
.testimonial-section-2 .section-2-info {
  gap: 220px;
}
@media only screen and (max-width: 1399px) {
  .testimonial-section-2 .section-2-info {
    gap: 140px;
  }
}
@media only screen and (max-width: 1199px) {
  .testimonial-section-2 .section-2-info {
    gap: 120px;
  }
}
@media only screen and (max-width: 991px) {
  .testimonial-section-2 .section-2-info {
    gap: 70px;
  }
}
@media only screen and (max-width: 767px) {
  .testimonial-section-2 .section-2-info {
    gap: 20px;
  }
}
.testimonial-section-2__box {
  margin-right: -412px;
}
@media only screen and (max-width: 1919px) {
  .testimonial-section-2__box {
    margin-right: -326px;
  }
}
@media only screen and (max-width: 1399px) {
  .testimonial-section-2__box {
    margin-right: 0;
  }
}
.testimonial-section-2__box .swiper-arrow {
  margin-top: 100px;
}
.testimonial-section-2__item {
  background: #1A1A1A;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 50px 50px 45px 50px;
}
@media only screen and (max-width: 1399px) {
  .testimonial-section-2__item {
    padding: 50px 20px 45px 20px;
  }
}
@media (max-width: 575px) {
  .testimonial-section-2__item {
    padding: 45px 16px 40px 15px;
  }
}
.testimonial-section-2__item .icon {
  margin-bottom: 152px;
}
@media only screen and (max-width: 1399px) {
  .testimonial-section-2__item .icon {
    margin-bottom: 100px;
  }
}
@media only screen and (max-width: 1199px) {
  .testimonial-section-2__item .icon {
    margin-bottom: 70px;
  }
}
.testimonial-section-2__item .content .title {
  font-weight: 400;
  font-size: 30px;
  line-height: 30px;
  letter-spacing: -0.05em;
  color: var(--white);
  margin-bottom: 48px;
  font-family: var(--font_BDOGrotesk);
}
@media only screen and (max-width: 1919px) {
  .testimonial-section-2__item .content .title br {
    display: none;
  }
}
@media only screen and (max-width: 1399px) {
  .testimonial-section-2__item .content .title {
    font-size: 24px;
    line-height: 28px;
  }
}
.testimonial-section-2__author-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 18px;
  gap: 15px;
}
.testimonial-section-2__author-box .author .name {
  font-weight: 400;
  font-size: 18px;
  line-height: 22px;
  letter-spacing: -0.05em;
  color: var(--white);
  font-family: var(--font_BDOGrotesk);
}
.testimonial-section-2__author-box .author span {
  font-weight: 400;
  font-size: 18px;
  line-height: 22px;
  letter-spacing: -0.05em;
  color: rgba(255, 255, 255, 0.5);
  font-family: var(--font_BDOGrotesk);
}
.testimonial-section-2__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 50px;
  gap: 20px;
}
@media only screen and (max-width: 767px) {
  .testimonial-section-2__bottom {
    flex-wrap: wrap;
  }
}
.testimonial-section-2__bottom .swiper-arrow {
  display: flex;
  gap: 10px;
}
.testimonial-section-2__bottom .swiper-arrow .carousel-2-wrap {
  background: var(--white);
  height: 100px;
  width: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  transition: all 0.3s ease-in-out;
}
.testimonial-section-2__bottom .swiper-arrow .carousel-2-wrap svg {
  color: #1A1A1A;
  transition: all 0.3s ease-in-out;
}
.testimonial-section-2__bottom .swiper-arrow .carousel-2-wrap:hover {
  background: #FF6A3A;
}
.testimonial-section-2__bottom .swiper-arrow .carousel-2-wrap:hover svg {
  color: var(--white);
}
.testimonial-section-2__bottom .section-border {
  max-width: 1065px;
  width: 100%;
  height: 100%;
  border-top: 1px solid rgba(17, 17, 17, 0.05);
  border-bottom: 1px solid rgba(17, 17, 17, 0.05);
  padding-top: 9px;
}
.dark .testimonial-section-2__bottom .section-border {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.testimonial-section-2__bottom .text .decs {
  font-weight: 400;
  font-size: 16px;
  line-height: 21px;
  color: rgba(17, 17, 17, 0.4);
  font-family: var(--font_body);
}
.dark .testimonial-section-2__bottom .text .decs {
  color: rgba(255, 255, 255, 0.4);
}
@media only screen and (max-width: 1919px) {
  .testimonial-section-2__bottom .text .decs br {
    display: none;
  }
}
.testimonial-section-2__box .item-1 {
  background: #FF6A3A;
}
.testimonial-section-2__box .item-3 {
  background: var(--white);
}
.testimonial-section-2__box .item-3 .content .title {
  color: var(--primary);
}
.dark .testimonial-section-2__box .item-3 .content .title {
  color: #111111;
}
.testimonial-section-2__box .item-3 .author .name {
  color: var(--primary);
}
.dark .testimonial-section-2__box .item-3 .author .name {
  color: #111111;
}
.testimonial-section-2__box .item-3 .author span {
  color: #999999;
}
.testimonial-section-2__box .item-3 .testimonial-section-2__author-box {
  border-top: 1px solid rgba(17, 17, 17, 0.15);
}

.testimonial-section-3__thumb {
  position: relative;
  margin-right: -20px;
}
@media only screen and (max-width: 1199px) {
  .testimonial-section-3__thumb {
    margin-right: 0;
    height: 550px;
  }
}
@media only screen and (max-width: 767px) {
  .testimonial-section-3__thumb {
    margin-right: 0;
    height: 100%;
  }
}
.testimonial-section-3__thumb::before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
}
.testimonial-section-3__thumb .title {
  font-weight: 400;
  font-size: 48px;
  line-height: 58px;
  letter-spacing: -0.05em;
  color: #FFFFFF;
  font-family: var(--font_BDOGrotesk);
  position: absolute;
  bottom: 46px;
  left: 35px;
}
@media only screen and (max-width: 1199px) {
  .testimonial-section-3__thumb .title br {
    display: none;
  }
}
@media (max-width: 575px) {
  .testimonial-section-3__thumb .title {
    font-size: 36px;
    line-height: 38px;
    left: 20px;
  }
}
.testimonial-section-3__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.testimonial-section-3__card {
  background: #1A1A1A;
  padding: 29px 31px 35px 32px;
  margin-left: 17px;
}
@media only screen and (max-width: 1399px) {
  .testimonial-section-3__card {
    padding: 29px 20px 35px 20px;
  }
}
@media only screen and (max-width: 1199px) {
  .testimonial-section-3__card {
    margin-left: 0;
  }
}
.testimonial-section-3__card .content {
  margin-bottom: 120px;
}
@media only screen and (max-width: 1919px) {
  .testimonial-section-3__card .content {
    margin-bottom: 70px;
  }
}
@media (max-width: 575px) {
  .testimonial-section-3__card .content {
    margin-bottom: 40px;
  }
}
.testimonial-section-3__card .content .sub-title {
  font-weight: 400;
  font-size: 16px;
  line-height: 27px;
  color: rgba(255, 255, 255, 0.5);
  font-family: var(--font_body);
  margin-bottom: 25px;
}
.testimonial-section-3__card .content .title {
  font-weight: 400;
  font-size: 24px;
  line-height: 28px;
  letter-spacing: -0.03em;
  color: #FFFFFF;
  font-family: var(--font_BDOGrotesk);
}
@media only screen and (max-width: 1919px) {
  .testimonial-section-3__card .content .title br {
    display: none;
  }
}
@media only screen and (max-width: 991px) {
  .testimonial-section-3__card .content .title {
    font-size: 22px;
    line-height: 28px;
  }
}
.testimonial-section-3__card .author-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}
.testimonial-section-3__card .author-box .author {
  display: flex;
  gap: 15px;
  align-items: center;
}
.testimonial-section-3__card .author-box .author .author-img {
  width: 70px;
  height: 70px;
}
.testimonial-section-3__card .author-box .author .author-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.testimonial-section-3__card .author-box .meta .name {
  font-weight: 400;
  font-size: 20px;
  line-height: 27px;
  letter-spacing: -0.07em;
  color: #FFFFFF;
  font-family: var(--font_BDOGrotesk);
}
.testimonial-section-3__card .author-box .meta .post {
  font-weight: 400;
  font-size: 16px;
  line-height: 27px;
  color: rgba(255, 255, 255, 0.5);
  font-family: var(--font_body);
}
.testimonial-section-3__card .author-box .icon {
  width: 70px;
  height: 70px;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}
.testimonial-section-3__item-box {
  margin-right: -530px;
}
@media only screen and (max-width: 1919px) {
  .testimonial-section-3__item-box {
    margin-right: -430px;
  }
}
@media only screen and (max-width: 1199px) {
  .testimonial-section-3__item-box {
    margin-right: 0px;
    margin-top: 40px;
  }
}
.testimonial-section-3__item-box .card-2 {
  background: #FF6A3A;
}
.testimonial-section-3__item-box .card-3 {
  background: #F1F1F1;
}
.testimonial-section-3__item-box .card-3 .sub-title {
  color: rgba(17, 17, 17, 0.5);
}
.testimonial-section-3__item-box .card-3 .title {
  color: #111111;
}
.testimonial-section-3__item-box .card-3 .author-box .name {
  color: #111111;
}
.testimonial-section-3__item-box .card-3 .author-box .post {
  color: rgba(17, 17, 17, 0.5);
}
.testimonial-section-3 .arrow {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 60px;
  gap: 20px;
}
@media only screen and (max-width: 991px) {
  .testimonial-section-3 .arrow {
    margin-top: 40px;
  }
}
.testimonial-section-3 .arrow .rr-button {
  width: 50px;
  height: 50px;
  border: 1px solid rgba(17, 17, 17, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease-in-out;
}
.dark .testimonial-section-3 .arrow .rr-button {
  border: 1px solid #EEEEEE;
}
.testimonial-section-3 .arrow .rr-button svg {
  color: rgba(17, 17, 17, 0.5);
  transition: all 0.3s ease-in-out;
}
.dark .testimonial-section-3 .arrow .rr-button svg {
  color: var(--white);
}
.testimonial-section-3 .arrow .rr-button:hover {
  background: #FF6A3A;
}
.dark .testimonial-section-3 .arrow .rr-button:hover {
  color: var(--white);
  border: none;
}
.testimonial-section-3 .arrow .rr-button:hover svg {
  color: #FFFFFF;
}
.testimonial-section-3 .arrow .swiper-horizontal > .swiper-pagination-bullets,
.testimonial-section-3 .arrow .swiper-pagination-bullets.swiper-pagination-horizontal,
.testimonial-section-3 .arrow .swiper-pagination-custom,
.testimonial-section-3 .arrow .swiper-pagination-fraction {
  bottom: 0px;
  left: 0;
  width: 262px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 575px) {
  .testimonial-section-3 .arrow .swiper-horizontal > .swiper-pagination-bullets,
  .testimonial-section-3 .arrow .swiper-pagination-bullets.swiper-pagination-horizontal,
  .testimonial-section-3 .arrow .swiper-pagination-custom,
  .testimonial-section-3 .arrow .swiper-pagination-fraction {
    width: 100px;
  }
}
.testimonial-section-3 .swiper-pagination {
  position: relative;
  text-align: center;
  transition: 0.3s opacity;
  transform: translate3d(0, 0, 0);
  z-index: 10;
}
.testimonial-section-3 .swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.testimonial-section-3 .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 4px);
  width: 8px;
  height: 8px;
}
.testimonial-section-3 .swiper-pagination-bullet-active {
  opacity: var(--swiper-pagination-bullet-opacity, 1);
  background: #1A1A1A !important;
  width: 10px !important;
  height: 10px !important;
}
.dark .testimonial-section-3 .swiper-pagination-bullet-active {
  background: var(--white) !important;
}
.dark .testimonial-section-3 .swiper-pagination-bullet {
  width: var(--swiper-pagination-bullet-width, var(--swiper-pagination-bullet-size, 8px));
  height: var(--swiper-pagination-bullet-height, var(--swiper-pagination-bullet-size, 8px));
  display: inline-block;
  border-radius: 50%;
  background: var(--swiper-pagination-bullet-inactive-color, #000);
  opacity: var(--swiper-pagination-bullet-inactive-opacity, 1);
  background: #333333;
}

.testimonial-section {
  background: #F1F1F1;
}
.dark .testimonial-section {
  background: #1A1A1A;
}
.testimonial-section .blog-section__info .text {
  font-weight: 400;
  font-size: 16px;
  line-height: 27px;
  color: rgba(17, 17, 17, 0.4);
  margin-top: 14px;
}
.dark .testimonial-section .blog-section__info .text {
  color: rgba(255, 255, 255, 0.4);
}
.testimonial-section__wrapper {
  display: grid;
  gap: 90px 23px;
  grid-template-columns: repeat(3, 507px);
  padding: 0 25px;
}
@media only screen and (max-width: 1919px) {
  .testimonial-section__wrapper {
    grid-template-columns: repeat(3, 1fr);
    padding: 0;
  }
}
@media only screen and (max-width: 1399px) {
  .testimonial-section__wrapper {
    grid-template-columns: repeat(3, 1fr);
    padding: 0;
  }
}
@media only screen and (max-width: 1199px) {
  .testimonial-section__wrapper {
    grid-template-columns: repeat(3, 1fr);
    padding: 0;
    gap: 30px 15px;
  }
}
@media only screen and (max-width: 991px) {
  .testimonial-section__wrapper {
    grid-template-columns: repeat(2, 1fr);
    padding: 0;
    gap: 15px;
  }
}
@media (max-width: 575px) {
  .testimonial-section__wrapper {
    grid-template-columns: repeat(1, 1fr);
    padding: 0;
    gap: 15px;
    display: flex;
    flex-wrap: wrap;
  }
}
.testimonial-section__wrapper > *:nth-child(2) {
  grid-column-start: 2;
  margin-top: 364px;
}
@media only screen and (max-width: 1199px) {
  .testimonial-section__wrapper > *:nth-child(2) {
    grid-column-start: inherit;
    margin-top: 0px;
  }
}
@media only screen and (max-width: 991px) {
  .testimonial-section__wrapper > *:nth-child(2) {
    grid-column-start: 2;
    margin-top: 0px;
  }
}
.testimonial-section__wrapper > *:nth-child(3) {
  grid-column-start: 3;
  margin-top: 729px;
}
@media only screen and (max-width: 1199px) {
  .testimonial-section__wrapper > *:nth-child(3) {
    grid-column-start: inherit;
    margin-top: 0;
  }
}
@media only screen and (max-width: 991px) {
  .testimonial-section__wrapper > *:nth-child(3) {
    grid-column-start: 1;
    margin-top: 0;
  }
}
.testimonial-section__wrapper > *:nth-child(4) {
  grid-column-start: 2;
  margin-top: 10px;
}
@media only screen and (max-width: 1199px) {
  .testimonial-section__wrapper > *:nth-child(4) {
    grid-column-start: inherit;
    grid-column-start: 1;
    margin-top: 0;
  }
}
@media only screen and (max-width: 991px) {
  .testimonial-section__wrapper > *:nth-child(4) {
    grid-column-start: 2;
  }
}
.testimonial-section__wrapper > *:nth-child(5) {
  grid-column-start: 1;
  margin-top: 10px;
}
@media only screen and (max-width: 1199px) {
  .testimonial-section__wrapper > *:nth-child(5) {
    grid-column-start: inherit;
    grid-column-start: 2;
    margin-top: 0;
  }
}
@media only screen and (max-width: 991px) {
  .testimonial-section__wrapper > *:nth-child(5) {
    grid-column-start: 1;
  }
}
.testimonial-section__wrapper > *:nth-child(6) {
  grid-column-start: 2;
  margin-top: 364px;
}
@media only screen and (max-width: 1199px) {
  .testimonial-section__wrapper > *:nth-child(6) {
    grid-column-start: inherit;
    grid-column-start: 3;
    margin-top: 0;
  }
}
@media only screen and (max-width: 991px) {
  .testimonial-section__wrapper > *:nth-child(6) {
    grid-column-start: 2;
  }
}
.testimonial-section__item {
  background: var(--primary);
  padding: 40px 40px 33px 40px;
  height: 264px;
  position: relative;
  z-index: 1;
}
@media only screen and (max-width: 1199px) {
  .testimonial-section__item {
    height: 100%;
    padding: 40px 20px 33px 20px;
  }
}
.testimonial-section__item .author__box {
  display: flex;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
  margin-bottom: 31px;
}
.testimonial-section__item .author__box .author {
  display: flex;
  align-items: center;
}
.testimonial-section__item .author__box .author .icon {
  background: #FF6A3A;
  height: 50px;
  width: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.testimonial-section__item .author__box .author .author-img {
  margin-left: -10px;
}
.testimonial-section__item .author__box .author .author-img img {
  border: 2px solid #111111;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  object-fit: cover;
}
.dark .testimonial-section__item .author__box .author .author-img img {
  border: 2px solid #FFFFFF;
}
.testimonial-section__item .author__box .author-details .name {
  font-weight: 400;
  font-size: 20px;
  line-height: 27px;
  letter-spacing: -0.07em;
  color: #FFFFFF;
}
.dark .testimonial-section__item .author__box .author-details .name {
  color: #111111;
}
.testimonial-section__item .author__box .author-details h5 {
  font-weight: 400;
  font-size: 16px;
  line-height: 27px;
  color: rgba(255, 255, 255, 0.4);
}
.dark .testimonial-section__item .author__box .author-details h5 {
  color: rgba(17, 17, 17, 0.4);
}
.testimonial-section__item .content .decs {
  font-weight: 400;
  font-size: 16px;
  line-height: 27px;
  letter-spacing: -0.03em;
  color: rgba(255, 255, 255, 0.5);
}
.dark .testimonial-section__item .content .decs {
  color: rgba(17, 17, 17, 0.5);
}
@media only screen and (max-width: 1919px) {
  .testimonial-section__item .content .decs br {
    display: none;
  }
}

.testimonial-section-5__item-box {
  display: grid;
  grid-template-columns: 398px 519px 1fr;
  gap: 20px;
}
@media only screen and (max-width: 1399px) {
  .testimonial-section-5__item-box {
    grid-template-columns: 370px 402px 1fr;
  }
}
@media only screen and (max-width: 1199px) {
  .testimonial-section-5__item-box {
    grid-template-columns: 280px 1fr 1fr;
    gap: 15px;
  }
}
@media only screen and (max-width: 991px) {
  .testimonial-section-5__item-box {
    grid-template-columns: 370px 1fr;
    gap: 10px;
  }
}
@media only screen and (max-width: 767px) {
  .testimonial-section-5__item-box {
    grid-template-columns: 1fr;
    gap: 15px;
  }
}
.testimonial-section-5__card {
  background: #1D1C1C;
  padding: 29px 28px 30px 28px;
}
@media only screen and (max-width: 1399px) {
  .testimonial-section-5__card {
    padding: 29px 20px 35px 20px;
  }
}
@media only screen and (max-width: 1199px) {
  .testimonial-section-5__card {
    margin-left: 0;
  }
}
.testimonial-section-5__card .content {
  margin-bottom: 120px;
}
@media only screen and (max-width: 1919px) {
  .testimonial-section-5__card .content {
    margin-bottom: 70px;
  }
}
@media (max-width: 575px) {
  .testimonial-section-5__card .content {
    margin-bottom: 40px;
  }
}
.testimonial-section-5__card .content .sub-title {
  font-weight: 400;
  font-size: 16px;
  line-height: 27px;
  color: rgba(255, 255, 255, 0.5);
  font-family: var(--font_body);
  margin-bottom: 25px;
}
.testimonial-section-5__card .content .title {
  font-weight: 400;
  font-size: 24px;
  line-height: 28px;
  letter-spacing: -0.03em;
  color: #FFFFFF;
  font-family: var(--font_BDOGrotesk);
}
@media only screen and (max-width: 1919px) {
  .testimonial-section-5__card .content .title br {
    display: none;
  }
}
@media only screen and (max-width: 991px) {
  .testimonial-section-5__card .content .title {
    font-size: 22px;
    line-height: 28px;
  }
}
.testimonial-section-5__card .author-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}
.testimonial-section-5__card .author-box .author {
  display: flex;
  gap: 15px;
  align-items: center;
}
.testimonial-section-5__card .author-box .author .author-img {
  width: 70px;
  height: 70px;
}
.testimonial-section-5__card .author-box .author .author-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.testimonial-section-5__card .author-box .meta .name {
  font-weight: 400;
  font-size: 20px;
  line-height: 27px;
  letter-spacing: -0.07em;
  color: #FFFFFF;
  font-family: var(--font_BDOGrotesk);
}
@media only screen and (max-width: 991px) {
  .testimonial-section-5__card .author-box .meta .name {
    font-size: 18px;
    line-height: 26px;
  }
}
.testimonial-section-5__card .author-box .meta .post {
  font-weight: 400;
  font-size: 16px;
  line-height: 27px;
  color: rgba(255, 255, 255, 0.5);
  font-family: var(--font_body);
}
.testimonial-section-5__card .author-box .icon {
  width: 70px;
  height: 70px;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}
.testimonial-section-5__item-box .card-1 .content {
  margin-bottom: 65px;
}
.testimonial-section-5__item-box .card-2 {
  background: #FF6A3A;
}
.testimonial-section-5__item-box .card-2 .icon {
  background: #111111;
}

.testimonial-section-4 {
  position: relative;
}
.testimonial-section-4::before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.5);
}
.testimonial-section-4 .shapes .shape-1 {
  position: absolute;
  top: 0;
  left: 0;
}
.testimonial-section-4 .shapes .shape-2 {
  position: absolute;
  bottom: 0;
  left: 0;
}
.testimonial-section-4 .team-section-4__info {
  position: relative;
  z-index: 1;
}
.testimonial-section-4 .team-section-4__info .decs {
  font-weight: 400;
  font-size: 18px;
  line-height: 21px;
  color: rgba(255, 255, 255, 0.5);
  font-family: var(--font_body);
  margin-top: 43px;
}
.testimonial-section-4__box {
  margin-left: 75px;
}
@media only screen and (max-width: 1199px) {
  .testimonial-section-4__box {
    margin-left: 30px;
  }
}
@media only screen and (max-width: 991px) {
  .testimonial-section-4__box {
    margin-left: 0px;
    margin-top: 40px;
  }
}
@media (max-width: 575px) {
  .testimonial-section-4__box {
    margin-left: 0px;
    margin-top: 30px;
  }
}
.testimonial-section-4__content .text {
  font-weight: 400;
  font-size: 64px;
  line-height: 64px;
  letter-spacing: -0.05em;
  color: #FFFFFF;
  margin-bottom: 55px;
}
@media only screen and (max-width: 1919px) {
  .testimonial-section-4__content .text {
    font-size: 53px;
    line-height: 61px;
  }
}
@media only screen and (max-width: 1399px) {
  .testimonial-section-4__content .text {
    font-size: 49px;
    line-height: 54px;
  }
  .testimonial-section-4__content .text br {
    display: none;
  }
}
@media only screen and (max-width: 991px) {
  .testimonial-section-4__content .text {
    font-size: 46px;
    line-height: 51px;
  }
}
@media only screen and (max-width: 767px) {
  .testimonial-section-4__content .text {
    font-size: 38px;
    line-height: 43px;
    margin-bottom: 40px;
  }
}
@media (max-width: 575px) {
  .testimonial-section-4__content .text {
    font-size: 29px;
    line-height: 32px;
    margin-bottom: 30px;
  }
}
.testimonial-section-4__author .name {
  font-weight: 400;
  font-size: 24px;
  line-height: 27px;
  letter-spacing: -0.07em;
  color: #FCF7F3;
  margin-bottom: 6px;
}
.testimonial-section-4__author h6 {
  font-weight: 400;
  font-size: 18px;
  line-height: 18px;
  color: rgba(252, 247, 243, 0.4);
  font-family: var(--font_body);
}
.testimonial-section-4__circle {
  margin-top: 2px;
  max-width: 130px;
  width: 100%;
  height: auto;
  margin-right: auto;
}
.testimonial-section-4 .pagination-box {
  margin-left: 75px;
  margin-top: 40px;
  display: flex;
  justify-content: space-between;
  position: relative;
  z-index: 1;
}
@media only screen and (max-width: 1199px) {
  .testimonial-section-4 .pagination-box {
    margin-left: 30px;
  }
}
@media only screen and (max-width: 991px) {
  .testimonial-section-4 .pagination-box {
    margin-left: 0px;
  }
}
.testimonial-section-4 .pagination-box .swiper-pagination-bullet:only-child {
  display: inherit;
}
.testimonial-section-4 .pagination-box .swiper-pagination {
  position: relative;
  text-align: center;
  transition: 0.3s opacity;
  transform: translate3d(0, 0, 0);
  z-index: 10;
}
.testimonial-section-4 .pagination-box .swiper-pagination-bullet:only-child {
  display: inherit !important;
}
.testimonial-section-4 .pagination-box .arrow {
  display: flex;
  align-items: center;
  gap: 40px;
  width: 500px;
  justify-content: end;
}
.testimonial-section-4 .pagination-box .arrow .rr-button span {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 14px;
  line-height: 16px;
  text-transform: uppercase;
  color: #FFFFFF;
}
.testimonial-section-4 .pagination-box .arrow .rr-button span i {
  font-size: 16px;
}
.testimonial-section-4 .pagination-box .swiper-horizontal > .swiper-pagination-bullets, .testimonial-section-4 .pagination-box .swiper-pagination-bullets.swiper-pagination-horizontal, .testimonial-section-4 .pagination-box .swiper-pagination-custom, .testimonial-section-4 .pagination-box .swiper-pagination-fraction {
  width: inherit;
}
.testimonial-section-4 .pagination-box .swiper-pagination-bullet {
  width: var(--swiper-pagination-bullet-width, var(--swiper-pagination-bullet-size, 8px));
  height: var(--swiper-pagination-bullet-height, var(--swiper-pagination-bullet-size, 8px));
  display: inline-block;
  border-radius: 50%;
  background: var(--swiper-pagination-bullet-inactive-color, #000);
  opacity: var(--swiper-pagination-bullet-inactive-opacity, );
  background: #515151;
}
.testimonial-section-4 .pagination-box .testimonial-section-4 .pagination-box .swiper-pagination-bullet {
  width: var(--swiper-pagination-bullet-width, var(--swiper-pagination-bullet-size, 8px));
  height: var(--swiper-pagination-bullet-height, var(--swiper-pagination-bullet-size, 8px));
  display: inline-block;
  border-radius: 50%;
  background: var(--swiper-pagination-bullet-inactive-color, #FFFFFF);
  opacity: var(--swiper-pagination-bullet-inactive-opacity, );
  background: #FFFFFF !important;
}
.testimonial-section-4 .pagination-box .swiper-pagination-bullet-active {
  background: var(--white);
}
.testimonial-section-4 .pagination-box .swiper-pagination.swiper-pagination-clickable.swiper-pagination-bullets.swiper-pagination-horizontal {
  display: flex;
  gap: 4px;
  bottom: 0px;
}

.section-5__info {
  margin-bottom: 65px;
}
@media only screen and (max-width: 767px) {
  .section-5__info {
    margin-bottom: 40px;
  }
}
.section-5__info .title {
  font-weight: 400;
  font-size: 128px;
  line-height: 128px;
  letter-spacing: -0.05em;
  background: linear-gradient(178.38deg, #111111 1.38%, #FFFFFF 93.92%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}
@media only screen and (max-width: 991px) {
  .section-5__info .title {
    font-size: 107px;
    line-height: 105px;
  }
}
@media only screen and (max-width: 767px) {
  .section-5__info .title {
    font-size: 81px;
    line-height: 94px;
  }
}
@media (max-width: 575px) {
  .section-5__info .title {
    font-size: 48px;
    line-height: 54px;
  }
}
.dark .section-5__info .title {
  background: linear-gradient(178.38deg, #AEAEAE 1.38%, #111111 93.92%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

.breadcrumb-section__wrapper {
  padding-top: 190px;
  padding-bottom: 65px;
}
@media only screen and (max-width: 1399px) {
  .breadcrumb-section__wrapper {
    padding-top: 150px;
  }
}
@media only screen and (max-width: 1199px) {
  .breadcrumb-section__wrapper {
    padding-top: 120px;
  }
}
@media only screen and (max-width: 767px) {
  .breadcrumb-section__wrapper {
    padding-top: 100px;
  }
}
.breadcrumb-section__sub-heading {
  border-bottom: 1px solid rgba(17, 17, 17, 0.15);
  padding-bottom: 8px;
  margin-bottom: 50px;
}
.dark .breadcrumb-section__sub-heading {
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}
@media (max-width: 575px) {
  .breadcrumb-section__sub-heading {
    margin-bottom: 35px;
  }
}
.breadcrumb-section__sub-heading .sub-title {
  font-weight: 500;
  font-size: 18px;
  line-height: 38px;
  letter-spacing: -0.02em;
  color: #FF6A3A;
  font-family: var(--font_body);
}
.breadcrumb-section__info .title {
  font-weight: 400;
  font-size: 90px;
  line-height: 85px;
  letter-spacing: -0.05em;
  color: var(--primary);
  font-family: var(--font_BDOGrotesk);
}
@media only screen and (max-width: 1199px) {
  .breadcrumb-section__info .title {
    font-size: 64px;
    line-height: 70px;
  }
}
@media only screen and (max-width: 991px) {
  .breadcrumb-section__info .title br {
    display: none;
  }
}
@media only screen and (max-width: 767px) {
  .breadcrumb-section__info .title {
    font-size: 55px;
    line-height: 60px;
  }
}
@media (max-width: 575px) {
  .breadcrumb-section__info .title {
    font-size: 37px;
    line-height: 40px;
  }
}
.breadcrumb-section__content {
  margin-left: 15px;
}
@media only screen and (max-width: 991px) {
  .breadcrumb-section__content {
    margin-left: 0;
    margin-top: 30px;
  }
}
.breadcrumb-section__content .decs {
  font-weight: 400;
  font-size: 18px;
  line-height: 26px;
  color: rgba(17, 17, 17, 0.5);
  margin-bottom: 43px;
}
.dark .breadcrumb-section__content .decs {
  color: rgba(255, 255, 255, 0.7);
}
@media only screen and (max-width: 1919px) {
  .breadcrumb-section__content .decs br {
    display: none;
  }
}
@media only screen and (max-width: 991px) {
  .breadcrumb-section__content .decs {
    margin-bottom: 30px;
  }
}
.breadcrumb-section__content .breadcrumb-btn {
  position: relative;
  font-weight: 400;
  font-size: 18px;
  line-height: 38px;
  letter-spacing: -0.02em;
  color: var(--primary);
  font-family: var(--font_body);
}
.breadcrumb-section__content .breadcrumb-btn::before {
  width: 100%;
  height: 1px;
  background-color: currentColor;
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  transition: all 0.5s;
  color: var(--primary);
}
.dark .breadcrumb-section__content .breadcrumb-btn:hover {
  color: var(--white);
}
.breadcrumb-section__content .breadcrumb-btn:hover::before {
  width: 0%;
}

.breadcrumb-2__wrapper {
  padding-top: 190px;
  padding-bottom: 145px;
}
@media only screen and (max-width: 1399px) {
  .breadcrumb-2__wrapper {
    padding-top: 150px;
    padding-bottom: 120px;
  }
}
@media only screen and (max-width: 1199px) {
  .breadcrumb-2__wrapper {
    padding-top: 120px;
    padding-bottom: 100px;
  }
}
@media only screen and (max-width: 767px) {
  .breadcrumb-2__wrapper {
    padding-top: 100px;
    padding-bottom: 80px;
  }
}
.breadcrumb-2__wrapper .sub-heading {
  border-bottom: 1px solid rgba(17, 17, 17, 0.15);
  padding-bottom: 8px;
  margin-bottom: 40px;
}
.dark .breadcrumb-2__wrapper .sub-heading {
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}
@media (max-width: 575px) {
  .breadcrumb-2__wrapper .sub-heading {
    margin-bottom: 35px;
  }
}
.breadcrumb-2__wrapper .sub-heading .sub-title {
  font-weight: 500;
  font-size: 18px;
  line-height: 38px;
  letter-spacing: -0.02em;
  color: #FF6A3A;
  font-family: var(--font_body);
}
.breadcrumb-2__content-box {
  display: flex;
  gap: 30px;
  justify-content: space-between;
  flex-wrap: wrap;
}
@media (max-width: 575px) {
  .breadcrumb-2__content-box {
    gap: 20px;
  }
}
.breadcrumb-2__content-box .content .decs {
  font-weight: 400;
  font-size: 18px;
  line-height: 26px;
  color: #555555;
  margin-top: 4px;
}
.dark .breadcrumb-2__content-box .content .decs {
  color: rgba(255, 255, 255, 0.5);
}
@media only screen and (max-width: 991px) {
  .breadcrumb-2__content-box .content .decs br {
    display: none;
  }
}
.breadcrumb-2__heading .title {
  font-weight: 400;
  font-size: 90px;
  line-height: 85px;
  letter-spacing: -0.05em;
  color: var(--primary);
}
@media only screen and (max-width: 1199px) {
  .breadcrumb-2__heading .title {
    font-size: 70px;
    line-height: 70px;
  }
}
@media only screen and (max-width: 991px) {
  .breadcrumb-2__heading .title br {
    display: none;
  }
}
@media (max-width: 575px) {
  .breadcrumb-2__heading .title {
    font-size: 42px;
    line-height: 46px;
  }
}

.error-area-inner {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.error-area-inner .section-content .subtitle-wrapper .section-subtitle {
  font-weight: 400;
  font-size: 300px;
  line-height: 14px;
  letter-spacing: -0.05em;
  color: var(--primary);
  font-family: var(--font_BDOGrotesk);
}
@media only screen and (max-width: 1919px) {
  .error-area-inner .section-content .subtitle-wrapper .section-subtitle {
    font-size: 240px;
  }
}
@media only screen and (max-width: 1399px) {
  .error-area-inner .section-content .subtitle-wrapper .section-subtitle {
    font-size: 180px;
  }
}
@media only screen and (max-width: 1199px) {
  .error-area-inner .section-content .subtitle-wrapper .section-subtitle {
    font-size: 140px;
  }
}
@media only screen and (max-width: 991px) {
  .error-area-inner .section-content .subtitle-wrapper .section-subtitle {
    font-size: 120px;
  }
}
.error-area-inner .section-content .title-wrapper .section-title {
  font-weight: 400;
  font-size: 90px;
  line-height: 85px;
  letter-spacing: -0.05em;
  color: var(--primary);
}
.error-area-inner .section-content .rr-btn {
  padding: 25px 57.3px;
}
.dark .error-area-inner .section-content .rr-btn {
  background: #ffffff;
}
.dark .error-area-inner .section-content .rr-btn .text-one {
  color: var(--dark);
}
.error-area .section-title {
  max-width: 740px;
}
@media only screen and (max-width: 1919px) {
  .error-area .section-title {
    max-width: 640px;
  }
}
@media only screen and (max-width: 1399px) {
  .error-area .section-title {
    max-width: 540px;
  }
}
@media only screen and (max-width: 1199px) {
  .error-area .section-title {
    max-width: 440px;
  }
}
@media only screen and (max-width: 991px) {
  .error-area .section-title {
    max-width: 340px;
  }
}
.error-area .section-content {
  align-self: center;
}
.error-area .section-content .title-wrapper {
  margin-top: 20px;
}
@media only screen and (max-width: 1199px) {
  .error-area .section-content .title-wrapper {
    margin-top: 17px;
  }
}
.error-area .section-content .btn-wrapper {
  margin-top: 75px;
}
@media only screen and (max-width: 1919px) {
  .error-area .section-content .btn-wrapper {
    margin-top: 44px;
  }
}
@media only screen and (max-width: 1199px) {
  .error-area .section-content .btn-wrapper {
    margin-top: 34px;
  }
}
@media only screen and (max-width: 991px) {
  .error-area .section-content .btn-wrapper {
    margin-top: 24px;
  }
}

/* faq area style  */
.faq-area.faq-area-space {
  padding-top: 50px;
}
.faq-area .faq-area-inner .accordion-wrapper {
  max-width: 1419px;
  margin: 0 auto;
}
.faq-area .section-title-wrapper {
  display: block;
}
.faq-area .section-title-wrapper .title-wrapper {
  margin-bottom: 95px;
}
.faq-area .section-title-wrapper .title-wrapper .section-title {
  font-weight: 400;
  font-size: 90px;
  line-height: 85px;
  letter-spacing: -0.05em;
  color: var(--primary);
}
@media only screen and (max-width: 1399px) {
  .faq-area .section-title-wrapper .title-wrapper .section-title {
    font-size: 80px;
    line-height: 80px;
  }
}
@media only screen and (max-width: 1199px) {
  .faq-area .section-title-wrapper .title-wrapper .section-title {
    font-size: 60px;
    line-height: 70px;
    letter-spacing: 0;
  }
}
@media only screen and (max-width: 991px) {
  .faq-area .section-title-wrapper .title-wrapper .section-title {
    font-size: 50px;
    line-height: 60px;
  }
  .faq-area .section-title-wrapper .title-wrapper .section-title br {
    display: none;
  }
}
@media only screen and (max-width: 767px) {
  .faq-area .section-title-wrapper .title-wrapper .section-title {
    font-size: 30px;
    line-height: 34px;
  }
}
.faq-area .section-title-wrapper .title-wrapper .section-title span {
  font-family: var(--font_ppeditor);
}
.faq-area .accordion {
  counter-reset: accordion;
  border-top: 1px solid #E7E7E7;
}
.dark .faq-area .accordion {
  border-color: #292929;
}
.faq-area .accordion-button {
  padding: 33.5px 0;
  background-color: transparent;
  outline: 0;
  box-shadow: none;
  border-radius: 0;
}
@media only screen and (max-width: 1919px) {
  .faq-area .accordion-button {
    padding: 20px 0 23px;
    font-size: 24px;
  }
}
@media only screen and (max-width: 767px) {
  .faq-area .accordion-button {
    font-size: 20px;
  }
}
.faq-area .accordion-button::after {
  content: "+";
  font-family: var(--font_awesome);
  background-image: none;
  color: var(--primary);
  font-size: 20px;
  font-weight: 500;
  transition: all 0.5s;
}
@media (max-width: 575px) {
  .faq-area .accordion-button::after {
    margin-top: -31px;
  }
}
.faq-area .accordion-button:not(.collapsed)::after {
  content: "\f068";
}
.faq-area .accordion-item {
  background-color: transparent;
  border: none;
  border-bottom: 1px solid #E5E0DC;
  position: relative;
  transition: all 0.5s;
  border-radius: 0;
}
.dark .faq-area .accordion-item {
  border-color: #292929;
}
.faq-area .accordion-item .title {
  gap: 97px;
  display: flex;
  font-weight: 400;
  font-size: 30px;
  line-height: 35px;
  letter-spacing: -0.07em;
  align-items: center;
  color: var(--primary);
  font-family: var(--font_BDOGrotesk);
}
@media only screen and (max-width: 991px) {
  .faq-area .accordion-item .title {
    gap: 60px;
  }
}
@media only screen and (max-width: 767px) {
  .faq-area .accordion-item .title {
    gap: 30px;
    font-size: 26px;
    line-height: 30px;
  }
}
@media (max-width: 575px) {
  .faq-area .accordion-item .title {
    align-items: self-start;
    letter-spacing: 0px;
    gap: 30px;
    line-height: 26px;
    font-size: 16px;
  }
}
.faq-area .accordion-body {
  padding: 15px 18px 35px 50px;
  border: none;
  padding-left: 125px;
}
.dark .faq-area .accordion-body {
  border-color: #292929;
}
@media only screen and (max-width: 991px) {
  .faq-area .accordion-body {
    padding-left: 93px;
  }
}
@media only screen and (max-width: 767px) {
  .faq-area .accordion-body {
    padding-left: 30px;
  }
}
.faq-area .accordion-body p {
  font-weight: 400;
  font-size: 20px;
  line-height: 28px;
  color: rgba(17, 17, 17, 0.5);
  letter-spacing: 0px;
}
.dark .faq-area .accordion-body p {
  color: rgba(255, 255, 255, 0.5);
}
@media (max-width: 575px) {
  .faq-area .accordion-body p {
    font-size: 16px;
  }
}

.contact-page .direct-contact {
  margin-top: 74px;
}
@media only screen and (max-width: 991px) {
  .contact-page .direct-contact {
    margin-top: 40px;
  }
}
@media only screen and (max-width: 767px) {
  .contact-page .direct-contact {
    margin-bottom: 40px;
    margin-top: 0;
  }
}
.contact-page .direct-contact span {
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  color: #999999;
  display: block;
  margin-bottom: 15px;
}
@media only screen and (max-width: 991px) {
  .contact-page .direct-contact span {
    margin-bottom: 10px;
  }
}
.contact-page .direct-contact a {
  font-weight: 400;
  font-size: 30px;
  line-height: 28px;
  letter-spacing: -0.02em;
  color: var(--primary);
  font-family: var(--font_BDOGrotesk);
  position: relative;
}
.contact-page .direct-contact a::before {
  left: 0;
  bottom: 0;
  content: "";
  width: 100%;
  height: 1px;
  position: absolute;
  border-radius: 15px;
  transition: all 0.3s;
  background: var(--primary);
}
.contact-page .direct-contact a:hover::before {
  width: 0;
}
@media only screen and (max-width: 991px) {
  .contact-page .direct-contact a {
    font-size: 25px;
  }
}
.contact-page .direct-contact a:hover {
  color: var(--primary);
}
@media only screen and (max-width: 767px) {
  .contact-page .socail-media {
    margin-bottom: 30px;
  }
}
.contact-page .socail-media__item {
  gap: 20px;
  display: flex;
  align-items: center;
}
.contact-page .socail-media__item:not(:last-child) {
  margin-bottom: 23px;
}
.contact-page .socail-media__item .icon {
  width: 70px;
  height: 70px;
  display: flex;
  font-size: 22px;
  align-items: center;
  border-radius: 20px;
  transition: all 0.3s;
  color: var(--primary);
  justify-content: center;
  border: 1px solid rgba(17, 17, 17, 0.15);
}
.dark .contact-page .socail-media__item .icon {
  border-color: rgba(255, 255, 255, 0.15);
}
.contact-page .socail-media__item .icon:hover {
  border-color: transparent;
  background: rgba(17, 17, 17, 0.15);
}
.dark .contact-page .socail-media__item .icon:hover {
  background: rgba(255, 255, 255, 0.15);
}
.contact-page .socail-media__item .text a {
  display: block;
  margin-bottom: 2px;
  font-weight: 400;
  font-size: 20px;
  line-height: 28px;
  color: var(--primary);
  font-family: var(--font_BDOGrotesk);
}
.contact-page .socail-media__item .text a:hover {
  color: #FF6A3A;
}
.contact-page .socail-media__item .text span {
  display: block;
  font-weight: 400;
  font-size: 16px;
  line-height: 21px;
  color: #999999;
}
.contact-page .contact-formwrap {
  gap: 20px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
.contact-page .contact-formwrap .contact-formfield {
  grid-column: span 2;
}
.contact-page .contact-formwrap .contact-formfield:nth-child(2), .contact-page .contact-formwrap .contact-formfield:nth-child(3) {
  grid-column: span 1;
}
@media only screen and (max-width: 991px) {
  .contact-page .contact-formwrap .contact-formfield:nth-child(2), .contact-page .contact-formwrap .contact-formfield:nth-child(3) {
    grid-column: span 2;
  }
}
.contact-page .contact-formfield {
  border-radius: 15px;
  transition: all 0.3s;
  padding: 22px 30px 24px;
  border: 1px solid rgba(17, 17, 17, 0.1);
}
.dark .contact-page .contact-formfield {
  border-color: rgba(255, 255, 255, 0.15);
}
.contact-page .contact-formfield:hover {
  background: rgba(17, 17, 17, 0.1);
}
.dark .contact-page .contact-formfield:hover {
  background: rgba(255, 255, 255, 0.1);
}
.contact-page .contact-formfield label {
  font-weight: 400;
  font-size: 18px;
  line-height: 23px;
  color: var(--primary);
  margin-bottom: 5px;
  font-family: var(--font_body);
}
.contact-page .contact-formfield input {
  width: 100%;
  border: none;
  outline: none;
  background-color: transparent;
  transition: all 0.5s;
  font-weight: 400;
  font-size: 20px;
  line-height: 26px;
  color: #999999;
}
.contact-page .contact-formfield input::placeholder {
  color: #999999;
}
.contact-page .contact-formfield input:-webkit-autofill, .contact-page .contact-formfield input:-webkit-autofill:focus {
  transition: background-color 0s 600000s, color 0s 600000s !important;
}
.contact-page .contact-formfield.message {
  height: 170px;
}
.contact-page .submit-btn {
  margin-top: 20px;
}
.contact-page .submit-btn .rr-btn {
  padding: 25px 41.5px;
}
.dark .contact-page .submit-btn .rr-btn {
  background: #ffffff;
}
.dark .contact-page .submit-btn .rr-btn .text-one {
  color: var(--dark);
}

.contact-us__wrapper {
  gap: 15px;
  display: grid;
  grid-template-columns: 1fr 355px;
}
@media only screen and (max-width: 1199px) {
  .contact-us__wrapper {
    grid-template-columns: 1fr 300px;
  }
}
@media only screen and (max-width: 991px) {
  .contact-us__wrapper {
    grid-template-columns: 1fr;
  }
}
.contact-us__offices {
  border-radius: 15px;
  padding: 60px 50px;
  position: relative;
  background: #FF6A3A;
}
@media only screen and (max-width: 1199px) {
  .contact-us__offices {
    padding: 30px 30px;
  }
}
.contact-us__offices .title {
  z-index: 1;
  font-weight: 400;
  font-size: 30px;
  line-height: 30px;
  letter-spacing: -0.02em;
  color: var(--white);
}
@media only screen and (max-width: 767px) {
  .contact-us__offices .title {
    font-size: 25px;
  }
}
.contact-us__offices a {
  z-index: 1;
  margin-top: 121px;
  position: relative;
  color: var(--white);
  display: inline-block;
}
@media only screen and (max-width: 1199px) {
  .contact-us__offices a {
    margin-top: 100px;
  }
}
@media only screen and (max-width: 767px) {
  .contact-us__offices a {
    margin-top: 50px;
  }
}
.contact-us__offices a::before {
  left: 0;
  bottom: 0;
  content: "";
  width: 100%;
  height: 1px;
  position: absolute;
  border-radius: 15px;
  transition: all 0.3s;
  background: var(--white);
}
.contact-us__offices a:hover::before {
  width: 0;
}
.contact-us__info {
  gap: 20px;
  display: flex;
  padding: 56px 70px;
  border-radius: 15px;
  background: #F1F1F1;
  justify-content: space-between;
}
.dark .contact-us__info {
  background: #1A1A1A;
}
@media only screen and (max-width: 1199px) {
  .contact-us__info {
    padding: 30px 30px;
  }
}
@media only screen and (max-width: 767px) {
  .contact-us__info {
    flex-wrap: wrap;
  }
}
.contact-us__item .title {
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  letter-spacing: -0.02em;
  position: relative;
  margin-bottom: 19px;
  color: var(--primary);
  display: inline-block;
  border-bottom: 1px solid var(--primary);
}
@media only screen and (max-width: 767px) {
  .contact-us__item .title {
    margin-bottom: 10px;
  }
}
.contact-us__item .location {
  margin-bottom: 29px;
}
@media only screen and (max-width: 991px) {
  .contact-us__item .location {
    margin-bottom: 25px;
  }
}
@media only screen and (max-width: 767px) {
  .contact-us__item .location {
    margin-bottom: 10px;
  }
}
.contact-us__item .phone {
  display: inline-block;
  position: relative;
  margin-bottom: 8px;
}
.contact-us__item .phone::before {
  left: 0;
  bottom: 0;
  content: "";
  width: 100%;
  height: 1px;
  position: absolute;
  border-radius: 15px;
  transition: all 0.3s;
  background: #555;
}
.dark .contact-us__item .phone::before {
  background: rgba(255, 255, 255, 0.5);
}
.contact-us__item .phone:hover::before {
  width: 0;
}
.contact-us__item a {
  color: var(--secondary);
  display: block;
  font-size: 18px;
  font-weight: 400;
  line-height: 26px;
  transition: all 0.3s;
}
.dark .contact-us__item a {
  color: rgba(255, 255, 255, 0.5);
}
@media only screen and (max-width: 991px) {
  .contact-us__item a {
    font-size: 16px;
    line-height: 20px;
  }
}
.contact-us__item a:hover {
  color: var(--primary);
}

.contact-pages .breadcrumb-2__wrapper {
  padding-bottom: 95px;
}
@media only screen and (max-width: 1199px) {
  .contact-pages .breadcrumb-2__wrapper {
    padding-bottom: 70px;
  }
}

.awards-section-2__item-box {
  display: grid;
  grid-template-columns: 1fr 903px 45px;
  padding: 35px 30px;
  justify-content: center;
  align-items: center;
  background: #F1F1F1;
  border: 1px solid rgba(17, 17, 17, 0.05);
  border-radius: 20px;
  transition: all 0.3s ease-in-out;
  margin-bottom: 10px;
  position: relative;
}
.dark .awards-section-2__item-box {
  background: #1A1A1A;
  border: 1px solid rgba(255, 255, 255, 0.05);
}
@media only screen and (max-width: 1399px) {
  .awards-section-2__item-box {
    grid-template-columns: 1fr 659px 45px;
  }
}
@media only screen and (max-width: 1199px) {
  .awards-section-2__item-box {
    grid-template-columns: 1fr 544px 45px;
  }
}
@media only screen and (max-width: 991px) {
  .awards-section-2__item-box {
    grid-template-columns: 1fr 425px 45px;
  }
}
@media only screen and (max-width: 767px) {
  .awards-section-2__item-box {
    grid-template-columns: 1fr 324px 45px;
  }
}
@media (max-width: 575px) {
  .awards-section-2__item-box {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 25px 18px;
  }
}
.awards-section-2__item-box:last-child {
  margin-bottom: 0;
}
.awards-section-2__item-box::before {
  position: absolute;
  content: "";
  bottom: 0;
  top: 0;
  height: 0%;
  width: 100%;
  background: #FF6A3A;
  opacity: 0;
  visibility: hidden;
  border-radius: 20px;
  transition: all 0.4s ease-in-out;
}
.awards-section-2__item-box:hover::before {
  position: absolute;
  content: "";
  bottom: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background: #FF6A3A;
  opacity: 1;
  visibility: visible;
  border-radius: 20px;
}
.awards-section-2__item-box:hover .awards-section-2__name .title {
  color: var(--white);
}
.awards-section-2__item-box:hover .awards-section-2__content .decs {
  color: var(--white);
}
.awards-section-2__item-box:hover .awards-section-2__date span {
  color: var(--white);
}
.awards-section-2__name {
  position: relative;
  z-index: 2;
}
.awards-section-2__name .title {
  font-family: var(--font_BDOGrotesk);
  font-weight: 400;
  font-size: 18px;
  line-height: 18px;
  letter-spacing: -0.03em;
  color: var(--primary);
  transition: all 0.3s ease-in-out;
}
.awards-section-2__content {
  position: relative;
  z-index: 2;
}
.awards-section-2__content .decs {
  font-weight: 400;
  font-size: 24px;
  line-height: 25px;
  color: var(--primary);
  font-family: var(--font_body);
  transition: all 0.3s ease-in-out;
}
@media only screen and (max-width: 767px) {
  .awards-section-2__content .decs {
    font-size: 21px;
    line-height: 25px;
  }
}
.awards-section-2__date {
  position: relative;
  z-index: 2;
}
.awards-section-2__date span {
  font-weight: 400;
  font-size: 18px;
  line-height: 18px;
  letter-spacing: -0.03em;
  color: var(--primary);
  font-family: var(--font_body);
  transition: all 0.3s ease-in-out;
}

@media only screen and (max-width: 1199px) {
  .awards-section-3__heading {
    margin-bottom: 45px;
  }
}
.awards-section-3__heading .sub-title {
  font-weight: 500;
  font-size: 18px;
  line-height: 25px;
  letter-spacing: -0.02em;
  color: #FF6A3A;
  margin-bottom: 8px;
  font-family: var(--font_body);
}
.awards-section-3__heading .title {
  font-weight: 400;
  font-size: 48px;
  line-height: 58px;
  letter-spacing: -0.05em;
  color: var(--primary);
  font-family: var(--font_BDOGrotesk);
}
@media only screen and (max-width: 1919px) {
  .awards-section-3__heading .title br {
    display: none;
  }
}
@media only screen and (max-width: 1399px) {
  .awards-section-3__heading .title {
    font-size: 44px;
    line-height: 48px;
  }
}
@media (max-width: 575px) {
  .awards-section-3__heading .title {
    font-size: 30px;
    line-height: 34px;
  }
}
.awards-section-3__wrapper {
  margin-left: 16px;
}
@media only screen and (max-width: 1199px) {
  .awards-section-3__wrapper {
    margin-left: 0;
  }
}
.awards-section-3__item {
  display: grid;
  grid-template-columns: 1fr 515px 42px;
  border-top: 1px solid rgba(17, 17, 17, 0.1);
  border-bottom: 1px solid rgba(17, 17, 17, 0.1);
  padding: 38px 0;
  transition: all 0.3s ease-in-out;
}
.dark .awards-section-3__item {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
@media only screen and (max-width: 767px) {
  .awards-section-3__item {
    grid-template-columns: 1fr 355px 42px;
  }
}
@media (max-width: 575px) {
  .awards-section-3__item {
    grid-template-columns: 1fr;
    gap: 15px;
    padding: 25px 0;
  }
}
.awards-section-3__item:hover {
  background: #F1F1F1;
}
.dark .awards-section-3__item:hover {
  background: #1A1A1A;
}
.awards-section-3__item:hover .name {
  margin-left: 30px;
}
@media (max-width: 575px) {
  .awards-section-3__item:hover .name {
    margin-left: 15px;
  }
}
.awards-section-3__item:hover .content {
  margin-left: -30px;
}
@media (max-width: 575px) {
  .awards-section-3__item:hover .content {
    margin-left: 15px;
  }
}
.awards-section-3__item:hover .date {
  margin-left: -26px;
}
@media (max-width: 575px) {
  .awards-section-3__item:hover .date {
    margin-left: 15px;
  }
}
.awards-section-3__item .name {
  margin-left: 0px;
  transition: all 0.3s ease-in-out;
}
.awards-section-3__item .name .title {
  font-weight: 400;
  font-size: 18px;
  line-height: 18px;
  color: var(--primary);
  font-family: var(--font_body);
}
.awards-section-3__item .content {
  transition: all 0.3s ease-in-out;
}
.awards-section-3__item .content .decs {
  font-weight: 400;
  font-size: 24px;
  line-height: 18px;
  color: var(--primary);
  font-family: var(--font_body);
}
@media (max-width: 575px) {
  .awards-section-3__item .content .decs {
    font-size: 21px;
    line-height: 18px;
  }
}
.awards-section-3__item .date {
  transition: all 0.3s ease-in-out;
}
.awards-section-3__item .date span {
  font-weight: 400;
  font-size: 18px;
  line-height: 18px;
  color: var(--primary);
  font-family: var(--font_body);
}

.awards-section-4__heading {
  margin-bottom: 70px;
}
@media only screen and (max-width: 767px) {
  .awards-section-4__heading {
    margin-bottom: 50px;
  }
}
.awards-section-4__heading .title {
  font-weight: 400;
  font-size: 80px;
  line-height: 80px;
  letter-spacing: -0.05em;
  color: var(--white);
  font-family: var(--font_BDOGrotesk);
}
@media only screen and (max-width: 1399px) {
  .awards-section-4__heading .title {
    font-size: 70px;
    line-height: 74px;
  }
  .awards-section-4__heading .title br {
    display: none;
  }
}
@media only screen and (max-width: 991px) {
  .awards-section-4__heading .title {
    font-size: 56px;
    line-height: 60px;
  }
}
@media only screen and (max-width: 767px) {
  .awards-section-4__heading .title {
    font-size: 39px;
    line-height: 45px;
  }
}
@media (max-width: 575px) {
  .awards-section-4__heading .title {
    font-size: 34px;
    line-height: 36px;
  }
}
.awards-section-4__wrapper {
  max-width: 1235px;
  margin: 0 0 0 auto;
}
.awards-section-4__item {
  display: grid;
  grid-template-columns: 1fr 853px 50px;
  border-top: 1px solid #292929;
  border-bottom: 1px solid #292929;
  padding: 38px 0;
  transition: all 0.3s ease-in-out;
}
@media only screen and (max-width: 1199px) {
  .awards-section-4__item {
    grid-template-columns: 1fr 600px 50px;
  }
}
@media only screen and (max-width: 991px) {
  .awards-section-4__item {
    grid-template-columns: 1fr 470px 50px;
  }
}
@media only screen and (max-width: 767px) {
  .awards-section-4__item {
    grid-template-columns: 1fr 362px 50px;
  }
}
@media (max-width: 575px) {
  .awards-section-4__item {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
.awards-section-4__item:hover {
  background: #1A1A1A;
}
.awards-section-4__item:hover .name .title {
  margin-left: 30px;
}
.awards-section-4__item:hover .date span {
  margin-left: -30px;
}
@media (max-width: 575px) {
  .awards-section-4__item:hover .date span {
    margin-left: 30px;
  }
}
.awards-section-4__item .name {
  margin-right: 0;
}
.awards-section-4__item .name .title {
  font-weight: 400;
  font-size: 18px;
  line-height: 18px;
  color: var(--white);
  font-family: var(--font_body);
  transition: all 0.3s ease-in-out;
}
.awards-section-4__item .content .decs {
  font-weight: 400;
  font-size: 24px;
  line-height: 18px;
  color: var(--white);
}
@media (max-width: 575px) {
  .awards-section-4__item .content .decs {
    font-size: 21px;
  }
}
.awards-section-4__item .date span {
  font-weight: 400;
  font-size: 18px;
  line-height: 18px;
  color: var(--white);
  font-family: var(--font_body);
  transition: all 0.3s ease-in-out;
}

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