
/************ TABLE OF CONTENTS ***************
/* variable css */
/* typography css */
/* animation css */
/* common css */
/* theme css */
/* preloader css */
/* scroll css */
/* === Colors variable scss (index 01) === */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@200;300;400;500;600;700;800&display=swap&subset=cyrillic');
@import url('https://fonts.googleapis.com/css2?family=Montserrat+Alternates:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap" rel="stylesheet');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@200;300;400;500;600;700;800&display=swap&subset=cyrillic');
:root {
  --primary: #004FFC;
  --primary4: #7444FD;
  --primary5: #384BFF;
  --secondary: #646463;
  --black: #0E0E0C;
  --green: #A0EA71;
  --white: #FFF;
  --red: #f14f44;
  --lime-green: #90ee02;
  --orange: #FF5914;
  --yellow: #f3ff0a;
  --purple: #5814f9;
  --white: #ffffff;
  --gray: #999;
  --bg: #F6F6F6;
  --gray-two: #555555;
  --gray-three: #F0F2F4;
  --border-color-one: rgba(255, 255, 255, 0.1);
  --border-color-two: #DADADA;
}

/* === 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) === */
:root {
  --font_monts: "Montserrat Alternates", sans-serif;
  --font_jakarta: "Montserrat", sans-serif;
  --font_awesome: "Font Awesome 6 Pro";
}

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

body {
  font-family: var(--font_jakarta);
  line-height: 1;
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
  color: var(--secondary);
}

html {
  scroll-behavior: smooth;
}

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

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

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

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

p {
  padding: 0;
  margin: 0;
}

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 {
  display: inline-block;
  width: 100%;
  overflow: hidden;
}

h1 {
  font-size: 48px;
}

h2 {
  font-size: 36px;
}

h3 {
  font-size: 32px;
}

h4 {
  font-size: 24px;
}

h5 {
  font-size: 20px;
}

h6 {
  font-size: 18px;
}

@media (min-width: 1800px) {
  .container {
    max-width: 1800px;
  }
}

@media (min-width: 1800px) {
  .container-1600 {
    max-width: 1630px;
    margin: 0 auto;
  }
}

/* === Animation (index 01) === */
@keyframes shape-animaiton1 {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(50px);
  }
}
.shape-animaiton1 {
  animation-duration: 4s;
  animation-direction: alternate;
  animation-name: shape-animaiton1;
  animation-iteration-count: infinite;
  animation-timing-function: cubic-bezier(0.59, 0.59, 1, 1);
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.rotate {
  animation: rotate linear infinite;
  animation-duration: 10s;
  animation-timing-function: cubic-bezier(0.59, 0.59, 1, 1);
}

/* === 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-1350 {
  max-width: 1350px;
}

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

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

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

.p-relative {
  position: relative;
}

/* === Background scss (index 04) === */
.rr-bg-gray {
  background-color: #F6F6F6;
}

/* === Parallax view scss (index 05) === */
.parallax-view {
  overflow: hidden;
}

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

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

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

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

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

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

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

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

.section-spacing-bottom {
  padding-bottom: 130px;
}
@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;
  }
}

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

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

.text_center {
  text-align: center;
}

/* === 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.overlay-open {
  opacity: 0.5;
  visibility: visible;
}

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

.side-info {
  background: var(--white) none repeat scroll 0 0;
  padding: 40px 45px;
  position: fixed;
  right: 0;
  top: 0;
  width: 500px;
  height: 100%;
  transform: translateX(calc(100% + 80px));
  transition: transform 0.45s ease-in-out, opacity 0.45s ease-in-out;
  z-index: 9999;
  overflow-y: scroll;
  overscroll-behavior-y: contain;
  scrollbar-width: none;
}
.dark .side-info {
  background-color: #1f1f1f;
}
@media only screen and (max-width: 1199px) {
  .side-info {
    width: 460px;
  }
}
@media (max-width: 575px) {
  .side-info {
    width: 280px;
    padding: 30px 20px;
  }
}
.side-info ::-webkit-scrollbar {
  display: none;
  /* Hide scrollbar */
}
.side-info.info-open {
  opacity: 1;
  transform: translateX(0);
  /* Show side info */
}

.tx-center {
  text-align: center;
}

.white {
  color: var(--white) !important;
}

/* === 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;
  color: var(--black);
}
@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(--black);
  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(--black);
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  color: var(--black);
}

/* ===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(--black);
}
.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(--black);
  text-transform: capitalize;
  border-top: 1px solid var(--black);
  display: flex;
  gap: 8px;
  justify-content: flex-start;
  align-items: center;
  outline: none;
  transform: translateY(var(--y)) translateZ(0);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  box-sizing: border-box;
  opacity: 1;
}
@media only screen and (max-width: 767px) {
  .mobile-menu.mean-container .mean-nav ul li a {
    font-size: 20px;
  }
}
.mobile-menu.mean-container .mean-nav ul li a:hover {
  color: var(--black);
}
.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(--black);
}
.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(--blackd);
}
.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;
}

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

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

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

/* === Z-index scss (index 03) === */
.zi-1 {
  z-index: 1;
}
.zi-2 {
  z-index: 2;
}
.zi-9 {
  z-index: 9;
}
.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);
}

.background-image {
  background-position: center;
  background-repeat: no-repeat !important;
  background-size: cover !important;
}

.border-top {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.border-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

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

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

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

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

.section-spacing-bottom {
  padding-bottom: 130px;
}
@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;
  }
}

.background-image {
  background-position: center;
  background-repeat: no-repeat !important;
  background-size: cover !important;
}

.border-top {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.border-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.section-bg {
  background-color: #f0f2f4;
}

.ml-107 {
  margin-left: 107px;
}
@media only screen and (max-width: 1399px) {
  .ml-107 {
    margin-left: 70px;
  }
}
@media only screen and (max-width: 991px) {
  .ml-107 {
    margin-left: 0px;
  }
}

.inner-page__title {
  font-family: var(--font_thunder);
  font-weight: 700;
  font-size: 420px;
  line-height: 400px;
  letter-spacing: 0%;
  text-transform: uppercase;
  text-align: center;
  color: var(--black);
  padding-bottom: 40px;
}
@media only screen and (max-width: 1919px) {
  .inner-page__title {
    font-size: 320px;
    line-height: 1;
  }
}
@media only screen and (max-width: 1399px) {
  .inner-page__title {
    font-size: 300px;
  }
}
@media only screen and (max-width: 1199px) {
  .inner-page__title {
    font-size: 200px;
  }
}
@media only screen and (max-width: 991px) {
  .inner-page__title {
    font-size: 180px;
  }
}
@media only screen and (max-width: 767px) {
  .inner-page__title {
    font-size: 150px;
  }
}
@media (max-width: 575px) {
  .inner-page__title {
    font-size: 70px;
  }
}

.rr-bg-gray {
  background: var(--gray-three);
}

.nice-select:after {
  display: none !important;
}

/* === 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: #000;
}

.loader-wrap .loader-wrap-heading .load-text {
  font-size: 100px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--white);
  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(--primary);
  left: 0;
  top: 0;
  height: 46px;
  width: 46px;
  cursor: pointer;
  display: block;
  z-index: 1;
  transition: all 200ms linear;
  border-radius: 50px;
}
.dark .progress-wrap::after {
  color: var(--black);
}

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

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

/* === primary btn scss (index 01) === */
.rr-btn-green {
  z-index: 5;
  font-size: 18px;
  overflow: hidden;
  font-weight: 500;
  line-height: 28px;
  position: relative;
  padding: 18px 31px;
  align-items: center;
  display: inline-flex;
  border-radius: 500px;
  letter-spacing: -0.48px;
  justify-content: center;
  text-transform: uppercase;
  font-family: var(--font_monts);
  background-color: var(--green);
}
.rr-btn-green:hover::before, .rr-btn-green:focus::before {
  height: 100%;
}
.rr-btn-green:hover .btn-wrap .text-one, .rr-btn-green:focus .btn-wrap .text-one {
  transform: translateY(-150%);
}
.rr-btn-green:hover .btn-wrap .text-two, .rr-btn-green:focus .btn-wrap .text-two {
  top: 50%;
  transform: translateY(-50%);
  color: var(--white);
}
.rr-btn-green:after {
  display: block;
  clear: both;
  content: "";
}
.rr-btn-green::before {
  background-color: var(--black);
  content: "";
  width: 100%;
  height: 0;
  bottom: 0;
  position: absolute;
  transition: all 0.5s;
}
.rr-btn-green .btn-wrap {
  z-index: 1;
  float: left;
  overflow: hidden;
  position: relative;
  display: inline-block;
  border: none;
}
.rr-btn-green .btn-wrap .text-one,
.rr-btn-green .btn-wrap .text-two {
  gap: 6px;
  display: flex;
  align-items: center;
}
.rr-btn-green .btn-wrap .text-one {
  position: relative;
  color: var(--black);
  transition: all 0.5s;
}
.rr-btn-green .btn-wrap .text-two {
  top: 100%;
  position: absolute;
  color: var(--white);
  transition: all 0.5s;
}
.rr-btn-green.primary {
  background: var(--primary);
}
.rr-btn-green.primary .btn-wrap .text-one {
  color: var(--white);
}
.rr-btn-green.green-2 {
  font-size: 16px;
  line-height: 20px;
  padding: 12px 28px;
  border-radius: 2px;
  background: var(--green);
}
.rr-btn-green.btn-purple::before {
  background: #b4f914;
}
.rr-btn-green.btn-purple .text-one {
  color: var(--white);
}
.rr-btn-green.btn-purple:hover {
  background-color: transparent;
}
.rr-btn-green.btn-purple:hover .text-two {
  color: var(--primary);
}
.rr-btn-green.btn-black {
  background-color: var(--primary);
}
.rr-btn-green.btn-black::before {
  background: #b4f914;
}
.rr-btn-green.btn-black .text-one {
  color: var(--white);
}
.rr-btn-green.btn-black:hover {
  background-color: transparent;
}
.rr-btn-green.btn-black:hover .text-two {
  color: var(--primary);
}

.rr-btn-2 {
  z-index: 5;
  font-size: 16px;
  overflow: hidden;
  font-weight: 500;
  line-height: 162.5%;
  position: relative;
  padding: 14px 44px;
  align-items: center;
  display: inline-flex;
  border-radius: 90px;
  letter-spacing: -0.48px;
  justify-content: center;
  text-transform: uppercase;
  font-family: Kanit;
  background: #febc00;
}
.rr-btn-2:hover::before, .rr-btn-2:focus::before {
  height: 100%;
}
.rr-btn-2:hover .btn-wrap .text-one, .rr-btn-2:focus .btn-wrap .text-one {
  transform: translateY(-150%);
}
.rr-btn-2:hover .btn-wrap .text-two, .rr-btn-2:focus .btn-wrap .text-two {
  top: 50%;
  transform: translateY(-50%);
  color: var(--white);
  color: #000;
  font-style: normal;
}
.rr-btn-2:after {
  display: block;
  clear: both;
  content: "";
}
.rr-btn-2::before {
  background-color: var(--red);
  content: "";
  width: 100%;
  height: 0;
  bottom: 0;
  position: absolute;
  transition: all 0.5s;
}
.rr-btn-2 .btn-wrap {
  z-index: 1;
  float: left;
  overflow: hidden;
  position: relative;
  display: inline-block;
  border: none;
}
.rr-btn-2 .btn-wrap .text-one,
.rr-btn-2 .btn-wrap .text-two {
  gap: 6px;
  display: flex;
  align-items: center;
}
.rr-btn-2 .btn-wrap .text-one {
  position: relative;
  color: var(--primary);
  transition: all 0.5s;
}
.rr-btn-2 .btn-wrap .text-two {
  top: 100%;
  position: absolute;
  color: var(--white);
  transition: all 0.5s;
}
.rr-btn-2.green-2 {
  font-size: 16px;
  line-height: 20px;
  padding: 12px 28px;
  border-radius: 2px;
  background: var(--green);
}
.rr-btn-2.btn-purple::before {
  background: #febc00;
}
.rr-btn-2.btn-purple .text-one {
  color: #000;
  font-family: Kanit;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 162.5%;
}
.rr-btn-2.btn-purple:hover {
  background-color: transparent;
}
.rr-btn-2.btn-purple:hover .text-two {
  color: var(--primary);
}
.rr-btn-2.btn-black {
  background-color: var(--primary);
}
.rr-btn-2.btn-black::before {
  background: #febc00;
}
.rr-btn-2.btn-black .text-one {
  color: var(--white);
}
.rr-btn-2.btn-black:hover {
  background-color: transparent;
}
.rr-btn-2.btn-black:hover .text-two {
  color: var(--primary);
}

.rr-btn-border {
  gap: 15px;
  font-size: 16px;
  font-weight: 500;
  line-height: 26px;
  align-items: center;
  display: inline-flex;
  color: var(--primary);
  border-radius: 500px;
  text-transform: uppercase;
  padding: 7px 8px 7px 24px;
  border: 1px solid #e3e3e3;
  font-family: var(--font_kanit);
  justify-content: space-between;
  background: rgba(241, 241, 241, 0);
}
.rr-btn-border .icon {
  width: 36px;
  height: 36px;
  display: flex;
  font-size: 20px;
  color: var(--white);
  align-items: center;
  border-radius: 500px;
  transition: all 0.3s;
  background: var(--red);
  justify-content: center;
}
.rr-btn-border:hover .icon {
  rotate: -45deg;
}
.rr-btn-border.btn-black {
  color: var(--white);
  background: var(--primary);
}
.rr-btn-border.btn-black .icon {
  color: var(--primary);
  background: var(--white);
}
.rr-btn-border.btn-purple {
  gap: 30px;
  color: var(--white);
  background: var(--purple);
  padding: 10px 11px 10px 37px;
}
.rr-btn-border.btn-purple .icon {
  width: 44px;
  height: 44px;
  color: var(--primary);
  background: var(--white);
}

.btn-orange {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 220px;
  padding: 15px 40px;
  background: var(--primary);
  color: var(--white);
  border: none;
  color: #fff;
  font-family: var(--font_kanit);
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 26px;
  border-radius: 500px;
  cursor: pointer;
}

.btn-dark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 220px;
  padding: 15px 40px;
  background: var(--black);
  color: var(--white);
  border: none;
  color: #fff;
  font-family: var(--font_kanit);
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 26px;
  border-radius: 500px;
  cursor: pointer;
}

.rr-btn-button {
  gap: 15px;
  font-size: 16px;
  font-weight: 500;
  line-height: 26px;
  align-items: center;
  display: inline-flex;
  color: #000;
  border-radius: 90px;
  text-transform: uppercase;
  padding: 7px 8px 7px 24px;
  border: 1px solid #e3e3e3;
  font-family: Kanit;
  justify-content: space-between;
  background: rgba(241, 241, 241, 0);
}
.rr-btn-button .icon {
  width: 36px;
  height: 36px;
  display: flex;
  font-size: 20px;
  color: var(--white);
  align-items: center;
  border-radius: 500px;
  transition: all 0.3s;
  background: var(--red);
  justify-content: center;
}
.rr-btn-button:hover .icon {
  rotate: -45deg;
}
.rr-btn-button.btn-black {
  color: var(--white);
  background: var(--primary);
}
.rr-btn-button.btn-black .icon {
  color: var(--primary);
  background: var(--white);
}
.rr-btn-button.btn-purple {
  gap: 30px;
  color: #000;
  background: #febc00;
  padding: 10px 11px 10px 37px;
}
.rr-btn-button.btn-purple .icon {
  width: 44px;
  height: 44px;
  background: #000;
}

.rr-btn-button2 {
  gap: 15px;
  font-size: 16px;
  font-weight: 500;
  line-height: 26px;
  align-items: center;
  display: inline-flex;
  color: #000;
  border-radius: 90px;
  text-transform: uppercase;
  padding: 7px 8px 7px 24px;
  border: 1px solid #e3e3e3;
  font-family: Kanit;
  justify-content: space-between;
  background: rgba(241, 241, 241, 0);
}
.rr-btn-button2 .icon {
  width: 36px;
  height: 36px;
  display: flex;
  font-size: 20px;
  color: var(--white);
  align-items: center;
  border-radius: 500px;
  transition: all 0.3s;
  background: var(--red);
  justify-content: center;
}
.rr-btn-button2:hover .icon {
  rotate: -45deg;
}
.rr-btn-button2.btn-black {
  color: var(--white);
  background: var(--primary);
}
.rr-btn-button2.btn-black .icon {
  color: var(--primary);
  background: var(--white);
}
.rr-btn-button2.btn-purple {
  gap: 30px;
  color: #000;
  background: #f3ff0a;
  padding: 10px 11px 10px 37px;
}
.rr-btn-button2.btn-purple .icon {
  width: 44px;
  height: 44px;
  background: #000;
}

.rr-btn-button3 {
  gap: 15px;
  font-size: 16px;
  font-weight: 500;
  line-height: 26px;
  align-items: center;
  display: inline-flex;
  color: #000;
  border-radius: 90px;
  text-transform: uppercase;
  padding: 7px 8px 7px 24px;
  border: 1px solid #e3e3e3;
  font-family: Kanit;
  justify-content: space-between;
  background: rgba(241, 241, 241, 0);
}
.rr-btn-button3 .icon {
  width: 36px;
  height: 36px;
  display: flex;
  font-size: 20px;
  color: #000;
  align-items: center;
  border-radius: 500px;
  transition: all 0.3s;
  background: var(--red);
  justify-content: center;
}
.rr-btn-button3:hover .icon {
  rotate: -45deg;
}
.rr-btn-button3.btn-black {
  color: var(--white);
  background: var(--primary);
}
.rr-btn-button3.btn-black .icon {
  color: var(--primary);
  background: var(--white);
}
.rr-btn-button3.btn-purple {
  gap: 30px;
  color: #fff;
  background: #000;
  padding: 10px 11px 10px 37px;
}
.rr-btn-button3.btn-purple .icon {
  width: 44px;
  height: 44px;
  background: #f3ff0a;
}

.rr-btn-button4 {
  gap: 15px;
  font-size: 16px;
  font-weight: 500;
  line-height: 26px;
  align-items: center;
  display: inline-flex;
  color: #000;
  border-radius: 90px;
  text-transform: uppercase;
  padding: 7px 8px 7px 24px;
  border: 1px solid var(--primary);
  font-family: Kanit;
  justify-content: space-between;
  background: rgba(241, 241, 241, 0);
}
.rr-btn-button4 .icon {
  width: 36px;
  height: 36px;
  display: flex;
  font-size: 20px;
  color: var(--white);
  align-items: center;
  border-radius: 500px;
  transition: all 0.3s;
  background: var(--red);
  justify-content: center;
}
.rr-btn-button4:hover .icon {
  rotate: -45deg;
}
.rr-btn-button4.btn-black {
  color: var(--white);
  background: var(--primary);
}
.rr-btn-button4.btn-black .icon {
  color: var(--primary);
  background: var(--white);
}
.rr-btn-button4.btn-purple {
  gap: 30px;
  color: #000;
  background: #febc00;
  padding: 10px 11px 10px 37px;
}
.rr-btn-button4.btn-purple .icon {
  width: 44px;
  height: 44px;
  background: #000;
}

.rr-btn-button5 {
  gap: 15px;
  font-size: 16px;
  font-weight: 500;
  line-height: 26px;
  align-items: center;
  display: inline-flex;
  color: #000;
  border-radius: 90px;
  text-transform: uppercase;
  padding: 7px 8px 7px 24px;
  border: 1px solid var(--primary);
  font-family: var(--font_kanit);
  justify-content: space-between;
  background: var(--primary);
}
.rr-btn-button5 .icon {
  width: 36px;
  height: 36px;
  display: flex;
  font-size: 20px;
  color: var(--white);
  align-items: center;
  border-radius: 500px;
  transition: all 0.3s;
  background: var(--red);
  justify-content: center;
}
.rr-btn-button5 .icon svg path {
  stroke: #000;
}
.rr-btn-button5:hover .icon {
  rotate: -45deg;
}
.rr-btn-button5.btn-dark {
  gap: 30px;
  color: var(--white);
  background: var(--primary);
  padding: 10px 11px 10px 37px;
}
.rr-btn-button5.btn-dark .icon {
  width: 44px;
  height: 44px;
  background: #febc00;
}

.rr-btn {
  z-index: 5;
  font-size: 16px;
  overflow: hidden;
  font-weight: 600;
  line-height: 24px;
  position: relative;
  padding: 16px 37.15px;
  align-items: center;
  display: inline-flex;
  border-radius: 500px;
  letter-spacing: -0.8px;
  justify-content: center;
  text-transform: uppercase;
  font-family: var(--font_monts);
  background-color: var(--primary);
}
.rr-btn:hover::before, .rr-btn:focus::before {
  height: 100%;
}
.rr-btn:hover .btn-wrap .text-one, .rr-btn:focus .btn-wrap .text-one {
  color: var(--white);
  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: var(--black);
  content: "";
  width: 100%;
  height: 0;
  left: 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: 6px;
  display: flex;
  align-items: center;
}
.rr-btn .btn-wrap .text-one {
  position: relative;
  color: var(--white);
  transition: all 0.5s;
}
.rr-btn .btn-wrap .text-two {
  top: 100%;
  position: absolute;
  color: var(--white);
  transition: all 0.5s;
}
.rr-btn-2 {
  padding: 16px 41.9px;
  background: var(--black);
}
.rr-btn-2::before {
  background-color: var(--primary);
}
.rr-btn.border-btn {
  padding: 15px 38.35px;
  background: transparent;
  border: 1px solid var(--black);
}
.rr-btn.border-btn .btn-wrap .text-one {
  color: var(--black);
}
.rr-btn.border-btn-2 {
  padding: 9px 31px;
  letter-spacing: 0.5px;
  background-color: transparent;
  border: 1px solid var(--primary4);
}
.rr-btn.border-btn-2 .btn-wrap .text-one {
  color: var(--primary4);
}
.rr-btn.border-btn-2:hover::before {
  background-color: var(--primary4);
}
.rr-btn.btn-purple::before {
  background: #b4f914;
}
.rr-btn.btn-purple .text-one {
  color: var(--white);
}
.rr-btn.btn-purple:hover {
  background-color: transparent;
}
.rr-btn.btn-purple:hover .text-two {
  color: var(--primary);
}
.rr-btn.btn-black {
  background-color: var(--primary);
}
.rr-btn.btn-black::before {
  background: #b4f914;
}
.rr-btn.btn-black .text-one {
  color: var(--white);
}
.rr-btn.btn-black:hover {
  background-color: transparent;
}
.rr-btn.btn-black:hover .text-two {
  color: var(--primary);
}
.rr-btn-4 {
  padding: 16px 31.8px;
  letter-spacing: 0.5px;
  background-color: var(--primary4);
}
.rr-btn-5 {
  padding: 16px 32.14px;
  letter-spacing: 0.5px;
  background-color: var(--primary5);
}

.rr-underline {
  gap: 10px;
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  position: relative;
  align-items: center;
  display: inline-flex;
  padding-bottom: 2px;
  color: var(--primary5);
  letter-spacing: -0.5px;
  text-transform: uppercase;
  font-family: var(--font_monts);
}
.rr-underline i {
  rotate: -45deg;
  transition: all 0.3s;
}
.rr-underline::before {
  content: "";
  bottom: 0px;
  width: 100%;
  height: 1px;
  position: absolute;
  transition: all 0.3s;
  background-color: currentColor;
}
.rr-underline:hover i {
  rotate: 0deg;
}
.rr-underline:hover::before {
  width: 0;
}

/* === 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: "\f0d7";
  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: 48px;
  height: 48px;
  background: transparent;
  border-radius: 500px;
  transform: scale(0);
  transition: opacity 0.1s, transform 0.3s ease-in-out;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* === header scss (index 01) === */
.header-area-1 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
.header-area-1__inner {
  gap: 30px;
  display: flex;
  padding: 0px 32px;
  align-items: center;
  border-radius: 208px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(24px);
  justify-content: space-between;
  margin-top: 30px;
}
@media only screen and (max-width: 1399px) {
  .header-area-1__inner {
    padding: 0px 20px;
  }
}
@media only screen and (max-width: 1199px) {
  .header-area-1__inner {
    padding: 10px 20px;
  }
}
.header-area-1 .header__logo {
  padding: 24px 42px 22px 0px;
  border-right: 1px solid #C9C9C8;
}
@media only screen and (max-width: 1919px) {
  .header-area-1 .header__logo {
    padding: 24px 22px 22px 0px;
  }
}
@media only screen and (max-width: 1399px) {
  .header-area-1 .header__logo {
    border-right: none;
    padding: 0;
  }
}
@media (max-width: 575px) {
  .header-area-1 .header__logo {
    max-width: 100px;
  }
}
.header-area-1 .header-right {
  gap: 24px;
  display: flex;
  align-items: center;
  padding: 16px 0px 16px 42px;
  border-left: 1px solid #C9C9C8;
}
@media only screen and (max-width: 1919px) {
  .header-area-1 .header-right {
    padding: 16px 0px 16px 22px;
  }
}
@media only screen and (max-width: 1399px) {
  .header-area-1 .header-right {
    border-left: none;
  }
}
.header-area-1 .header-right .search {
  width: 56px;
  height: 56px;
  display: flex;
  color: var(--white);
  transition: all 0.3s;
  align-items: center;
  border-radius: 500px;
  justify-content: center;
  background: rgba(255, 255, 255, 0.12);
}
@media (max-width: 575px) {
  .header-area-1 .header-right .search {
    display: none;
  }
}
.header-area-1 .header-right .search:hover {
  background: var(--green);
  color: var(--black);
}
.header-area-1 .header-right .side-toggle .bar-icon {
  width: 30px;
  height: 7px;
}
.header-area-1 .header-right .side-toggle .bar-icon span {
  height: 1px;
  background: var(--green);
}
@media only screen and (max-width: 1399px) {
  .header-area-1 .header-right .rr-btn-green {
    display: none;
  }
}
@media (max-width: 575px) {
  .header-area-1 .header-right .rr-btn-green {
    display: none;
  }
}
.header-area-1 .sticky,
.header-area-1 .transformed {
  background-color: #ffffff;
}
.header-area-1 .main-menu ul.dp-menu li {
  position: relative;
  padding: 0 25px;
}
.header-area-1 .main-menu ul.dp-menu li:hover > a {
  color: var(--green);
  background-color: transparent;
}
.header-area-1 .main-menu ul.dp-menu li:hover > ul {
  opacity: 1;
  transform: none !important;
  pointer-events: all;
}
.header-area-1 .main-menu ul.dp-menu li a {
  font-size: 16px;
  font-weight: 500;
  padding: 10px 0;
  color: var(--white);
  font-family: var(--font_monts);
  background-color: transparent;
  text-transform: capitalize;
}
.header-area-1 .main-menu ul.dp-menu li a:hover {
  letter-spacing: 0.5px;
}
.header-area-1 .main-menu ul.dp-menu li a:after {
  transform: rotate(-90deg);
  margin-left: auto;
}
.header-area-1 .main-menu > ul {
  display: flex;
}
.header-area-1 .main-menu > ul > li:hover > a {
  color: var(--green);
}
.header-area-1 .main-menu li a {
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  padding: 36px 26px;
  color: var(--white);
  letter-spacing: 0.5px;
  font-family: var(--font_monts);
  text-transform: uppercase;
}
@media only screen and (max-width: 1919px) {
  .header-area-1 .main-menu li a {
    padding: 36px 12px;
  }
}
.header-area-1 .main-menu li a:hover {
  color: var(--green);
}
.header-area-1 .header__navicon {
  margin-left: auto;
}
.header-area-1 .header__navicon i {
  font-size: 22px;
  color: var(--white);
}

.header-area-2 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
.header-area-2__inner {
  gap: 30px;
  display: flex;
  padding: 0px 156px;
  align-items: center;
  background: #0E0E0C;
  border-bottom: 1px solid rgba(201, 201, 200, 0.24);
  justify-content: space-between;
}
@media only screen and (max-width: 1399px) {
  .header-area-2__inner {
    padding: 0px 20px;
  }
}
@media only screen and (max-width: 1199px) {
  .header-area-2__inner {
    padding: 10px 20px;
  }
}
.header-area-2 .header__logo {
  padding: 31px 42px 31px 0px;
}
@media only screen and (max-width: 1919px) {
  .header-area-2 .header__logo {
    padding: 24px 22px 22px 0px;
  }
}
@media only screen and (max-width: 1399px) {
  .header-area-2 .header__logo {
    border-right: none;
    padding: 0;
  }
}
@media (max-width: 575px) {
  .header-area-2 .header__logo {
    max-width: 100px;
  }
}
.header-area-2 .header-right {
  gap: 55px;
  display: flex;
  align-items: center;
  padding: 16px 0px 16px 42px;
}
@media only screen and (max-width: 1919px) {
  .header-area-2 .header-right {
    padding: 16px 0px 16px 22px;
  }
}
@media only screen and (max-width: 1399px) {
  .header-area-2 .header-right {
    border-left: none;
  }
}
.header-area-2 .header-right .rr-btn-green {
  padding: 18px 40px;
  background: inherit;
  border: 1px solid #A62DF4;
}
.header-area-2 .header-right .rr-btn-green::before {
  background: linear-gradient(90deg, #384BFF 0%, #A62DF4 100%);
}
.header-area-2 .header-right .rr-btn-green .text-one {
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: #FFFFFF;
}
.header-area-2 .header-right .search {
  width: 56px;
  height: 56px;
  display: flex;
  color: var(--white);
  transition: all 0.3s;
  align-items: center;
  border-radius: 500px;
  justify-content: center;
  background: rgba(255, 255, 255, 0.12);
}
@media (max-width: 575px) {
  .header-area-2 .header-right .search {
    display: none;
  }
}
.header-area-2 .header-right .search:hover {
  background: var(--green);
  color: var(--black);
}
.header-area-2 .header-right .side-toggle .bar-icon {
  width: 30px;
  height: 7px;
}
.header-area-2 .header-right .side-toggle .bar-icon span {
  height: 1px;
  background: #004FFC;
}
@media only screen and (max-width: 1399px) {
  .header-area-2 .header-right .rr-btn-green {
    display: none;
  }
}
@media (max-width: 575px) {
  .header-area-2 .header-right .rr-btn-green {
    display: none;
  }
}
.header-area-2 .sticky,
.header-area-2 .transformed {
  background-color: #ffffff;
}
.header-area-2 .main-menu ul.dp-menu li {
  position: relative;
  padding: 0 25px;
}
.header-area-2 .main-menu ul.dp-menu li:hover > a {
  color: var(--green);
  background-color: transparent;
}
.header-area-2 .main-menu ul.dp-menu li:hover > ul {
  opacity: 1;
  transform: none !important;
  pointer-events: all;
}
.header-area-2 .main-menu ul.dp-menu li a {
  font-size: 16px;
  font-weight: 500;
  padding: 10px 0;
  color: var(--white);
  font-family: var(--font_monts);
  background-color: transparent;
  text-transform: capitalize;
}
.header-area-2 .main-menu ul.dp-menu li a:hover {
  letter-spacing: 0.5px;
}
.header-area-2 .main-menu ul.dp-menu li a:after {
  transform: rotate(-90deg);
  margin-left: auto;
}
.header-area-2 .main-menu > ul {
  display: flex;
}
.header-area-2 .main-menu > ul > li:hover > a {
  color: var(--green);
}
.header-area-2 .main-menu li a {
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  padding: 36px 26px;
  color: var(--white);
  letter-spacing: 0.5px;
  font-family: var(--font_monts);
  text-transform: uppercase;
}
@media only screen and (max-width: 1919px) {
  .header-area-2 .main-menu li a {
    padding: 36px 12px;
  }
}
.header-area-2 .main-menu li a:hover {
  color: var(--green);
}
.header-area-2 .header__navicon {
  margin-left: auto;
}
.header-area-2 .header__navicon i {
  font-size: 22px;
  color: var(--white);
}
.header-area-2 .language-dropdown {
  position: relative;
  display: inline-block;
}
@media only screen and (max-width: 991px) {
  .header-area-2 .language-dropdown {
    display: none;
  }
}
.header-area-2 .language-dropdown .language-switcher {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: 0.3s;
}
.header-area-2 .language-dropdown .language-switcher i {
  font-size: 14px;
  color: var(--white);
}
.header-area-2 .language-dropdown .language-switcher img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
}
.header-area-2 .language-dropdown .language-switcher span {
  font-weight: 600;
  font-size: 20px;
  line-height: 28px;
  color: #F5F5FF;
  font-family: var(--font_monts);
}
.header-area-2 .language-dropdown .language-switcher .arrow {
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 6px solid white;
  transition: 0.3s;
}
.header-area-2 .language-dropdown .language-switcher .arrow.rotate {
  transform: rotate(180deg);
}
.header-area-2 .language-dropdown .dropdown-menu {
  position: absolute;
  top: 50px;
  left: 0;
  min-width: 150px;
  background: #1a1a1a;
  border: 1px solid #333;
  border-radius: 10px;
  padding: 6px 0;
  display: none;
  z-index: 20;
  opacity: 0;
  transform: translateY(10px);
  transition: 0.25s ease;
}
.header-area-2 .language-dropdown .dropdown-menu.show {
  display: block;
  opacity: 1;
  transform: translateY(0);
}
.header-area-2 .language-dropdown .dropdown-menu .dropdown-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  cursor: pointer;
  transition: 0.2s;
}
.header-area-2 .language-dropdown .dropdown-menu .dropdown-item img {
  width: 20px;
  height: 20px;
  border-radius: 50%;
}
.header-area-2 .language-dropdown .dropdown-menu .dropdown-item span {
  color: #fff;
  font-size: 15px;
}
.header-area-2 .language-dropdown .dropdown-menu .dropdown-item:hover {
  background: #252525;
}

.header-top {
  border-radius: 32px 32px 0 0;
}
.header-top__wrap {
  display: flex;
  padding: 4px 0;
  align-items: center;
  justify-content: space-between;
}
.header-top__left {
  gap: 8px;
  display: flex;
  align-items: center;
}
.header-top__dec {
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: var(--white);
  font-family: var(--font_jakarta);
}
.header-top__download {
  font-weight: 600;
  font-size: 14px;
  line-height: 1;
  color: var(--white);
  padding: 5px 12.3px;
  border-radius: 500px;
  background-color: var(--primary);
  font-family: var(--font_monts);
}
.header-top__support a {
  opacity: 0.7;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  text-align: center;
  color: var(--white);
  font-family: var(--font_jakarta);
}
.header-top__right {
  gap: 24px;
  display: flex;
  align-items: center;
}
.header-top__language .nice-select {
  -webkit-tap-highlight-color: transparent;
  background-color: transparent;
  border-radius: 0;
  border: none;
  box-sizing: border-box;
  clear: both;
  cursor: pointer;
  display: block;
  float: left;
  height: auto;
  outline: none;
  padding-left: 0;
  padding-right: 16px;
  position: relative;
  text-align: left !important;
  transition: all 0.2s ease-in-out;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  white-space: nowrap;
  width: auto;
}
.header-top__language .nice-select .current {
  opacity: 0.7;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: var(--white);
  font-family: var(--font_jakarta);
}
.header-top__language .nice-select .icon {
  top: 0;
  right: 0;
  position: absolute;
}
.header-top__language .nice-select .icon i {
  font-size: 13px;
  line-height: 0.5;
  color: var(--white);
}
.header-top__language .nice-select .option {
  line-height: 1;
  min-height: auto;
  padding: 12px 0;
  padding-left: 18px;
  padding-right: 29px;
  background-color: var(--white);
}
.header-top__language .nice-select .list {
  background-color: var(--white);
}
.header-top__language .nice-select:after {
  display: none;
}
.header-top__language .nice-select.open .icon {
  top: 2px;
  transform: rotate(180deg);
}

.header-area {
  top: 24px;
  left: 24px;
  right: 24px;
  position: absolute;
  border-bottom: 1px solid rgba(201, 201, 200, 0.24);
}
@media only screen and (max-width: 991px) {
  .header-area {
    top: 0;
    left: 0;
    right: 0;
  }
}
.header-area__inner {
  gap: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media only screen and (max-width: 1399px) {
  .header-area__inner {
    padding: 0px;
  }
}
@media (max-width: 575px) {
  .header-area__inner {
    padding: 15px 0;
  }
}
@media (max-width: 575px) {
  .header-area .header__logo {
    max-width: 150px;
  }
}
.header-area .header-right {
  gap: 24px;
  display: flex;
  align-items: center;
  padding: 16px 0px 16px 42px;
}
@media only screen and (max-width: 1919px) {
  .header-area .header-right {
    padding: 16px 0px 16px 22px;
  }
}
@media only screen and (max-width: 1399px) {
  .header-area .header-right {
    border-left: none;
  }
}
.header-area .header-right .search {
  width: 56px;
  height: 56px;
  display: flex;
  color: var(--white);
  transition: all 0.3s;
  align-items: center;
  border-radius: 500px;
  justify-content: center;
  background: rgba(255, 255, 255, 0.12);
}
@media (max-width: 575px) {
  .header-area .header-right .search {
    display: none;
  }
}
.header-area .header-right .search:hover {
  background: var(--green);
  color: var(--black);
}
.header-area .header-right .side-toggle .bar-icon {
  width: 30px;
  height: 7px;
}
.header-area .header-right .side-toggle .bar-icon span {
  height: 1px;
  background: var(--black);
}
.header-area .header-right .header-btn {
  gap: 32px;
  display: flex;
  align-items: center;
}
.header-area .header-right .header-btn .signin-btn {
  padding: 15px 35.7px;
  background-color: transparent;
  border: 1px solid rgba(201, 201, 200, 0.24);
}
.header-area .header-right .header-btn .signin-btn .btn-wrap .text-one {
  color: var(--primary);
}
.header-area .sticky,
.header-area .transformed {
  background-color: #ffffff;
}
.header-area .main-menu ul.dp-menu li {
  position: relative;
  padding: 0 25px;
}
.header-area .main-menu ul.dp-menu li:hover > a {
  color: var(--green);
  background-color: transparent;
}
.header-area .main-menu ul.dp-menu li:hover > ul {
  opacity: 1;
  transform: none !important;
  pointer-events: all;
}
.header-area .main-menu ul.dp-menu li a {
  font-size: 16px;
  font-weight: 500;
  padding: 10px 0;
  color: var(--white);
  font-family: var(--font_monts);
  background-color: transparent;
  text-transform: capitalize;
}
.header-area .main-menu ul.dp-menu li a:hover {
  letter-spacing: 0.5px;
}
.header-area .main-menu ul.dp-menu li a:after {
  transform: rotate(-90deg);
  margin-left: auto;
}
.header-area .main-menu > ul {
  display: flex;
}
.header-area .main-menu > ul > li:hover > a {
  color: var(--green);
}
.header-area .main-menu li a {
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  padding: 38px 26px;
  color: var(--black);
  letter-spacing: 0.5px;
  font-family: var(--font_monts);
  text-transform: uppercase;
}
@media only screen and (max-width: 1919px) {
  .header-area .main-menu li a {
    padding: 36px 12px;
  }
}
.header-area .main-menu li a:hover {
  color: var(--green);
}
.header-area .header__navicon {
  margin-left: auto;
}
.header-area .header__navicon i {
  font-size: 22px;
  color: var(--white);
}

.header_4 {
  top: 0;
  left: 0;
  right: 0;
}
@media only screen and (max-width: 1199px) {
  .header_4 .header-area__inner {
    padding: 12px 0;
  }
}
.header_4 .main-menu li a {
  padding: 37.5px 26px;
}
@media only screen and (max-width: 1399px) {
  .header_4 .main-menu li a {
    padding: 37.5px 19px;
  }
}
.header_4 .main-menu ul > li:hover > a {
  color: var(--primary4);
}
.header_4 .main-menu ul.dp-menu li:hover > a {
  color: var(--primary4);
}
.header_4 .header-right {
  padding: 0;
}

.header_5 {
  position: relative;
  border-bottom: none;
}
.header_5 .header__nav {
  gap: 104px;
  align-items: center;
}
@media only screen and (max-width: 1399px) {
  .header_5 .header__nav {
    gap: 40px;
  }
}

.header_6 .main-menu li a {
  color: var(--white);
}
.header_6 .main-menu ul > li:hover > a {
  color: var(--white);
}
.header_6 .main-menu ul.dp-menu li:hover > a {
  color: var(--white);
}
.header_6 .header-right .header-btn .btn-wrap .text-one {
  color: var(--white);
}
.header_6 .header-right .header-btn .signin-btn .btn-wrap .text-one {
  color: var(--white);
}
.header_6 .header-right .header-btn .signin-btn::before {
  background: var(--primary);
}

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

/* === Icon draw Animate scss (index 01) === */
@keyframes qode-draw {
  0%, 100% {
    -webkit-clip-path: inset(-2px 0);
    clip-path: inset(-2px 0);
  }
  42% {
    -webkit-clip-path: inset(-2px 0 -2px 100%);
    clip-path: inset(-2px 0 -2px 100%);
  }
  43% {
    -webkit-clip-path: inset(-2px 100% -2px 0);
    clip-path: inset(-2px 100% -2px 0);
  }
}
/* === footer scss (index 01) === */
.footer__area {
  background: #101010;
  padding-top: 110px;
}
.footer__area .footer-widget-wrapper__top-content {
  text-align: center;
  margin-bottom: 90px;
}
.footer__area .footer-widget-wrapper__top-content .title {
  font-weight: 500;
  font-size: 50px;
  line-height: 60px;
  text-decoration-line: underline;
  color: #FFFFFF;
  margin-top: 45px;
  margin-bottom: 57px;
}
@media only screen and (max-width: 1199px) {
  .footer__area .footer-widget-wrapper__top-content .title br {
    display: none;
  }
}
@media only screen and (max-width: 767px) {
  .footer__area .footer-widget-wrapper__top-content .title {
    font-size: 35px;
    line-height: 45px;
  }
}
@media (max-width: 575px) {
  .footer__area .footer-widget-wrapper__top-content .title {
    font-size: 25px;
    line-height: 35px;
  }
}
.footer__area .footer-widget-wrapper__social ul {
  display: flex;
  gap: 17px;
  align-items: center;
  justify-content: center;
}
@media (max-width: 575px) {
  .footer__area .footer-widget-wrapper__social ul {
    flex-wrap: wrap;
  }
}
.footer__area .footer-widget-wrapper__social ul li {
  list-style: none;
}
.footer__area .footer-widget-wrapper__social ul li a {
  width: 60px;
  height: 60px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease-in-out;
}
.footer__area .footer-widget-wrapper__social ul li a i {
  color: #101010;
  font-size: 25px;
  transition: all 0.3s ease-in-out;
}
.footer__area .footer-widget-wrapper__social ul li a:hover {
  background: #F14F44;
}
.footer__area .footer-widget-wrapper__social ul li a:hover i {
  color: var(--white);
}
@media only screen and (max-width: 991px) {
  .footer__area .footer-widget__box {
    margin-bottom: 20px;
  }
}
.footer__area .footer-widget__box .footer-widget-contact {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 34px 35px 34px 35px;
}
.footer__area .footer-widget__box .footer-widget-contact .sub-title {
  font-weight: 400;
  font-size: 20px;
  line-height: 30px;
  color: #999999;
}
.footer__area .footer-widget__box .footer-widget-contact h4 {
  font-weight: 500;
  font-size: 24px;
  line-height: 36px;
  color: #FFFFFF;
  margin-top: 10px;
  transition: all 0.3s ease-in-out;
}
.footer__area .footer-widget__box .footer-widget-contact h4:hover a {
  color: #F14F44;
}
.footer__area .footer-widget-text-slider {
  margin-top: 75px;
}
@media only screen and (max-width: 991px) {
  .footer__area .footer-widget-text-slider {
    margin-top: 80px;
  }
}
.footer__area .footer-widget-text-slider .text-slide h3 {
  font-weight: 700;
  font-size: 90px;
  line-height: 100px;
  text-transform: uppercase;
  color: #FFFFFF;
}
@media only screen and (max-width: 991px) {
  .footer__area .footer-widget-text-slider .text-slide h3 {
    font-size: 70px;
    line-height: 80px;
  }
}
.footer__area .footer-widget-text-slider .footer-text-slide__active .swiper-wrapper {
  display: flex;
  column-gap: 10px;
  align-items: center;
  justify-content: space-between;
  transition-timing-function: linear;
}
.footer__area .footer-widget-text-slider .footer-text-slide__active .swiper-wrapper .swiper-slide {
  width: auto;
}
.footer__area .copyright-area {
  margin-top: 120px;
}
@media only screen and (max-width: 991px) {
  .footer__area .copyright-area {
    margin-top: 80px;
  }
}
.footer__area .copyright-area .copyright-area-inner {
  margin: 0 auto;
  max-width: 1433px;
  text-align: center;
  background: #F0F2F4;
  border-radius: 20px 20px 0 0;
}
.footer__area .copyright-area .copyright-area-inner .copyright-text {
  padding: 33px 0;
}
.footer__area .copyright-area .copyright-area-inner .copyright-text .text {
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  color: #101010;
  transition: all 0.3s ease-in-out;
}
.footer__area .copyright-area .copyright-area-inner .copyright-text .text:hover a {
  color: #F14F44;
}

.footer-2__area {
  background: #0E0E0C;
  border-radius: 0px;
  padding-bottom: 50px;
  position: relative;
  z-index: 3;
  margin-top: -4px;
}
.footer-2__area .shape {
  position: absolute;
  left: 0;
  bottom: 0;
}
@media only screen and (max-width: 1199px) {
  .footer-2__area .shape {
    display: none;
  }
}
.footer-2__area .shape img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.footer-2__area .footer-2-widget-wrapper {
  position: relative;
  z-index: 3;
}
.footer-2__area .footer-2-widget-inner {
  display: grid;
  grid-template-columns: 420px 449px 1fr;
  border-top: 1px solid rgba(203, 203, 203, 0.24);
  border-bottom: 1px solid rgba(203, 203, 203, 0.24);
  align-items: center;
}
@media only screen and (max-width: 1399px) {
  .footer-2__area .footer-2-widget-inner {
    grid-template-columns: 400px 341px 1fr;
  }
}
@media only screen and (max-width: 1199px) {
  .footer-2__area .footer-2-widget-inner {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    padding: 15px 0;
  }
}
@media (max-width: 575px) {
  .footer-2__area .footer-2-widget-inner {
    grid-template-columns: repeat(1, 1fr);
    gap: 30px;
    padding: 15px 0;
  }
}
.footer-2__area .footer-2-widget-copyright {
  border-right: 1px solid rgba(203, 203, 203, 0.24);
  padding: 29px 0;
}
@media only screen and (max-width: 1199px) {
  .footer-2__area .footer-2-widget-copyright {
    border: none;
    padding: 0;
  }
}
.footer-2__area .footer-2-widget-copyright p {
  font-weight: 400;
  font-size: 18px;
  line-height: 26px;
  color: #FFFFFF;
}
.footer-2__area .footer-2-widget-social {
  text-align: center;
  border-right: 1px solid rgba(203, 203, 203, 0.24);
  padding: 22px 0;
}
@media only screen and (max-width: 1199px) {
  .footer-2__area .footer-2-widget-social {
    border: none;
    padding: 0;
  }
}
.footer-2__area .footer-2-widget-social ul {
  display: flex;
  align-items: center;
  gap: 17px;
  justify-content: center;
}
@media only screen and (max-width: 1199px) {
  .footer-2__area .footer-2-widget-social ul {
    justify-content: start;
  }
}
.footer-2__area .footer-2-widget-social ul li {
  list-style: none;
}
.footer-2__area .footer-2-widget-social ul li a {
  background: #384BFF;
  border-radius: 100px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer-2__area .footer-2-widget-social ul li a i {
  color: #FFFFFF;
}
.footer-2__area .footer-2-widget-btn {
  display: flex;
  align-items: center;
  gap: 24px;
  justify-content: end;
}
@media only screen and (max-width: 1199px) {
  .footer-2__area .footer-2-widget-btn {
    justify-content: start;
  }
}
@media only screen and (max-width: 767px) {
  .footer-2__area .footer-2-widget-btn {
    flex-wrap: wrap;
  }
}
.footer-2__area .footer-2-widget-btn .download-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #0E0E0C;
  border: 1px solid rgba(201, 201, 200, 0.24);
  border-radius: 8px;
  padding: 8px;
  padding-right: 38px;
}
@media only screen and (max-width: 991px) {
  .footer-2__area .footer-2-widget-btn .download-btn {
    padding-right: 11px;
  }
}
.footer-2__area .footer-2-widget-btn .download-btn:hover .icon {
  background: linear-gradient(90deg, #384BFF 0%, #A62DF4 100%);
  border-radius: 8px;
}
.footer-2__area .footer-2-widget-btn .download-btn .icon {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(24px);
  border-radius: 8px;
  width: 40px;
  height: 40px;
  align-items: center;
  display: flex;
  justify-content: center;
  transition: all 0.3s ease-in-out;
}
.footer-2__area .footer-2-widget-btn .download-btn .text span {
  font-weight: 500;
  font-size: 12px;
  line-height: 18px;
  color: #646463;
}
.footer-2__area .footer-2-widget-btn .download-btn .text strong {
  font-weight: 600;
  font-size: 14px;
  line-height: 20px;
  color: #FFFFFF;
  display: block;
  font-family: var(--font_monts);
}
.footer-2__area .footer-widget-text-slider {
  margin-top: 70px;
}
@media only screen and (max-width: 991px) {
  .footer-2__area .footer-widget-text-slider {
    margin-top: 80px;
  }
}
.footer-2__area .footer-widget-text-slider .text-slide h3 {
  font-weight: 700;
  font-size: 100px;
  line-height: 108px;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: #FFFFFF;
}
@media only screen and (max-width: 991px) {
  .footer-2__area .footer-widget-text-slider .text-slide h3 {
    font-size: 70px;
    line-height: 80px;
  }
}
.footer-2__area .footer-widget-text-slider .footer-text-slide__active .swiper-wrapper {
  display: flex;
  column-gap: 10px;
  align-items: center;
  justify-content: space-between;
  transition-timing-function: linear;
}
.footer-2__area .footer-widget-text-slider .footer-text-slide__active .swiper-wrapper .swiper-slide {
  width: auto;
}
.footer-2__area .copyright-area {
  margin-top: 120px;
}
@media only screen and (max-width: 991px) {
  .footer-2__area .copyright-area {
    margin-top: 80px;
  }
}
.footer-2__area .copyright-area .copyright-area-inner {
  margin: 0 auto;
  max-width: 1433px;
  text-align: center;
  background: #F0F2F4;
  border-radius: 20px 20px 0 0;
}
.footer-2__area .copyright-area .copyright-area-inner .copyright-text {
  padding: 33px 0;
}
.footer-2__area .copyright-area .copyright-area-inner .copyright-text .text {
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  color: #101010;
  transition: all 0.3s ease-in-out;
}
.footer-2__area .copyright-area .copyright-area-inner .copyright-text .text:hover a {
  color: #F14F44;
}
.footer-2__area .footer-2-top-inner {
  display: grid;
  grid-template-columns: 1fr 587px;
  position: relative;
  padding-top: 100px;
}
@media only screen and (max-width: 1399px) {
  .footer-2__area .footer-2-top-inner {
    grid-template-columns: 1fr 550px;
  }
}
@media only screen and (max-width: 1199px) {
  .footer-2__area .footer-2-top-inner {
    grid-template-columns: 1fr 455px;
    gap: 40px;
  }
}
@media only screen and (max-width: 991px) {
  .footer-2__area .footer-2-top-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
.footer-2__area .footer-2-top-inner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  background: rgba(203, 203, 203, 0.24);
  height: 100%;
  width: 1px;
}
@media only screen and (max-width: 1199px) {
  .footer-2__area .footer-2-top-inner::before {
    display: none;
  }
}
.footer-2__area .footer-2-top-inner .footer-2-top__content .desc {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #FFFFFF;
  opacity: 0.7;
  margin-top: 15px;
}
@media only screen and (max-width: 1199px) {
  .footer-2__area .footer-2-top-inner .footer-2-top__content .desc br {
    display: none;
  }
}
.footer-2__area .footer-2-top-inner .footer-wrap .footer__content {
  display: flex;
  align-items: center;
  gap: 16px;
}
@media (max-width: 575px) {
  .footer-2__area .footer-2-top-inner .footer-wrap .footer__content {
    flex-wrap: wrap;
  }
}
.footer-2__area .footer-2-top-inner .footer-wrap .footer__content .content .title {
  font-weight: 700;
  font-size: 24px;
  line-height: 32px;
  letter-spacing: 0.5px;
  color: #FFFFFF;
  font-family: var(--font_monts);
  margin-bottom: 3px;
}
@media (max-width: 575px) {
  .footer-2__area .footer-2-top-inner .footer-wrap .footer__content .content .title {
    font-size: 22px;
    line-height: 30px;
  }
}
.footer-2__area .footer-2-top-inner .footer-wrap .footer__content .content .text {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #FFFFFF;
  opacity: 0.7;
  font-family: var(--font_jakarta);
}
.footer-2__area .footer-2-top-inner .footer-wrap .footer__form {
  margin-bottom: 44px;
  margin-top: 30px;
}
.footer-2__area .footer-2-top-inner .footer-wrap .footer__form .footer-subscribe-form {
  width: 100%;
  background-color: var(--white);
  border-radius: 100px;
  padding: 4px 4px 4px 16px;
  max-width: 587px;
}
@media (max-width: 575px) {
  .footer-2__area .footer-2-top-inner .footer-wrap .footer__form .footer-subscribe-form {
    background: inherit;
  }
}
@media (max-width: 575px) {
  .footer-2__area .footer-2-top-inner .footer-wrap .footer__form .footer-subscribe-form {
    padding: 5px 5px 5px 15px;
  }
}
.footer-2__area .footer-2-top-inner .footer-wrap .footer__form .footer-subscribe-form .input-field {
  display: grid;
  grid-template-columns: 1fr 219px;
  gap: 10px;
}
@media (max-width: 575px) {
  .footer-2__area .footer-2-top-inner .footer-wrap .footer__form .footer-subscribe-form .input-field {
    grid-template-columns: 1fr;
  }
}
.footer-2__area .footer-2-top-inner .footer-wrap .footer__form .footer-subscribe-form .input-field input {
  border: none;
  outline: none;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #6A6A6A;
  opacity: 0.6;
  width: 100%;
}
@media (max-width: 575px) {
  .footer-2__area .footer-2-top-inner .footer-wrap .footer__form .footer-subscribe-form .input-field input {
    background: var(--white);
    padding: 10px;
    border-radius: 20px;
    opacity: 1;
    padding: 10px 15px;
  }
}
.footer-2__area .footer-2-top-inner .footer-wrap .footer__form .footer-subscribe-form .input-field input::placeholder {
  color: var(--black);
}
.footer-2__area .footer-2-top-inner .footer-wrap .footer__form .footer-subscribe-form .input-field .rr-btn-green {
  padding: 14px 25px;
  background: linear-gradient(90deg, #384BFF 0%, #A62DF4 100%);
  border-radius: 100px;
}
.footer-2__area .footer-2-top-inner .footer-wrap .footer__form .footer-subscribe-form .input-field .rr-btn-green .text-one {
  color: var(--white);
}
@media (max-width: 575px) {
  .footer-2__area .footer-2-top-inner .footer-wrap .footer__form .footer-subscribe-form .input-field .rr-btn-green {
    padding: 15.5px 12px;
  }
}

.cta-section__wrapper {
  z-index: 1;
  padding: 100px 0;
  position: relative;
  border-radius: 24px;
  background-color: var(--black);
}
@media only screen and (max-width: 1399px) {
  .cta-section__wrapper {
    margin: 0 20px;
    padding: 80px 0;
  }
}
@media only screen and (max-width: 1199px) {
  .cta-section__wrapper {
    margin: 0px;
    padding: 70px 0;
  }
}
@media (max-width: 575px) {
  .cta-section__wrapper {
    margin: 0px -15px;
  }
}
.cta-section__wrapper .section-title-3__wrapper .sub-title {
  margin-bottom: 8px;
}
.cta-section__wrapper .section-title-3__wrapper .title {
  margin-bottom: 16px;
}
@media only screen and (max-width: 991px) {
  .cta-section__wrapper .section-title-3__wrapper .title {
    font-size: 35px;
    line-height: 42px;
  }
}
@media only screen and (max-width: 767px) {
  .cta-section__wrapper .section-title-3__wrapper .title {
    font-size: 32px;
    line-height: 40px;
  }
}
.cta-section__dec {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  text-align: center;
  font-family: var(--font_jakarta);
  color: rgba(255, 255, 255, 0.8);
}
.cta-section__list ul {
  gap: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 575px) {
  .cta-section__list ul {
    gap: 15px;
    flex-wrap: wrap;
  }
}
.cta-section__list ul li {
  gap: 13px;
  display: flex;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  align-items: center;
  color: var(--white);
  font-family: var(--font_jakarta);
}
.cta-section__list ul li i {
  font-size: 15px;
}
.cta-section__btn {
  gap: 24px;
  display: flex;
  margin-top: 40px;
  margin-bottom: 16px;
  align-items: center;
  justify-content: center;
}
@media only screen and (max-width: 991px) {
  .cta-section__btn {
    gap: 15px;
    margin-top: 30px;
  }
}
@media (max-width: 575px) {
  .cta-section__btn {
    flex-wrap: wrap;
  }
}
.cta-section__btn .rr-btn {
  padding: 16px 40.64px;
}
.cta-section__btn .rr-btn:hover::before {
  background-color: var(--white);
}
.cta-section__btn .rr-btn:hover .btn-wrap .text-two {
  color: var(--black);
}
.cta-section__btn .rr-btn-3 {
  padding: 16px 44.86px;
  background-color: var(--white);
}
.cta-section__btn .rr-btn-3 .btn-wrap .text-one {
  color: var(--black);
}
.cta-section__btn .rr-btn-3:hover::before {
  background-color: var(--primary);
}
.cta-section__btn .rr-btn-3:hover .btn-wrap .text-two {
  color: var(--white);
}

.footer-3__wrapper {
  margin: 0 18px;
  padding-top: 297px;
  margin-top: -233px;
  position: relative;
  margin-bottom: 24px;
  border-radius: 32px;
  z-index: 0;
  background: linear-gradient(90deg, #0E0E0C 0%, #004FFC 100%);
}
@media only screen and (max-width: 1199px) {
  .footer-3__wrapper {
    margin: 0px;
    border-radius: 0px;
    margin-top: -233px;
  }
}
@media only screen and (max-width: 991px) {
  .footer-3__wrapper {
    padding-top: 270px;
  }
}
@media only screen and (max-width: 767px) {
  .footer-3__wrapper {
    margin-top: -70px;
    padding-top: 120px;
  }
}
.footer-3__bg-shape {
  top: 0;
  left: 0;
  position: absolute;
}
.footer-3__wrap {
  padding-top: 48px;
  margin-right: 6px;
  margin-left: -6px;
  padding-bottom: 112px;
  border-top: 1px solid rgba(201, 201, 200, 0.16);
}
@media only screen and (max-width: 1199px) {
  .footer-3__wrap {
    padding-bottom: 70px;
  }
}
@media only screen and (max-width: 767px) {
  .footer-3__wrap {
    margin: 0;
    padding-top: 30px;
    padding-bottom: 60px;
  }
}
.footer-3__big-text {
  font-weight: 700;
  font-size: 248px;
  line-height: 256px;
  color: transparent;
  position: relative;
  text-align: center;
  margin-bottom: 48px;
  letter-spacing: -2.48px;
  text-transform: uppercase;
  font-family: var(--font_monts);
  -webkit-text-stroke: 2px rgba(255, 255, 255, 0.24);
}
@media only screen and (max-width: 1399px) {
  .footer-3__big-text {
    font-size: 225px;
    line-height: 225px;
  }
}
@media only screen and (max-width: 1199px) {
  .footer-3__big-text {
    font-size: 180px;
    line-height: 180px;
  }
}
@media only screen and (max-width: 991px) {
  .footer-3__big-text {
    font-size: 140px;
    line-height: 140px;
    margin-bottom: 30px;
  }
}
@media only screen and (max-width: 767px) {
  .footer-3__big-text {
    font-size: 105px;
    line-height: 105px;
  }
}
@media (max-width: 575px) {
  .footer-3__big-text {
    font-size: 60px;
    line-height: 60px;
  }
}
.footer-3__widget {
  position: relative;
}
.footer-3__widget.widget-col_1 {
  gap: 40px;
  display: flex;
  align-items: start;
}
@media only screen and (max-width: 1199px) {
  .footer-3__widget.widget-col_1 {
    gap: 24px;
    margin-right: -50px;
  }
}
@media only screen and (max-width: 991px) {
  .footer-3__widget.widget-col_1 {
    margin-right: 0px;
  }
}
@media (max-width: 575px) {
  .footer-3__widget.widget-col_1 {
    gap: 40px;
    flex-wrap: wrap;
  }
}
.footer-3__widget.widget-col_1::before {
  content: "";
  top: -48px;
  right: 8px;
  width: 1px;
  height: 356px;
  position: absolute;
  background-color: rgba(201, 201, 200, 0.16);
}
@media only screen and (max-width: 1199px) {
  .footer-3__widget.widget-col_1::before {
    right: -10px;
    height: 400px;
  }
}
@media only screen and (max-width: 991px) {
  .footer-3__widget.widget-col_1::before {
    display: none;
  }
}
@media only screen and (max-width: 1199px) {
  .footer-3__widget.widget-col_2 {
    margin-left: 50px;
    margin-right: -50px;
  }
}
@media only screen and (max-width: 991px) {
  .footer-3__widget.widget-col_2 {
    margin-left: 0;
    margin-right: 0px;
  }
}
.footer-3__widget.widget-col_3 {
  margin-left: 19px;
}
@media only screen and (max-width: 1399px) {
  .footer-3__widget.widget-col_3 {
    margin-left: 0px;
  }
}
@media only screen and (max-width: 1199px) {
  .footer-3__widget.widget-col_3 {
    margin-left: 50px;
  }
}
@media only screen and (max-width: 991px) {
  .footer-3__widget.widget-col_3 {
    margin-left: 0;
  }
}
.footer-3__dec {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  max-width: 309px;
  margin-top: 12px;
  margin-bottom: 48px;
  font-family: var(--font_jakarta);
  color: rgba(255, 255, 255, 0.7);
}
@media only screen and (max-width: 991px) {
  .footer-3__dec {
    max-width: 100%;
    margin-bottom: 30px;
  }
}
.footer-3__social ul {
  gap: 16px;
  display: flex;
  list-style: none;
  align-items: center;
}
.footer-3__social ul li a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  border-radius: 500px;
  justify-content: center;
  background-color: var(--primary);
}
.footer-3__social ul li a i {
  font-weight: 400;
  font-size: 16px;
  line-height: 1;
  color: var(--white);
}
.footer-3__social ul li a:hover {
  background-color: var(--white);
}
.footer-3__social ul li a:hover i {
  color: var(--secondary);
}
.footer-3__title {
  font-weight: 700;
  font-size: 20px;
  line-height: 28px;
  margin-bottom: 24px;
  color: var(--white);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-family: var(--font_monts);
}
.footer-3__menu ul {
  list-style: none;
}
.footer-3__menu ul li {
  margin-bottom: 16px;
}
.footer-3__menu ul li a {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  display: inline-block;
  font-family: var(--font_jakarta);
  color: rgba(255, 255, 255, 0.7);
}
.footer-3__menu ul li:last-of-type {
  margin-bottom: 0;
}
.footer-3__menu ul li:hover a {
  color: var(--white);
}
.footer-3__input {
  position: relative;
  overflow: hidden;
  margin-bottom: 24px;
  border-radius: 500px;
}
@media only screen and (max-width: 1399px) {
  .footer-3__input {
    border-radius: 0;
  }
}
.footer-3__input input {
  width: 100%;
  height: 64px;
  border: none;
  padding: 21px 30px;
  padding-right: 205px;
  color: var(--white);
  backdrop-filter: blur(50px);
  background: rgba(255, 255, 255, 0.12);
}
@media only screen and (max-width: 1199px) {
  .footer-3__input input {
    border-radius: 15px;
    padding-right: 30px;
  }
}
.footer-3__input input:focus {
  outline: none;
}
.footer-3__input input::placeholder {
  font-weight: 400;
  font-size: 16px;
  line-height: 1;
  font-family: var(--font_jakarta);
  color: rgba(255, 255, 255, 0.7);
}
.footer-3__form .rr-btn-2 {
  right: 0;
  top: 50%;
  border-radius: 0;
  position: absolute;
  padding: 20px 32.11px;
  text-transform: uppercase;
  transform: translateY(-50%);
}
@media only screen and (max-width: 1199px) {
  .footer-3__form .rr-btn-2 {
    margin-top: 10px;
    position: inherit;
    border-radius: 15px;
    transform: translateY(0);
  }
}
.footer-3__form .rr-btn-2:hover::before {
  background-color: var(--white);
}
.footer-3__form .rr-btn-2:hover .btn-wrap .text-two {
  color: var(--black);
}

.copyright-3__wrap {
  padding: 27px 0;
  position: relative;
  border-radius: 0 0 32px 32px;
  background-color: var(--black);
  border-top: 1px solid rgba(200, 201, 204, 0.16);
}
@media only screen and (max-width: 1199px) {
  .copyright-3__wrap {
    border-radius: 0px;
  }
}
@media only screen and (max-width: 767px) {
  .copyright-3__wrap {
    padding: 20px 0;
  }
}
.copyright-3__text {
  display: flex;
  align-items: center;
  justify-content: center;
}
.copyright-3__text p {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  text-align: center;
  color: var(--white);
  font-family: var(--font_jakarta);
}
.copyright-3__text p a {
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-family: var(--font_monts);
}
.copyright-3__text p a:hover {
  color: var(--primary);
}
.copyright-3__menu ul {
  gap: 17px;
  display: flex;
  list-style: none;
  align-items: center;
}
@media only screen and (max-width: 1199px) {
  .copyright-3__menu ul {
    gap: 10px;
  }
}
@media (max-width: 575px) {
  .copyright-3__menu ul {
    flex-wrap: wrap;
  }
}
.copyright-3__menu ul li {
  gap: 17px;
  display: flex;
  position: relative;
  align-items: center;
}
@media only screen and (max-width: 1199px) {
  .copyright-3__menu ul li {
    gap: 10px;
  }
}
.copyright-3__menu ul li::after {
  content: "";
  width: 0.75px;
  height: 18px;
  display: inline-block;
  transform: rotate(19.07deg);
  background-color: rgba(255, 255, 255, 0.7);
}
.copyright-3__menu ul li:last-of-type::after {
  display: none;
}
.copyright-3__menu ul li a {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  font-family: var(--font_jakarta);
  color: rgba(255, 255, 255, 0.7);
}
.copyright-3__menu ul li a:hover {
  color: var(--white);
}

.footer-4__inner {
  background-color: rgba(117, 68, 253, 0.06);
}
.footer-4__content {
  z-index: 1;
  display: flex;
  max-width: 460px;
  max-height: 576px;
  height: 100%;
  padding-top: 40px;
  margin-right: 71px;
  position: relative;
  flex-direction: column;
  border-radius: 24px 24px 0 0;
  justify-content: space-between;
  background-color: var(--primary4);
}
@media only screen and (max-width: 1199px) {
  .footer-4__content {
    padding-top: 30px;
    margin-right: 30px;
  }
}
@media only screen and (max-width: 991px) {
  .footer-4__content {
    margin-right: 0px;
    max-width: 100%;
    max-height: 100%;
    border-radius: 24px;
  }
}
@media only screen and (max-width: 767px) {
  .footer-4__content {
    text-align: center;
    flex-direction: column;
    border-radius: 24px 24px 0 0;
  }
}
@media only screen and (max-width: 1199px) {
  .footer-4__text {
    padding: 0 10px;
  }
}
.footer-4__main-title {
  font-weight: 700;
  font-size: 24px;
  max-width: 380px;
  margin: 0 auto;
  line-height: 32px;
  text-align: center;
  letter-spacing: 0.5px;
  color: var(--white);
  font-family: var(--font_monts);
}
@media only screen and (max-width: 1199px) {
  .footer-4__main-title {
    font-size: 22px;
  }
}
@media (max-width: 575px) {
  .footer-4__main-title {
    font-size: 18px;
    line-height: 26px;
  }
}
.footer-4__thumb {
  width: 100%;
  height: 100%;
}
.footer-4__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.footer-4__button {
  gap: 16px;
  display: flex;
  margin-top: 24px;
  margin-bottom: 31px;
  align-items: center;
  justify-content: center;
}
@media only screen and (max-width: 991px) {
  .footer-4__button {
    flex-wrap: wrap;
  }
}
.footer-4__button button {
  gap: 9px;
  max-width: 190px;
  width: 100%;
  display: flex;
  padding: 4px 8px;
  align-items: center;
  border-radius: 500px;
  background-color: var(--white);
}
.footer-4__button button.active {
  backdrop-filter: blur(24px);
  background: rgba(255, 255, 255, 0.24);
  border: 1px solid rgba(201, 201, 200, 0.24);
}
.footer-4__button button.active .icon {
  background-color: var(--white);
}
.footer-4__button button.active .info span {
  color: rgba(255, 255, 255, 0.7);
}
.footer-4__button button.active .info span:last-of-type {
  color: var(--white);
}
.footer-4__button button .icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  border-radius: 500px;
  justify-content: center;
  background-color: var(--primary4);
}
.footer-4__button button .info span {
  font-weight: 500;
  font-size: 12px;
  line-height: 18px;
  display: block;
  color: var(--secondary);
  font-family: var(--font_jakarta);
}
.footer-4__button button .info span:last-of-type {
  font-weight: 600;
  font-size: 14px;
  text-align: start;
  line-height: 20px;
  color: var(--black);
  font-family: var(--font_monts);
}
.footer-4__wrap {
  position: relative;
  margin-left: -31px;
}
@media only screen and (max-width: 991px) {
  .footer-4__wrap {
    margin-left: 0;
    margin-top: 30px;
  }
}
.footer-4__top {
  gap: 15px;
  display: flex;
  align-items: end;
  margin-bottom: 32px;
  padding-bottom: 24px;
  justify-content: space-between;
  border-bottom: 1px solid rgba(201, 201, 200, 0.24);
}
@media only screen and (max-width: 1199px) {
  .footer-4__top {
    margin-bottom: 25px;
    padding-bottom: 20px;
  }
}
@media only screen and (max-width: 991px) {
  .footer-4__top {
    flex-wrap: wrap;
  }
}
@media only screen and (max-width: 767px) {
  .footer-4__top {
    margin-bottom: 15px;
    padding-bottom: 15px;
  }
}
.footer-4__dec {
  font-weight: 400;
  font-size: 16px;
  margin-top: 16px;
  max-width: 419px;
  line-height: 24px;
  color: var(--secondary);
  font-family: var(--font_jakarta);
}
.footer-4__social span {
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  color: var(--black);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-family: var(--font_monts);
}
.footer-4__social ul {
  gap: 16px;
  display: flex;
  margin-top: 16px;
  list-style: none;
  align-items: center;
}
.footer-4__social ul li a {
  width: 40px;
  height: 40px;
  display: flex;
  color: var(--black);
  align-items: center;
  border-radius: 500px;
  justify-content: center;
  background-color: var(--white);
}
.footer-4__social ul li a:hover {
  color: var(--white);
  background-color: var(--primary4);
}
.footer-4__widget {
  display: flex;
  align-items: start;
  margin-bottom: 108px;
  justify-content: space-between;
}
@media only screen and (max-width: 1199px) {
  .footer-4__widget {
    margin-bottom: 60px;
  }
}
@media only screen and (max-width: 767px) {
  .footer-4__widget {
    gap: 30px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 575px) {
  .footer-4__widget {
    grid-template-columns: repeat(1, 1fr);
  }
}
.footer-4__title {
  font-weight: 700;
  font-size: 20px;
  line-height: 28px;
  color: var(--black);
  margin-bottom: 16px;
  letter-spacing: 0.5px;
  font-family: var(--font_monts);
}
.footer-4__menu {
  max-width: 200px;
  width: 100%;
}
.footer-4__menu ul {
  list-style: none;
}
.footer-4__menu ul li {
  margin-bottom: 16px;
}
.footer-4__menu ul li:last-of-type {
  margin-bottom: 0;
}
.footer-4__menu ul li a {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: var(--secondary);
  font-family: var(--font_jakarta);
}
.footer-4__menu ul li a:hover {
  color: var(--primary4);
}
.footer-4__shape {
  top: 34px;
  left: 94px;
  position: absolute;
}
.footer-4__shape_2 {
  right: -487px;
  bottom: -273px;
  position: absolute;
}
.footer-4__bg-shape {
  right: -380px;
  bottom: -118px;
  width: 573px;
  height: 573px;
  position: absolute;
  filter: blur(400px);
  border-radius: 500px;
  background: #1AD079;
}
.footer-4__bg-shape_2 {
  left: -210px;
  bottom: -475px;
  width: 579.16px;
  height: 384.7px;
  position: absolute;
  filter: blur(400px);
  border-radius: 500px;
  background: #7444FD;
}

.copyright-4__wrap {
  padding: 24px 72px;
  margin-right: -100%;
  margin-left: -72px;
  background-color: var(--white);
}
@media only screen and (max-width: 991px) {
  .copyright-4__wrap {
    padding: 18px;
    margin: 0 -15px;
    text-align: center;
  }
}
.copyright-4__text .text {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: var(--black);
  font-family: var(--font_jakarta);
}
.copyright-4__text .text a {
  color: var(--primary4);
  text-transform: uppercase;
}

.footer-5__inner {
  overflow: hidden;
  background-color: #F0F5FF;
}
.footer-5__top {
  gap: 15px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 48px;
  padding-bottom: 48px;
  justify-content: space-between;
  border-bottom: 1px solid #C9C9C8;
}
@media only screen and (max-width: 1199px) {
  .footer-5__top {
    margin-bottom: 30px;
    padding-bottom: 30px;
  }
}
@media only screen and (max-width: 767px) {
  .footer-5__top {
    margin-bottom: 20px;
    padding-bottom: 20px;
  }
}
.footer-5__top-menu ul {
  display: flex;
  list-style: none;
  align-items: center;
}
.footer-5__top-menu ul li a {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: var(--secondary);
  font-family: var(--font_jakarta);
}
.footer-5__top .footer-4__social ul {
  margin-top: 0;
}
@media only screen and (max-width: 991px) {
  .footer-5__top .footer-4__social ul {
    gap: 10px;
  }
}
.footer-5__top .footer-4__social ul li a {
  width: 48px;
  height: 48px;
}
.footer-5__wrap {
  position: relative;
  padding-bottom: 100px;
}
@media only screen and (max-width: 1199px) {
  .footer-5__wrap {
    padding-bottom: 70px;
  }
}
@media only screen and (max-width: 991px) {
  .footer-5__wrap {
    padding-bottom: 60px;
  }
}
.footer-5__wrap .footer-4__dec {
  margin-top: 8px;
  max-width: 579px;
}
@media (max-width: 575px) {
  .footer-5__wrap .footer-4__dec {
    font-size: 15px;
  }
}
.footer-5__info {
  margin-right: -16px;
  position: relative;
}
@media only screen and (max-width: 991px) {
  .footer-5__info {
    margin-right: -60px;
  }
}
@media only screen and (max-width: 767px) {
  .footer-5__info {
    margin-right: 0px;
  }
}
.footer-5__info::before {
  content: "";
  top: -48px;
  right: 0;
  width: 1px;
  height: 377px;
  position: absolute;
  background-color: #C9C9C8;
}
@media only screen and (max-width: 1199px) {
  .footer-5__info::before {
    top: -30px;
    right: -46px;
  }
}
@media only screen and (max-width: 991px) {
  .footer-5__info::before {
    display: none;
  }
}
.footer-5__main-title {
  font-weight: 700;
  font-size: 24px;
  line-height: 32px;
  color: var(--black);
  letter-spacing: 0.5px;
  font-family: var(--font_monts);
}
@media (max-width: 575px) {
  .footer-5__main-title {
    font-size: 19px;
    line-height: 28px;
  }
}
.footer-5__newsletter__input {
  max-width: 577px;
  margin-top: 24px;
  position: relative;
  margin-bottom: 14px;
}
.footer-5__newsletter__input input {
  width: 100%;
  height: 64px;
  padding-left: 24px;
  padding-right: 182px;
  border-radius: 500px;
  color: var(--secondary);
  background: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.2);
}
@media (max-width: 575px) {
  .footer-5__newsletter__input input {
    padding-right: 24px;
  }
}
.footer-5__newsletter__input input::placeholder {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: var(--secondary);
  font-family: var(--font_jakarta);
}
.footer-5__newsletter__input input:focus {
  outline: none;
}
.footer-5__newsletter__input .rr-btn {
  top: 50%;
  right: 4px;
  position: absolute;
  padding: 16px 22.27px;
  transform: translateY(-50%);
  background-color: var(--primary5);
}
@media (max-width: 575px) {
  .footer-5__newsletter__input .rr-btn {
    top: 0;
    right: 0;
    margin-top: 15px;
    position: inherit;
    transform: translateY(0);
  }
}
.footer-5__newsletter__input .rr-btn .btn-wrap .text-one,
.footer-5__newsletter__input .rr-btn .btn-wrap .text-two {
  gap: 14px;
}
.footer-5__newsletter__checkbox {
  gap: 9px;
  display: flex;
  align-items: center;
}
.footer-5__newsletter__checkbox label {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: var(--secondary);
  font-family: var(--font_jakarta);
}
@media (max-width: 575px) {
  .footer-5__newsletter__checkbox label {
    font-size: 15px;
  }
}
.footer-5__newsletter__checkbox .form-check-input {
  width: 16px;
  height: 16px;
  margin-top: 5px;
  margin-right: 0px;
  border-radius: 4px;
  background-color: transparent;
  border: 1px solid rgb(201, 201, 200);
}
.footer-5__newsletter__checkbox .form-check-input:focus {
  outline: 0;
  box-shadow: none;
  border-color: inherit;
}
.footer-5__newsletter__checkbox .form-check-input:checked {
  background-color: var(--primary5);
  border-color: var(--primary5);
}
.footer-5__widget.widget-col_1 {
  margin-left: 145px;
}
@media only screen and (max-width: 1199px) {
  .footer-5__widget.widget-col_1 {
    margin-left: 100px;
  }
}
@media only screen and (max-width: 767px) {
  .footer-5__widget.widget-col_1 {
    margin-left: 0px;
  }
}
.footer-5__widget.widget-col_2 {
  margin-left: 106px;
}
@media only screen and (max-width: 1199px) {
  .footer-5__widget.widget-col_2 {
    margin-left: 50px;
  }
}
@media only screen and (max-width: 991px) {
  .footer-5__widget.widget-col_2 {
    margin-left: 0px;
  }
}
.footer-5__shape {
  top: 73px;
  left: 0;
  position: absolute;
}
.footer-5__shape_2 {
  right: 0;
  bottom: 17px;
  position: absolute;
}
.footer-5__bg-shape {
  left: -220px;
  bottom: -250px;
  width: 704px;
  height: 704px;
  position: absolute;
  filter: blur(100px);
  border-radius: 500px;
  background: #E5F3F3;
}
.footer-5__bg-shape_2 {
  top: 204px;
  right: 120px;
  width: 704px;
  height: 704px;
  position: absolute;
  filter: blur(100px);
  background: #DADAF8;
}

.copyright-5__wrap {
  z-index: 1;
  text-align: center;
  padding: 23.5px 0;
  position: relative;
  border-top: 1px solid rgba(201, 201, 200, 0.24);
  background: linear-gradient(180deg, #F2F6FF 0%, #FFFFFF 100%);
}

.footer__widget {
  position: relative;
  text-align: center;
}
.footer__social ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin-right: -30px;
  align-items: center;
}
@media only screen and (max-width: 991px) {
  .footer__social ul {
    margin-right: 0;
    justify-content: center;
  }
}
.footer__social ul li {
  margin-left: -1px;
}
.footer__social ul li:first-of-type {
  margin-left: 0;
}
.footer__social ul li a {
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  color: var(--black);
  padding: 31px 43.1px;
  display: inline-block;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-family: var(--font_monts);
  border: 1px solid rgba(201, 201, 200, 0.24);
}
@media only screen and (max-width: 1399px) {
  .footer__social ul li a {
    padding: 31px 32.1px;
  }
}
@media only screen and (max-width: 1199px) {
  .footer__social ul li a {
    padding: 25px 16.9px;
  }
}
@media only screen and (max-width: 767px) {
  .footer__social ul li a {
    font-size: 15px;
    padding: 20px 14.9px;
  }
}
.footer__social ul li a:hover {
  background-color: #A0EA71;
}
.footer__contact ul {
  list-style: none;
  margin-top: 100px;
  margin-bottom: 56px;
}
@media only screen and (max-width: 1199px) {
  .footer__contact ul {
    margin-top: 60px;
    margin-bottom: 30px;
  }
}
@media only screen and (max-width: 991px) {
  .footer__contact ul {
    margin-top: 40px;
  }
}
.footer__contact ul li {
  margin-bottom: 32px;
}
@media only screen and (max-width: 1199px) {
  .footer__contact ul li {
    margin-bottom: 15px;
  }
}
.footer__contact ul li:last-of-type {
  margin-bottom: 0;
}
.footer__contact ul li a {
  font-weight: 700;
  font-size: 48px;
  line-height: 56px;
  color: var(--black);
  letter-spacing: 0.5px;
  font-family: var(--font_monts);
}
@media only screen and (max-width: 1199px) {
  .footer__contact ul li a {
    font-size: 40px;
    line-height: 46px;
  }
}
@media only screen and (max-width: 767px) {
  .footer__contact ul li a {
    font-size: 30px;
    line-height: 36px;
  }
}
@media (max-width: 575px) {
  .footer__contact ul li a {
    font-size: 22px;
    line-height: 25px;
  }
}
.footer__contact ul li a:hover {
  opacity: 0.7;
}
.footer__menu ul {
  gap: 48px;
  display: flex;
  list-style: none;
  align-items: center;
}
@media only screen and (max-width: 1399px) {
  .footer__menu ul {
    gap: 35px;
  }
}
@media only screen and (max-width: 1199px) {
  .footer__menu ul {
    column-gap: 30px;
    row-gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
  }
}
@media (max-width: 575px) {
  .footer__menu ul {
    column-gap: 15px;
    row-gap: 10px;
  }
}
.footer__menu ul li a {
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  color: var(--black);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-family: var(--font_monts);
}
.footer__menu ul li a:hover {
  opacity: 0.7;
}
.footer__info {
  max-width: 532px;
  position: relative;
  text-align: center;
  padding: 64px 48px;
  border-radius: 0 16px 16px 16px;
  background-color: var(--black);
}
@media only screen and (max-width: 1199px) {
  .footer__info {
    padding: 30px;
  }
}
@media only screen and (max-width: 991px) {
  .footer__info {
    max-width: 100%;
    margin-top: 30px;
    border-radius: 16px;
  }
}
@media (max-width: 575px) {
  .footer__info {
    padding: 30px 15px;
  }
}
.footer__subtitle {
  font-size: 18px;
  font-weight: 600;
  line-height: 26px;
  color: #173401;
  padding: 4px 19.3px;
  border-radius: 500px;
  letter-spacing: 0.5px;
  display: inline-block;
  background-color: var(--white);
  font-family: var(--font_monts);
  border: 1px solid rgba(201, 201, 200, 0.24);
}
.footer__title {
  font-size: 48px;
  font-weight: 700;
  line-height: 56px;
  margin-top: 16px;
  margin-bottom: 24px;
  color: var(--white);
  letter-spacing: 0.5px;
  font-family: var(--font_monts);
}
@media only screen and (max-width: 1199px) {
  .footer__title {
    font-size: 40px;
    line-height: 46px;
  }
}
@media (max-width: 575px) {
  .footer__title {
    font-size: 33px;
    line-height: 40px;
    margin-bottom: 15px;
  }
}
.footer__dec {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  max-width: 410px;
  margin: 0 auto;
  color: var(--secondary);
  font-family: var(--font_jakarta);
}
.footer__input {
  margin-top: 48px;
  position: relative;
  margin-bottom: 32px;
}
@media only screen and (max-width: 991px) {
  .footer__input {
    margin-top: 30px;
    margin-bottom: 25px;
  }
}
@media (max-width: 575px) {
  .footer__input {
    margin-top: 25px;
    margin-bottom: 20px;
  }
}
.footer__input input {
  width: 100%;
  height: 64px;
  border: none;
  padding: 20px;
  padding-left: 48px;
  border-radius: 500px;
}
.footer__input input:focus {
  outline: none;
}
.footer__input input::placeholder {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: var(--secondary);
  font-family: var(--font_jakarta);
}
.footer__input .icon {
  top: 50%;
  left: 16px;
  position: absolute;
  transform: translateY(-50%);
}
.footer__btn button {
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  text-decoration: underline;
  color: rgb(160, 234, 113);
  transition: all 0.3s ease-in-out;
}
.footer__btn button:hover {
  color: var(--white);
}
.footer__big-text {
  margin-top: -89px;
  margin-bottom: 28px;
}
@media only screen and (max-width: 991px) {
  .footer__big-text {
    margin-top: -15px;
    margin-bottom: 0;
  }
}
.footer__big-text h2 {
  font-weight: 700;
  font-size: 156px;
  line-height: 108px;
  text-align: center;
  color: transparent;
  letter-spacing: -1.56px;
  text-transform: uppercase;
  font-family: var(--font_monts);
  -webkit-text-stroke: 2px rgba(14, 14, 12, 0.12);
}
@media (min-width: 1600px) and (max-width: 1770px) {
  .footer__big-text h2 {
    font-size: 130px;
  }
}
@media only screen and (max-width: 1919px) {
  .footer__big-text h2 {
    font-size: 120px;
  }
}
@media only screen and (max-width: 1399px) {
  .footer__big-text h2 {
    font-size: 100px;
  }
}
@media only screen and (max-width: 1199px) {
  .footer__big-text h2 {
    font-size: 88px;
    line-height: 70px;
  }
}
@media only screen and (max-width: 991px) {
  .footer__big-text h2 {
    font-size: 68px;
  }
}
@media only screen and (max-width: 767px) {
  .footer__big-text h2 {
    font-size: 52px;
  }
}
@media (max-width: 575px) {
  .footer__big-text h2 {
    font-size: 29px;
    line-height: 54px;
  }
}
.footer__bg-shape {
  z-index: -1;
  left: 0;
  bottom: 28px;
  width: 100%;
  height: 569px;
  position: absolute;
  background: linear-gradient(180deg, #FFFFFF 17.93%, rgba(185, 251, 106, 0.72549) 100%);
}

.copyright {
  background-color: #173401;
}
.copyright__wrap {
  display: flex;
  padding: 16px 0px;
  align-items: center;
  justify-content: space-between;
}
@media only screen and (max-width: 991px) {
  .copyright__wrap {
    row-gap: 10px;
    flex-wrap: wrap;
    column-gap: 30px;
    justify-content: center;
  }
}
.copyright__text p {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: var(--white);
  display: inline-block;
  font-family: var(--font_jakarta);
}
@media (max-width: 575px) {
  .copyright__text p {
    text-align: center;
  }
}
.copyright__text p a {
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.copyright__text p a:hover {
  color: rgba(255, 255, 255, 0.7);
}
.copyright__menu ul {
  gap: 38px;
  display: flex;
  list-style: none;
  align-items: center;
}
@media only screen and (max-width: 1199px) {
  .copyright__menu ul {
    gap: 25px;
  }
}
@media (max-width: 575px) {
  .copyright__menu ul {
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
  }
}
.copyright__menu ul li {
  position: relative;
}
.copyright__menu ul li::before {
  content: "";
  top: 50%;
  right: -17px;
  width: 0.75px;
  height: 18px;
  rotate: 19deg;
  position: absolute;
  transform: translateY(-50%);
  background-color: rgba(201, 201, 200, 0.48);
}
@media only screen and (max-width: 1199px) {
  .copyright__menu ul li::before {
    right: -10px;
  }
}
@media (max-width: 575px) {
  .copyright__menu ul li::before {
    display: none;
  }
}
.copyright__menu ul li:last-of-type::before {
  display: none;
}
.copyright__menu ul li a {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  font-family: var(--font_jakarta);
  color: rgba(255, 255, 255, 0.7);
}
.copyright__menu ul li a:hover {
  color: var(--white);
}
.copyright__logo {
  padding-right: 60px;
  position: relative;
}
@media only screen and (max-width: 1199px) {
  .copyright__logo {
    padding-right: 0;
  }
  .copyright__logo::before {
    display: none;
  }
}
.copyright__logo::before {
  content: "";
  right: 0;
  width: 1px;
  height: 60px;
  position: absolute;
  background-color: rgba(188, 188, 188, 0.24);
}

.section-title-3__wrapper {
  position: relative;
  z-index: 2;
}
.section-title-3__wrapper .sub-title {
  font-size: 18px;
  font-weight: 600;
  line-height: 26px;
  margin-bottom: 16px;
  color: var(--primary);
  letter-spacing: 0.5px;
}
@media (max-width: 575px) {
  .section-title-3__wrapper .sub-title {
    font-size: 16px;
  }
  .section-title-3__wrapper .sub-title img {
    display: none;
  }
}
.section-title-3__wrapper .sub-title .left-shape {
  margin-right: 12px;
}
.section-title-3__wrapper .sub-title .right-shape {
  margin-left: 12px;
}
.section-title-3__wrapper .title {
  font-size: 48px;
  font-weight: 700;
  line-height: 56px;
  margin-bottom: 24px;
  letter-spacing: 0.5px;
}
@media only screen and (max-width: 1199px) {
  .section-title-3__wrapper .title {
    font-size: 40px;
    line-height: 50px;
    margin-bottom: 15px;
  }
}
@media only screen and (max-width: 767px) {
  .section-title-3__wrapper .title {
    font-size: 35px;
    line-height: 45px;
  }
}
@media (max-width: 575px) {
  .section-title-3__wrapper .title {
    font-size: 30px;
    line-height: 40px;
  }
}
.section-title-3__wrapper .desc {
  font-size: 16px;
  font-weight: 400;
  max-width: 628px;
  line-height: 24px;
}
.section-title-3__wrapper .rr-btn-green.has--drk-gren {
  background: #173401;
}
.section-title-3__wrapper .rr-btn-green.has--drk-gren .btn-wrap .text-one {
  color: var(--white);
}

.section-title-4__wrapper {
  margin-bottom: 48px;
}
@media only screen and (max-width: 1199px) {
  .section-title-4__wrapper {
    margin-bottom: 35px;
  }
}
@media only screen and (max-width: 767px) {
  .section-title-4__wrapper {
    margin-bottom: 30px;
  }
}
.section-title-4__wrapper .sub-title {
  margin-bottom: 8px;
  color: var(--primary4);
}
.section-title-4__wrapper .title {
  margin-bottom: 0px;
}

.section-title-5__wrapper {
  margin-bottom: 48px;
}
@media only screen and (max-width: 1199px) {
  .section-title-5__wrapper {
    margin-bottom: 35px;
  }
}
@media only screen and (max-width: 767px) {
  .section-title-5__wrapper {
    margin-bottom: 30px;
  }
}
.section-title-5__wrapper .sub-title {
  margin-bottom: 8px;
  color: var(--primary5);
}
.section-title-5__wrapper .title {
  margin-bottom: 0px;
}

/* === pages scss (index 01) === */
.breadcrumb-section__space {
  padding-top: 260px;
  padding-bottom: 142px;
}
@media only screen and (max-width: 1399px), only screen and (max-width: 1199px) {
  .breadcrumb-section__space {
    padding-top: 210px;
    padding-bottom: 110px;
  }
}
@media only screen and (max-width: 991px) {
  .breadcrumb-section__space {
    padding-top: 155px;
    padding-bottom: 80px;
  }
}
@media only screen and (max-width: 767px), (max-width: 575px) {
  .breadcrumb-section__space {
    padding-top: 145px;
    padding-bottom: 60px;
  }
}
.breadcrumb-section__wrapper {
  margin-top: 24px;
  width: 100%;
  height: 100%;
  position: relative;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  border-radius: 30px;
}
.breadcrumb-section__title {
  font-size: 72px;
  font-weight: 700;
  line-height: 80px;
  letter-spacing: 0.36px;
  color: var(--white);
  margin-bottom: 24px;
}
@media only screen and (max-width: 1199px) {
  .breadcrumb-section__title {
    font-size: 70px;
    margin-bottom: 10px;
  }
}
@media only screen and (max-width: 767px) {
  .breadcrumb-section__title {
    font-size: 60px;
    margin-bottom: 10px;
  }
}
@media (max-width: 575px) {
  .breadcrumb-section__title {
    font-size: 40px;
    margin-bottom: 10px;
  }
}
.breadcrumb-section__content {
  z-index: 1;
  position: relative;
}
.breadcrumb-section__page {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 13px;
}
.breadcrumb-section__page li {
  font-size: 18px;
  font-weight: 600;
  line-height: 26px;
  letter-spacing: 0.5px;
  color: var(--white);
  display: inline-block;
  font-family: var(--font_monts);
}
.breadcrumb-section__page li a {
  opacity: 0.7;
}
.breadcrumb-section__page li a:hover {
  opacity: 1;
  color: var(--white);
}

.funfact__inner {
  margin-bottom: 30px;
}
.funfact__media {
  overflow: hidden;
  border-radius: 16px;
}
.funfact__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.funfact__content {
  overflow: hidden;
  object-fit: cover;
  padding: 48px 32px;
  border-radius: 16px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
@media only screen and (max-width: 991px) {
  .funfact__content {
    margin-top: 30px;
  }
}
@media only screen and (max-width: 767px) {
  .funfact__content {
    padding: 30px 20px;
  }
}
.funfact__content .title {
  font-style: italic;
  font-weight: 500;
  font-size: 18px;
  line-height: 26px;
  letter-spacing: 0.5px;
  color: var(--white);
  margin-bottom: 148px;
}
@media only screen and (max-width: 991px) {
  .funfact__content .title {
    margin-bottom: 30px;
  }
}
@media only screen and (max-width: 767px) {
  .funfact__content .title {
    font-size: 16px;
  }
}
.funfact__content .author .media {
  width: 72px;
  height: 72px;
  display: flex;
  border-radius: 509px;
  overflow: hidden;
  outline: 1px solid var(--white);
}
.funfact__content .author .media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.funfact__content .author .name {
  font-weight: 600;
  font-size: 20px;
  line-height: 28px;
  letter-spacing: 1px;
  color: var(--white);
  margin-top: 16px;
}
.funfact__content .author span {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #646463;
  display: inline-block;
  margin-top: 2px;
}

.counter__item {
  padding: 40px 32px;
  border-radius: 16px;
  width: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  margin-bottom: 30px;
}
@media only screen and (max-width: 991px) {
  .counter__item {
    padding: 30px 15px;
  }
}
.counter__item.item-2 {
  background: var(--primary);
}
.counter__item.item-3 {
  background: #F6F6F6;
}
.counter__item.item-3 h2 {
  color: var(--black);
}
.counter__item.item-3 .sub-title {
  color: #646463;
}
.counter__item h2 {
  font-weight: 700;
  font-size: 72px;
  line-height: 80px;
  letter-spacing: 0.72px;
  color: var(--white);
  margin-bottom: 8px;
  font-family: var(--font_monts);
}
@media only screen and (max-width: 991px) {
  .counter__item h2 {
    font-size: 55px;
    line-height: 55px;
  }
}
@media only screen and (max-width: 767px) {
  .counter__item h2 {
    font-size: 40px;
    line-height: 40px;
  }
}
.counter__item h2 .odometer.odometer-auto-theme,
.counter__item h2 .odometer.odometer-theme-default {
  line-height: 80px;
  font-family: var(--font_monts);
}
@media only screen and (max-width: 991px) {
  .counter__item h2 .odometer.odometer-auto-theme,
  .counter__item h2 .odometer.odometer-theme-default {
    line-height: 55px;
  }
}
@media only screen and (max-width: 767px) {
  .counter__item h2 .odometer.odometer-auto-theme,
  .counter__item h2 .odometer.odometer-theme-default {
    line-height: 40px;
  }
}
.counter__item .sub-title {
  opacity: 0.8;
  font-weight: 600;
  font-size: 20px;
  line-height: 28px;
  letter-spacing: 1px;
  color: var(--white);
}
@media only screen and (max-width: 991px) {
  .counter__item .sub-title {
    font-size: 18px;
  }
}

/* === section-title (index 01) === */
.section-title__wrapper {
  position: relative;
  z-index: 2;
}
.section-title__wrapper .sub-title {
  font-size: 18px;
  font-weight: 600;
  line-height: 26px;
  padding: 4px 16px;
  margin-bottom: 16px;
  border-radius: 500px;
  letter-spacing: 0.5px;
  display: inline-block;
  background: #F6F6F6;
}
.section-title__wrapper .sub-title.has--green {
  background: var(--green);
  color: var(--black);
}
.section-title__wrapper .title {
  font-size: 48px;
  font-weight: 700;
  line-height: 56px;
  margin-bottom: 24px;
  letter-spacing: 0.5px;
}
@media only screen and (max-width: 1199px) {
  .section-title__wrapper .title {
    font-size: 45px;
    line-height: 55px;
  }
}
@media only screen and (max-width: 767px) {
  .section-title__wrapper .title {
    font-size: 40px;
    line-height: 50px;
  }
}
@media (max-width: 575px) {
  .section-title__wrapper .title {
    font-size: 30px;
    line-height: 40px;
  }
}
.section-title__wrapper .desc {
  font-size: 16px;
  font-weight: 400;
  max-width: 480px;
  line-height: 24px;
  margin-bottom: 48px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(201, 201, 200, 0.32);
}
.section-title__wrapper .rr-btn-green.has--drk-gren {
  background: #173401;
}
.section-title__wrapper .rr-btn-green.has--drk-gren .btn-wrap .text-one {
  color: var(--white);
}

/* === brand-1 (index 01) === */
.brand-1 .section-title__wrapper {
  margin-bottom: 48px;
}
.brand-1 .section-title__wrapper .title {
  text-align: center;
  font-size: 24px;
  font-weight: 700;
  line-height: 32px;
  letter-spacing: 0.5px;
}
.brand-1__active .swiper-wrapper {
  display: flex;
  column-gap: 100px;
  align-items: center;
  justify-content: space-between;
  transition-timing-function: linear;
}
.brand-1__active .swiper-wrapper .swiper-slide {
  width: auto;
}

/* === hero-1 (index 01) === */
.hero__inner {
  padding-top: 220px;
  position: relative;
  padding-bottom: 108px;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background-repeat: no-repeat;
  overflow: hidden;
  background-size: cover;
}
@media (max-width: 575px) {
  .hero__inner {
    padding-top: 150px;
    padding-bottom: 60px;
  }
}
.hero__inner .shape-6 {
  top: 0;
  right: 0;
  position: absolute;
}
.hero__content {
  margin-right: -80px;
}
@media only screen and (max-width: 1919px) {
  .hero__content {
    margin-right: 0;
  }
}
.hero__content__author {
  gap: 8px;
  padding: 8px 16px;
  margin-bottom: 16px;
  align-items: center;
  border-radius: 100px;
  display: inline-flex;
  background: #173401;
  backdrop-filter: blur(6px);
}
.hero__content__author ul {
  display: flex;
  list-style: none;
  align-items: center;
}
.hero__content__author ul li {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 500px;
  margin-left: -11px;
}
.hero__content__author ul li:first-child {
  margin-left: 0;
}
.hero__content__author p {
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  color: var(--white);
}
.hero__content .title {
  font-size: 64px;
  font-weight: 700;
  line-height: 72px;
  color: var(--white);
  letter-spacing: 0.64px;
  margin-bottom: 24px;
}
@media only screen and (max-width: 1399px) {
  .hero__content .title {
    font-size: 60px;
  }
}
@media only screen and (max-width: 767px) {
  .hero__content .title {
    font-size: 55px;
    line-height: 65px;
  }
}
@media (max-width: 575px) {
  .hero__content .title {
    font-size: 40px;
    line-height: 45px;
  }
}
.hero__content .desc {
  font-size: 18px;
  font-weight: 400;
  line-height: 26px;
  color: var(--white);
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(201, 201, 200, 0.24);
}
.hero__content-wrap {
  margin-top: 48px;
  display: flex;
  gap: 32px;
}
@media (max-width: 575px) {
  .hero__content-wrap {
    flex-wrap: wrap;
  }
}
.hero__content-wrap .green-2 {
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(24px);
}
.hero__content-wrap .green-2 .text-one {
  color: var(--white);
}
.hero__media {
  position: relative;
  display: inline-block;
  z-index: 2;
}
@media only screen and (max-width: 1199px) {
  .hero__media {
    margin-bottom: 50px;
  }
}
.hero__media .shape-1 {
  position: relative;
  z-index: 2;
}
.hero__media .shape-2 {
  position: absolute;
  z-index: 3;
  top: 55px;
  left: -88px;
  animation-duration: 4s;
}
@media only screen and (max-width: 1919px) {
  .hero__media .shape-2 {
    left: -50px;
  }
}
@media only screen and (max-width: 1399px) {
  .hero__media .shape-2 {
    left: -10px;
  }
}
.hero__media .shape-3 {
  position: absolute;
  z-index: 3;
  top: 80px;
  right: -205px;
  animation-duration: 6s;
}
@media (max-width: 575px) {
  .hero__media .shape-3 {
    position: inherit;
    right: inherit;
    top: inherit;
    margin-top: 30px;
  }
}
.hero__media .shape-4 {
  position: absolute;
  z-index: 3;
  bottom: 120px;
  left: -83px;
  animation-duration: 5s;
}
@media only screen and (max-width: 1919px) {
  .hero__media .shape-4 {
    left: -50px;
  }
}
@media only screen and (max-width: 1399px) {
  .hero__media .shape-4 {
    left: -10px;
  }
}
@media (max-width: 575px) {
  .hero__media .shape-4 {
    position: inherit;
    left: inherit;
    bottom: inherit;
    margin-top: 30px;
  }
}
.hero__media .shape-5 {
  position: absolute;
  bottom: 0;
  right: -234px;
  z-index: 1;
  animation-duration: 8s;
}
@media (max-width: 575px) {
  .hero__media .shape-5 {
    position: inherit;
    right: inherit;
    margin-top: 0px;
    rotate: -30deg;
    left: -55px;
  }
}

/* === features-1 (index 01) === */
.features-1__content {
  position: relative;
  padding-bottom: 125px;
}
@media only screen and (max-width: 991px) {
  .features-1__content {
    padding-bottom: 60px;
  }
}
.features-1__shape-1 {
  position: absolute;
  right: 0;
  bottom: 0;
}
@media only screen and (max-width: 991px) {
  .features-1__shape-1 {
    display: none;
  }
}
.features-1__shape-2 {
  position: absolute;
  right: -120px;
  bottom: 37px;
  z-index: -1;
}
@media only screen and (max-width: 991px) {
  .features-1__shape-2 {
    display: none;
  }
}
.features-1__item {
  gap: 16px;
  display: flex;
  border-radius: 16px;
  background: #F6F6F6;
  padding: 24px 32px;
  transition: all 0.3s;
  position: relative;
  z-index: 2;
}
@media (max-width: 575px) {
  .features-1__item {
    flex-wrap: wrap;
  }
}
.features-1__item:not(:last-child) {
  margin-bottom: 24px;
}
.features-1__item:hover {
  background: var(--green);
}
.features-1__item:hover span {
  background: var(--white);
}
.features-1__item span {
  width: 48px;
  height: 48px;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: var(--green);
  transition: all 0.3s;
}
.features-1__item .text .title {
  font-size: 18px;
  font-weight: 600;
  line-height: 26px;
  letter-spacing: 0.5px;
}
.features-1__item .text p {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: var(--secondary);
}

/* === service (index 01) === */
.service .section-title__wrapper {
  margin-bottom: 48px;
}
.service .section-title__wrapper .sub-title {
  background: var(--white);
}
.service .service-slide__active {
  border-radius: 16px;
  margin-bottom: 48px;
  border: 1px solid rgba(201, 201, 200, 0.24);
}
.service__item {
  padding: 48px 32px;
  border-right: 1px solid rgba(201, 201, 200, 0.24);
}
@media only screen and (max-width: 767px) {
  .service__item {
    padding: 30px 15px;
  }
}
.service__item .icon {
  display: flex;
  width: 72px;
  height: 72px;
  padding: 18px;
  border-radius: 8px;
  align-items: center;
  background: #173401;
  justify-content: center;
  margin-bottom: 48px;
}
@media only screen and (max-width: 767px) {
  .service__item .icon {
    margin-bottom: 30px;
  }
}
.service__item .title {
  font-size: 24px;
  font-weight: 700;
  line-height: 32px;
  margin-bottom: 8px;
  letter-spacing: 0.5px;
}
.service__item .title a:hover {
  color: var(--green);
}
.service__item .desc {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  margin-bottom: 72px;
}
@media only screen and (max-width: 767px) {
  .service__item .desc {
    margin-bottom: 30px;
  }
}
.service__item .service {
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
}
.service .swiper-slide-next {
  border-radius: 16px;
  background: var(--white);
  border: 1px solid #A0EA71;
}
.service .swiper-slide-next .service__item .icon {
  background: var(--green);
  color: var(--black);
}
.service .service-pagination {
  width: inherit;
  position: inherit;
  margin-top: 15px;
  padding: 5px 16px;
  background: #F6F6F6;
}
.service .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  position: relative;
  background: #AEAEAE;
}
.service .swiper-pagination-bullet::before {
  content: "";
  width: 12px;
  height: 12px;
  top: 50%;
  left: 50%;
  position: absolute;
  border-radius: 500px;
  transition: all 0.3s;
  transform: translate(-50%, -50%);
  border: 1px solid var(--green);
}
.service .swiper-pagination-bullet::after {
  content: "";
  width: 8px;
  height: 8px;
  top: 0;
  left: 0;
  position: absolute;
  border-radius: 500px;
  background: transparent;
  transition: all 0.3s;
}
.service .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: transparent;
}
.service .swiper-pagination-bullet.swiper-pagination-bullet-active::after {
  background: var(--green);
}
.service__arrow {
  display: flex;
  margin: 0 auto;
  max-width: 884px;
  position: relative;
  align-items: center;
  justify-content: space-between;
}
.service__arrow::before {
  content: "";
  top: 50%;
  left: 50%;
  height: 1px;
  position: absolute;
  width: calc(100% - 200px);
  background: var(--secondary);
  transform: translate(-50%, -50%);
}
.service__arrow-prev, .service__arrow-next {
  width: 66px;
  height: 66px;
  transition: all 0.3s;
  background: var(--white);
  border-radius: 500px;
  color: var(--secondary);
}
.service__arrow-prev:hover, .service__arrow-next:hover {
  color: var(--black);
  background: var(--green);
}

.choose-us__inner {
  background: linear-gradient(180deg, rgba(185, 251, 106, 0.73) 0%, #F1FEE1 100%);
}
.choose-us__content .section-title__wrapper .desc {
  max-width: 585px;
}
@media only screen and (max-width: 1199px) {
  .choose-us__content .section-title__wrapper .desc {
    max-width: 100%;
  }
}
.choose-us__media {
  position: relative;
}
@media only screen and (max-width: 1199px) {
  .choose-us__media {
    margin-top: 50px;
    margin-bottom: 100px;
    display: inline-block;
  }
}
.choose-us__media .image-1 {
  transform: translateX(34%);
  border-radius: 16px;
}
@media only screen and (max-width: 1399px) {
  .choose-us__media .image-1 {
    transform: translateX(12%);
  }
}
.choose-us__media .image-2 {
  left: 0;
  bottom: -90px;
  position: absolute;
  border-radius: 22px;
  box-shadow: 6.688px 7.643px 52.357px 0 rgba(15, 32, 40, 0.25);
}
.choose-us__media .image-3 {
  position: absolute;
  right: 16px;
  bottom: -90px;
}
.choose-us__media .image-4 {
  position: absolute;
  top: 15px;
  left: 65px;
}
.choose-us__media .image-5 {
  position: absolute;
  right: 158px;
  bottom: -38px;
}
.choose-us__media .rotation-container {
  width: 250px;
  height: 250px;
  position: absolute;
  margin: auto;
  display: none;
}
.choose-us__media .ring {
  position: absolute;
  border: 2px solid #000;
  border-radius: 50%;
}
.choose-us__media .ring1 {
  width: 250px;
  height: 250px;
  animation: rotate-ring 6s linear infinite;
}
.choose-us__media .ring2 {
  width: 180px;
  height: 180px;
  top: 35px;
  left: 35px;
  animation: rotate-ring 5s linear infinite reverse;
}
.choose-us__media .ring3 {
  width: 120px;
  height: 120px;
  top: 65px;
  left: 65px;
  animation: rotate-ring 4s linear infinite;
}
.choose-us__media .dot {
  width: 12px;
  height: 12px;
  background: red;
  border-radius: 50%;
  position: absolute;
}
.choose-us__media .dot1 {
  top: 50%;
  left: 50%;
  transform-origin: -125px 0;
  animation: rotate-dot 6s linear infinite;
}
.choose-us__media .dot2 {
  top: 50%;
  left: 50%;
  transform-origin: -90px 0;
  animation: rotate-dot 5s linear infinite reverse;
}
.choose-us__media .dot3 {
  top: 50%;
  left: 50%;
  transform-origin: -60px 0;
  animation: rotate-dot 4s linear infinite;
}
@keyframes rotate-ring {
  100% {
    transform: rotate(360deg);
  }
}
@keyframes rotate-dot {
  0% {
    transform: rotate(0deg) translateX(0);
  }
  100% {
    transform: rotate(360deg) translateX(0);
  }
}
.choose-us__wrapper {
  margin-top: 56px;
}
.choose-us__item {
  padding: 24px 32px;
  border-radius: 16px;
  background: var(--white);
  backdrop-filter: blur(24px);
  transition: all 0.3s;
}
@media only screen and (max-width: 1199px) {
  .choose-us__item {
    padding: 24px 15px;
  }
}
@media only screen and (max-width: 991px) {
  .choose-us__item {
    margin-bottom: 30px;
  }
}
.choose-us__item:hover {
  background: var(--green);
}
.choose-us__item:hover .title .icon {
  background: var(--black);
}
.choose-us__item:hover .title .icon img {
  filter: invert(1);
}
.choose-us__item .title {
  gap: 16px;
  display: flex;
  margin-bottom: 16px;
  align-items: center;
}
.choose-us__item .title .icon {
  width: 48px;
  min-width: 48px;
  height: 48px;
  display: flex;
  border-radius: 8px;
  align-items: center;
  justify-content: center;
  background: var(--green);
  transition: all 0.3s;
}
.choose-us__item .title a {
  font-size: 18px;
  font-weight: 600;
  line-height: 26px;
  color: var(--black);
  letter-spacing: 0.5px;
  transition: all 0.3s;
}
.choose-us__item .title a:hover {
  color: var(--black);
}
.choose-us__item .title img {
  transition: all 0.3s;
}

/* === faq (index 01) === */
@media only screen and (max-width: 991px) {
  .faq__content {
    margin-bottom: 30px;
  }
}
.faq__content .section-title__wrapper {
  position: relative;
  z-index: 2;
}
.faq__content .section-title__wrapper .sub-title {
  display: inline-flex;
  border: 1px solid rgba(201, 201, 200, 0.24);
  align-items: center;
  gap: 4px;
}
.faq__content .section-title__wrapper .sub-title img {
  max-width: 18px;
}

.accordion .global-accordion-item {
  padding: 24px;
  border-radius: 8px;
  background: #FFF;
  margin-bottom: 20px;
  overflow: hidden;
  transition: background 0.3s ease;
}
@media (max-width: 575px) {
  .accordion .global-accordion-item {
    padding: 15px;
  }
}
.accordion .global-accordion-item:has(.global-accordion-button:not(.collapsed)) {
  background: var(--green);
}
.accordion .global-accordion-item .global-accordion-header {
  margin: 0;
  overflow: hidden;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  cursor: pointer;
}
.accordion .global-accordion-item .global-accordion-button {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 20px;
  font-weight: 700;
  gap: 10px;
  line-height: 28px;
  color: var(--black);
  letter-spacing: 0.5px;
  font-family: var(--font_monts);
}
@media (max-width: 575px) {
  .accordion .global-accordion-item .global-accordion-button {
    font-size: 15px;
  }
}
.accordion .global-accordion-item .global-accordion-button::after {
  content: "+";
  width: 32px;
  min-width: 32px;
  height: 32px;
  display: flex;
  font-weight: 500;
  align-items: center;
  color: var(--black);
  border-radius: 500px;
  transition: all 0.3s;
  background: transparent;
  justify-content: center;
  border: 1px solid #000;
}
.accordion .global-accordion-item .global-accordion-button:not(.collapsed)::after {
  content: "-";
  transition: all 0.3s ease-in;
}
.accordion .global-accordion-item .global-accordion-button.collapsed {
  color: #000;
  overflow: hidden;
}
.accordion .global-accordion-item .global-accordion-body {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  background: var(--green);
}
.accordion .global-accordion-item .global-accordion-body p {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  margin-top: 8px;
  color: #646463;
}

/* === blog (index 01) === */
.blog .section-title__wrapper .title {
  margin-bottom: 48px;
}
@media (max-width: 575px) {
  .blog .section-title__wrapper .title {
    margin-bottom: 30px;
  }
}
.blog__content {
  padding: 48px 32px;
  border-radius: 16px;
  margin-bottom: 32px;
  background: var(--green);
}
@media only screen and (max-width: 1199px) {
  .blog__content {
    margin-bottom: 30px;
  }
}
@media (max-width: 575px) {
  .blog__content {
    padding: 30px 20px;
  }
}
.blog__content .section-title__wrapper {
  margin-top: 24px;
}
.blog__content .section-title__wrapper .title {
  font-size: 24px;
  font-weight: 700;
  line-height: 32px;
  margin-bottom: 12px;
  letter-spacing: 0.5px;
}
@media (max-width: 575px) {
  .blog__content .section-title__wrapper .title {
    font-size: 20px;
  }
}
.blog__content .section-title__wrapper .desc {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  margin-bottom: 80px;
  padding-bottom: 0;
  border: none;
}
@media (max-width: 575px) {
  .blog__content .section-title__wrapper .desc {
    margin-bottom: 30px;
  }
}
.blog__content .section-title__wrapper .rr-btn-green {
  background: var(--white);
}
.blog__content ul {
  gap: 24px;
  display: flex;
  list-style: none;
  align-items: center;
}
@media (max-width: 575px) {
  .blog__content ul {
    flex-wrap: wrap;
    gap: 10px;
  }
}
.blog__content ul li {
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  color: var(--black);
  padding: 6px 16px;
  border-radius: 500px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  border: 1px solid rgba(23, 52, 1, 0.32);
}
.blog__content ul li:last-child {
  background: #173401;
  color: var(--white);
}
.blog__item {
  overflow: hidden;
  border-radius: 16px;
  background: #F6F6F6;
}
@media only screen and (max-width: 1199px) {
  .blog__item {
    margin-bottom: 30px;
  }
}
.blog__item .media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.blog__item .content {
  padding: 24px 32px;
}
@media only screen and (max-width: 1199px) {
  .blog__item .content {
    padding: 25px 25px;
  }
}
@media (max-width: 575px) {
  .blog__item .content {
    padding: 25px 15px;
  }
}
.blog__item .content .meta-list {
  gap: 24px;
  display: flex;
  list-style: none;
  align-items: center;
  margin-bottom: 16px;
}
.blog__item .content .meta-list li {
  font-size: 14px;
  color: #173401;
  font-weight: 600;
  line-height: 20px;
  padding: 6px 16px;
  border-radius: 500px;
  border: 1px solid rgba(201, 201, 200, 0.24);
}
.blog__item .content .title {
  font-size: 24px;
  font-weight: 700;
  line-height: 32px;
  letter-spacing: 0.5px;
}
@media (max-width: 575px) {
  .blog__item .content .title {
    font-size: 18px;
    line-height: 28px;
  }
}
.blog__item .rr-btn-green {
  margin-top: 32px;
}

/* === pricing (index 01) === */
.pricing__wrapper {
  gap: 32px;
  display: grid;
  grid-template-columns: 350px 350px 1fr;
}
@media only screen and (max-width: 1199px) {
  .pricing__wrapper {
    grid-template-columns: 1fr 1fr;
  }
}
@media only screen and (max-width: 991px) {
  .pricing__wrapper {
    grid-template-columns: 1fr;
  }
}
@media only screen and (max-width: 1199px) {
  .pricing__wrapper > *:nth-child(3) {
    grid-column: 1/-1;
    grid-row: 1;
  }
}
.pricing__card {
  padding: 32px;
  border-radius: 16px;
  background: var(--white);
  backdrop-filter: blur(2.6500000954px);
  border: 1.5px solid rgba(255, 255, 255, 0.08);
}
@media (max-width: 575px) {
  .pricing__card {
    padding: 30px 15px;
  }
}
.pricing__card__title {
  font-size: 20px;
  font-weight: 700;
  line-height: 28px;
  letter-spacing: 0.5px;
  margin-bottom: 27px;
}
.pricing__card__price h2 {
  font-size: 40px;
  font-weight: 700;
  line-height: 48px;
  letter-spacing: 0.5px;
  margin-bottom: 30px;
}
.pricing__card__price h2 span:last-child {
  display: inline-block;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: #646463;
}
.pricing__card .pricing__price__btn {
  margin-top: 16px;
}
.pricing__card .pricing__price__btn .rr-btn-green {
  width: 100%;
  padding: 9px 15px;
  border: 1px solid #A0EA71;
  background: transparent;
}
.pricing__card .pricing__price__btn .rr-btn-green::before {
  background: #A0EA71;
}
.pricing__card .pricing__price__btn .rr-btn-green .btn-wrap .text-two {
  color: var(--black);
}
.pricing__body {
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: var(--BG-Sedentary, #F6F6F6);
  padding: 24px 16px;
}
.pricing__body ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.pricing__body ul li {
  display: flex;
  font-size: 16px;
  color: #646463;
  align-items: center;
}
.pricing__body ul li:not(:last-child) {
  margin-bottom: 18px;
}
.pricing__body ul li span {
  color: #22c55e;
  font-size: 7px;
  width: 15px;
  height: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  border-radius: 500px;
  margin-right: 10px;
  background: #173401;
}
.pricing .pricing__toggle-button {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 30px;
  justify-content: flex-start;
}
@media (max-width: 767px) {
  .pricing .pricing__toggle-button {
    justify-content: center;
  }
}
.pricing .pricing__toggle-button .pricing__toggler {
  font-size: 16px;
  cursor: pointer;
  line-height: 24px;
  font-weight: 600;
  color: var(--black);
  letter-spacing: 0.5px;
  font-family: var(--font_monts);
  text-transform: uppercase;
  transition: color 0.3s ease;
}
.pricing .pricing__toggle-button .pricing__toggler.active {
  color: #22c55e;
}
.pricing .pricing__toggle-button .pricing__toggle {
  position: relative;
  display: inline-block;
  width: 32px;
  height: 18px;
}
.pricing .pricing__toggle-button .pricing__toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}
.pricing .pricing__toggle-button .pricing__toggle .switcher {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #d1d5db;
  border-radius: 34px;
  transition: 0.4s;
}
.pricing .pricing__toggle-button .pricing__toggle .switcher:before {
  position: absolute;
  content: "";
  height: 13px;
  width: 13px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  border-radius: 50%;
  transition: 0.4s;
}
.pricing .pricing__toggle-button .pricing__toggle input:checked + .switcher {
  background-color: #22c55e;
}
.pricing .pricing__toggle-button .pricing__toggle input:checked + .switcher:before {
  transform: translateX(13px);
}

/* === control-plan (index 01) === */
.control-plan__wrapper {
  gap: 32px;
  display: flex;
  margin-top: 40px;
  align-items: center;
}
@media (max-width: 575px) {
  .control-plan__wrapper {
    flex-wrap: wrap;
  }
}
.control-plan__item {
  border-radius: 16px;
  padding: 24px 32px;
  border: 1px solid #A0EA71;
  width: 100%;
  box-shadow: 0 4px 100px 0 rgba(23, 52, 1, 0.08);
}
.control-plan__item .title {
  font-size: 48px;
  font-weight: 700;
  line-height: 56px;
  letter-spacing: 0.5px;
}
.control-plan__item p {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}
.control-plan__left {
  position: relative;
  margin-top: 104px;
}
@media only screen and (max-width: 1199px) {
  .control-plan__left {
    display: none;
  }
}
.control-plan__left-icon {
  position: relative;
}
.control-plan__left-icon.icon-2 {
  position: absolute;
  right: 46px;
  top: 76px;
}
.control-plan__left-icon.icon-2 .dot-shape {
  transform: translate(18px, 10px);
}
.control-plan__left-icon .line-1,
.control-plan__left-icon .line-2 {
  margin-left: 25px;
}
.control-plan__left-icon .title {
  color: #646463;
  text-align: center;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  padding: 10px 16px;
  margin-left: 32px;
  border-radius: 20px;
  border: 1px solid rgba(201, 201, 200, 0.24);
  box-shadow: 0 4px 44px 0 rgba(23, 52, 1, 0.08);
}
.control-plan__left-icon a {
  width: 72px;
  display: flex;
  height: 72px;
  font-size: 30px;
  color: var(--black);
  border-radius: 500px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(201, 201, 200, 0.24);
  box-shadow: 0 5px 13px -5px rgba(16, 25, 40, 0.05), 0 2px 4px -1px rgba(16, 25, 40, 0.02);
}
.control-plan__left-icon a:hover {
  color: #635BFF;
}
.control-plan__right {
  position: relative;
  margin-top: 104px;
  margin-left: 15px;
}
@media only screen and (max-width: 1199px) {
  .control-plan__right {
    display: none;
  }
}
.control-plan__right-icon.has--4 {
  position: absolute;
  right: -100%;
  top: 0;
}
@media only screen and (max-width: 1399px) {
  .control-plan__right-icon.has--4 {
    right: -50%;
  }
}
.control-plan__right-icon.icon-3 {
  transform: translateY(76px);
}
.control-plan__right-icon.icon-3 .dot-shape {
  transform: translate(-15px, 5px);
}
.control-plan__right-icon .line-3 {
  margin-left: 25px;
}
.control-plan__right-icon .line-4 {
  margin-left: -30px;
}
.control-plan__right-icon .title {
  color: #646463;
  text-align: center;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  padding: 10px 16px;
  transform: translateX(-85%);
  border-radius: 20px;
  border: 1px solid rgba(201, 201, 200, 0.24);
  box-shadow: 0 4px 44px 0 rgba(23, 52, 1, 0.08);
}
@media only screen and (max-width: 1399px) {
  .control-plan__right-icon .title {
    max-width: 250px;
    transform: translateX(-60%);
  }
}
.control-plan__right-icon a {
  width: 72px;
  display: flex;
  height: 72px;
  font-size: 30px;
  color: var(--black);
  border-radius: 500px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(201, 201, 200, 0.24);
  box-shadow: 0 5px 13px -5px rgba(16, 25, 40, 0.05), 0 2px 4px -1px rgba(16, 25, 40, 0.02);
}
.control-plan__right-icon a:hover {
  color: #635BFF;
}
.control-plan .media {
  position: relative;
  z-index: 2;
}
@media only screen and (max-width: 1199px) {
  .control-plan .media {
    margin-top: 30px;
  }
}

.technology__card {
  border-radius: 24px;
  padding: 40px;
  position: relative;
  padding-bottom: 90px;
}
@media only screen and (max-width: 1199px) {
  .technology__card {
    margin-bottom: 30px;
  }
}
@media (max-width: 575px) {
  .technology__card {
    padding: 20px;
  }
}
.technology__card .shape-1 {
  position: absolute;
  bottom: 0;
  right: 0;
}
.technology__card .shape-2 {
  position: absolute;
  bottom: 202px;
  right: 26px;
}
.technology__card .section-title__wrapper .sub-title {
  background: #173401;
  color: var(--white);
  border: 1px solid rgba(201, 201, 200, 0.24);
}
.technology__card .decs {
  max-width: 391px;
  color: var(--white);
  margin-bottom: 80px;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  opacity: 0.8;
}
@media only screen and (max-width: 767px) {
  .technology__card .decs {
    margin-bottom: 30px;
  }
}

.technology__wrapper {
  overflow: hidden;
  position: relative;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 24px;
}
.technology__wrapper .title {
  font-size: 27px;
  font-weight: 600;
  width: 233px;
  height: 233px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 500px;
  line-height: 39px;
  text-align: center;
  background: var(--white);
  letter-spacing: 1.38px;
  left: 50%;
  position: absolute;
  top: 48px;
  transform: translate(-50%, 0px);
}
@media (max-width: 575px) {
  .technology__wrapper .title {
    width: 150px;
    height: 150px;
    font-size: 20px;
    line-height: 25px;
  }
}
.technology__wrapper .title::before {
  width: 272px;
  position: absolute;
  content: "";
  height: 272px;
  border-radius: 500px;
  border: 2px dashed #C9C9C8;
}
@media (max-width: 575px) {
  .technology__wrapper .title::before {
    width: 180px;
    height: 180px;
  }
}

.client-capsule-wrapper {
  position: relative;
  overflow: hidden;
  pointer-events: none;
  margin-top: -200px;
  height: 734px;
}
.client-capsule-wrapper > * {
  position: absolute;
  display: inline-block;
  margin-bottom: 0;
  left: 0;
  top: 0;
  user-select: none;
  pointer-events: auto;
  transition: none;
}

.client-box {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 100px;
  transform: translate(-50%, -50%) rotate(0rad);
}
.client-box img {
  pointer-events: none;
  max-width: 100%;
  max-height: 100%;
}

/* === testimonial  (index 01) === */
.testimonial__inner {
  background: linear-gradient(180deg, rgba(185, 251, 106, 0.72549) 0%, #F1FEE1 100%);
}
.testimonial__inner .shape-1 {
  position: absolute;
  top: 0;
  right: 0;
}
.testimonial__content .section-title__wrapper {
  margin-bottom: 48px;
}
.testimonial__content .section-title__wrapper .title {
  padding-bottom: 32px;
  margin-bottom: 0;
  border-bottom: 1px solid rgba(201, 201, 200, 0.64);
}
.testimonial__author {
  display: flex;
  gap: 4px;
}
@media (max-width: 575px) {
  .testimonial__author {
    flex-wrap: wrap;
  }
}
.testimonial__author ul {
  display: flex;
  align-items: center;
}
.testimonial__author ul li {
  width: 48px;
  display: flex;
  height: 48px;
  overflow: hidden;
  align-items: center;
  border-radius: 500px;
  justify-content: center;
  color: var(--black);
  background: var(--white);
  outline: 3px solid var(--white);
}
.testimonial__author ul li:not(:first-child) {
  margin-left: -12px;
}
.testimonial__author .active {
  font-weight: 600;
  font-size: 18px;
  color: var(--black);
  line-height: 26px;
  max-width: 180px;
  letter-spacing: 0.5px;
}
.testimonial .testimonial-slide__active {
  margin-left: 38px;
  margin-right: 160px;
  position: relative;
  height: 372px;
}
@media only screen and (max-width: 991px) {
  .testimonial .testimonial-slide__active {
    margin-left: 0;
    margin-top: 30px;
  }
}
@media (max-width: 575px) {
  .testimonial .testimonial-slide__active {
    margin-right: 0;
  }
}
.testimonial__item {
  background: var(--white);
  border-radius: 16px;
  padding: 40px 32px;
  position: absolute;
  width: 100%;
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 3;
  transform: translate(0, 0);
  opacity: 0;
  pointer-events: none;
}
@media (max-width: 575px) {
  .testimonial__item {
    padding: 30px 20px;
  }
}
.testimonial__item.active {
  opacity: 1;
  pointer-events: auto;
}
.testimonial__item .shape {
  position: absolute;
  right: 35px;
  bottom: 50px;
}
@media (max-width: 575px) {
  .testimonial__item .shape {
    display: none;
  }
}
.testimonial__item .desc {
  font-weight: 600;
  font-size: 18px;
  line-height: 26px;
  letter-spacing: 0.5px;
  color: #646463;
  margin-top: 16px;
}
.testimonial .testimonial__item.next {
  background: rgba(255, 255, 255, 0.48);
  backdrop-filter: blur(50px);
  transform: translate(20px, 20px);
  z-index: 2;
  opacity: 1;
  box-shadow: none;
}
.testimonial .testimonial__item.next-next {
  background: rgba(255, 255, 255, 0.48);
  backdrop-filter: blur(50px);
  transform: translate(40px, 40px);
  z-index: 1;
  opacity: 1;
  box-shadow: none;
}
.testimonial .arrow__wrapper {
  transform: translateY(-50%);
  display: flex;
  gap: 24px;
  flex-direction: column;
  position: absolute;
  right: -130px;
  top: 50%;
}
@media (max-width: 575px) {
  .testimonial .arrow__wrapper {
    display: none;
  }
}
.testimonial .arrow-btn {
  display: flex;
  width: 48px;
  height: 48px;
  padding: 15px;
  justify-content: center;
  align-items: center;
  border-radius: 500px;
  color: var(--black);
  background: var(--white);
  transition: all 0.3s;
}
.testimonial .arrow-btn:hover {
  background: #173401;
  color: var(--white);
}
.testimonial__info {
  display: flex;
  gap: 16px;
  margin-top: 56px;
}
.testimonial__info__media {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  border-radius: 500px;
  overflow: hidden;
}
.testimonial__info__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.testimonial__info__content .title {
  font-weight: 600;
  font-size: 20px;
  line-height: 28px;
  letter-spacing: 1px;
}
.testimonial__info__content .sub-title {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #646463;
}

/* === brand-2 (index 03) === */
.hero-3__inner {
  padding-top: 272px;
  padding-bottom: 507px;
  text-align: center;
  position: relative;
  border-radius: 30px;
  background-repeat: no-repeat;
}
@media only screen and (max-width: 1199px) {
  .hero-3__inner {
    padding-top: 240px;
  }
}
@media only screen and (max-width: 991px) {
  .hero-3__inner {
    padding-top: 160px;
  }
}
@media only screen and (max-width: 767px) {
  .hero-3__inner {
    padding-bottom: 265px;
  }
}
@media (max-width: 575px) {
  .hero-3__inner {
    padding-top: 130px;
    padding-bottom: 255px;
  }
}
.hero-3__content .sub-title {
  color: #004FFC;
  font-size: 20px;
  font-weight: 600;
  line-height: 28px;
  margin-bottom: 16px;
  letter-spacing: 1px;
}
.hero-3__content .title {
  font-size: 72px;
  font-weight: 700;
  line-height: 80px;
  text-align: center;
  margin-bottom: 24px;
  letter-spacing: 0.36px;
}
@media only screen and (max-width: 1199px) {
  .hero-3__content .title br {
    display: none;
  }
}
@media only screen and (max-width: 991px) {
  .hero-3__content .title {
    font-size: 50px;
    line-height: 55px;
  }
}
@media only screen and (max-width: 767px) {
  .hero-3__content .title {
    font-size: 40px;
    line-height: 45px;
    margin-bottom: 15px;
  }
}
@media (max-width: 575px) {
  .hero-3__content .title {
    font-size: 27px;
    line-height: 32px;
  }
}
.hero-3__content .desc {
  margin-bottom: 48px;
}
@media only screen and (max-width: 991px) {
  .hero-3__content .desc br {
    display: none;
  }
}
@media only screen and (max-width: 767px) {
  .hero-3__content .desc {
    margin-bottom: 20px;
  }
}
.hero-3__btn-wrap {
  gap: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media only screen and (max-width: 767px) {
  .hero-3__btn-wrap {
    gap: 20px;
    flex-wrap: wrap;
  }
}
.hero-3 .media {
  margin-top: -458px;
  text-align: center;
  position: relative;
  z-index: 1;
}
@media only screen and (max-width: 767px) {
  .hero-3 .media {
    margin-top: -200px;
  }
}
@media only screen and (max-width: 1399px) {
  .hero-3 .media img {
    width: 90%;
  }
}
.hero-3 .shape {
  left: 104px;
  bottom: 66px;
  position: absolute;
}

/* === brand-3 (index 03) === */
.brand-3 .section-title-3__wrapper {
  padding-top: 100px;
}
@media only screen and (max-width: 1919px) {
  .brand-3 .section-title-3__wrapper {
    padding-top: 90px;
  }
}
@media only screen and (max-width: 1399px) {
  .brand-3 .section-title-3__wrapper {
    padding-top: 80px;
  }
}
@media only screen and (max-width: 1199px) {
  .brand-3 .section-title-3__wrapper {
    padding-top: 60px;
  }
}
.brand-3 .section-title-3__wrapper .title {
  z-index: 2;
  font-size: 18px;
  font-weight: 600;
  line-height: 1;
  margin-bottom: 0;
  margin-left: 48px;
  position: relative;
  background: white;
  padding: 4px 23.41px;
  display: inline-block;
  letter-spacing: 0.5px;
  color: var(--secondary);
}
@media (max-width: 575px) {
  .brand-3 .section-title-3__wrapper .title {
    padding: 0;
    margin-left: 0;
    font-size: 16px;
    margin-bottom: 10px;
  }
}
.brand-3__active {
  margin-top: -13px;
  padding: 62px 30px;
  border-radius: 16px;
  border: 1px solid rgba(201, 201, 200, 0.24);
}
@media only screen and (max-width: 991px) {
  .brand-3__active {
    padding: 50px 15px;
  }
}
@media only screen and (max-width: 767px) {
  .brand-3__active {
    padding: 40px 0px;
  }
}
@media (max-width: 575px) {
  .brand-3__active {
    margin-top: 0;
    padding: 35px 0px;
  }
}
.brand-3__active .swiper-wrapper {
  display: flex;
  column-gap: 100px;
  align-items: center;
  justify-content: space-between;
  transition-timing-function: linear;
}
@media only screen and (max-width: 991px) {
  .brand-3__active .swiper-wrapper {
    column-gap: 60px;
  }
}
@media only screen and (max-width: 767px) {
  .brand-3__active .swiper-wrapper {
    column-gap: 40px;
  }
}
.brand-3__active .swiper-wrapper .swiper-slide {
  width: auto;
}

.about-3__wrapper {
  margin-top: 32px;
  margin-bottom: 48px;
}
@media only screen and (max-width: 1199px) {
  .about-3__wrapper {
    margin-top: 30px;
    margin-bottom: 30px;
  }
}
@media only screen and (max-width: 991px) {
  .about-3__content {
    margin-bottom: 30px;
  }
}
.about-3__item {
  gap: 24px;
  display: flex;
  max-width: 630px;
  padding: 24px 32px;
  border-radius: 16px;
  align-items: center;
  margin-bottom: 24px;
  transition: all 0.3s;
  border: 1px solid transparent;
  background-color: #F6F6F6;
}
.about-3__item:hover {
  border-color: var(--primary);
}
@media only screen and (max-width: 991px) {
  .about-3__item {
    max-width: 100%;
    margin-bottom: 15px;
  }
}
@media (max-width: 575px) {
  .about-3__item {
    gap: 10px;
    flex-wrap: wrap;
    padding: 15px 15px;
  }
}
.about-3__item:last-of-type {
  margin-bottom: 0;
}
.about-3__item span {
  font-size: 20px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 1px;
  color: var(--white);
  display: inline-block;
  padding: 4px 16.52px;
  border-radius: 500px;
  font-family: var(--font_monts);
  background-color: var(--primary);
}
.about-3__item .title {
  font-size: 20px;
  font-weight: 600;
  line-height: 28px;
  letter-spacing: 1px;
  color: var(--black);
  font-family: var(--font_monts);
}
@media (max-width: 575px) {
  .about-3__item .title {
    font-size: 18px;
    line-height: 26px;
  }
}
.about-3__bottom {
  gap: 40px;
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 1199px) {
  .about-3__bottom {
    gap: 20px;
    flex-wrap: wrap;
  }
}
.about-3__bottom .rr-btn {
  padding: 16px 42.25px;
}
.about-3__author {
  gap: 16px;
  display: flex;
  align-items: center;
}
.about-3__author ul {
  display: flex;
  list-style: none;
  align-items: center;
}
.about-3__author ul li {
  width: 48px;
  height: 48px;
  margin-left: -16px;
}
.about-3__author ul li img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 500px;
  border: 3px solid var(--white);
}
.about-3__author ul li:first-of-type {
  margin-left: 0;
}
.about-3__author ul .plus-icon {
  width: 48px;
  height: 48px;
  border-radius: 500px;
  align-items: center;
  display: inline-flex;
  justify-content: center;
  border: 1px solid #F6F6F6;
  background-color: var(--white);
}
.about-3__author ul .plus-icon i {
  font-size: 19px;
  line-height: 0.8;
  color: var(--primary);
}
.about-3__author .text .title {
  font-size: 24px;
  font-weight: 700;
  line-height: 32px;
  letter-spacing: 0.5px;
  color: var(--black);
  font-family: var(--font_monts);
}
.about-3__author .text .title span {
  color: var(--primary);
}
.about-3__author .text p {
  font-weight: 400;
  font-size: 16px;
  line-height: 1;
  color: var(--secondary);
  font-family: var(--font_jakarta);
}
.about-3__media {
  position: relative;
  margin-right: -70px;
}
@media only screen and (max-width: 1919px) {
  .about-3__media {
    margin-right: 0;
  }
}
.about-3__media img {
  border-radius: 16px;
  filter: drop-shadow(-21.491px 32.2365px 42.982px rgba(48, 121, 206, 0.12));
}
.about-3__media .image-1 {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-3__media .image-2, .about-3__media .image-3, .about-3__media .image-3, .about-3__media .image-4 {
  position: absolute;
}
@media only screen and (max-width: 991px) {
  .about-3__media .image-2, .about-3__media .image-3, .about-3__media .image-3, .about-3__media .image-4 {
    position: relative;
  }
}
.about-3__media .image-2 {
  left: 24px;
  bottom: -238px;
}
@media only screen and (max-width: 1199px) {
  .about-3__media .image-2 {
    bottom: -400px;
  }
}
@media only screen and (max-width: 991px) {
  .about-3__media .image-2 {
    bottom: -16px;
    left: 0;
  }
}
.about-3__media .image-3 {
  right: 3px;
  bottom: -217px;
}
@media only screen and (max-width: 991px) {
  .about-3__media .image-3 {
    bottom: 110px;
    right: -15px;
  }
}
.about-3__media .image-4 {
  z-index: -1;
  right: -71px;
  bottom: -345px;
  filter: none;
  position: absolute;
}

.service-section__top {
  margin-bottom: 48px;
}
@media only screen and (max-width: 991px) {
  .service-section__top {
    margin-bottom: 30px;
  }
}
@media (max-width: 575px) {
  .service-section__top .section-title-3__wrapper .title {
    font-size: 29px;
  }
}
.service-section__wrapper {
  margin-left: 300px;
}
@media (min-width: 1600px) and (max-width: 1700px) {
  .service-section__wrapper {
    margin-left: 100px;
  }
}
@media only screen and (max-width: 1919px) {
  .service-section__wrapper {
    margin-left: 0;
  }
}
@media only screen and (max-width: 1199px) {
  .service-section__wrapper {
    margin: 0 15px;
  }
}
.service-section__active .swiper-slide {
  width: 306px !important;
}
@media only screen and (max-width: 1399px) {
  .service-section__active .swiper-slide {
    width: 500px !important;
  }
}
@media only screen and (max-width: 1199px) {
  .service-section__active .swiper-slide {
    width: 308px !important;
  }
}
@media only screen and (max-width: 991px) {
  .service-section__active .swiper-slide {
    width: 359px !important;
  }
}
@media only screen and (max-width: 767px) {
  .service-section__active .swiper-slide {
    width: 263px !important;
  }
}
@media (max-width: 575px) {
  .service-section__active .swiper-slide {
    width: 100% !important;
  }
}
.service-section__active .swiper-slide.swiper-slide-active {
  width: 531px !important;
}
@media only screen and (max-width: 1399px) {
  .service-section__active .swiper-slide.swiper-slide-active {
    width: 500px !important;
  }
}
@media only screen and (max-width: 1199px) {
  .service-section__active .swiper-slide.swiper-slide-active {
    width: 308px !important;
  }
}
@media only screen and (max-width: 991px) {
  .service-section__active .swiper-slide.swiper-slide-active {
    width: 359px !important;
  }
}
@media only screen and (max-width: 767px) {
  .service-section__active .swiper-slide.swiper-slide-active {
    width: 263px !important;
  }
}
@media (max-width: 575px) {
  .service-section__active .swiper-slide.swiper-slide-active {
    width: 100% !important;
  }
}
.service-section__active .swiper-slide.swiper-slide-active .service-section__item {
  width: 100%;
  border: 2px solid var(--primary);
}
.service-section__active .swiper-slide.swiper-slide-active .service-section__title {
  max-width: 100%;
}
.service-section__active .swiper-slide.swiper-slide-active .service-section__dec {
  opacity: 1;
  height: auto;
  margin-top: 10px;
  margin-bottom: 32px;
}
.service-section__active .swiper-slide.swiper-slide-active .service-section__btn {
  margin-top: 0px;
}
.service-section__item {
  overflow: hidden;
  position: relative;
  padding: 40px 32px;
  border-radius: 16px;
  background-color: var(--white);
}
@media only screen and (max-width: 1199px) {
  .service-section__item {
    padding: 30px 25px;
  }
}
@media only screen and (max-width: 767px) {
  .service-section__item {
    padding: 20px 15px;
  }
}
.service-section__icon {
  width: 64px;
  height: 64px;
  display: flex;
  border-radius: 500px;
  align-items: center;
  justify-content: center;
  background-color: var(--primary);
}
.service-section__title {
  font-size: 24px;
  font-weight: 700;
  line-height: 32px;
  margin-top: 24px;
  max-width: 234px;
  color: var(--black);
  letter-spacing: 0.5px;
  font-family: var(--font_monts);
}
@media only screen and (max-width: 1399px) {
  .service-section__title {
    max-width: 100%;
  }
}
@media only screen and (max-width: 1199px) {
  .service-section__title {
    font-size: 19px;
    line-height: 28px;
  }
}
@media only screen and (max-width: 767px) {
  .service-section__title {
    font-size: 17px;
    line-height: 26px;
  }
}
.service-section__dec {
  height: 0;
  opacity: 0;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  max-width: 451px;
  color: var(--secondary);
  font-family: var(--font_jakarta);
}
@media only screen and (max-width: 1399px) {
  .service-section__dec {
    opacity: 1;
    height: auto;
    margin-top: 10px;
    margin-bottom: 32px;
  }
}
.service-section__dec span {
  font-weight: 500;
}
.service-section__btn {
  margin-top: 58px;
}
@media only screen and (max-width: 1399px) {
  .service-section__btn {
    margin-top: 0;
  }
}
.service-section__number {
  top: 14px;
  right: -31px;
  font-size: 16px;
  font-weight: 400;
  line-height: 1;
  position: absolute;
  color: var(--white);
  padding: 4px 14.2px;
  border-radius: 500px;
  display: inline-block;
  transform: rotate(45deg);
  background-color: var(--primary);
  font-family: var(--font_jakarta);
}

.arrow-btn {
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  color: var(--primary);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-family: var(--font_monts);
  background: linear-gradient(var(--primary) 0%, var(--primary) 100%);
  background-size: 0% 1px;
  background-repeat: no-repeat;
  background-position: left 100%;
}
.arrow-btn:hover {
  background-size: 100% 1px;
}

.crm-benefits__wrapper {
  overflow: hidden;
  position: relative;
  border-radius: 32px;
  background: linear-gradient(90deg, #0E0E0C 0%, #004FFC 100%);
}
.crm-benefits__top {
  margin-bottom: 48px;
}
@media only screen and (max-width: 991px) {
  .crm-benefits__top {
    margin-bottom: 25px;
  }
}
.crm-benefits__top-left .section-title-3__wrapper .title {
  max-width: 630px;
  margin-bottom: 0px;
}
@media (max-width: 575px) {
  .crm-benefits__top-left .section-title-3__wrapper .title {
    font-size: 27px;
    line-height: 37px;
  }
}
.crm-benefits__top-dec {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  max-width: 590px;
  margin-left: 12px;
  color: var(--white);
  transform: translateY(-8px);
  font-family: var(--font_jakarta);
}
@media only screen and (max-width: 991px) {
  .crm-benefits__top-dec {
    margin-left: 0;
    margin-top: 20px;
  }
}
.crm-benefits__thumb {
  position: relative;
  max-width: fit-content;
}
.crm-benefits__thumb img {
  border-radius: 20px;
  filter: drop-shadow(-24.0194px 36.0291px 48.0387px rgba(48, 121, 206, 0.12));
}
.crm-benefits__thumb .image-2, .crm-benefits__thumb .image-3 {
  position: absolute;
}
@media only screen and (max-width: 991px) {
  .crm-benefits__thumb .image-2, .crm-benefits__thumb .image-3 {
    display: none;
  }
}
.crm-benefits__thumb .image-2 {
  left: 31px;
  bottom: -96px;
}
@media only screen and (max-width: 1919px) {
  .crm-benefits__thumb .image-2 {
    left: 20px;
  }
}
@media only screen and (max-width: 1399px) {
  .crm-benefits__thumb .image-2 {
    left: -8px;
  }
}
.crm-benefits__thumb .image-2 img {
  border-radius: 16px;
}
.crm-benefits__thumb .image-3 {
  right: -61px;
  bottom: -96px;
}
@media only screen and (max-width: 1919px) {
  .crm-benefits__thumb .image-3 {
    right: -30px;
  }
}
@media only screen and (max-width: 1399px) {
  .crm-benefits__thumb .image-3 {
    right: 0px;
  }
}
.crm-benefits__wrap {
  z-index: 1;
  position: relative;
}
@media only screen and (max-width: 991px) {
  .crm-benefits__wrap {
    gap: 20px;
    display: grid;
    margin-top: 30px;
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 575px) {
  .crm-benefits__wrap {
    grid-template-columns: repeat(1, 1fr);
  }
}
.crm-benefits__item {
  padding: 32px;
  max-width: 419px;
  margin-bottom: 24px;
  border-radius: 16px;
  background-color: var(--white);
}
@media only screen and (max-width: 1199px) {
  .crm-benefits__item {
    padding: 20px;
    margin-bottom: 15px;
  }
}
@media only screen and (max-width: 991px) {
  .crm-benefits__item {
    margin-bottom: 0px;
  }
}
@media (max-width: 575px) {
  .crm-benefits__item {
    max-width: 100%;
  }
}
.crm-benefits__item:last-of-type {
  margin-bottom: 0;
}
.crm-benefits__info {
  gap: 16px;
  display: flex;
  margin-bottom: 16px;
  align-items: center;
}
@media only screen and (max-width: 767px) {
  .crm-benefits__info {
    gap: 10px;
    margin-bottom: 10px;
  }
}
@media only screen and (max-width: 767px) {
  .crm-benefits__info {
    flex-wrap: wrap;
  }
}
.crm-benefits__icon {
  min-width: 56px;
  height: 56px;
  display: flex;
  border-radius: 8px;
  align-items: center;
  justify-content: center;
  background-color: var(--primary);
}
.crm-benefits__title {
  font-size: 20px;
  font-weight: 600;
  line-height: 28px;
  max-width: 214px;
  letter-spacing: 1px;
  color: var(--black);
  font-family: var(--font_monts);
}
@media only screen and (max-width: 1399px) {
  .crm-benefits__title {
    max-width: 100%;
  }
}
.crm-benefits__dec {
  font-size: 16px;
  font-weight: 400;
  max-width: 335px;
  line-height: 24px;
  color: var(--secondary);
  font-family: var(--font_jakarta);
}
.crm-benefits__dec span {
  font-weight: 500;
}
.crm-benefits__shape {
  left: -207px;
  bottom: -358px;
  position: absolute;
}

.project-section__top .section-title-3__wrapper {
  margin-bottom: 48px;
}
@media only screen and (max-width: 991px) {
  .project-section__top .section-title-3__wrapper {
    margin-bottom: 30px;
  }
}
@media only screen and (max-width: 991px) {
  .project-section__active {
    margin: 0 15px;
  }
}
.project-section__active .swiper-slide {
  width: auto !important;
}
@media only screen and (max-width: 1199px) {
  .project-section__active .swiper-slide {
    width: 309px !important;
  }
}
@media (max-width: 575px) {
  .project-section__active .swiper-slide {
    width: 100% !important;
  }
}
.project-section__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}
.project-section__arrow {
  min-width: 56px;
  height: 56px;
  display: flex;
  color: #AEAEAE;
  align-items: center;
  border-radius: 500px;
  justify-content: center;
  background-color: var(--white);
  transition: all 0.3s ease-in-out;
}
.project-section__arrow:hover {
  color: var(--white);
  background-color: var(--primary);
}
.project-section__arrow i {
  font-size: 22px;
  line-height: 0.8;
}
.project-section__btn {
  gap: 32px;
  display: flex;
  margin: 0 auto;
  margin-top: 48px;
  max-width: 930px;
  align-items: center;
  justify-content: center;
}
@media only screen and (max-width: 991px) {
  .project-section__btn {
    margin-top: 30px;
  }
}
@media (max-width: 575px) {
  .project-section__btn {
    display: none;
  }
}
.project-section__pagination {
  gap: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.project-section__pagination::before {
  content: "";
  max-width: 300px;
  width: 100%;
  height: 2px;
  display: inline-block;
  background-color: #C9C9C8;
}
@media only screen and (max-width: 767px) {
  .project-section__pagination::before {
    display: none;
  }
}
.project-section__pagination::after {
  content: "";
  max-width: 300px;
  width: 100%;
  height: 2px;
  display: inline-block;
  background-color: #C9C9C8;
}
@media only screen and (max-width: 767px) {
  .project-section__pagination::after {
    display: none;
  }
}
.project-section__pagination .swiper-pagination-bullet {
  min-width: 8px;
  height: 8px;
  opacity: 1;
  border-radius: 500px;
  margin: 0 4px !important;
  background-color: #AEAEAE;
}
.project-section__pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  margin: 0 6px !important;
  outline-offset: 1px;
  background-color: var(--primary);
  outline: 1px solid var(--primary);
}
.project-section__tab {
  margin: 0 auto;
  padding-bottom: 16px;
  margin-bottom: 48px;
  max-width: 864px;
  border-bottom: 1px solid #E3E3E3;
}
@media only screen and (max-width: 991px) {
  .project-section__tab {
    margin-bottom: 30px;
  }
}
.project-section__tab ul {
  gap: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media only screen and (max-width: 991px) {
  .project-section__tab ul {
    gap: 20px;
  }
}
.project-section__tab .nav-link {
  padding: 0;
  font-size: 18px;
  font-weight: 600;
  line-height: 26px;
  position: relative;
  color: var(--black);
  letter-spacing: 0.5px;
  font-family: var(--font_monts);
}
.project-section__tab .nav-link::before {
  content: "";
  bottom: -17px;
  right: 0;
  width: 0%;
  height: 1px;
  position: absolute;
  transition: all 0.3s ease-in-out;
  background-color: var(--primary);
}
@media only screen and (max-width: 991px) {
  .project-section__tab .nav-link::before {
    bottom: 0;
  }
}
.project-section__tab .nav-link.active {
  padding: 0;
  color: var(--primary);
  background-color: transparent;
}
.project-section__tab .nav-link.active::before {
  width: 100%;
  left: 0;
}

.pricing-plans-3__top {
  gap: 10px;
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  margin-bottom: 96px;
  justify-content: space-between;
}
@media only screen and (max-width: 1399px) {
  .pricing-plans-3__top {
    margin-bottom: 50px;
  }
}
@media only screen and (max-width: 991px) {
  .pricing-plans-3__top {
    margin-bottom: 40px;
  }
}
@media only screen and (max-width: 767px) {
  .pricing-plans-3__top {
    margin-bottom: 30px;
  }
}
.pricing-plans-3__top .section-title-3__wrapper {
  margin-bottom: 0;
}
.pricing-plans-3__toggle-button {
  z-index: 1;
  max-width: 262px;
  position: relative;
  padding: 12px 24px;
  border-radius: 500px;
  align-items: center;
  display: inline-flex;
  justify-content: center;
  background-color: var(--bg);
  transform: translateY(-35px);
}
@media only screen and (max-width: 991px) {
  .pricing-plans-3__toggle-button {
    transform: translateY(0px);
  }
}
.pricing-plans-3__toggle-button input,
.pricing-plans-3__toggle-button label {
  display: inline-block;
  vertical-align: middle;
  margin: 0 9px;
}
.pricing-plans-3__toggler {
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  color: #686866;
  letter-spacing: 0.5px;
  text-transform: lowercase;
  font-family: var(--font_monts);
}
.pricing-plans-3__toggler.active {
  color: var(--primary);
}
.pricing-plans-3__toggle {
  position: relative;
  display: inline-block;
  width: 32px;
  height: 18px;
}
.pricing-plans-3__toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}
.pricing-plans-3__toggle input:checked + .switcher::before {
  -webkit-transform: translateX(11px) translateY(-50%);
  transform: translateX(11px) translateY(-50%);
}
.pricing-plans-3__toggle .switcher {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 32px;
  height: 18px;
  cursor: pointer;
  position: absolute;
  border-radius: 500px;
  background-color: var(--primary);
  -webkit-transform: translate(0px, 0px);
  transform: translate(0px, 0px);
  -webkit-transition: 0.6s ease;
  transition: 0.6s ease;
}
.pricing-plans-3__toggle .switcher::before {
  content: "";
  top: 50%;
  left: 4px;
  width: 13px;
  height: 14px;
  transition: 0.4s;
  position: absolute;
  border-radius: 500px;
  -webkit-transition: 0.4s;
  transform: translateY(-50%);
  background-color: var(--white);
  -webkit-box-shadow: 0px 2px 2px rgba(30, 30, 30, 0.2);
  box-shadow: 0px 2px 2px rgba(30, 30, 30, 0.2);
}
.pricing-plans-3__card {
  padding: 40px;
  border-radius: 16px;
  background-color: var(--bg);
  border: 1px solid var(--bg);
  transition: all 0.3s ease-in-out;
}
@media only screen and (max-width: 1399px) {
  .pricing-plans-3__card {
    padding: 30px;
  }
}
@media only screen and (max-width: 1199px) {
  .pricing-plans-3__card {
    padding: 20px;
  }
}
.pricing-plans-3__card:hover {
  border-color: var(--primary);
}
.pricing-plans-3__wrap {
  display: flex;
  align-items: start;
  justify-content: space-between;
}
@media (max-width: 575px) {
  .pricing-plans-3__wrap {
    gap: 20px;
    flex-wrap: wrap;
  }
}
.pricing-plans-3__title {
  font-weight: 600;
  font-size: 20px;
  line-height: 28px;
  letter-spacing: 1px;
  color: var(--black);
  font-family: var(--font_monts);
}
.pricing-plans-3__dec {
  font-weight: 400;
  font-size: 14px;
  max-width: 276px;
  line-height: 20px;
  margin-top: 8px;
  padding-bottom: 24px;
  margin-bottom: 44px;
  color: var(--secondary);
  font-family: var(--font_jakarta);
  border-bottom: 1px solid rgba(201, 201, 200, 0.2392156863);
}
@media (max-width: 575px) {
  .pricing-plans-3__dec {
    padding-bottom: 20px;
    margin-bottom: 25px;
  }
}
.pricing-plans-3__price h2 {
  display: flex;
  align-items: end;
  font-weight: 700;
  font-size: 48px;
  line-height: 56px;
  letter-spacing: 0.5px;
  color: var(--primary);
  font-family: var(--font_monts);
}
.pricing-plans-3__price h2 span:last-of-type {
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.5px;
  color: var(--secondary);
  transform: translateY(-5px);
}
.pricing-plans-3__list {
  max-width: 255px;
  width: 100%;
  list-style: none;
}
@media only screen and (max-width: 1199px) {
  .pricing-plans-3__list {
    max-width: 200px;
  }
}
.pricing-plans-3__list li {
  gap: 13px;
  display: flex;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  align-items: center;
  margin-bottom: 20px;
  color: var(--black);
  font-family: var(--font_jakarta);
}
.pricing-plans-3__list li:last-of-type {
  margin-bottom: 0;
}
.pricing-plans-3__list li i {
  font-size: 14px;
  color: var(--primary);
}
.pricing-plans-3__btn {
  margin-top: 48px;
}
@media only screen and (max-width: 1199px) {
  .pricing-plans-3__btn {
    margin-top: 35px;
  }
}
.pricing-plans-3__btn .rr-btn {
  width: 100%;
  padding: 11px 37.15px;
  background-color: transparent;
  border: 1px solid var(--primary);
}
.pricing-plans-3__btn .rr-btn .btn-wrap .text-one {
  color: var(--primary);
}
.pricing-plans-3__btn .rr-btn:hover::before {
  background-color: var(--primary);
}

.testimonial-section__wrapper {
  margin: 0 24px;
  position: relative;
  border-radius: 32px;
  background: linear-gradient(90deg, #004FFC 0%, #0E0E0C 100%);
}
@media only screen and (max-width: 767px) {
  .testimonial-section__wrapper {
    margin: 0;
  }
}
.testimonial-section__shape {
  top: 0;
  left: 0;
  position: absolute;
}
.testimonial-section__author .about-3__author {
  gap: 12px;
  max-width: fit-content;
  transform: rotate(90deg) translate(192px, 142px);
}
.testimonial-section__author .about-3__author .text p {
  font-weight: 600;
  font-size: 18px;
  line-height: 26px;
  color: var(--white);
  letter-spacing: 0.5px;
  max-width: 176px;
  font-family: var(--font_monts);
}
.testimonial-section__wrap {
  max-width: 1144px;
  margin: 0 auto;
}
.testimonial-section__top {
  margin-left: -47px;
  margin-bottom: -125px;
  transform: translateY(15px);
}
@media only screen and (max-width: 1399px) {
  .testimonial-section__top {
    margin-left: 0px;
    text-align: center;
    margin-bottom: 40px;
    transform: translateY(0px);
  }
}
@media only screen and (max-width: 1199px) {
  .testimonial-section__top {
    margin-bottom: 30px;
  }
}
.testimonial-section__item {
  display: flex;
  align-items: end;
}
@media only screen and (max-width: 767px) {
  .testimonial-section__item {
    flex-wrap: wrap;
  }
}
@media (max-width: 575px) {
  .testimonial-section__thumb {
    width: 100%;
  }
}
.testimonial-section__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px 16px 0 0;
}
@media only screen and (max-width: 767px) {
  .testimonial-section__thumb img {
    max-height: 300px;
  }
}
@media (max-width: 575px) {
  .testimonial-section__thumb img {
    max-height: 100%;
  }
}
.testimonial-section__content {
  padding: 40px;
  max-width: 764px;
  width: 100%;
  border-radius: 0 16px 0 0;
  background-color: var(--white);
}
@media only screen and (max-width: 991px) {
  .testimonial-section__content {
    padding: 20px;
  }
}
@media only screen and (max-width: 767px) {
  .testimonial-section__content {
    border-radius: 0 16px 16px 16px;
  }
}
@media (max-width: 575px) {
  .testimonial-section__content {
    padding: 20px 15px;
    border-radius: 0 0 16px 16px;
  }
}
.testimonial-section__dec {
  font-size: 20px;
  font-weight: 600;
  max-width: 667px;
  line-height: 28px;
  letter-spacing: 1px;
  color: var(--black);
  padding-bottom: 32px;
  margin-bottom: 24px;
  font-family: var(--font_monts);
  border-bottom: 1px solid rgba(201, 201, 200, 0.24);
}
@media only screen and (max-width: 991px) {
  .testimonial-section__dec {
    font-size: 16px;
    padding-bottom: 20px;
    margin-bottom: 20px;
  }
}
@media (max-width: 575px) {
  .testimonial-section__dec {
    font-size: 15px;
    padding-bottom: 15px;
    margin-bottom: 15px;
  }
}
.testimonial-section__admin {
  gap: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.testimonial-section__admin .name {
  font-size: 20px;
  font-weight: 600;
  line-height: 28px;
  margin-bottom: 2px;
  letter-spacing: 1px;
  color: var(--black);
  font-family: var(--font_monts);
}
.testimonial-section__admin .position {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: var(--secondary);
  font-family: var(--font_jakarta);
}
@media (max-width: 575px) {
  .testimonial-section__admin .position {
    font-size: 15px;
  }
}
@media only screen and (max-width: 1399px) {
  .testimonial-section__button {
    gap: 20px;
    display: flex;
    margin-top: 30px;
    align-items: center;
    justify-content: center;
  }
}
.testimonial-section__arrow {
  left: 15px;
  bottom: 0;
  width: 88px;
  height: 88px;
  display: flex;
  cursor: pointer;
  position: absolute;
  align-items: center;
  justify-content: center;
  border-radius: 8px 0 0 8px;
  background-color: var(--white);
  transition: all 0.3s ease-in-out;
}
@media only screen and (max-width: 1399px) {
  .testimonial-section__arrow {
    left: auto;
    position: inherit;
    border-radius: 500px;
  }
}
@media only screen and (max-width: 1199px) {
  .testimonial-section__arrow {
    width: 50px;
    height: 50px;
  }
}
.testimonial-section__arrow-next {
  right: 16px;
  left: auto;
  border-radius: 0 8px 8px 0;
}
@media only screen and (max-width: 1399px) {
  .testimonial-section__arrow-next {
    right: auto;
    border-radius: 500px;
  }
}
.testimonial-section__arrow i {
  font-size: 32px;
  line-height: 0.8;
  color: #AEAEAE;
}
@media only screen and (max-width: 1199px) {
  .testimonial-section__arrow i {
    font-size: 20px;
  }
}
.testimonial-section__arrow:hover {
  color: var(--white);
  background-color: var(--primary);
}

.our-integrations__top .section-title-3__wrapper .sub-title {
  margin-bottom: 8px;
}
.our-integrations__top .section-title-3__wrapper .desc {
  max-width: 640px;
  margin: 0 auto;
}
.our-integrations__wrapper {
  position: relative;
  margin-top: -56px;
}
@media only screen and (max-width: 1399px) {
  .our-integrations__wrapper {
    margin-top: 55px;
    margin-bottom: 44px;
  }
}
@media only screen and (max-width: 991px) {
  .our-integrations__wrapper {
    margin-top: 30px;
    margin-bottom: 0px;
  }
}
@media only screen and (max-width: 991px) {
  .our-integrations__brand {
    gap: 15px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
  }
}
.our-integrations__item {
  top: 50%;
  left: 50%;
  width: 88px;
  height: 88px;
  display: flex;
  position: absolute;
  border-radius: 8px;
  align-items: center;
  justify-content: center;
  background-color: var(--bg);
  transform: translate(-50%, -50%);
}
@media only screen and (max-width: 1399px) {
  .our-integrations__item {
    top: auto;
    left: auto;
    transform: translate(0);
  }
}
@media only screen and (max-width: 1399px) {
  .our-integrations__item.item_1 {
    top: -44px;
    left: 45px;
  }
}
@media only screen and (max-width: 1399px) {
  .our-integrations__item.item_2 {
    top: 50%;
    left: 0px;
    transform: translateY(-50%);
  }
}
@media only screen and (max-width: 1399px) {
  .our-integrations__item.item_3 {
    bottom: -44px;
    left: 45px;
  }
}
@media only screen and (max-width: 1399px) {
  .our-integrations__item.item_4 {
    top: -44px;
    right: 45px;
  }
}
@media only screen and (max-width: 1399px) {
  .our-integrations__item.item_5 {
    top: 50%;
    right: 0px;
    transform: translateY(-50%);
  }
}
@media only screen and (max-width: 1399px) {
  .our-integrations__item.item_6 {
    bottom: -44px;
    right: 45px;
  }
}
@media only screen and (max-width: 991px) {
  .our-integrations__item.item_1, .our-integrations__item.item_2, .our-integrations__item.item_3, .our-integrations__item.item_4, .our-integrations__item.item_5, .our-integrations__item.item_6 {
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
    transform: translateY(0);
  }
}
@media only screen and (max-width: 991px) {
  .our-integrations__item {
    position: inherit;
  }
}
.our-integrations__btn {
  top: 50%;
  left: 50%;
  position: absolute;
  transform: translate(-50%, -50%);
}
@media only screen and (max-width: 991px) {
  .our-integrations__btn {
    top: auto;
    left: auto;
    margin: 0 auto;
    margin-top: 20px;
    position: inherit;
    max-width: fit-content;
    transform: translate(0);
  }
}
.our-integrations__btn .rr-btn {
  padding: 16px 45.45px;
}

/* === blog-3 (index 03) === */
.blog-3 .section-title-3__wrapper {
  z-index: 2;
  display: flex;
  align-items: end;
  position: relative;
  margin-bottom: 48px;
  justify-content: space-between;
}
@media only screen and (max-width: 991px) {
  .blog-3 .section-title-3__wrapper {
    margin-bottom: 35px;
  }
}
@media only screen and (max-width: 767px) {
  .blog-3 .section-title-3__wrapper {
    flex-wrap: wrap;
    margin-bottom: 30px;
  }
}
.blog-3__item {
  border-radius: 16px;
  background: var(--white);
  padding: 32px 24px 24px 24px;
}
@media only screen and (max-width: 1199px) {
  .blog-3__item {
    padding: 20px 17px;
  }
}
.blog-3__content .title {
  font-size: 24px;
  font-weight: 700;
  line-height: 32px;
  margin-bottom: 24px;
  letter-spacing: 0.5px;
}
@media only screen and (max-width: 1399px) {
  .blog-3__content .title {
    font-size: 22px;
    line-height: 30px;
  }
}
@media only screen and (max-width: 1199px) {
  .blog-3__content .title {
    font-size: 18px;
    line-height: 27px;
    margin-bottom: 20px;
  }
}
.blog-3__meta {
  gap: 24px;
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin-bottom: 12px;
  align-items: center;
}
.blog-3__meta li {
  gap: 7px;
  display: flex;
  font-size: 16px;
  color: #646463;
  font-weight: 400;
  line-height: 24px;
  align-items: center;
}
.blog-3__meta li i {
  color: #004FFC;
}
.blog-3__media {
  overflow: hidden;
  border-radius: 8px;
  position: relative;
}
.blog-3__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease-in-out;
}
.blog-3__media:hover img {
  transform: scale(1.1);
}
.blog-3__meta-list {
  z-index: 2;
  right: 24px;
  bottom: 24px;
  list-style: none;
  text-align: right;
  position: absolute;
}
.blog-3__meta-list li {
  font-size: 16px;
  font-weight: 400;
  color: #0E0E0C;
  line-height: 24px;
}
.blog-3__meta-list li:not(:last-child) {
  margin-bottom: 8px;
}
.blog-3__meta-list .tag {
  padding: 4px 12px;
  border-radius: 4px;
  display: inline-block;
  background: var(--white);
}
.blog-3__meta-list .date {
  padding: 4px 12px;
  border-radius: 4px;
  color: var(--white);
  background: #004FFC;
}

.cta-section__wrapper {
  z-index: 1;
  padding: 100px 0;
  position: relative;
  border-radius: 24px;
  background-color: var(--black);
}
@media only screen and (max-width: 1399px) {
  .cta-section__wrapper {
    margin: 0 20px;
    padding: 80px 0;
  }
}
@media only screen and (max-width: 1199px) {
  .cta-section__wrapper {
    margin: 0px;
    padding: 70px 0;
  }
}
@media (max-width: 575px) {
  .cta-section__wrapper {
    margin: 0px -15px;
  }
}
.cta-section__wrapper .section-title-3__wrapper .sub-title {
  margin-bottom: 8px;
}
.cta-section__wrapper .section-title-3__wrapper .title {
  margin-bottom: 16px;
}
@media only screen and (max-width: 991px) {
  .cta-section__wrapper .section-title-3__wrapper .title {
    font-size: 35px;
    line-height: 42px;
  }
}
@media only screen and (max-width: 767px) {
  .cta-section__wrapper .section-title-3__wrapper .title {
    font-size: 32px;
    line-height: 40px;
  }
}
.cta-section__dec {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  text-align: center;
  font-family: var(--font_jakarta);
  color: rgba(255, 255, 255, 0.8);
}
.cta-section__list ul {
  gap: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 575px) {
  .cta-section__list ul {
    gap: 15px;
    flex-wrap: wrap;
  }
}
.cta-section__list ul li {
  gap: 13px;
  display: flex;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  align-items: center;
  color: var(--white);
  font-family: var(--font_jakarta);
}
.cta-section__list ul li i {
  font-size: 15px;
}
.cta-section__btn {
  gap: 24px;
  display: flex;
  margin-top: 40px;
  margin-bottom: 16px;
  align-items: center;
  justify-content: center;
}
@media only screen and (max-width: 991px) {
  .cta-section__btn {
    gap: 15px;
    margin-top: 30px;
  }
}
@media (max-width: 575px) {
  .cta-section__btn {
    flex-wrap: wrap;
  }
}
.cta-section__btn .rr-btn {
  padding: 16px 40.64px;
}
.cta-section__btn .rr-btn:hover::before {
  background-color: var(--white);
}
.cta-section__btn .rr-btn:hover .btn-wrap .text-two {
  color: var(--black);
}
.cta-section__btn .rr-btn-3 {
  padding: 16px 44.86px;
  background-color: var(--white);
}
.cta-section__btn .rr-btn-3 .btn-wrap .text-one {
  color: var(--black);
}
.cta-section__btn .rr-btn-3:hover::before {
  background-color: var(--primary);
}
.cta-section__btn .rr-btn-3:hover .btn-wrap .text-two {
  color: var(--white);
}

.section-title-2__wrapper .sub-title {
  font-weight: 600;
  font-size: 18px;
  line-height: 26px;
  letter-spacing: 0.5px;
  font-family: var(--font_monts);
  background: linear-gradient(90deg, #384BFF 0%, #A62DF4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}
.section-title-2__wrapper .title {
  font-weight: 700;
  font-size: 48px;
  line-height: 56px;
  letter-spacing: 0.5px;
  color: #0E0E0C;
  font-family: var(--font_monts);
  margin-top: 16px;
}
@media only screen and (max-width: 1399px) {
  .section-title-2__wrapper .title {
    font-size: 43px;
    line-height: 53px;
  }
}
@media only screen and (max-width: 1199px) {
  .section-title-2__wrapper .title {
    font-size: 40px;
    line-height: 48px;
  }
  .section-title-2__wrapper .title br {
    display: none;
  }
}
@media (max-width: 575px) {
  .section-title-2__wrapper .title {
    font-size: 28px;
    line-height: 34px;
  }
}

.about-section-2 {
  position: relative;
  overflow: hidden;
}
.about-section-2 .shape-4 {
  position: absolute;
  left: 160px;
  top: 242px;
}
@media only screen and (max-width: 1919px) {
  .about-section-2 .shape-4 {
    left: 0;
  }
}
@media only screen and (max-width: 1199px) {
  .about-section-2 .shape-4 {
    display: none;
  }
}
.about-section-2 .shape-5 {
  position: absolute;
  right: 0;
  bottom: 0;
}
@media only screen and (max-width: 1199px) {
  .about-section-2 .shape-5 {
    display: none;
  }
}
.about-section-2__wrapper {
  display: grid;
  grid-template-columns: 1fr 644px;
  gap: 69px;
  position: relative;
  z-index: 1;
}
@media only screen and (max-width: 1399px) {
  .about-section-2__wrapper {
    grid-template-columns: 1fr 530px;
    gap: 40px;
  }
}
@media only screen and (max-width: 1199px) {
  .about-section-2__wrapper {
    grid-template-columns: 1fr 474px;
    gap: 40px;
  }
}
@media only screen and (max-width: 991px) {
  .about-section-2__wrapper {
    grid-template-columns: repeat(1, 1fr);
    gap: 40px;
  }
}
.about-section-2__content {
  margin: 40px 0;
}
@media only screen and (max-width: 991px) {
  .about-section-2__content {
    margin: 0px 0;
  }
}
.about-section-2__content .decs {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #646463;
  font-family: var(--font_jakarta);
  margin-top: 25px;
  margin-bottom: 30px;
}
@media only screen and (max-width: 1399px) {
  .about-section-2__content .decs br {
    display: none;
  }
}
.about-section-2__content .rr-btn-green {
  background: linear-gradient(90deg, #384BFF 0%, #A62DF4 100%);
  border-radius: 100px;
  padding: 18px 40px;
}
.about-section-2__content .rr-btn-green .btn-wrap .text-one {
  color: var(--white);
}
.about-section-2__list {
  margin-bottom: 48px;
}
.about-section-2__list ul li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 18px;
  line-height: 26px;
  letter-spacing: 0.5px;
  color: #0E0E0C;
  font-family: var(--font_monts);
  margin-bottom: 20px;
}
.about-section-2__list ul li i {
  background: #384BFF;
  height: 20px;
  width: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  color: #fff;
  font-size: 14px;
}
.about-section-2__box {
  background: #F6F6F6;
  border-radius: 17px;
  position: relative;
  overflow: hidden;
}
.about-section-2__box .shapes .shape-1 {
  position: absolute;
  top: 24px;
  left: 24px;
}
@media only screen and (max-width: 991px) {
  .about-section-2__box .shapes .shape-1 {
    position: inherit;
    padding: 16px;
  }
}
.about-section-2__box .shapes .shape-1 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #FFFFFF;
  box-shadow: -36.5714px -36.5714px 68.5714px rgba(56, 75, 255, 0.06);
  border-radius: 18.2857px;
}
.about-section-2__box .shapes .shape-2 {
  position: absolute;
  right: 16px;
  bottom: 16px;
}
.about-section-2__box .shapes .shape-2 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #FFFFFF;
  box-shadow: -36.5714px -36.5714px 68.5714px rgba(56, 75, 255, 0.06);
  border-radius: 18.2857px;
}
.about-section-2__box .shapes .shape-3 {
  position: absolute;
  left: -60px;
  bottom: 36px;
  max-width: 359px;
}
.about-section-2__box .shapes .shape-3 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #FFFFFF;
  box-shadow: -36.5714px -36.5714px 68.5714px rgba(56, 75, 255, 0.06);
  border-radius: 18.2857px;
}

/* === brand-1 (index 01) === */
.brand-2 {
  position: relative;
  margin-bottom: -70px;
}
.brand-2__inner {
  padding: 50px 0;
  background: linear-gradient(90deg, #384BFF 0%, #A62DF4 100%);
  border-radius: 16px;
}
.brand-2__active .swiper-wrapper {
  display: flex;
  column-gap: 100px;
  align-items: center;
  justify-content: space-between;
  transition-timing-function: linear;
}
@media only screen and (max-width: 991px) {
  .brand-2__active .swiper-wrapper {
    column-gap: 50px;
  }
}
.brand-2__active .swiper-wrapper .swiper-slide {
  width: auto;
}

.ai-features-2 .section-title-2__wrapper {
  text-align: center;
}
.ai-features-2__wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  flex-wrap: wrap;
  margin-top: 60px;
}
@media only screen and (max-width: 991px) {
  .ai-features-2__wrapper {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 50px;
  }
}
@media only screen and (max-width: 767px) {
  .ai-features-2__wrapper {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-top: 40px;
  }
}
@media (max-width: 575px) {
  .ai-features-2__wrapper {
    grid-template-columns: repeat(1, 1fr);
    gap: 10px;
  }
}
.ai-features-2__item {
  display: flex;
  background: #F6F6F6;
  backdrop-filter: blur(24px);
  border-radius: 12px;
  gap: 20px;
  align-items: center;
  padding: 24px 24px 24px 24px;
  transition: all 0.3s ease-in-out;
}
@media only screen and (max-width: 1199px) {
  .ai-features-2__item {
    padding: 20px 10px 20px 10px;
    gap: 15px;
  }
}
@media only screen and (max-width: 767px) {
  .ai-features-2__item {
    flex-wrap: wrap;
    gap: 15px;
  }
}
.ai-features-2__item .icon {
  background: linear-gradient(90deg, #384BFF 0%, #A62DF4 100%);
  border-radius: 8px;
  height: 80px;
  width: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 80px;
  min-height: 80px;
}
.ai-features-2__item .content .title {
  font-weight: 700;
  font-size: 24px;
  line-height: 32px;
  letter-spacing: 0.5px;
  color: #0E0E0C;
  transition: all 0.3s ease-in-out;
}
@media only screen and (max-width: 1399px) {
  .ai-features-2__item .content .title br {
    display: none;
  }
}
@media only screen and (max-width: 1199px) {
  .ai-features-2__item .content .title {
    font-size: 20px;
    line-height: 25px;
  }
}
.ai-features-2__item:hover {
  background: linear-gradient(90deg, #384BFF 0%, #A62DF4 100%);
  backdrop-filter: blur(24px);
  border-radius: 148px;
}
.ai-features-2__item:hover .content .title {
  color: #FFFFFF;
}

.work-section-2 {
  background: #F6F6F6;
  padding-top: 190px;
}
@media only screen and (max-width: 991px) {
  .work-section-2 {
    padding-top: 160px;
  }
}
@media only screen and (max-width: 991px) {
  .work-section-2 {
    padding-top: 150px;
  }
}
@media only screen and (max-width: 767px) {
  .work-section-2 {
    padding-top: 120px;
  }
}
.work-section-2__wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
@media only screen and (max-width: 991px) {
  .work-section-2__wrapper {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}
@media (max-width: 575px) {
  .work-section-2__wrapper {
    grid-template-columns: repeat(1, 1fr);
    gap: 30px;
  }
}
.work-section-2__item {
  background: #FFFFFF;
  border-radius: 16px;
  text-align: center;
  padding-bottom: 50px;
  padding-top: 67px;
  position: relative;
  transition: all 0.3s ease-in-out;
}
@media only screen and (max-width: 991px) {
  .work-section-2__item:last-child {
    margin-top: 40px;
  }
}
@media (max-width: 575px) {
  .work-section-2__item {
    margin-bottom: 40px;
  }
  .work-section-2__item:last-child {
    margin-top: 0px;
    margin-bottom: 0;
  }
}
.work-section-2__item .icon {
  background: linear-gradient(90deg, #384BFF 0%, #A62DF4 100%);
  box-shadow: 0px 8px 24px rgba(15, 4, 55, 0.1);
  border-radius: 8px;
  min-width: 88px;
  min-height: 88px;
  width: 88px;
  height: 88px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  position: relative;
  position: absolute;
  position: absolute;
  left: 50%;
  top: 0%;
  transform: translate(-50%, -50%);
  transition: all 0.3s ease-in-out;
}
.work-section-2__item .icon svg {
  color: #FFFFFF;
  transition: all 0.3s ease-in-out;
}
.work-section-2__item .icon .number {
  position: absolute;
  top: -11px;
  right: -10px;
}
.work-section-2__item .icon .number span {
  font-weight: 700;
  font-size: 16px;
  line-height: 21px;
  letter-spacing: 0.0025em;
  color: #FFFFFF;
  background: #384BFF;
  border: 1.5px solid #FFFFFF;
  border-radius: 66.6667px;
  height: 32px;
  width: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.work-section-2__item .content {
  text-align: center;
  padding: 0 10px;
}
.work-section-2__item .content .title {
  font-weight: 700;
  font-size: 24px;
  line-height: 32px;
  letter-spacing: 0.5px;
  color: #0E0E0C;
  margin-bottom: 12px;
  transition: all 0.2s ease-in-out;
}
.work-section-2__item .content .decs {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #646463;
  font-family: var(--font_jakarta);
  transition: all 0.3s ease-in-out;
}
@media only screen and (max-width: 1199px) {
  .work-section-2__item .content .decs br {
    display: none;
  }
}
.work-section-2__item:hover {
  background: linear-gradient(90deg, #384BFF 0%, #A62DF4 100%);
  border-radius: 16px;
}
.work-section-2__item:hover .icon {
  background: #FFFFFF;
}
.work-section-2__item:hover .icon svg {
  color: #384BFF;
}
.work-section-2__item:hover .content .title {
  color: #FFFFFF;
}
.work-section-2__item:hover .content .title a {
  color: #FFFFFF;
}
.work-section-2__item:hover .content .decs {
  color: #FFFFFF;
}
.work-section-2__top {
  display: grid;
  grid-template-columns: 474px 1fr 323px;
  align-items: end;
  margin-bottom: 85px;
}
@media only screen and (max-width: 1399px) {
  .work-section-2__top {
    grid-template-columns: 398px 1fr 323px;
    gap: 20px;
  }
}
@media only screen and (max-width: 1199px) {
  .work-section-2__top {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}
@media only screen and (max-width: 1199px) {
  .work-section-2__top {
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
  }
}
.work-section-2__top .content .decs {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #646463;
  font-family: var(--font_jakarta);
}
@media only screen and (max-width: 1399px) {
  .work-section-2__top .content .decs br {
    display: none;
  }
}
.work-section-2__users {
  display: flex;
  align-items: center;
  gap: 8px;
}
@media (max-width: 575px) {
  .work-section-2__users {
    flex-wrap: wrap;
  }
}
.work-section-2__users .avatars {
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 1199px) {
  .work-section-2__users .avatars {
    margin-left: 15px;
  }
}
.work-section-2__users .avatars img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  margin-left: -15px;
}
.work-section-2__users .user-text h3 {
  font-weight: 600;
  font-size: 18px;
  line-height: 26px;
  letter-spacing: 0.5px;
  color: #646463;
  font-family: var(--font_monts);
}

.hero-section-2__inner {
  background: #0E0E0C;
  border-radius: 0px;
  padding-top: 244px;
  padding-bottom: 170px;
  padding-left: 156px;
  padding-right: 300px;
  position: relative;
}
@media only screen and (max-width: 1919px) {
  .hero-section-2__inner {
    padding-left: 50px;
    padding-right: 50px;
  }
}
@media only screen and (max-width: 1199px) {
  .hero-section-2__inner {
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media only screen and (max-width: 991px) {
  .hero-section-2__inner {
    padding-top: 175px;
    padding-bottom: 100px;
  }
}
@media (max-width: 575px) {
  .hero-section-2__inner {
    padding-top: 130px;
    padding-bottom: 100px;
  }
}
.hero-section-2__inner .shapes .shape-1 {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  top: 0;
}
.hero-section-2__inner .shapes .shape-1 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-section-2__inner .shapes .shape-2 {
  position: absolute;
  bottom: 0;
  right: 0;
}
.hero-section-2__inner .shapes .shape-2 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-section-2__wrapper {
  display: grid;
  grid-template-columns: 787px 1fr;
  gap: 39px;
}
@media only screen and (max-width: 1399px) {
  .hero-section-2__wrapper {
    grid-template-columns: 610px 1fr;
  }
}
@media only screen and (max-width: 1199px) {
  .hero-section-2__wrapper {
    grid-template-columns: 554px 1fr;
  }
}
@media only screen and (max-width: 991px) {
  .hero-section-2__wrapper {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}
.hero-section-2__content .sub-title {
  font-weight: 600;
  font-size: 20px;
  line-height: 28px;
  letter-spacing: 1px;
  color: var(--white);
  font-family: var(--font_monts);
}
.hero-section-2__content .title {
  font-weight: 700;
  font-size: 72px;
  line-height: 80px;
  letter-spacing: 0.005em;
  opacity: 0.95;
  color: var(--white);
  font-family: var(--font_monts);
  margin-top: 18px;
  margin-bottom: 25px;
}
@media only screen and (max-width: 1199px) {
  .hero-section-2__content .title {
    font-size: 64px;
    line-height: 76px;
  }
}
@media only screen and (max-width: 991px) {
  .hero-section-2__content .title br {
    display: none;
  }
}
@media (max-width: 575px) {
  .hero-section-2__content .title {
    font-size: 35px;
    line-height: 41px;
  }
}
.hero-section-2__content .decs {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #FFFFFF;
  opacity: 0.8;
  font-family: var(--font_jakarta);
}
.hero-section-2__btn {
  display: flex;
  align-items: center;
  gap: 26px;
  flex-wrap: wrap;
  margin-top: 43px;
}
.hero-section-2__left .rr-btn-green {
  background: linear-gradient(90deg, #384BFF 0%, #A62DF4 100%);
  border-radius: 100px;
  padding: 18px 40.4px;
}
.hero-section-2__left .rr-btn-green::before {
  background: var(--green);
  color: var(--black);
}
.hero-section-2__left .rr-btn-green .btn-wrap .text-one {
  color: var(--white);
}
.hero-section-2__left .rr-btn-green .btn-wrap .text-two {
  color: var(--black);
}
.hero-section-2__right .rr-btn-green {
  background: transparent;
  border-radius: 100px;
  padding: 18px 37px;
  border: 1px solid #A62DF4;
}
.hero-section-2__right .rr-btn-green::before {
  background: linear-gradient(90deg, #384BFF 0%, #A62DF4 100%);
  color: var(--black);
}
.hero-section-2__right .rr-btn-green .btn-wrap .text-one {
  color: var(--white);
}
.hero-section-2__right .rr-btn-green .btn-wrap .text-two {
  color: var(--black);
}
.hero-section-2__right .rr-btn-green:hover {
  border-color: transparent;
}
.hero-section-2__wrap {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-top: 65px;
}
@media only screen and (max-width: 991px) {
  .hero-section-2__wrap {
    margin-top: 40px;
  }
}
@media only screen and (max-width: 767px) {
  .hero-section-2__wrap {
    gap: 20px;
    flex-wrap: wrap;
  }
}
.hero-section-2__meta {
  display: flex;
  align-items: center;
  gap: 11px;
}
.hero-section-2__meta .content h4 {
  font-weight: 600;
  font-size: 18px;
  line-height: 26px;
  letter-spacing: 0.5px;
  color: var(--white);
}
.hero-section-2__box {
  position: relative;
  z-index: 1;
}
.hero-section-2__thumb {
  position: relative;
  z-index: 1;
}
.hero-section-2__thumb img {
  position: absolute;
}
@media only screen and (max-width: 991px) {
  .hero-section-2__thumb img {
    display: none;
  }
}
.hero-section-2__thumb img:first-child {
  top: 30px;
  border-radius: 8.73px;
  left: 30px;
}
@media only screen and (max-width: 1199px) {
  .hero-section-2__thumb img:first-child {
    left: 0;
  }
}
.hero-section-2__thumb img:nth-child(2) {
  right: 133px;
  top: 0;
  border-radius: 8px;
}
@media only screen and (max-width: 1199px) {
  .hero-section-2__thumb img:nth-child(2) {
    top: -50px;
  }
}
.hero-section-2__thumb img:nth-child(3) {
  right: 8px;
  top: 94px;
  border-radius: 8px;
}
.hero-section-2__thumb img:nth-child(4) {
  left: 132px;
  top: 315px;
  border-radius: 8px;
}
.hero-section-2__thumb img:nth-child(5) {
  left: 0;
  top: 414px;
  border-radius: 8px;
}
@media only screen and (max-width: 1919px) {
  .hero-section-2__thumb img:nth-child(5) {
    top: 389px;
  }
}
.hero-section-2__img-box {
  position: relative;
  z-index: 1;
}
.hero-section-2__img-box .shape-3 {
  position: absolute;
  bottom: -100px;
  left: 5px;
}
@media only screen and (max-width: 991px) {
  .hero-section-2__img-box .shape-3 {
    display: none;
  }
}
.hero-section-2__item-box {
  position: absolute;
  bottom: -22px;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
@media only screen and (max-width: 991px) {
  .hero-section-2__item-box {
    position: inherit;
  }
}
.hero-section-2__item a {
  padding: 11px 15px;
  background: rgba(255, 255, 255, 0.08);
  mix-blend-mode: normal;
  border-top: 1px solid rgba(201, 201, 200, 0.24);
  border-radius: 100px;
  margin-top: 0;
  display: flex;
  align-items: center;
}
.hero-section-2__item a img {
  margin-right: 10px;
}
.hero-section-2__item span {
  font-weight: 600;
  font-size: 12px;
  line-height: 18px;
  text-transform: uppercase;
  color: #FFFFFF;
  font-family: var(--font_monts);
}

.cta-section-2__inner {
  background: linear-gradient(90deg, #384BFF 0%, #A62DF4 100%);
  padding: 100px 0;
}
.cta-section-2__wrapper {
  display: grid;
  grid-template-columns: 1fr 568px;
}
@media only screen and (max-width: 1199px) {
  .cta-section-2__wrapper {
    grid-template-columns: 1fr 432px;
    gap: 30px;
  }
}
@media only screen and (max-width: 991px) {
  .cta-section-2__wrapper {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}
.cta-section-2__content .sub-title {
  font-weight: 600;
  font-size: 18px;
  line-height: 26px;
  letter-spacing: 0.5px;
  color: #FFFFFF;
  font-family: var(--font_monts);
}
.cta-section-2__content .title {
  font-weight: 700;
  font-size: 48px;
  line-height: 56px;
  letter-spacing: 0.5px;
  color: #FFFFFF;
  font-family: var(--font_monts);
  margin-top: 15px;
}
@media only screen and (max-width: 1199px) {
  .cta-section-2__content .title br {
    display: none;
  }
}
@media only screen and (max-width: 767px) {
  .cta-section-2__content .title {
    font-size: 41px;
    line-height: 46px;
  }
}
@media (max-width: 575px) {
  .cta-section-2__content .title {
    font-size: 35px;
    line-height: 37px;
  }
}
.cta-section-2__item .content .decs {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #FFFFFF;
  font-family: var(--font_jakarta);
  max-width: 450px;
}
@media only screen and (max-width: 991px) {
  .cta-section-2__item .content .decs {
    max-width: 100%;
  }
}
.cta-section-2__btn {
  margin-top: 37px;
}
.cta-section-2__btn .rr-btn-green {
  background: #FFFFFF;
  border-radius: 100px;
  padding: 18px 23px;
}
.cta-section-2__btn .rr-btn-green .text-one {
  color: #384BFF;
}

.pricing-section-2 {
  background: #F6F6F6;
}
.pricing-section-2__wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px;
  background: #FFFFFF;
  border-radius: 24px 0px 0px 24px;
}
@media only screen and (max-width: 991px) {
  .pricing-section-2__wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (max-width: 767px) {
  .pricing-section-2__wrapper {
    grid-template-columns: repeat(1, 1fr);
  }
}
.pricing-section-2__price h2 {
  font-weight: 700;
  font-size: 40px;
  line-height: 48px;
  letter-spacing: 0.5px;
  color: #384BFF;
  font-family: var(--font_monts);
}
.pricing-section-2__price h2 span:last-child {
  font-weight: 600;
  font-size: 18px;
  line-height: 26px;
  letter-spacing: 0.5px;
  color: #646463;
  font-family: var(--font_monts);
  display: inline-block;
}
.pricing-section-2__content .title {
  font-weight: 700;
  font-size: 24px;
  line-height: 32px;
  letter-spacing: 0.5px;
  color: #0E0E0C;
  font-family: var(--font_monts);
  margin-top: 20px;
  margin-bottom: 10px;
}
.pricing-section-2__content .decs {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #646463;
  font-family: var(--font_jakarta);
  margin-bottom: 22px;
}
.pricing-section-2__list ul li {
  list-style: none;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #0E0E0C;
  font-family: var(--font_jakarta);
  margin-bottom: 20px;
}
.pricing-section-2__list ul li:last-child {
  margin-bottom: 0;
}
.pricing-section-2__list ul li i {
  color: #384BFF;
  font-size: 14px;
  margin-right: 5px;
}
.pricing-section-2__btn {
  width: 100%;
  margin-top: 30px;
}
.pricing-section-2__btn .rr-btn-green {
  background: linear-gradient(90deg, #384BFF 0%, #A62DF4 100%);
  border-radius: 100px;
  width: 100%;
  padding: 10px 31px;
}
.pricing-section-2__btn .rr-btn-green .text-one {
  color: var(--white);
}
.pricing-section-2__item {
  padding: 40px;
}
@media (max-width: 575px) {
  .pricing-section-2__item {
    padding: 20px;
  }
}
.pricing-section-2__item-2 {
  background: linear-gradient(90deg, #384BFF 0%, #A62DF4 100%);
  border-radius: 16px;
  padding-right: 0;
  margin-top: -33px;
  margin-bottom: -33px;
  padding-left: 0;
  padding-top: 40px;
  padding-bottom: 40px;
}
@media only screen and (max-width: 767px) {
  .pricing-section-2__item-2 {
    margin-top: 0;
  }
}
.pricing-section-2__item-2 .pricing-section-2__price h2 {
  font-weight: 700;
  font-size: 40px;
  line-height: 48px;
  letter-spacing: 0.5px;
  color: #FFFFFF;
  font-family: var(--font_monts);
}
.pricing-section-2__item-2 .pricing-section-2__price h2 span {
  color: #FFFFFF;
}
.pricing-section-2__item-2 .pricing-section-2__content {
  border-bottom: 1px solid rgba(201, 201, 200, 0.24);
  padding-left: 40px;
}
.pricing-section-2__item-2 .pricing-section-2__content .title {
  color: #FFFFFF;
}
.pricing-section-2__item-2 .pricing-section-2__content .decs {
  color: #FFFFFF;
  opacity: 0.8;
}
.pricing-section-2__item-2 .pricing-section-2__list {
  padding-left: 40px;
  margin-top: 30px;
}
.pricing-section-2__item-2 .pricing-section-2__list ul li {
  color: #FFFFFF;
}
.pricing-section-2__item-2 .pricing-section-2__list ul li i {
  color: #FFFFFF;
}
.pricing-section-2__item-2 .pricing-section-2__btn {
  width: 100%;
  margin-top: 30px;
  padding: 0 40px;
}
.pricing-section-2__item-2 .pricing-section-2__btn .rr-btn-green {
  background: #FFFFFF;
  border-radius: 100px;
  width: 100%;
  padding: 10px 31px;
  color: #384BFF;
}
.pricing-section-2__item-2 .pricing-section-2__btn .rr-btn-green .text-one {
  color: #0E0E0C;
}
.pricing-section-2__inner {
  display: flex;
  align-items: end;
  justify-content: space-between;
  margin-bottom: 80px;
  border-bottom: 1px solid rgba(201, 201, 200, 0.24);
  padding-bottom: 48px;
}
@media only screen and (max-width: 1199px) {
  .pricing-section-2__inner {
    flex-wrap: wrap;
    gap: 30px;
  }
}
.pricing-section-2__inner .pricing-2__toggle-button {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #FFFFFF;
  border: 2px solid rgba(201, 201, 200, 0.24);
  border-radius: 100px;
  justify-content: flex-start;
  padding: 14px 24px;
}
@media (max-width: 575px) {
  .pricing-section-2__inner .pricing-2__toggle-button {
    padding: 14px 8px;
  }
}
@media (max-width: 767px) {
  .pricing-section-2__inner .pricing-2__toggle-button {
    justify-content: center;
  }
}
.pricing-section-2__inner .pricing-2__toggle-button .pricing-2__toggler {
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: #0E0E0C;
  cursor: pointer;
  font-family: var(--font_monts);
  text-transform: uppercase;
  transition: color 0.3s ease;
}
.pricing-section-2__inner .pricing-2__toggle-button .pricing-2__toggler.active {
  color: #22c55e;
}
.pricing-section-2__inner .pricing-2__toggle-button .pricing-2__toggler strong {
  font-weight: 600;
  font-size: 14px;
  line-height: 20px;
  color: #384BFF;
  font-family: var(--font_monts);
}
.pricing-section-2__inner .pricing-2__toggle-button .pricing-2__toggle {
  position: relative;
  display: inline-block;
  width: 48px;
  height: 24px;
}
.pricing-section-2__inner .pricing-2__toggle-button .pricing-2__toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}
.pricing-section-2__inner .pricing-2__toggle-button .pricing-2__toggle .switcher {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #F6F6F6;
  border-radius: 34px;
  transition: 0.4s;
}
.pricing-section-2__inner .pricing-2__toggle-button .pricing-2__toggle .switcher:before {
  position: absolute;
  content: "";
  height: 20px;
  width: 20px;
  left: 3px;
  bottom: 2px;
  background: linear-gradient(90deg, #384BFF 0%, #A62DF4 100%);
  border-radius: 50%;
  transition: 0.4s;
}
.pricing-section-2__inner .pricing-2__toggle-button .pricing-2__toggle input:checked + .switcher {
  background: #F6F6F6;
}
.pricing-section-2__inner .pricing-2__toggle-button .pricing-2__toggle input:checked + .switcher:before {
  transform: translateX(22px);
}

.features-section-2 {
  background: #0E0E0C;
  border-radius: 0px;
  position: relative;
  /* HOVER EFFECT */
  /* ACTIVE (CLICKED) EFFECT */
  /* SHOW CONTENT WHEN ACTIVE */
}
.features-section-2 .shapes-main .shape {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
}
.features-section-2 .shapes-main .shape img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.features-section-2 .shapes-main .shape-2 {
  position: absolute;
  right: 0;
  bottom: 0;
}
.features-section-2 .shapes-main .shape-3 {
  position: absolute;
  left: 38%;
  top: 40px;
}
.features-section-2__thumb-box {
  background: #F6F6F6;
  box-shadow: 0px 28.8889px 120.37px rgba(18, 113, 224, 0.06);
  border-radius: 19.2593px;
  height: 635px;
  position: relative;
  margin-right: 20px;
}
.features-section-2__thumb-box .shapes .shape-1 {
  left: 38px;
  top: 38px;
  position: absolute;
  height: 336px;
}
.features-section-2__thumb-box .shapes .shape-1 img {
  max-width: 264px;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.features-section-2__thumb-box .shapes .shape-2 {
  right: 48px;
  top: 38px;
  position: absolute;
}
.features-section-2__thumb-box .shapes .shape-2 img {
  max-width: 325px;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.features-section-2__thumb-box .shapes .shape-4 {
  right: 28px;
  bottom: 88px;
  position: absolute;
  z-index: 1;
}
.features-section-2__thumb-box .shapes .shape-4 img {
  max-width: 270px;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.features-section-2__thumb-box .shapes .shape-3 {
  bottom: 30px;
  left: 28px;
  position: absolute;
}
.features-section-2__thumb-box .shapes .shape-3 img {
  max-width: 325px;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.features-section-2 .features-item {
  margin-bottom: 30px;
  position: relative;
  cursor: pointer;
}
.features-section-2 .circle {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #FFFFFF;
  transform: rotate(90deg);
  border: 3px solid #884bff;
  position: absolute;
  left: -48px;
  top: 5px;
  transition: 0.3s;
}
.features-section-2 .features-item:hover .circle {
  background: linear-gradient(90deg, #384BFF 0%, #A62DF4 100%);
  transform: rotate(90deg);
}
.features-section-2 .features-item.active .circle {
  background: #884bff;
  border-color: #fff;
  transform: scale(1.2);
}
.features-section-2 .content h3 {
  font-weight: 600;
  font-size: 18px;
  line-height: 26px;
  letter-spacing: 0.5px;
  color: #FFFFFF;
  margin: 0;
}
.features-section-2 .content p {
  margin-top: 8px;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #FFFFFF;
  opacity: 0.7;
  display: none;
  max-width: 547px;
}
.features-section-2 .features-item.active p {
  display: block;
}
.features-section-2__item-box {
  padding-left: 40px;
  position: relative;
}
.features-section-2__item-box::before {
  position: absolute;
  content: "";
  left: -2px;
  top: 6px;
  height: 171px;
  width: 2px;
  background-color: #C9C9C8;
}
.features-section-2__inner {
  margin-top: 40px;
  position: relative;
  z-index: 1;
}
.features-section-2__info {
  margin-bottom: 32px;
}
.features-section-2__info .sub-title {
  font-weight: 600;
  font-size: 18px;
  line-height: 26px;
  letter-spacing: 0.5px;
  color: #FFFFFF;
}
.features-section-2__info .title {
  font-weight: 700;
  font-size: 48px;
  line-height: 56px;
  letter-spacing: 0.5px;
  color: #FFFFFF;
  margin-top: 16px;
  margin-bottom: 18px;
}
@media only screen and (max-width: 1399px) {
  .features-section-2__info .title {
    font-size: 44px;
    line-height: 50px;
  }
  .features-section-2__info .title br {
    display: none;
  }
}
@media (max-width: 575px) {
  .features-section-2__info .title {
    font-size: 26px;
    line-height: 32px;
  }
}
.features-section-2__info .decs {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #FFFFFF;
  opacity: 0.7;
}
@media only screen and (max-width: 1399px) {
  .features-section-2__info .decs br {
    display: none;
  }
}
.features-section-2__btn {
  margin-top: 48px;
}
.features-section-2__btn .rr-btn-green {
  background: linear-gradient(90deg, #384BFF 0%, #A62DF4 100%);
  border-radius: 100px;
  padding: 18px 41px;
}
.features-section-2__btn .rr-btn-green::before {
  background: var(--green);
}
.features-section-2__btn .rr-btn-green .btn-wrap .text-one {
  color: var(--white);
}
.features-section-2__btn .rr-btn-green .btn-wrap .text-two {
  color: var(--black);
}

.Testimonial-section-2 {
  background: #0E0E0C;
  border-radius: 0px;
  position: relative;
}
.Testimonial-section-2 .shape-1 {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}
.Testimonial-section-2 .shape-1 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.Testimonial-section-2 .shape-2 {
  position: absolute;
  right: 24px;
  bottom: 0;
}
.Testimonial-section-2 .work-section-2__info {
  text-align: center;
  margin-bottom: 40px;
}
.Testimonial-section-2 .work-section-2__info .title {
  color: #FFFFFF;
}
.Testimonial-section-2__item {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}
.Testimonial-section-2__item .arrow {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: absolute;
  left: -24px;
  right: -24px;
  top: 50%;
  z-index: 1;
}
@media only screen and (max-width: 991px) {
  .Testimonial-section-2__item .arrow {
    left: -14px;
    right: -14px;
  }
}
@media only screen and (max-width: 767px) {
  .Testimonial-section-2__item .arrow {
    display: none;
  }
}
.Testimonial-section-2__item .arrow .rr-button {
  background: #FFFFFF;
  border-radius: 100px;
  height: 48px;
  width: 48px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease-in-out;
}
.Testimonial-section-2__item .arrow .rr-button i {
  color: #1C1C28;
  transition: all 0.3s ease-in-out;
}
.Testimonial-section-2__item .arrow .rr-button:hover {
  background: linear-gradient(90deg, #384BFF 0%, #A62DF4 100%);
}
.Testimonial-section-2__item .arrow .rr-button:hover i {
  color: #FFFFFF;
}
.Testimonial-section-2__card {
  text-align: center;
  background: #F6F6F6;
  border-radius: 16px;
  position: relative;
  padding-top: 65px;
  padding-bottom: 36px;
  margin-top: 45px;
}
.Testimonial-section-2__content .decs {
  font-weight: 600;
  font-size: 20px;
  line-height: 28px;
  letter-spacing: 1px;
  color: #13054D;
}
.Testimonial-section-2__content .author-details {
  margin-top: 24px;
}
.Testimonial-section-2__content .author-details h4 {
  font-weight: 600;
  font-size: 20px;
  line-height: 28px;
  letter-spacing: 1px;
  color: #13054D;
}
.Testimonial-section-2__content .author-details h4 span {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #646463;
  font-family: var(--font_jakarta);
}
.Testimonial-section-2__author-box {
  margin-top: -44px;
}
.Testimonial-section-2__author-box .author-thumb {
  position: absolute;
  left: 50%;
  top: -44px;
  transform: translate(-50%);
}
.Testimonial-section-2__author-box .author-stare {
  margin-top: 45px;
  margin-bottom: 16px;
}
.Testimonial-section-2__author-box .author-stare ul {
  display: flex;
  align-items: center;
  gap: 5px;
  justify-content: center;
}
.Testimonial-section-2__author-box .author-stare ul li {
  color: #F5BD13;
  font-size: 15px;
  list-style: none;
}
.Testimonial-section-2__inner {
  position: relative;
}
.Testimonial-section-2__inner .author-thumb-box .img-1 {
  position: absolute;
  left: -5px;
  top: 59%;
}
.Testimonial-section-2__inner .author-thumb-box .img-2 {
  position: absolute;
  left: 108px;
  top: 36%;
}
.Testimonial-section-2__inner .author-thumb-box .img-3 {
  position: absolute;
  right: 108px;
  top: 36%;
}
.Testimonial-section-2__inner .author-thumb-box .img-4 {
  position: absolute;
  right: -5px;
  top: 59%;
}

.faq-2-info {
  display: flex;
  align-items: end;
  justify-content: space-between;
  border-bottom: 1px solid rgba(201, 201, 200, 0.24);
  padding-bottom: 48px;
  gap: 20px;
  flex-wrap: wrap;
}
.faq-2-btn .rr-btn-green {
  background: linear-gradient(90deg, #384BFF 0%, #A62DF4 100%);
  border-radius: 100px;
  padding: 18px 37.5px;
}
.faq-2-btn .rr-btn-green .text-one {
  color: #FFFFFF;
}
.faq-2-area .section-title-wrapper {
  display: block;
}
.faq-2-area .section-title-wrapper .title-wrapper {
  margin-bottom: 35px;
}
.faq-2-area .section-title-wrapper .title-wrapper .section-title {
  font-weight: 700;
  font-size: 30px;
  line-height: 35px;
  color: var(--primary);
  font-family: var(--font_public);
  margin-bottom: 15px;
}
@media (max-width: 575px) {
  .faq-2-area .section-title-wrapper .title-wrapper .section-title {
    font-size: 28px;
    line-height: 32px;
  }
}
.faq-2-area .section-title-wrapper .title-wrapper .decs {
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  color: var(--secondary);
  font-family: var(--font_inter);
}
.faq-2-area .accordion {
  counter-reset: accordion;
  margin-top: 48px;
}
.dark .faq-2-area .accordion {
  border-color: #292929;
}
.faq-2-area .accordion-item {
  background-color: transparent;
  border: 1px solid transparent;
  background: #F6F6F6;
  border-radius: 16px;
  position: relative;
  transition: all 0.5s;
  margin-bottom: 24px;
}
.faq-2-area .accordion-item:last-child {
  margin-bottom: 0;
}
.faq-2-area .accordion-item:has(.accordion-button:not(.collapsed)) {
  border-color: #384BFF;
}
.faq-2-area .accordion-item .title {
  display: flex;
  font-weight: 600;
  font-size: 20px;
  line-height: 28px;
  letter-spacing: 1px;
  color: #0E0E0C;
  font-family: var(--font_monts);
  gap: 148px;
}
@media only screen and (max-width: 1199px) {
  .faq-2-area .accordion-item .title {
    gap: 70px;
  }
}
@media only screen and (max-width: 991px) {
  .faq-2-area .accordion-item .title {
    gap: 30px;
  }
}
@media only screen and (max-width: 767px) {
  .faq-2-area .accordion-item .title {
    gap: 20px;
  }
}
.faq-2-area .accordion-item .title span {
  background: #D9D9D9;
  border-radius: 4px;
  height: 16px;
  width: 16px;
  min-width: 16px;
  min-height: 16px;
}
@media (max-width: 575px) {
  .faq-2-area .accordion-item .title span {
    display: none;
  }
}
@media (max-width: 575px) {
  .faq-2-area .accordion-item .title {
    font-size: 17px;
    line-height: 21px;
  }
}
.faq-2-area .accordion-body {
  padding: 0px 40px 20px 185px;
  border: none;
}
@media only screen and (max-width: 1199px) {
  .faq-2-area .accordion-body {
    padding: 0px 40px 20px 110px;
  }
}
@media only screen and (max-width: 991px) {
  .faq-2-area .accordion-body {
    padding: 0px 40px 20px 70px;
  }
}
@media only screen and (max-width: 767px) {
  .faq-2-area .accordion-body {
    padding: 0px 40px 20px 60px;
  }
}
@media (max-width: 575px) {
  .faq-2-area .accordion-body {
    padding: 0px 20px 20px 17px;
  }
}
.faq-2-area .accordion-body p {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #646463;
  margin-top: -12px;
}
@media only screen and (max-width: 1399px) {
  .faq-2-area .accordion-body p br {
    display: none;
  }
}
.faq-2-area .accordion-button:not(.collapsed)::after {
  background-image: inherit !important;
  transform: inherit !important;
}
.faq-2-area button:focus:not(:focus-visible) {
  outline: 0;
}
.faq-2-area button:focus:not(:focus-visible) .title span {
  background: linear-gradient(90deg, #384BFF 0%, #A62DF4 100%);
  border-radius: 4px;
}
.faq-2-area .accordion-button {
  padding: 22px 40px 22px 24px;
  background-color: transparent;
  outline: 0;
  box-shadow: none;
  border-radius: 0;
}
@media (max-width: 575px) {
  .faq-2-area .accordion-button {
    padding: 24px 22px 24px 15px;
  }
}
.faq-2-area .accordion-button::after {
  content: "OPEN\f068";
  font-family: var(--font_awesome);
  background-image: none;
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #646463;
  transition: all 0.5s;
  margin-right: 35px;
}
@media (max-width: 575px) {
  .faq-2-area .accordion-button::after {
    margin-top: -31px;
  }
}
.faq-2-area .accordion-button:not(.collapsed)::after {
  content: "close\f00d";
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 2px;
  text-decoration-line: underline;
  text-transform: uppercase;
  color: #384BFF;
}

.hero-4__inner {
  padding-top: 298px;
  position: relative;
  padding-bottom: 223px;
  background-color: rgba(116, 68, 253, 0.06);
}
@media only screen and (max-width: 1919px) {
  .hero-4__inner {
    padding-top: 250px;
  }
}
@media only screen and (max-width: 1399px) {
  .hero-4__inner {
    padding-top: 200px;
    padding-bottom: 140px;
  }
}
@media only screen and (max-width: 1199px) {
  .hero-4__inner {
    padding-top: 150px;
    padding-bottom: 70px;
  }
}
@media only screen and (max-width: 991px) {
  .hero-4__inner {
    padding-top: 140px;
    padding-bottom: 60px;
  }
}
.hero-4__wrapper {
  display: grid;
  justify-content: space-between;
  grid-template-columns: 563px 488px;
}
@media only screen and (max-width: 1919px) {
  .hero-4__wrapper {
    grid-template-columns: 545px 355px;
  }
}
@media only screen and (max-width: 991px) {
  .hero-4__wrapper {
    grid-template-columns: 1fr;
  }
}
.hero-4__subtitle {
  gap: 8px;
  font-size: 18px;
  font-weight: 600;
  line-height: 26px;
  align-items: center;
  border-radius: 30px;
  display: inline-flex;
  letter-spacing: 0.5px;
  backdrop-filter: blur(2px);
  padding: 5px 21.3px 5px 6px;
  font-family: var(--font_monts);
  background: rgba(116, 68, 253, 0.16);
}
@media (max-width: 575px) {
  .hero-4__subtitle {
    gap: 4px;
    padding: 5px 12.3px 5px 6px;
  }
}
.hero-4__subtitle span {
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
  color: var(--black);
  border-radius: 500px;
  padding: 9px 14.91px;
  background-color: var(--white);
  font-family: var(--font_monts);
}
.hero-4__title {
  font-weight: 700;
  font-size: 64px;
  max-width: 563px;
  margin-top: 16px;
  line-height: 72px;
  margin-bottom: 23px;
  color: var(--black);
  letter-spacing: 0.64px;
  font-family: var(--font_monts);
}
@media only screen and (max-width: 1199px) {
  .hero-4__title {
    font-size: 40px;
    line-height: 50px;
  }
}
@media only screen and (max-width: 991px) {
  .hero-4__title {
    max-width: 100%;
    margin: 15px 0;
  }
}
@media only screen and (max-width: 767px) {
  .hero-4__title {
    font-size: 33px;
    line-height: 43px;
  }
}
.hero-4__dec {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  max-width: 528px;
  color: var(--secondary);
  font-family: var(--font_jakarta);
}
@media only screen and (max-width: 991px) {
  .hero-4__dec {
    max-width: 100%;
  }
}
.hero-4__btn-group {
  gap: 24px;
  display: flex;
  margin-top: 48px;
  align-items: center;
}
@media only screen and (max-width: 1199px) {
  .hero-4__btn-group {
    margin-top: 30px;
  }
}
@media only screen and (max-width: 991px) {
  .hero-4__btn-group {
    margin-top: 20px;
  }
}
@media only screen and (max-width: 991px) {
  .hero-4__btn-group {
    gap: 15px;
    flex-wrap: wrap;
  }
}
.hero-4__btn-group .btn_2 .rr-btn-4 {
  background-color: transparent;
  border: 1px solid var(--black);
}
.hero-4__btn-group .btn_2 .rr-btn-4 .btn-wrap .text-one {
  color: var(--black);
}
.hero-4__btn-group .btn_2 .rr-btn-4:hover {
  border-color: var(--primary4);
}
.hero-4__btn-group .btn_2 .rr-btn-4:hover::before {
  background-color: var(--primary4);
}
.hero-4__info {
  display: flex;
  max-width: 488px;
  align-items: center;
  padding-bottom: 24px;
  margin-bottom: 16px;
  border-bottom: 1px solid #C9C9C8;
}
@media only screen and (max-width: 1919px) {
  .hero-4__info {
    gap: 15px;
    flex-wrap: wrap;
  }
}
@media only screen and (max-width: 767px) {
  .hero-4__info {
    padding-bottom: 15px;
    margin-bottom: 10px;
  }
}
.hero-4__info .customers {
  gap: 16px;
  display: flex;
  align-items: center;
  padding-right: 83px;
  position: relative;
}
@media only screen and (max-width: 1919px) {
  .hero-4__info .customers {
    padding-right: 0;
  }
}
@media only screen and (max-width: 991px) {
  .hero-4__info .customers {
    margin-right: 20px;
  }
}
.hero-4__info .customers::before {
  content: "";
  right: 33px;
  width: 2px;
  height: 61px;
  rotate: 18deg;
  position: absolute;
  background-color: #C9C9C8;
}
@media only screen and (max-width: 1919px) {
  .hero-4__info .customers::before {
    display: none;
  }
}
.hero-4__info .customers .thumb {
  display: flex;
  align-items: center;
}
.hero-4__info .customers .thumb .image {
  width: 56px;
  height: 56px;
  margin-left: -27px;
}
.hero-4__info .customers .thumb .image:first-of-type {
  margin-left: 0;
}
.hero-4__info .customers .thumb .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 500px;
  border: 3px solid var(--white);
}
.hero-4__info .customers .text h4 {
  font-weight: 700;
  font-size: 32px;
  line-height: 40px;
  color: var(--black);
  letter-spacing: 0.5px;
  font-family: var(--font_monts);
}
@media only screen and (max-width: 1199px) {
  .hero-4__info .customers .text h4 {
    font-size: 25px;
    line-height: 35px;
  }
}
.hero-4__info .customers .text p {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: var(--secondary);
  font-family: var(--font_jakarta);
}
.hero-4__info .customers-rating h2 {
  font-weight: 700;
  font-size: 32px;
  line-height: 40px;
  color: var(--black);
  letter-spacing: 0.5px;
  font-family: var(--font_monts);
}
@media only screen and (max-width: 1199px) {
  .hero-4__info .customers-rating h2 {
    font-size: 25px;
    line-height: 35px;
  }
}
.hero-4__info .customers-rating .star {
  gap: 3px;
  display: flex;
  align-items: center;
}
.hero-4__info .customers-rating .star i {
  font-size: 13px;
  color: #ECC132;
}
.hero-4__info .customers-rating .star i:last-of-type {
  color: var(--secondary);
}
.hero-4__info .customers-rating .star span {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  margin-left: 6px;
  display: inline-block;
  color: var(--secondary);
  font-family: var(--font_jakarta);
}
.hero-4__author {
  transform: translateY(75px);
}
@media only screen and (max-width: 1399px) {
  .hero-4__author {
    transform: translateY(0px);
  }
}
@media only screen and (max-width: 991px) {
  .hero-4__author {
    margin-top: 30px;
  }
}
.hero-4__author .customers-dec {
  font-weight: 400;
  font-size: 16px;
  max-width: 488px;
  line-height: 24px;
  color: var(--secondary);
  font-family: var(--font_jakarta);
}
.hero-4__bg-shape {
  top: 239px;
  right: -380px;
  width: 572.84px;
  height: 307.13px;
  border-radius: 50%;
  position: absolute;
  filter: blur(400px);
  background: #1AD079;
}
.hero-4__bg-shape_2 {
  left: -211px;
  bottom: -170px;
  width: 579.16px;
  height: 384.7px;
  position: absolute;
  filter: blur(400px);
  border-radius: 50%;
  background: var(--primary4);
}
.hero-4__image-shape {
  right: 399px;
  bottom: 0;
  position: absolute;
}
@media only screen and (max-width: 1919px) {
  .hero-4__image-shape {
    width: 50%;
    right: 155px;
  }
}
@media only screen and (max-width: 1399px) {
  .hero-4__image-shape {
    width: 39%;
    right: 217px;
  }
}
@media only screen and (max-width: 1199px) {
  .hero-4__image-shape {
    display: none;
  }
}
@media only screen and (max-width: 1919px) {
  .hero-4__image-shape img {
    width: 100%;
  }
}
.hero-4__image-shape_2 {
  right: 684px;
  bottom: 218px;
  position: absolute;
}
@media only screen and (max-width: 1919px) {
  .hero-4__image-shape_2 {
    width: 30%;
    right: 400px;
  }
}
@media only screen and (max-width: 1399px) {
  .hero-4__image-shape_2 {
    width: 22%;
    right: 400px;
  }
}
@media only screen and (max-width: 1199px) {
  .hero-4__image-shape_2 {
    display: none;
  }
}
@media only screen and (max-width: 1919px) {
  .hero-4__image-shape_2 img {
    width: 100%;
  }
}
.hero-4__scroll {
  right: 160px;
  bottom: 148px;
  position: absolute;
}
@media only screen and (max-width: 1199px) {
  .hero-4__scroll {
    bottom: 120px;
  }
}
@media only screen and (max-width: 991px) {
  .hero-4__scroll {
    right: 30px;
  }
}
@media only screen and (max-width: 767px) {
  .hero-4__scroll {
    display: none;
  }
}
.hero-4__scroll a {
  font-size: 14px;
  font-weight: 600;
  padding-left: 10px;
  line-height: 20px;
  color: var(--black);
  position: relative;
  font-family: var(--font_monts);
}
.hero-4__scroll a::before {
  content: "";
  top: 0;
  left: 0;
  width: 2px;
  height: 88px;
  border-radius: 16px;
  position: absolute;
  background-color: #D9D9D9;
}
.hero-4__scroll a::after {
  content: "";
  top: 0;
  left: 0;
  width: 2px;
  height: 32px;
  border-radius: 16px;
  position: absolute;
  background-color: var(--primary4);
}

.special-features-4__wrap {
  display: grid;
  position: relative;
  justify-content: space-between;
  grid-template-columns: 419px 419px;
}
@media only screen and (max-width: 991px) {
  .special-features-4__wrap {
    gap: 20px;
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (max-width: 767px) {
  .special-features-4__wrap {
    gap: 25px;
    grid-template-columns: repeat(1, 1fr);
  }
}
.special-features-4__left, .special-features-4__right {
  max-width: 419px;
  padding: 32px 24px;
  border-radius: 16px;
  background-color: var(--bg);
}
@media only screen and (max-width: 991px) {
  .special-features-4__left, .special-features-4__right {
    padding: 15px;
  }
}
@media only screen and (max-width: 767px) {
  .special-features-4__left, .special-features-4__right {
    max-width: 100%;
  }
}
.special-features-4__item {
  gap: 32px;
  display: flex;
  position: relative;
  align-items: center;
  margin-bottom: 24px;
}
.special-features-4__item:last-of-type {
  margin-bottom: 0;
}
@media only screen and (max-width: 991px) {
  .special-features-4__item {
    gap: 15px;
  }
}
@media only screen and (max-width: 767px) {
  .special-features-4__item {
    width: 100%;
    display: inline-grid;
  }
}
.special-features-4__logo {
  min-width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  border-radius: 13.71px;
  justify-content: center;
  background-color: var(--white);
}
.special-features-4__title {
  width: 275px;
  font-weight: 600;
  font-size: 18px;
  line-height: 26px;
  padding: 19px 24px;
  border-radius: 12px;
  color: var(--black);
  letter-spacing: 0.5px;
  background-color: var(--white);
  font-family: var(--font_monts);
  transition: all 0.3s;
  border: 1px solid transparent;
}
.special-features-4__title:hover {
  border-color: var(--primary4);
}
@media only screen and (max-width: 991px) {
  .special-features-4__title {
    width: 250px;
    padding: 15px;
  }
}
@media only screen and (max-width: 767px) {
  .special-features-4__title {
    width: 100%;
    text-align: center;
  }
}
.special-features-4__shape {
  top: 50%;
  left: 50%;
  position: absolute;
  transform: translate(-50%, -50%);
}
@media only screen and (max-width: 1399px) {
  .special-features-4__shape {
    width: 40%;
  }
}
@media only screen and (max-width: 991px) {
  .special-features-4__shape {
    display: none;
  }
}
.special-features-4__main-logo {
  top: 50%;
  left: 50%;
  width: 89px;
  height: 88px;
  display: flex;
  position: absolute;
  align-items: center;
  border-radius: 16px;
  justify-content: center;
  border: 2px solid var(--bg);
  transform: translate(-50%, -50%);
  background-color: var(--primary4);
}
@media only screen and (max-width: 991px) {
  .special-features-4__main-logo {
    display: none;
  }
}

.brand-4__active .swiper-wrapper {
  transition-timing-function: linear;
}
.brand-4__active .swiper-wrapper .swiper-slide {
  width: auto;
}
.brand-4__item {
  width: 219px;
  height: 119px;
  display: flex;
  margin-left: -1px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgb(201, 201, 200);
}
@media only screen and (max-width: 767px) {
  .brand-4__item {
    width: 190px;
    height: 90px;
  }
}

.app-special-4__wrap {
  display: flex;
  align-items: end;
  justify-content: center;
}
@media only screen and (max-width: 1399px) {
  .app-special-4__item {
    width: 23%;
  }
}
@media only screen and (max-width: 991px) {
  .app-special-4__item {
    width: 25%;
  }
}
@media only screen and (max-width: 767px) {
  .app-special-4__item {
    width: 30%;
  }
}
.app-special-4__item:first-of-type {
  margin-bottom: 8.82px;
  margin-right: -114.5px;
  transform: rotate(-29.6deg);
}
@media (max-width: 575px) {
  .app-special-4__item:first-of-type {
    margin-right: 0px;
    transform: rotate(0deg);
  }
}
.app-special-4__item:nth-child(2) {
  margin-bottom: 64.39px;
  margin-right: -81.5px;
  transform: rotate(-24deg);
}
@media (max-width: 575px) {
  .app-special-4__item:nth-child(2) {
    margin-right: 0px;
    transform: rotate(0deg);
  }
}
.app-special-4__item:nth-child(3) {
  z-index: 1;
  position: relative;
  margin-bottom: 35.97px;
}
.app-special-4__item:nth-child(4) {
  margin-left: -119.5px;
  margin-bottom: 67.96px;
  transform: rotate(24deg);
}
@media (max-width: 575px) {
  .app-special-4__item:nth-child(4) {
    margin-left: 0px;
    transform: rotate(0deg);
  }
}
.app-special-4__item:nth-child(5) {
  z-index: -2;
  position: relative;
  margin-left: -66px;
  transform: rotate(23.68deg);
}
@media (max-width: 575px) {
  .app-special-4__item:nth-child(5) {
    margin-left: 0px;
    transform: rotate(0deg);
  }
}
.app-special-4__info {
  text-align: center;
}
.app-special-4__title {
  font-weight: 600;
  font-size: 20px;
  line-height: 28px;
  margin-bottom: 16px;
  color: var(--black);
  letter-spacing: 1px;
  font-family: var(--font_monts);
}
@media (max-width: 575px) {
  .app-special-4__title {
    margin-bottom: 5px;
  }
}
.app-special-4__review {
  gap: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media only screen and (max-width: 767px) {
  .app-special-4__review {
    gap: 5px;
  }
}
@media (max-width: 575px) {
  .app-special-4__review {
    flex-wrap: wrap;
  }
}
.app-special-4__review p {
  font-weight: 600;
  font-size: 14px;
  line-height: 20px;
  color: var(--secondary);
  font-family: var(--font_monts);
}
.app-special-4__review .star {
  gap: 4px;
  display: flex;
  align-items: center;
}
.app-special-4__review .star i {
  font-size: 18px;
  color: #00B57A;
  transform: rotate(-90deg);
}

.app-experience-4__bg {
  background-color: #FAF8FF;
}
.app-experience-4__thumb {
  display: flex;
  align-items: end;
  padding-left: 70px;
  position: relative;
}
@media only screen and (max-width: 1199px) {
  .app-experience-4__thumb {
    padding-left: 10px;
  }
}
@media only screen and (max-width: 991px) {
  .app-experience-4__thumb {
    margin-bottom: 30px;
    justify-content: center;
  }
}
.app-experience-4__thumb::before {
  content: "";
  left: 24px;
  bottom: -27.9px;
  width: 553px;
  height: 566px;
  opacity: 0.48;
  rotate: 4.5deg;
  position: absolute;
  border-radius: 16px;
  background: var(--primary4);
  transform: matrix(-1, 0, 0, 1, 0, 0);
}
@media only screen and (max-width: 1399px) {
  .app-experience-4__thumb::before {
    width: 515px;
  }
}
@media only screen and (max-width: 1199px) {
  .app-experience-4__thumb::before {
    left: 0;
    rotate: 0deg;
    width: 465px;
  }
}
@media only screen and (max-width: 1199px) {
  .app-experience-4__thumb::before {
    right: 0;
    bottom: 0;
    height: 510px;
    margin: 0 auto;
  }
}
@media (max-width: 575px) {
  .app-experience-4__thumb::before {
    display: none;
  }
}
.app-experience-4__thumb::after {
  content: "";
  left: 24px;
  bottom: -30px;
  width: 552px;
  height: 566px;
  rotate: 5.5deg;
  position: absolute;
  border-radius: 16px;
  border: 1px solid #C9C9C8;
  transform: matrix(-1, 0.08, 0.08, 1, 0, 0);
}
@media only screen and (max-width: 1399px) {
  .app-experience-4__thumb::after {
    width: 515px;
  }
}
@media only screen and (max-width: 1199px) {
  .app-experience-4__thumb::after {
    left: 0;
    rotate: 0deg;
    width: 465px;
  }
}
@media only screen and (max-width: 1199px) {
  .app-experience-4__thumb::after {
    right: 0;
    bottom: 0;
    height: 510px;
    margin: 0 auto;
  }
}
@media (max-width: 575px) {
  .app-experience-4__thumb::after {
    display: none;
  }
}
.app-experience-4__thumb .image_1 {
  z-index: 2;
  position: relative;
  margin-bottom: 88px;
}
.app-experience-4__thumb .image_2 {
  z-index: 1;
  position: relative;
  margin-bottom: 43px;
  margin-left: -128px;
}
@media (max-width: 575px) {
  .app-experience-4__thumb .image_2 {
    margin-left: -60px;
  }
}
.app-experience-4__thumb .image_2 img {
  transform: rotate(2.99deg);
}
.app-experience-4__thumb .image_3 {
  margin-left: -47px;
}
.app-experience-4__thumb .image_3 img {
  transform: rotate(2.99deg);
}
.app-experience-4__logo {
  top: 46%;
  left: 46%;
  z-index: 3;
  rotate: -30deg;
  overflow: hidden;
  position: absolute;
  border-radius: 100px;
  transform: translate(-50%, -50%);
}
@media only screen and (max-width: 767px) {
  .app-experience-4__logo {
    display: none;
  }
}
.app-experience-4__shape {
  left: -55px;
  top: -72px;
  position: absolute;
}
.app-experience-4__wrap .section-title-4__wrapper {
  margin-bottom: 24px;
}
.app-experience-4__wrap .section-title-4__wrapper .desc {
  margin-top: 16px;
}
.app-experience-4__item {
  z-index: 2;
  padding: 24px;
  cursor: pointer;
  overflow: hidden;
  position: relative;
  transition: all 0.3s ease-in-out;
  border-top: 1px solid rgba(201, 201, 200, 0.24);
}
@media only screen and (max-width: 1199px) {
  .app-experience-4__item {
    padding: 15px;
  }
}
.app-experience-4__item.active .app-experience-4__dec {
  margin-bottom: 0;
}
.app-experience-4__item.active .app-experience-4__info {
  margin-bottom: 16px;
}
.app-experience-4__info {
  display: flex;
  margin-bottom: 17px;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 575px) {
  .app-experience-4__info {
    gap: 15px;
    flex-wrap: wrap;
  }
}
.app-experience-4__title {
  gap: 16px;
  display: flex;
  font-weight: 700;
  font-size: 24px;
  line-height: 32px;
  align-items: end;
  color: var(--black);
  letter-spacing: 0.5px;
  font-family: var(--font_monts);
}
@media only screen and (max-width: 1199px) {
  .app-experience-4__title {
    gap: 10px;
    font-size: 20px;
    line-height: 28px;
  }
}
@media (max-width: 575px) {
  .app-experience-4__title {
    flex-wrap: wrap;
  }
}
.app-experience-4__title span {
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
  color: var(--secondary);
  font-family: var(--font_monts);
}
.app-experience-4__dec {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  max-width: 569px;
  margin-left: 28px;
  margin-bottom: -66px;
  color: var(--secondary);
  font-family: var(--font_jakarta);
  transition: all 0.3s ease-in-out;
}
@media only screen and (max-width: 1199px) {
  .app-experience-4__dec {
    margin-bottom: -82px;
  }
}
@media only screen and (max-width: 991px) {
  .app-experience-4__dec {
    margin-bottom: -58px;
  }
}
@media (max-width: 575px) {
  .app-experience-4__dec {
    margin-left: 0;
    margin-bottom: -107px;
  }
}
.app-experience-4__bg-shape {
  right: -373px;
  bottom: -427px;
  position: absolute;
}

.btn-group {
  gap: 12px;
  display: flex;
  align-items: center;
}
.btn-group .btn-circle {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  border-radius: 500px;
  justify-content: center;
  border: 1px solid var(--primary4);
}
.btn-group .btn-circle i {
  font-size: 13px;
  font-weight: 400;
  color: var(--primary4);
  transform: rotate(-45deg);
}
.btn-group .btn-text {
  font-weight: 600;
  font-size: 14px;
  line-height: 20px;
  color: var(--black);
  text-transform: uppercase;
  font-family: var(--font_monts);
}
.btn-group > *:nth-child(1) {
  transform: scale3d(1, 1, 1);
  margin-inline-end: 0;
  opacity: 1;
}
.btn-group > *:nth-child(2) {
  transform: scale3d(1, 1, 1);
}
.btn-group > *:nth-child(3) {
  transform: scale3d(0, 0, 1);
  margin-inline-start: -32px;
  opacity: 0;
  background-color: var(--primary4);
}
.btn-group > *:nth-child(3) i {
  color: var(--white);
}
.btn-group:hover > *:nth-child(1) {
  transform: scale3d(0, 0, 1);
  margin-inline-end: -32px;
  opacity: 0;
}
.btn-group:hover > *:nth-child(2) {
  transform: scale3d(1, 1, 1);
  color: var(--primary4);
}
.btn-group:hover > *:nth-child(3) {
  transform: scale3d(1, 1, 1);
  margin-inline-start: 0;
  opacity: 1;
}

.why-choose-us-4__content {
  z-index: 1;
  position: relative;
}
.why-choose-us-4__content .section-title-4__wrapper {
  max-width: 607px;
  margin-bottom: 32px;
  border-bottom: 1px solid rgba(201, 201, 200, 0.24);
}
@media only screen and (max-width: 991px) {
  .why-choose-us-4__content .section-title-4__wrapper {
    max-width: 100%;
    margin-bottom: 25px;
  }
}
@media only screen and (max-width: 1399px) {
  .why-choose-us-4__content .section-title-4__wrapper .title {
    font-size: 45px;
    line-height: 50px;
  }
}
@media only screen and (max-width: 1199px) {
  .why-choose-us-4__content .section-title-4__wrapper .title {
    font-size: 38px;
    line-height: 45px;
  }
}
@media only screen and (max-width: 991px) {
  .why-choose-us-4__content .section-title-4__wrapper .title {
    max-width: 100%;
  }
}
@media only screen and (max-width: 767px) {
  .why-choose-us-4__content .section-title-4__wrapper .title {
    font-size: 30px;
    line-height: 40px;
  }
}
@media (max-width: 575px) {
  .why-choose-us-4__content .section-title-4__wrapper .title {
    font-size: 29px;
    line-height: 38px;
  }
}
.why-choose-us-4__content .section-title-4__wrapper .desc {
  padding-top: 24px;
  margin-bottom: 24px;
}
@media only screen and (max-width: 991px) {
  .why-choose-us-4__content .section-title-4__wrapper .desc {
    max-width: 100%;
    padding-top: 18px;
    margin-bottom: 20px;
  }
}
@media only screen and (max-width: 767px) {
  .why-choose-us-4__content .section-title-4__wrapper .desc {
    padding-top: 10px;
    margin-bottom: 15px;
  }
}
.why-choose-us-4__wrap {
  gap: 32px;
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 1199px) {
  .why-choose-us-4__wrap {
    gap: 15px;
  }
}
@media (max-width: 575px) {
  .why-choose-us-4__wrap {
    flex-wrap: wrap;
  }
}
.why-choose-us-4__info {
  padding: 32px;
  max-width: 306px;
  border-radius: 16px;
  background-color: var(--white);
}
@media only screen and (max-width: 1399px) {
  .why-choose-us-4__info {
    padding: 30px;
  }
}
@media only screen and (max-width: 1199px) {
  .why-choose-us-4__info {
    padding: 16px;
  }
}
.why-choose-us-4__icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  border-radius: 500px;
  justify-content: center;
  background-color: var(--primary4);
}
.why-choose-us-4__title {
  font-weight: 700;
  font-size: 20px;
  line-height: 28px;
  margin-top: 16px;
  margin-bottom: 4px;
  letter-spacing: 0.5px;
  color: var(--common-black);
  font-family: var(--font_monts);
}
@media only screen and (max-width: 1199px) {
  .why-choose-us-4__title {
    font-size: 17px;
    line-height: 26px;
    margin-top: 10px;
  }
}
.why-choose-us-4__dec {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  max-width: 242px;
  color: var(--secondary);
  font-family: var(--font_jakarta);
}
@media only screen and (max-width: 1199px) {
  .why-choose-us-4__dec {
    font-size: 15px;
    line-height: 25px;
  }
}
.why-choose-us-4__thumb {
  width: 100%;
  height: 100%;
  position: relative;
}
@media only screen and (max-width: 991px) {
  .why-choose-us-4__thumb {
    margin-top: 30px;
    text-align: center;
    margin-left: -70px;
  }
}
@media only screen and (max-width: 767px) {
  .why-choose-us-4__thumb {
    margin-left: 0px;
  }
}
.why-choose-us-4__thumb .image_1 {
  margin-left: 130px;
  position: relative;
}
@media only screen and (max-width: 1399px) {
  .why-choose-us-4__thumb .image_1 {
    margin-left: 50px;
  }
}
@media only screen and (max-width: 991px) {
  .why-choose-us-4__thumb .image_1 {
    margin-left: 0px;
  }
}
.why-choose-us-4__thumb .image_1 img {
  filter: drop-shadow(52.2747px 52.2747px 108.906px rgba(0, 0, 0, 0.2));
}
.why-choose-us-4__thumb .image_2 {
  right: 26px;
  bottom: -21px;
  position: absolute;
}
@media only screen and (max-width: 1199px) {
  .why-choose-us-4__thumb .image_2 {
    right: 0;
  }
}
@media (max-width: 575px) {
  .why-choose-us-4__thumb .image_2 {
    bottom: 0;
    margin-top: 20px;
    position: inherit;
  }
}
.why-choose-us-4__shape {
  top: 52px;
  right: 157px;
  position: absolute;
}
@media only screen and (max-width: 1199px) {
  .why-choose-us-4__shape {
    right: 60px;
  }
}
.why-choose-us-4__bg {
  top: 18px;
  right: 0;
  width: 580px;
  height: 580px;
  opacity: 0.16;
  position: absolute;
  border-radius: 500px;
  background: var(--primary4);
}
@media only screen and (max-width: 1399px) {
  .why-choose-us-4__bg {
    right: auto;
    left: -20px;
  }
}
@media only screen and (max-width: 991px) {
  .why-choose-us-4__bg {
    top: 0;
    right: 0;
    left: 0;
    margin: 0 auto;
  }
}
@media (max-width: 575px) {
  .why-choose-us-4__bg {
    display: none;
  }
}
.why-choose-us-4__bg-shape {
  top: 0;
  left: 44px;
  position: absolute;
}

.pricing-plans-4__bg {
  background-color: #FAF8FF;
}
.pricing-plans-4__top {
  gap: 15px;
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  margin-bottom: 48px;
  justify-content: space-between;
}
@media only screen and (max-width: 991px) {
  .pricing-plans-4__top {
    margin-bottom: 35px;
  }
}
@media only screen and (max-width: 767px) {
  .pricing-plans-4__top {
    margin-bottom: 30px;
  }
}
.pricing-plans-4__top .section-title-3__wrapper {
  margin-bottom: 0;
}
.pricing-plans-4__right .pricing-plans-3__toggler {
  color: var(--secondary);
}
.pricing-plans-4__right .pricing-plans-3__toggler.active {
  color: var(--primary4);
}
.pricing-plans-4__right .pricing-plans-3__toggle .switcher {
  background-color: var(--primary4);
}
.pricing-plans-4__right .pricing-plans-3__toggle-button {
  max-width: 276px;
  padding: 15px 45.44px;
  background-color: transparent;
  transform: translateY(0px);
  border: 1px solid rgba(155, 160, 163, 0.5);
}
.pricing-plans-4__card {
  z-index: 1;
  cursor: pointer;
  overflow: hidden;
  border-radius: 24px;
  position: relative;
  border: 1px solid transparent;
  transition: all 0.6s ease-in-out;
}
.pricing-plans-4__card:hover {
  border-color: var(--primary4);
}
.pricing-plans-4__card:hover .pricing-plans-4__icon {
  opacity: 1;
  height: 56px;
  visibility: visible;
  transform: scale(1);
  margin-bottom: 16px;
}
.pricing-plans-4__card:hover .pricing-plans-4__list {
  margin-bottom: 0;
  margin-top: -76px;
}
.pricing-plans-4__content {
  padding: 40px;
  padding-bottom: 24px;
  border-radius: 4px 4px 0px 0px;
  background: linear-gradient(236.06deg, #7444FD 0%, rgba(250, 248, 255, 0.4) 100%);
}
@media only screen and (max-width: 991px) {
  .pricing-plans-4__content {
    padding: 30px;
    padding-bottom: 24px;
  }
}
@media (max-width: 575px) {
  .pricing-plans-4__content {
    padding: 20px;
  }
}
.pricing-plans-4__wrap {
  padding: 40px;
  padding-top: 32px;
  position: relative;
  background-color: var(--white);
}
@media only screen and (max-width: 991px) {
  .pricing-plans-4__wrap {
    padding: 35px 30px;
  }
}
@media (max-width: 575px) {
  .pricing-plans-4__wrap {
    padding: 25px 15px;
  }
}
.pricing-plans-4__icon {
  opacity: 0;
  width: 56px;
  height: 0;
  display: flex;
  visibility: hidden;
  transform: scale(0);
  align-items: center;
  border-radius: 500px;
  justify-content: center;
  transition: all 0.6s ease-in-out;
  border: 1px solid rgba(201, 201, 200, 0.24);
  background: radial-gradient(67.93% 51.56% at 50% 31.25%, rgba(243, 243, 247, 0) 0%, rgba(255, 255, 255, 0.24) 100%), radial-gradient(66.9% 50.78% at 50% 30.47%, rgba(243, 243, 247, 0) 0%, rgba(255, 255, 255, 0.15) 100%);
}
.pricing-plans-4__icon img {
  background: transparent;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}
.pricing-plans-4__title {
  font-weight: 700;
  font-size: 20px;
  line-height: 28px;
  color: var(--black);
  letter-spacing: 0.5px;
  font-family: var(--font_monts);
}
.pricing-plans-4__price {
  margin-top: 2px;
  margin-bottom: 8px;
}
.pricing-plans-4__price h2 {
  display: flex;
  align-items: end;
}
.pricing-plans-4__price span {
  font-weight: 700;
  font-size: 48px;
  line-height: 56px;
  color: var(--black);
  letter-spacing: 0.5px;
  font-family: var(--font_monts);
}
@media (max-width: 575px) {
  .pricing-plans-4__price span {
    font-size: 35px;
    line-height: 40px;
  }
}
.pricing-plans-4__price span:nth-child(2) {
  font-weight: 600;
  font-size: 18px;
  margin-left: 8px;
  line-height: 26px;
  letter-spacing: 0.5px;
  text-decoration: line-through;
}
.pricing-plans-4__price span:last-of-type {
  font-weight: 400;
  font-size: 16px;
  color: #475467;
  line-height: 24px;
  letter-spacing: 0px;
  font-family: var(--font_jakarta);
}
.pricing-plans-4__dec {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: var(--secondary);
  font-family: var(--font_jakarta);
}
.pricing-plans-4__list {
  z-index: 7;
  list-style: none;
  position: relative;
  margin-bottom: -85px;
  background: var(--white);
  transition: all 0.6s ease-in-out;
}
.pricing-plans-4__list li {
  gap: 13px;
  display: flex;
  font-weight: 400;
  font-size: 16px;
  line-height: 1;
  margin-bottom: 22px;
  align-items: center;
  color: var(--secondary);
  font-family: var(--font_jakarta);
}
.pricing-plans-4__list li:last-of-type {
  margin-bottom: 0;
}
.pricing-plans-4__list li i {
  width: 18px;
  height: 18px;
  display: flex;
  font-size: 10px;
  color: var(--white);
  align-items: center;
  border-radius: 500px;
  justify-content: center;
  background-color: var(--primary4);
}
.pricing-plans-4__button {
  margin-bottom: 27px;
}
.pricing-plans-4__button .border-btn-2 {
  width: 100%;
  padding: 11px 31px;
}
@media (max-width: 575px) {
  .pricing-plans-4__button .border-btn-2 {
    padding: 11px 15px;
  }
}
.pricing-plans-4__btn {
  margin-top: 35px;
}
.pricing-plans-4__btn .border-btn-2 {
  width: 100%;
  padding: 11px 31px;
}
@media (max-width: 575px) {
  .pricing-plans-4__btn .border-btn-2 {
    padding: 11px 15px;
  }
}

@media only screen and (max-width: 991px) {
  .testimonial-section-4__top .section-title-4__wrapper {
    margin-bottom: 20px;
  }
}
.testimonial-section-4__item {
  gap: 56px;
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 1199px) {
  .testimonial-section-4__item {
    gap: 30px;
  }
}
@media only screen and (max-width: 991px) {
  .testimonial-section-4__item {
    gap: 20px;
  }
}
@media (max-width: 575px) {
  .testimonial-section-4__item {
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
  }
}
.testimonial-section-4__thumb {
  max-width: 336px;
}
.testimonial-section-4__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 500px;
  border: 4px solid var(--white);
}
.testimonial-section-4__quote {
  width: 80px;
  height: 80px;
  display: flex;
  border-radius: 50px;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, rgba(116, 68, 253, 0.24) 0%, rgba(255, 255, 255, 0) 100%);
}
@media only screen and (max-width: 991px) {
  .testimonial-section-4__quote {
    width: 60px;
    height: 60px;
  }
  .testimonial-section-4__quote img {
    width: 60%;
  }
}
.testimonial-section-4__dec {
  font-weight: 600;
  font-size: 24px;
  font-style: Italic;
  line-height: 36px;
  max-width: 712px;
  margin-top: 16px;
  margin-bottom: 56px;
  color: var(--secondary);
  font-family: var(--font_jakarta);
}
@media only screen and (max-width: 1199px) {
  .testimonial-section-4__dec {
    margin-bottom: 30px;
  }
}
@media only screen and (max-width: 991px) {
  .testimonial-section-4__dec {
    font-size: 20px;
    margin-top: 10px;
    line-height: 32px;
    margin-bottom: 20px;
  }
}
@media only screen and (max-width: 767px) {
  .testimonial-section-4__dec {
    font-size: 18px;
    line-height: 30px;
    margin-bottom: 15px;
  }
}
.testimonial-section-4__author .name {
  font-weight: 700;
  font-size: 24px;
  line-height: 32px;
  margin-bottom: 6px;
  color: var(--black);
  letter-spacing: 0.5px;
  font-family: var(--font_monts);
}
@media only screen and (max-width: 991px) {
  .testimonial-section-4__author .name {
    font-size: 20px;
    margin-bottom: 0;
  }
}
.testimonial-section-4__author .position {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: var(--secondary);
  font-family: var(--font_jakarta);
}
.testimonial-section-4__pagination {
  right: 0;
  gap: 24px;
  z-index: 1;
  display: flex;
  position: absolute;
  bottom: 0 !important;
  left: auto !important;
  align-items: center;
  max-width: fit-content;
}
@media (max-width: 575px) {
  .testimonial-section-4__pagination {
    display: none;
  }
}
.testimonial-section-4__pagination .swiper-pagination-bullet {
  opacity: 1;
  width: 32px;
  height: 12px;
  margin: 0 !important;
  border-radius: 500px;
  background-color: #C9C9C8;
}
.testimonial-section-4__pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  width: 64px;
  background-color: var(--primary4);
}
.testimonial-section-4__admin {
  width: 290px;
  transform: rotate(-90deg) translate(-148px, -98px);
}
@media only screen and (max-width: 1199px) {
  .testimonial-section-4__admin {
    transform: rotate(-90deg) translate(-148px, -115px);
  }
}
@media only screen and (max-width: 991px) {
  .testimonial-section-4__admin {
    margin: 0 auto;
    margin-bottom: 30px;
    transform: rotate(0deg) translate(0px, 0px);
  }
}
.testimonial-section-4__admin .about-3__author .text p {
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  max-width: 134px;
  color: var(--secondary);
  border: 1px solid #FFFFFF;
  font-family: var(--font_jakarta);
}
.testimonial-section-4__rating {
  width: 322px;
  padding: 17px 26px;
  text-align: center;
  border-radius: 500px;
  background-color: var(--white);
  border: 1px solid rgba(201, 201, 200, 0.24);
  transform: rotate(-90deg) translate(-132px, -95px);
}
@media only screen and (max-width: 1399px) {
  .testimonial-section-4__rating {
    transform: rotate(-90deg) translate(-132px, -125px);
  }
}
@media only screen and (max-width: 1199px) {
  .testimonial-section-4__rating {
    transform: rotate(-90deg) translate(-132px, -133px);
  }
}
@media only screen and (max-width: 991px) {
  .testimonial-section-4__rating {
    margin: 0 auto;
    margin-top: 25px;
    transform: rotate(0deg) translate(0px, 0px);
  }
}
@media only screen and (max-width: 767px) {
  .testimonial-section-4__rating {
    padding: 10px 26px;
  }
}
@media (max-width: 575px) {
  .testimonial-section-4__rating {
    width: 300px;
  }
}
.testimonial-section-4__rating p {
  gap: 8px;
  display: flex;
  font-size: 18px;
  font-weight: 600;
  line-height: 26px;
  align-items: center;
  color: var(--secondary);
  letter-spacing: 0.5px;
  font-family: var(--font_monts);
}
@media (max-width: 575px) {
  .testimonial-section-4__rating p {
    gap: 5px;
    font-size: 16px;
  }
}
.testimonial-section-4__rating p span {
  font-weight: 600;
  font-size: 20px;
  line-height: 28px;
  letter-spacing: 1px;
  color: var(--black);
  font-family: var(--font_monts);
}
@media (max-width: 575px) {
  .testimonial-section-4__rating p span {
    font-size: 18px;
  }
}
.testimonial-section-4__shape {
  left: 48px;
  bottom: 32px;
  position: absolute;
}

.blog-4__top {
  display: flex;
  align-items: end;
  padding-bottom: 48px;
  margin-bottom: 48px;
  justify-content: space-between;
  border-bottom: 1px solid rgba(201, 201, 200, 0.24);
}
@media only screen and (max-width: 991px) {
  .blog-4__top {
    padding-bottom: 30px;
    margin-bottom: 30px;
  }
}
@media only screen and (max-width: 767px) {
  .blog-4__top {
    gap: 20px;
    flex-wrap: wrap;
  }
}
.blog-4__top .section-title-4__wrapper {
  margin-bottom: 0px;
}
.blog-4__media {
  position: relative;
}
.blog-4__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px 8px 0 0;
}
.blog-4__cat {
  left: 0;
  bottom: 0;
  list-style: none;
  position: absolute;
}
.blog-4__cat li {
  font-weight: 400;
  font-size: 16px;
  line-height: 1;
  padding: 8px 19.45px;
  color: var(--white);
  display: inline-block;
  background-color: var(--primary4);
  font-family: var(--font_jakarta);
}
.blog-4__meta {
  gap: 5px 40px;
  display: flex;
  list-style: none;
  flex-wrap: wrap;
  align-items: center;
}
@media only screen and (max-width: 767px) {
  .blog-4__meta {
    gap: 5px 15px;
  }
}
.blog-4__meta li {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: var(--secondary);
  font-family: var(--font_jakarta);
}
.blog-4__meta li:last-of-type {
  gap: 8px;
  display: flex;
  align-items: center;
}
.blog-4__meta li:last-of-type::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 500px;
  display: inline-block;
  background-color: var(--primary);
}
.blog-4__content {
  padding: 24px 32px;
  padding-bottom: 40px;
  background-color: #FAF8FF;
  border-radius: 0 0 16px 16px;
}
@media only screen and (max-width: 1199px) {
  .blog-4__content {
    padding: 20px 18px;
  }
}
.blog-4__content .title {
  font-weight: 700;
  font-size: 24px;
  max-width: 562px;
  line-height: 32px;
  margin-top: 8px;
  margin-bottom: 32px;
  color: var(--black);
  letter-spacing: 0.5px;
  font-family: var(--font_monts);
}
@media only screen and (max-width: 1199px) {
  .blog-4__content .title {
    font-size: 20px;
    line-height: 28px;
  }
}
@media only screen and (max-width: 991px) {
  .blog-4__content .title {
    font-size: 18px;
    line-height: 25px;
    margin-bottom: 20px;
  }
}
@media only screen and (max-width: 767px) {
  .blog-4__content .title {
    letter-spacing: 0;
  }
}
.blog-4__content .title a:hover {
  color: var(--primary4);
}

.hero-5__wrapper {
  margin: 0 48px;
  overflow: hidden;
  border-radius: 24px;
  background-color: #EDEEF2;
}
@media (min-width: 1600px) and (max-width: 1700px) {
  .hero-5__wrapper {
    margin: 0 15px;
  }
}
@media only screen and (max-width: 1919px) {
  .hero-5__wrapper {
    margin: 0 15px;
  }
}
@media only screen and (max-width: 991px) {
  .hero-5__wrapper {
    margin: 0px;
    border-radius: 0;
  }
}
@media only screen and (max-width: 767px) {
  .hero-5__wrapper {
    padding-bottom: 60px;
  }
}
.hero-5__content {
  position: relative;
  margin-bottom: 80px;
}
@media only screen and (max-width: 991px) {
  .hero-5__content {
    margin-bottom: 40px;
  }
}
.hero-5__title {
  font-weight: 700;
  font-size: 72px;
  margin: 0 auto;
  max-width: 1268px;
  line-height: 80px;
  color: var(--black);
  letter-spacing: 3.6px;
  font-family: var(--font_monts);
}
@media only screen and (max-width: 1199px) {
  .hero-5__title {
    font-size: 48px;
    line-height: 58px;
  }
}
@media only screen and (max-width: 991px) {
  .hero-5__title {
    font-size: 40px;
    line-height: 50px;
  }
}
@media only screen and (max-width: 767px) {
  .hero-5__title {
    font-size: 32px;
    line-height: 42px;
  }
}
@media (max-width: 575px) {
  .hero-5__title {
    font-size: 23px;
    line-height: 36px;
  }
}
.hero-5__title span {
  color: var(--primary5);
}
.hero-5__dec {
  font-weight: 400;
  font-size: 16px;
  max-width: 828px;
  margin: 0 auto;
  margin-top: 24px;
  margin-bottom: 48px;
  line-height: 24px;
  color: var(--secondary);
  font-family: var(--font_jakarta);
}
@media only screen and (max-width: 991px) {
  .hero-5__dec {
    margin-top: 20px;
    margin-bottom: 25px;
  }
}
@media (max-width: 575px) {
  .hero-5__dec {
    margin-top: 15px;
    margin-bottom: 20px;
  }
}
.hero-5__thumb {
  text-align: center;
  position: relative;
  margin-bottom: -502px;
}
@media only screen and (max-width: 1199px) {
  .hero-5__thumb {
    margin-bottom: -300px;
  }
}
@media only screen and (max-width: 991px) {
  .hero-5__thumb {
    margin-bottom: -220px;
  }
}
@media only screen and (max-width: 767px) {
  .hero-5__thumb {
    margin-bottom: 0px;
  }
}
.hero-5__thumb > img {
  border-radius: 25px;
}
.hero-5__thumb .image_1 {
  top: -67px;
  left: 172px;
  rotate: -14.98deg;
  position: absolute;
}
@media only screen and (max-width: 1919px) {
  .hero-5__thumb .image_1 {
    top: -60px;
    left: 75px;
  }
}
@media only screen and (max-width: 1199px) {
  .hero-5__thumb .image_1 {
    left: 36px;
    rotate: 0deg;
  }
}
@media only screen and (max-width: 991px) {
  .hero-5__thumb .image_1 {
    display: none;
  }
}
.hero-5__thumb .image_1 img {
  border-radius: 16px;
}
.hero-5__thumb .image_2 {
  top: -23px;
  right: 184px;
  rotate: 50.39deg;
  position: absolute;
}
@media only screen and (max-width: 1919px) {
  .hero-5__thumb .image_2 {
    top: -23px;
    right: 60px;
  }
}
@media only screen and (max-width: 1199px) {
  .hero-5__thumb .image_2 {
    top: -40px;
    right: 30px;
    rotate: 0deg;
  }
}
@media only screen and (max-width: 991px) {
  .hero-5__thumb .image_2 {
    display: none;
  }
}
.hero-5__thumb .image_2 img {
  border-radius: 16px;
}
.hero-5__bg-shape {
  top: 112px;
  left: -220px;
  width: 704px;
  height: 704px;
  filter: blur(100px);
  position: absolute;
  border-radius: 500px;
  background: #E5F3F3;
}
.hero-5__bg-shape_2 {
  top: -34px;
  right: 0;
  width: 704px;
  height: 704px;
  position: absolute;
  filter: blur(100px);
  background: #DADAF8;
}
.hero-5__image-shape {
  left: 0;
  top: 256px;
  position: absolute;
}
.hero-5__image-shape_2 {
  right: 0;
  bottom: 0;
  position: absolute;
}
.hero-5__border-shape {
  left: 210px;
  right: 210px;
  bottom: -815px;
  position: absolute;
}
.hero-5__border-shape_2 {
  top: -799px;
  right: -890px;
  position: absolute;
}

.brand-5__top {
  gap: 24px;
  display: flex;
  align-items: center;
  margin-bottom: 48px;
}
@media only screen and (max-width: 991px) {
  .brand-5__top {
    margin-bottom: 30px;
  }
}
.brand-5__border-shape {
  max-width: 472px;
  width: 100%;
  height: 1px;
  position: relative;
  display: inline-block;
  background-color: #C9C9C8;
}
@media only screen and (max-width: 767px) {
  .brand-5__border-shape {
    display: none;
  }
}
.brand-5__border-shape .left,
.brand-5__border-shape .right {
  top: -2px;
  right: -2px;
  width: 5px;
  height: 5px;
  position: absolute;
  border-radius: 500px;
  background-color: #C9C9C8;
}
.brand-5__border-shape .right {
  left: -2px;
  right: auto;
}
.brand-5__title {
  gap: 22px;
  display: flex;
  font-weight: 600;
  font-size: 18px;
  line-height: 26px;
  text-align: center;
  align-items: center;
  color: var(--black);
  white-space: nowrap;
  letter-spacing: 0.5px;
  font-family: var(--font_monts);
}
@media only screen and (max-width: 767px) {
  .brand-5__title {
    white-space: wrap;
  }
}
.brand-5__active .swiper-wrapper {
  transition-timing-function: linear;
}
.brand-5__active .swiper-wrapper .swiper-slide {
  width: auto;
  margin-right: 32px;
}
@media only screen and (max-width: 991px) {
  .brand-5__active .swiper-wrapper .swiper-slide {
    margin-right: 10px;
  }
}

.marketplace__wrapper {
  padding: 100px 0;
  margin: 0 48px;
  overflow: hidden;
  position: relative;
  border-radius: 24px;
  background-color: #F0F5FF;
}
@media only screen and (max-width: 1199px) {
  .marketplace__wrapper {
    padding: 70px 0;
    margin: 0 15px;
  }
}
@media only screen and (max-width: 991px) {
  .marketplace__wrapper {
    margin: 0;
    padding: 60px 0;
  }
}
.marketplace__text {
  gap: 24px;
  display: flex;
  position: relative;
  align-items: center;
}
@media only screen and (max-width: 767px) {
  .marketplace__text {
    justify-content: center;
  }
}
.marketplace__text .brand-5__border-shape {
  max-width: 1044px;
}
.marketplace__active .swiper-wrapper {
  transition-timing-function: linear;
}
.marketplace__active .swiper-wrapper .swiper-slide {
  width: auto;
}
.marketplace__logo {
  padding: 50px 0;
  margin-right: 62px;
}
@media only screen and (max-width: 991px) {
  .marketplace__logo {
    padding: 40px 0;
    margin-right: 30px;
  }
}
@media only screen and (max-width: 767px) {
  .marketplace__logo {
    padding: 30px 0;
    margin-right: 30px;
  }
}
.marketplace__logo:hover {
  cursor: pointer;
}
.marketplace__logo:hover svg [fill="#5B5B5B"] {
  fill: var(--primary5);
}
.marketplace__title {
  font-weight: 600;
  font-size: 20px;
  line-height: 28px;
  letter-spacing: 1px;
  color: var(--black);
  white-space: nowrap;
  font-family: var(--font_monts);
}
@media only screen and (max-width: 767px) {
  .marketplace__title {
    white-space: wrap;
    text-align: center;
  }
}
.marketplace__title span {
  color: var(--primary5);
}
.marketplace__shape {
  left: 0;
  bottom: 0;
  position: absolute;
}
.marketplace__shape_2 {
  top: 0;
  right: 0;
  position: absolute;
}
.marketplace__bg-shape {
  top: -18px;
  right: -175px;
  width: 704px;
  height: 704px;
  border-radius: 500px;
  position: absolute;
  filter: blur(100px);
  background: #DADAF8;
}
.marketplace__bg-shape_2 {
  left: 220px;
  bottom: -512px;
  width: 704px;
  height: 704px;
  border-radius: 500px;
  position: absolute;
  filter: blur(100px);
  background: #E5F3F3;
}

.abour-5__thumb {
  padding: 16px;
  padding-left: 32px;
  border-radius: 24px;
  background-color: #EAECFF;
}
@media only screen and (max-width: 991px) {
  .abour-5__thumb {
    margin-bottom: 30px;
  }
}
.abour-5__wrap {
  margin-left: 15px;
}
@media only screen and (max-width: 1199px) {
  .abour-5__wrap {
    margin-left: 0;
  }
}
.abour-5__wrap .section-title-3__wrapper {
  margin-bottom: 0;
}
@media only screen and (max-width: 1399px) {
  .abour-5__wrap .section-title-3__wrapper .title {
    font-size: 40px;
    line-height: 50px;
  }
}
@media only screen and (max-width: 1199px) {
  .abour-5__wrap .section-title-3__wrapper .title {
    font-size: 38px;
    line-height: 48px;
  }
}
@media (max-width: 575px) {
  .abour-5__wrap .section-title-3__wrapper .title {
    font-size: 30px;
    line-height: 40px;
  }
}
.abour-5__wrap .section-title-3__wrapper .desc {
  margin-top: 24px;
}
@media only screen and (max-width: 1199px) {
  .abour-5__wrap .section-title-3__wrapper .desc {
    margin-top: 12px;
  }
}
.abour-5__list {
  margin-top: 32px;
  padding-top: 24px;
  margin-bottom: 48px;
  border-top: 1px solid rgba(201, 201, 200, 0.24);
}
@media only screen and (max-width: 1199px) {
  .abour-5__list {
    margin-top: 20px;
    padding-top: 20px;
    margin-bottom: 30px;
  }
}
.abour-5__list ul {
  list-style: none;
}
.abour-5__list ul li {
  gap: 13px;
  display: flex;
  font-weight: 600;
  font-size: 18px;
  margin-bottom: 24px;
  line-height: 26px;
  color: var(--black);
  align-items: center;
  letter-spacing: 0.5px;
  font-family: var(--font_monts);
}
@media only screen and (max-width: 1199px) {
  .abour-5__list ul li {
    font-size: 16px;
    line-height: 20px;
  }
}
@media (max-width: 575px) {
  .abour-5__list ul li {
    flex-wrap: wrap;
  }
}
.abour-5__list ul li:last-of-type {
  margin-bottom: 0;
}
.abour-5__list ul li i {
  width: 18px;
  height: 18px;
  display: flex;
  font-size: 10px;
  color: var(--white);
  align-items: center;
  border-radius: 500%;
  justify-content: center;
  background-color: var(--primary5);
}

@media (max-width: 575px) {
  .features-5__top .section-title-3__wrapper .title {
    font-size: 27px;
    line-height: 38px;
  }
}
.features-5__wrapper {
  overflow: hidden;
  position: relative;
  background: linear-gradient(180deg, #F2F6FF 0%, #FFFFFF 100%);
}
.features-5__item {
  cursor: pointer;
  position: relative;
  border-radius: 16px;
  padding: 48px 24px;
  text-align: center;
  background-color: var(--white);
  transition: all 0.3s ease-in-out;
}
@media only screen and (max-width: 1399px) {
  .features-5__item {
    padding: 35px 20px;
  }
}
@media only screen and (max-width: 1199px) {
  .features-5__item {
    padding: 25px 11px;
  }
}
.features-5__item:hover {
  background-color: var(--primary5);
}
.features-5__item:hover .features-5__icon {
  background-color: var(--white);
}
.features-5__item:hover .features-5__title {
  color: var(--white);
}
.features-5__item:hover .features-5__dec {
  color: rgba(255, 255, 255, 0.7);
}
.features-5__icon {
  width: 72px;
  height: 72px;
  display: flex;
  margin: 0 auto;
  align-items: center;
  border-radius: 500px;
  justify-content: center;
  background-color: var(--bg);
  transition: all 0.3s ease-in-out;
}
.features-5__title {
  font-weight: 700;
  font-size: 20px;
  line-height: 28px;
  color: var(--black);
  margin-top: 32px;
  margin-bottom: 4px;
  letter-spacing: 0.5px;
  font-family: var(--font_monts);
  transition: all 0.3s ease-in-out;
}
@media only screen and (max-width: 1399px) {
  .features-5__title {
    font-size: 19px;
    line-height: 25px;
  }
}
@media only screen and (max-width: 1199px) {
  .features-5__title {
    font-size: 16px;
    margin-top: 20px;
  }
}
.features-5__dec {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  max-width: 216px;
  margin: 0 auto;
  color: var(--secondary);
  font-family: var(--font_jakarta);
  transition: all 0.3s ease-in-out;
}
@media only screen and (max-width: 1199px) {
  .features-5__dec {
    font-size: 15px;
  }
}
.features-5__shape {
  top: 93px;
  left: 130px;
  rotate: 31.79deg;
  position: absolute;
}
.features-5__shape_2 {
  top: 93px;
  right: -278px;
  rotate: 31.79deg;
  position: absolute;
}

.analytices-fast-5__inner {
  margin: 0 48px;
  overflow: hidden;
  position: relative;
  border-radius: 24px;
  background-color: #F0F5FF;
}
@media only screen and (max-width: 1399px) {
  .analytices-fast-5__inner {
    margin: 0 15px;
  }
}
@media only screen and (max-width: 991px) {
  .analytices-fast-5__inner {
    margin: 0px;
    border-radius: 0;
  }
}
.analytices-fast-5__top .section-title-3__wrapper .desc {
  max-width: 719px;
  margin: 0 auto;
  margin-top: 12px;
}
.analytices-fast-5__thumb {
  position: relative;
}
.analytices-fast-5__thumb img {
  border-radius: 16px;
}
.analytices-fast-5__list {
  margin-top: 48px;
  position: relative;
}
@media only screen and (max-width: 1199px) {
  .analytices-fast-5__list {
    margin-top: 30px;
  }
}
.analytices-fast-5__list ul {
  gap: 24px;
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  align-items: center;
  justify-content: center;
}
@media only screen and (max-width: 1199px) {
  .analytices-fast-5__list ul {
    gap: 15px;
  }
}
@media only screen and (max-width: 767px) {
  .analytices-fast-5__list ul {
    gap: 10px;
  }
}
.analytices-fast-5__list ul li {
  gap: 12px;
  font-size: 16px;
  font-weight: 600;
  padding: 20px 26px;
  line-height: 24px;
  color: var(--black);
  display: inline-flex;
  border-radius: 500px;
  align-items: center;
  letter-spacing: 0.5px;
  background-color: var(--white);
  font-family: var(--font_monts);
}
@media only screen and (max-width: 991px) {
  .analytices-fast-5__list ul li {
    gap: 10px;
    padding: 15px;
  }
}
@media only screen and (max-width: 767px) {
  .analytices-fast-5__list ul li {
    font-size: 15px;
  }
}
.analytices-fast-5__list ul li i {
  min-width: 18px;
  height: 18px;
  display: flex;
  font-size: 10px;
  color: var(--white);
  align-items: center;
  border-radius: 500%;
  justify-content: center;
  background-color: var(--primary5);
}
.analytices-fast-5__bg-shape {
  top: 192px;
  left: -220px;
  width: 704px;
  height: 704px;
  filter: blur(100px);
  position: absolute;
  background: #E5F3F3;
}
.analytices-fast-5__bg-shape_2 {
  top: -34px;
  right: 0;
  width: 704px;
  height: 704px;
  filter: blur(100px);
  position: absolute;
  background: #DADAF8;
}

.why-choose-us-5__thumb {
  margin-right: -6px;
}
@media only screen and (max-width: 1199px) {
  .why-choose-us-5__thumb {
    margin-right: -20px;
  }
}
@media only screen and (max-width: 991px) {
  .why-choose-us-5__thumb {
    margin-right: 0;
    margin-bottom: 30px;
  }
}
.why-choose-us-5__wrap .section-title-3__wrapper {
  margin-bottom: 0;
}
.why-choose-us-5__wrap .section-title-3__wrapper .desc {
  max-width: 600px;
  margin-top: 16px;
}
@media only screen and (max-width: 767px) {
  .why-choose-us-5__wrap .section-title-3__wrapper .desc {
    margin-top: 10px;
  }
}
@media (max-width: 575px) {
  .why-choose-us-5__wrap .section-title-3__wrapper .desc {
    font-size: 15px;
  }
}
.why-choose-us-5__content {
  margin-top: 56px;
}
@media only screen and (max-width: 1399px) {
  .why-choose-us-5__content {
    margin-top: 30px;
  }
}
@media only screen and (max-width: 767px) {
  .why-choose-us-5__content {
    margin-bottom: 20px;
  }
}
.why-choose-us-5__info {
  cursor: pointer;
  margin-bottom: 24px;
  transition: all 0.3s ease-in-out;
}
.why-choose-us-5__info:last-of-type {
  margin-bottom: 0;
}
.why-choose-us-5__info.active {
  padding: 24px;
  border-radius: 8px;
  background-color: #F2F6FF;
  border: 1px solid var(--primary5);
}
.why-choose-us-5__title {
  gap: 19px;
  display: flex;
  font-weight: 600;
  font-size: 20px;
  margin-bottom: 6px;
  line-height: 28px;
  align-items: center;
  position: relative;
  letter-spacing: 1px;
  color: var(--black);
  font-family: var(--font_monts);
}
@media (max-width: 575px) {
  .why-choose-us-5__title {
    gap: 10px;
    font-size: 17px;
    flex-wrap: wrap;
  }
}
.why-choose-us-5__title::before {
  content: "";
  width: 12px;
  height: 12px;
  outline-offset: 2px;
  border-radius: 500px;
  display: inline-block;
  outline: 1px solid var(--primary5);
  background-color: var(--primary5);
}
.why-choose-us-5__dec {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: var(--secondary);
  font-family: var(--font_jakarta);
}

.testimonial-5__inner {
  background: linear-gradient(360deg, rgba(255, 255, 255, 0) 0%, rgb(242, 246, 255) 100%);
}
.testimonial-5__wrap {
  display: grid;
  overflow: hidden;
  border-radius: 16px;
  align-items: center;
  grid-template-columns: 261px 1fr;
  background-color: var(--white);
}
@media only screen and (max-width: 767px) {
  .testimonial-5__wrap {
    grid-template-columns: 200px 1fr;
  }
}
@media (max-width: 575px) {
  .testimonial-5__wrap {
    grid-template-columns: 1fr;
  }
}
.testimonial-5__content {
  padding: 32px;
}
@media only screen and (max-width: 1399px) {
  .testimonial-5__content {
    padding: 25px;
  }
}
@media only screen and (max-width: 1199px) {
  .testimonial-5__content {
    padding: 20px;
  }
}
@media only screen and (max-width: 991px) {
  .testimonial-5__media {
    max-width: 300px;
    width: 100%;
  }
}
@media (max-width: 575px) {
  .testimonial-5__media img {
    width: 100%;
    height: 300px;
    object-fit: cover;
  }
}
.testimonial-5__dec {
  font-weight: 600;
  font-style: Italic;
  font-size: 20px;
  line-height: 28px;
  max-width: 332px;
  margin-top: 44px;
  margin-bottom: 24px;
  color: var(--black);
  letter-spacing: 1px;
  font-family: var(--font_monts);
}
@media only screen and (max-width: 1399px) {
  .testimonial-5__dec {
    font-size: 18px;
  }
}
@media only screen and (max-width: 1199px) {
  .testimonial-5__dec {
    margin-top: 30px;
  }
}
@media only screen and (max-width: 991px) {
  .testimonial-5__dec {
    max-width: 100%;
  }
}
@media only screen and (max-width: 767px) {
  .testimonial-5__dec {
    max-width: 350px;
    margin-top: 20px;
    font-size: 16px;
    line-height: 22px;
  }
}
.testimonial-5__star {
  gap: 7px;
  display: flex;
  margin-bottom: 41px;
  align-items: center;
}
@media only screen and (max-width: 1399px) {
  .testimonial-5__star {
    margin-bottom: 30px;
  }
}
@media only screen and (max-width: 1199px) {
  .testimonial-5__star {
    margin-bottom: 20px;
  }
}
@media (max-width: 575px) {
  .testimonial-5__star {
    margin-bottom: 15px;
  }
}
.testimonial-5__star i {
  font-size: 18px;
  color: #F8C100;
}
@media (max-width: 575px) {
  .testimonial-5__star i {
    font-size: 16px;
  }
}
.testimonial-5__admin span {
  font-weight: 700;
  font-size: 24px;
  line-height: 32px;
  color: var(--black);
  letter-spacing: 0.5px;
  font-family: var(--font_monts);
}
@media only screen and (max-width: 1199px) {
  .testimonial-5__admin span {
    font-size: 20px;
    line-height: 1;
  }
}
@media (max-width: 575px) {
  .testimonial-5__admin span {
    font-size: 17px;
  }
}
.testimonial-5__admin p {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  margin-top: 8px;
  color: var(--secondary);
  font-family: var(--font_jakarta);
}
@media only screen and (max-width: 1199px) {
  .testimonial-5__admin p {
    line-height: 1;
  }
}
.testimonial-5__item {
  padding: 32px 40px;
  border-radius: 16px;
  background-color: var(--white);
}
@media only screen and (max-width: 1399px) {
  .testimonial-5__item {
    padding: 30px;
  }
}
@media only screen and (max-width: 1199px) {
  .testimonial-5__item {
    padding: 25px;
  }
}
.testimonial-5__item .testimonial-5__dec {
  font-weight: 600;
  font-style: Italic;
  font-size: 18px;
  line-height: 26px;
  max-width: 451px;
  letter-spacing: 0.5px;
  color: var(--black);
  margin-top: 13.5px;
  margin-bottom: 0;
  font-family: var(--font_monts);
}
.testimonial-5__thumb {
  gap: 16px;
  display: flex;
  align-items: center;
}
.testimonial-5__thumb .image {
  width: 56px;
  height: 56px;
}
.testimonial-5__thumb .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 500px;
  border: 2px solid var(--white);
}
.testimonial-5__info span {
  font-weight: 600;
  font-size: 18px;
  line-height: 26px;
  color: var(--black);
  letter-spacing: 0.5px;
  font-family: var(--font_monts);
}
.testimonial-5__info p {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  margin-top: 2px;
  color: var(--secondary);
  font-family: var(--font_jakarta);
}
.testimonial-5__author {
  gap: 10px;
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 24px;
  align-items: center;
  justify-content: space-between;
}
.testimonial-5__author .testimonial-5__quote {
  width: 56px;
  height: 56px;
  display: flex;
  border-radius: 35px;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, rgba(56, 75, 255, 0.32) 0%, rgba(255, 255, 255, 0) 100%);
}

.blog-5__top {
  gap: 15px;
  display: flex;
  align-items: end;
  flex-wrap: wrap;
  margin-bottom: 45px;
  padding-bottom: 48px;
  justify-content: space-between;
  border-bottom: 1px solid rgba(201, 201, 200, 0.24);
}
@media only screen and (max-width: 1199px) {
  .blog-5__top {
    padding-bottom: 30px;
    margin-bottom: 30px;
  }
}
@media only screen and (max-width: 991px) {
  .blog-5__top {
    padding-bottom: 20px;
    margin-bottom: 20px;
  }
}
.blog-5__top .section-title-5__wrapper {
  margin-bottom: 0;
}
@media (max-width: 575px) {
  .blog-5__top .section-title-5__wrapper .title {
    font-size: 29px;
    line-height: 39px;
  }
}
.blog-5__wrap {
  gap: 24px;
  display: flex;
  border-radius: 16px;
  align-items: center;
  background-color: #F2F6FF;
}
@media (max-width: 575px) {
  .blog-5__wrap {
    gap: 20px;
    flex-wrap: wrap;
  }
}
.blog-5__media img {
  border-radius: 16px 0 0 16px;
}
@media (max-width: 575px) {
  .blog-5__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px 16px 0 0;
  }
}
.blog-5__meta {
  gap: 72px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
@media only screen and (max-width: 1199px) {
  .blog-5__meta {
    gap: 20px;
  }
}
.blog-5__meta li {
  font-weight: 400;
  font-size: 18px;
  line-height: 1;
  display: inline-block;
  color: var(--secondary);
  font-family: var(--font_jakarta);
}
.blog-5__meta li:last-of-type {
  padding: 3px 11.55px;
  border-radius: 500px;
  border: 1px solid rgba(201, 201, 200, 0.24);
}
.blog-5__content .title {
  font-weight: 700;
  font-size: 24px;
  line-height: 32px;
  color: var(--black);
  margin-top: 24px;
  max-width: 304px;
  margin-bottom: 72px;
  letter-spacing: 0.5px;
  font-family: var(--font_monts);
}
@media only screen and (max-width: 1199px) {
  .blog-5__content .title {
    font-size: 22px;
    margin-bottom: 30px;
  }
}
@media only screen and (max-width: 991px) {
  .blog-5__content .title {
    max-width: 100%;
  }
}
.blog-5__content .title a:hover {
  color: var(--primary5);
}
.blog-5__item {
  overflow: hidden;
  border-radius: 16px;
  background-color: #F2F6FF;
}
.blog-5__item .blog-5__meta {
  gap: 48px;
  justify-content: space-between;
}
@media only screen and (max-width: 1399px) {
  .blog-5__item .blog-5__meta {
    gap: 20px;
  }
}
@media only screen and (max-width: 1199px) {
  .blog-5__item .blog-5__meta {
    gap: 14px;
  }
}
.blog-5__item .blog-5__meta li {
  font-size: 16px;
}
@media only screen and (max-width: 1199px) {
  .blog-5__item .blog-5__meta li {
    font-size: 14px;
  }
}
.blog-5__item .blog-5__meta li:last-of-type {
  padding: 3px 12.22px;
}
@media only screen and (max-width: 991px) {
  .blog-5__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}
.blog-5__info {
  padding: 16px 24px;
  padding-bottom: 32px;
}
@media only screen and (max-width: 1199px) {
  .blog-5__info {
    padding: 16px 15px;
  }
}
.blog-5__info .title {
  font-weight: 700;
  font-size: 20px;
  line-height: 28px;
  margin-top: 12px;
  max-width: 250px;
  color: var(--black);
  letter-spacing: 0.5px;
  font-family: var(--font_monts);
}
@media only screen and (max-width: 1199px) {
  .blog-5__info .title {
    font-size: 16px;
    line-height: 25px;
  }
}
@media only screen and (max-width: 767px) {
  .blog-5__info .title {
    font-size: 18px;
    line-height: 29px;
  }
}
@media (max-width: 575px) {
  .blog-5__info .title {
    font-size: 16px;
    line-height: 25px;
  }
}
.blog-5__info .title a:hover {
  color: var(--primary5);
}

.breadcrumb-wrapper {
  position: relative;
  background: var(--primary);
}
.breadcrumb-wrapper .page-heading {
  padding: 230px 0 130px;
  text-align: center;
  position: relative;
}
@media only screen and (max-width: 1399px) {
  .breadcrumb-wrapper .page-heading {
    padding: 190px 0 100px;
  }
}
@media only screen and (max-width: 1199px) {
  .breadcrumb-wrapper .page-heading {
    padding: 160px 0 80px;
  }
}
.breadcrumb-wrapper .page-heading h1 {
  color: var(--white);
  font-size: 72px;
  font-weight: 800;
}
@media only screen and (max-width: 1399px) {
  .breadcrumb-wrapper .page-heading h1 {
    font-size: 60px;
  }
}
@media only screen and (max-width: 1199px) {
  .breadcrumb-wrapper .page-heading h1 {
    font-size: 50px;
    text-align: center;
  }
}
@media only screen and (max-width: 991px) {
  .breadcrumb-wrapper .page-heading h1 {
    font-size: 40px;
  }
}
@media only screen and (max-width: 767px) {
  .breadcrumb-wrapper .page-heading h1 {
    font-size: 30px;
  }
}
@media (max-width: 575px) {
  .breadcrumb-wrapper .page-heading h1 {
    font-size: 30px;
  }
}
.breadcrumb-wrapper .page-heading .breadcrumb-items {
  display: flex;
  align-items: center;
  margin-top: 20px;
  gap: 10px;
  list-style: none;
  justify-content: center;
}
@media only screen and (max-width: 1199px) {
  .breadcrumb-wrapper .page-heading .breadcrumb-items {
    justify-content: center;
  }
}
.breadcrumb-wrapper .page-heading .breadcrumb-items li {
  color: var(--white);
  text-transform: capitalize;
  font-weight: 400;
  font-size: 16px;
}
.breadcrumb-wrapper .page-heading .breadcrumb-items li a {
  color: rgba(255, 255, 255, 0.7);
  transition: all 0.4s ease-in-out;
}
.breadcrumb-wrapper .page-heading .breadcrumb-items li a:hover {
  color: var(--red);
}
.breadcrumb-wrapper .page-heading .breadcrumb-items li i {
  color: var(--white);
}

.news-standard-wrapper .news-grid-items {
  margin-bottom: 48px;
}
@media only screen and (max-width: 1399px) {
  .news-standard-wrapper .news-grid-items {
    margin-bottom: 30px;
  }
}
.news-standard-wrapper .news-grid-items .news-image {
  overflow: hidden;
  border-radius: 10px;
}
.news-standard-wrapper .news-grid-items .news-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: all 1.5s ease-out;
}
.news-standard-wrapper .news-grid-items .news-content .date-list {
  display: flex;
  align-items: center;
  gap: 20px;
  list-style: none;
  margin-top: 24px;
  margin-bottom: 15px;
}
@media only screen and (max-width: 1399px) {
  .news-standard-wrapper .news-grid-items .news-content .date-list {
    flex-wrap: wrap;
    gap: 10px;
  }
}
.news-standard-wrapper .news-grid-items .news-content .date-list li i {
  margin-right: 10px;
}
.news-standard-wrapper .news-grid-items .news-content h3 {
  margin-bottom: 10px;
  font-size: 32px;
}
@media only screen and (max-width: 1399px) {
  .news-standard-wrapper .news-grid-items .news-content h3 {
    font-size: 25px;
  }
}
@media only screen and (max-width: 767px) {
  .news-standard-wrapper .news-grid-items .news-content h3 {
    font-size: 25px;
  }
}
.news-standard-wrapper .news-grid-items .news-content h3 a {
  background-position: 0 95%;
  background-repeat: no-repeat;
  background-size: 0% 2px;
  display: inline;
}
.news-standard-wrapper .news-grid-items .news-content h3 a:hover {
  color: var(--primary);
  background-size: 100% 2px;
  background-image: linear-gradient(180deg, var(--primary) 0%, var(--primary) 100%);
}
.news-standard-wrapper .news-grid-items .news-content .rr-btn {
  margin-top: 32px;
}
.news-standard-wrapper .news-grid-items:hover .news-image img {
  -webkit-transform: scale3d(1.1, 1.1, 1);
  transform: scale3d(1.1, 1.1, 1);
}

.news-details-wrapper .details-image {
  overflow: hidden;
  border-radius: 10px;
}
.news-details-wrapper .details-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.news-details-wrapper .news-details-content {
  margin-top: 24px;
}
.news-details-wrapper .news-details-content h3 {
  font-size: 36px;
  margin-bottom: 10px;
}
@media only screen and (max-width: 1399px) {
  .news-details-wrapper .news-details-content h3 {
    font-size: 25px;
  }
}
@media only screen and (max-width: 767px) {
  .news-details-wrapper .news-details-content h3 {
    font-size: 20px;
  }
}
.news-details-wrapper .news-details-content .list {
  margin-top: 20px;
  margin-bottom: 20px;
  list-style: none;
}
.news-details-wrapper .news-details-content .list li {
  font-size: 16px;
  font-weight: 400;
}
.news-details-wrapper .news-details-content .list li:not(:last-child) {
  margin-bottom: 12px;
}
.news-details-wrapper .news-details-content .list li i {
  margin-right: 10px;
  color: var(--primary);
}
.news-details-wrapper .news-details-content .sideber {
  padding: 30px 40px;
  background-color: var(--gray-three);
  margin-bottom: 40px;
  margin-top: 40px;
  border-radius: 10px;
}
@media only screen and (max-width: 767px) {
  .news-details-wrapper .news-details-content .sideber {
    padding: 30px;
  }
}
.news-details-wrapper .news-details-content .sideber h3 {
  margin-bottom: 15px;
  line-height: 150%;
  letter-spacing: 0.5px;
  font-size: 18px;
}
.news-details-wrapper .news-details-content .sideber .client-info-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media only screen and (max-width: 1399px) {
  .news-details-wrapper .news-details-content .sideber .client-info-item {
    flex-wrap: wrap;
    gap: 30px;
  }
}
.news-details-wrapper .news-details-content .sideber .client-info-item .client-info {
  display: flex;
  align-items: center;
  gap: 12px;
}
.news-details-wrapper .news-details-content .sideber .client-info-item .client-info .image {
  width: 70px;
  height: 70px;
  overflow: hidden;
  border-radius: 100%;
}
.news-details-wrapper .news-details-content .sideber .client-info-item .client-info .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.news-details-wrapper .news-details-content .sideber .client-info-item .client-info h4 {
  font-size: 20px;
}
.news-details-wrapper .news-details-content .sideber .client-info-item .icon {
  font-size: 48px;
  color: var(--primary);
}
.news-details-wrapper .news-details-content .tag-share-wrap {
  border-bottom: 1px solid rgba(16, 16, 16, 0.1);
  padding: 30px 0;
}
.news-details-wrapper .news-details-content .tag-share-wrap .tagcloud span {
  font-size: 20px;
  font-weight: 600;
  display: inline-block;
  margin-right: 8px;
  color: var(--black);
}
.news-details-wrapper .news-details-content .tag-share-wrap .tagcloud a {
  display: inline-block;
  padding: 12px 26px;
  line-height: 1;
  background: var(--gray-three);
  margin-right: 8px;
  text-transform: capitalize;
  font-weight: 400;
  transition: all 0.4s ease-in-out;
  border-radius: 30px;
}
@media only screen and (max-width: 1399px) {
  .news-details-wrapper .news-details-content .tag-share-wrap .tagcloud a {
    padding: 10px 18px;
    margin-bottom: 15px;
  }
}
.news-details-wrapper .news-details-content .tag-share-wrap .tagcloud a:hover {
  background-color: var(--primary);
  color: var(--white);
}
.news-details-wrapper .news-details-content .tag-share-wrap .social-share {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.news-details-wrapper .news-details-content .tag-share-wrap .social-share a {
  font-size: 16px;
  color: var(--black);
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 36px;
  border-radius: 500px;
  text-align: center;
  background: var(--gray-three);
}
.news-details-wrapper .news-details-content .tag-share-wrap .social-share a:hover {
  color: var(--white);
  background-color: var(--primary);
}
.news-details-wrapper .news-details-content .comments-area {
  margin-top: 40px;
}
.news-details-wrapper .news-details-content .comments-area .blog-single-comment {
  border-bottom: 1.2px solid rgba(191, 191, 191, 0.24);
}
@media only screen and (max-width: 767px) {
  .news-details-wrapper .news-details-content .comments-area .blog-single-comment {
    flex-wrap: wrap;
    gap: 20px;
  }
}
.news-details-wrapper .news-details-content .comments-area .blog-single-comment .image {
  width: 90px;
  height: 90px;
  display: flex;
  min-width: 90px;
  overflow: hidden;
  border-radius: 500px;
}
.news-details-wrapper .news-details-content .comments-area .blog-single-comment .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.news-details-wrapper .news-details-content .comments-area .blog-single-comment .content .head .con h5 {
  margin-bottom: 10px;
  font-weight: 600;
  font-size: 20px;
}
.news-details-wrapper .news-details-content .comments-area .blog-single-comment .content .reply {
  border-radius: 2px;
  padding: 5px 18px;
  font-weight: 400;
  color: var(--black);
  background: var(--gray-three);
  transition: all 0.4s ease-in-out;
}
.news-details-wrapper .news-details-content .comments-area .blog-single-comment .content .reply:hover {
  background-color: var(--primary);
  color: var(--white);
}
.news-details-wrapper .news-details-content .comment-form-wrap {
  padding: 30px;
  background-color: var(--gray-three);
}
.news-details-wrapper .news-details-content .comment-form-wrap h4 {
  margin-top: 0;
  margin-bottom: 0;
}
.news-details-wrapper .news-details-content .comment-form-wrap p {
  margin-bottom: 20px;
}
.news-details-wrapper .news-details-content .comment-form-wrap .form-clt span {
  color: var(--b);
  display: inline-block;
  margin-bottom: 10px;
  font-size: 14px;
  font-weight: 400;
}
.news-details-wrapper .news-details-content .comment-form-wrap .form-clt input,
.news-details-wrapper .news-details-content .comment-form-wrap .form-clt textarea {
  width: 100%;
  outline: none;
  border: none;
  border: 1px solid rgba(16, 16, 16, 0.1);
  background: rgba(255, 255, 255, 0.05);
  padding: 12px 20px;
  font-weight: 400;
  color: var(--black);
}
.news-details-wrapper .news-details-content .comment-form-wrap .form-clt input::placeholder,
.news-details-wrapper .news-details-content .comment-form-wrap .form-clt textarea::placeholder {
  color: var(--black);
}
.news-details-wrapper .news-details-content .comment-form-wrap .form-clt textarea {
  padding-bottom: 70px;
  resize: none;
}

.page-nav-wrap {
  margin-top: 60px;
}
@media only screen and (max-width: 1399px) {
  .page-nav-wrap {
    margin-top: 30px;
  }
}
.page-nav-wrap ul {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.page-nav-wrap ul li {
  display: inline-block;
}
.page-nav-wrap ul li .page-numbers {
  display: flex;
  width: 56px;
  height: 56px;
  line-height: 56px;
  text-align: center;
  justify-content: center;
  align-items: center;
  background-color: var(--white);
  border: 1px solid var(--black);
  color: var(--black);
  transition: all 0.4s ease-in-out;
  border-radius: 100px;
  font-weight: 400;
  transition: all 0.3s ease-in-out;
}
.page-nav-wrap ul li .page-numbers.current {
  background: linear-gradient(180deg, #1539EE 0%, #2ADDC8 100%);
  color: var(--white);
  border-radius: 10px;
}
.page-nav-wrap ul li .page-numbers.style-2 {
  display: inline-block;
  width: 110px;
  height: 48px;
  line-height: 45px;
  text-align: center;
  background-color: var(--primary);
  color: var(--white);
  transition: all 0.4s ease-in-out;
  border-radius: 100px;
  border: 1px solid var(--primary);
  font-weight: 400;
  transition: all 0.3s ease-in-out;
}
.page-nav-wrap ul li .page-numbers.style-2 i {
  color: var(--white);
}
@media (max-width: 767px) {
  .page-nav-wrap ul li .page-numbers {
    margin-top: 10px;
    width: 40px;
    height: 40px;
    line-height: 40px;
    font-size: 14px;
  }
}
.page-nav-wrap ul li .page-numbers i {
  margin-top: 2px;
  color: var(--black);
  transition: all 0.4s ease-in-out;
  margin-left: 10px;
}
.page-nav-wrap ul li .page-numbers:hover {
  background: var(--black);
  color: var(--white);
  border: 1px solid var(--black);
}
.page-nav-wrap ul li .page-numbers:hover i {
  color: var(--white);
}

.blog-section-5 .row {
  column-gap: 60px;
}
.blog-section-5__wrapper {
  background: var(--black);
}
.blog-section-5__btn .rr-btn-green {
  padding: 23px 58px;
  border-radius: 90px;
}
@media (max-width: 575px) {
  .blog-section-5__btn .rr-btn-green {
    padding: 16px 30px;
  }
}
.blog-section-5__wrap {
  gap: 60px;
  display: grid;
  grid-template-columns: auto auto auto;
}
@media only screen and (max-width: 1399px) {
  .blog-section-5__wrap {
    gap: 30px;
  }
}
@media only screen and (max-width: 991px) {
  .blog-section-5__wrap {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (max-width: 767px) {
  .blog-section-5__wrap {
    gap: 15px;
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 575px) {
  .blog-section-5__wrap {
    grid-template-columns: 1fr;
  }
}
.blog-section-5__item {
  border-radius: 10px;
  background: var(--white);
  padding: 43px 30px 35px 30px;
  transition: all 0.4s ease-in-out;
}
@media only screen and (max-width: 1399px) {
  .blog-section-5__item {
    padding: 43px 15px 35px 15px;
  }
}
.blog-section-5__item:hover .blog-section-5__icon a {
  color: var(--black);
  background: var(--yellow);
}
.blog-section-5__thumb {
  position: relative;
  border-radius: 10px;
}
.blog-section-5__thumb img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  object-fit: cover;
  clip-path: polygon(68% 0, 68% 15%, 100% 15%, 100% 100%, 0 100%, 0 0);
}
.blog-section-5__meta {
  gap: 73px;
  display: flex;
  padding-left: 12px;
  align-items: center;
}
.blog-section-5__catagory {
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
  position: relative;
  color: var(--black);
  font-family: var(--font_kanit);
}
.blog-section-5__catagory::before {
  content: "";
  top: 12px;
  width: 6px;
  left: -13px;
  height: 6px;
  display: block;
  position: absolute;
  border-radius: 100%;
  background: var(--black);
}
.blog-section-5__time {
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
  color: var(--black);
  position: relative;
  font-family: var(--font_kanit);
}
.blog-section-5__time::before {
  content: "";
  top: 14px;
  left: -50px;
  width: 30px;
  height: 1px;
  display: block;
  position: absolute;
  border-radius: 100%;
  background: var(--black);
}
.blog-section-5__title {
  font-size: 30px;
  font-weight: 600;
  line-height: 40px;
  color: var(--black);
  padding: 37px 0 33px 0;
  font-family: var(--font_instr);
  transition: all 0.3s ease-in-out;
}
@media only screen and (max-width: 1399px) {
  .blog-section-5__title br {
    display: none;
  }
}
@media only screen and (max-width: 1399px) {
  .blog-section-5__title {
    font-size: 20px;
    line-height: 33px;
    padding: 24px 0 24px 0;
  }
}
@media (max-width: 575px) {
  .blog-section-5__title {
    font-size: 17px;
    line-height: 26px;
  }
}
.blog-section-5__title:hover {
  color: var(--secondary);
}
.blog-section-5__icon {
  margin-top: 35px;
}
.blog-section-5__icon a {
  width: 56px;
  height: 56px;
  display: flex;
  color: var(--white);
  border-radius: 100%;
  align-items: center;
  justify-content: center;
  background: var(--black);
  transform: rotate(-45deg);
}
@media only screen and (max-width: 1199px) {
  .blog-section-5__icon a {
    width: 46px;
    height: 46px;
  }
}
.blog-section-5__date {
  top: 6px;
  right: 33px;
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
  color: var(--black);
  position: absolute;
  font-family: var(--font_kanit);
}
@media only screen and (max-width: 1399px) {
  .blog-section-5__date {
    top: 0;
    right: 8px;
    font-size: 16px;
  }
}
@media only screen and (max-width: 1199px) {
  .blog-section-5__date {
    font-size: 14px;
  }
}
@media only screen and (max-width: 767px) {
  .blog-section-5__date {
    grid-template-columns: repeat(2, 1fr);
    right: 0;
  }
}

.cart-page .container {
  max-width: 1350px;
  margin: 0 auto;
}
.cart-page__panel {
  max-width: 1320px;
  margin-left: auto;
  background: #F6F6F6;
  border-radius: 10px;
  box-shadow: 0 6px 18px rgba(16, 24, 40, 0.06);
  border: 1px solid rgba(16, 24, 40, 0.04);
  padding-bottom: 20px;
}
.cart-page__table {
  width: 100%;
  border-collapse: collapse;
  min-width: 700px;
}
.cart-page td {
  border: none;
  padding-left: 20px;
  padding-right: 20px;
  padding-top: 10px;
  padding-bottom: 10px;
  min-width: 230px;
}
.cart-page__th {
  text-align: start;
  padding: 10px;
  font-weight: 700;
  color: var(--black);
  font-family: var(--font_instr);
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 30px;
  border-bottom: 1px solid rgba(16, 24, 40, 0.04);
  vertical-align: middle;
}
.cart-page__item {
  border-bottom: 1px solid rgba(16, 24, 40, 0.04);
  width: 100%;
  margin: 10px;
  padding: 10px;
}
.cart-page__item:last-child {
  border-bottom: 0px;
  margin: 0;
}
.cart-page__product {
  display: flex;
  gap: 14px;
  align-items: center;
  padding: 18px 20px;
  vertical-align: middle;
  width: 350px;
}
.cart-page__product-media {
  flex: 0 0 110px;
  width: 110px;
  height: 110px;
  border-radius: 10px;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cart-page__thumb {
  width: 56px;
  height: 56px;
  object-fit: cover;
  border-radius: 8px;
  background: #fff;
  display: block;
}
.cart-page__product-meta {
  flex: 1;
}
.cart-page__product-title {
  color: var(--black);
  font-family: var(--font_kanit);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  color: var(--primary);
  margin-bottom: 6px;
}
.cart-page__product-variant {
  font-size: 12px;
  color: var(--secondary);
  letter-spacing: 0.4px;
}
.cart-page__price {
  padding: 18px 20px;
  font-weight: 700;
  color: var(--primary);
  width: 120px;
  white-space: nowrap;
  text-align: start;
  vertical-align: middle;
}
.cart-page__qty-cell {
  padding: 18px 20px;
  width: 260px;
  gap: 12px;
  vertical-align: middle;
}
.cart-page__qty {
  background: #f5f6f7;
  border-radius: 8px;
  padding: 6px;
  border: 1px solid rgba(16, 24, 40, 0.04);
  vertical-align: middle;
}
.cart-page__qty-btn {
  background: transparent;
  border: none;
  font-size: 18px;
  line-height: 1;
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--primary);
  user-select: none;
}
.cart-page__qty-btn:active {
  transform: translateY(1px);
}
.cart-page__qty-input {
  width: 64px;
  padding: 6px 8px;
  border: none;
  background: transparent;
  text-align: center;
  font-size: 14px;
  outline: none;
}
.cart-page__remove {
  background: transparent;
  border: none;
  color: var(--secondary);
  cursor: pointer;
  font-size: 16px;
  padding: 6px;
}
.cart-page__total {
  padding: 18px 20px;
  font-weight: 700;
  color: var(--primary);
  width: 120px;
  text-align: start;
  vertical-align: middle;
}
.cart-page__actions {
  margin-top: 20px;
  align-items: center;
}
.cart-page__coupon {
  display: flex;
  gap: 12px;
  align-items: center;
  max-width: 460px;
  margin-left: 20px;
}
.cart-page__coupon-input {
  flex: 1;
  padding: 17px 14px;
  border-radius: 500px;
  border: 1px solid #eee;
  background: #fff;
  border: 1px solid rgba(16, 24, 40, 0.04);
  font-size: 14px;
  outline: none;
  width: 100%;
}
.cart-page__coupon-msg {
  margin-top: 8px;
  font-size: 13px;
  color: var(--secondary);
}
.cart-page__summary-wrap {
  margin-top: 120px;
  border-radius: 15px;
  background: #F6F6F6;
  max-width: 561px;
  margin-left: auto;
  border-radius: 10px;
  padding: 18px;
  border: 1px solid rgba(16, 24, 40, 0.04);
  box-shadow: 0 6px 18px rgba(16, 24, 40, 0.06);
  box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.18);
  margin-bottom: 30px;
}
.cart-page__summary-title {
  color: #000;
  font-family: var(--font_instr);
  font-size: 30px;
  font-style: normal;
  font-weight: 600;
  line-height: 40px;
  color: var(--primary);
  margin-bottom: 20px;
}
.cart-page__summary-body {
  background: transparent;
  padding: 6px 0 12px;
}
.cart-page__row {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
  font-size: 14px;
  color: var(--secondary);
  border-bottom: 1px solid var(--border-color-two);
  margin-bottom: 20px;
  padding-bottom: 23px;
}
.cart-page__row:last-child {
  border: 0;
  margin-bottom: 0;
  padding-bottom: 0;
}
.cart-page__row--shipping {
  align-items: flex-start;
  gap: 8px;
}
.cart-page__row--total {
  font-weight: 800;
  color: var(--primary);
  padding-top: 12px;
}
.cart-page__label {
  color: var(--secondary);
  color: #000;
  font-family: var(--font_kanit);
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 30px;
}
.cart-page__value {
  color: var(--primary);
}
.cart-page__value--strong {
  font-weight: 800;
}
.cart-page__shipping-meta {
  font-size: 13px;
  color: var(--secondary);
}
.cart-page__change-address {
  color: var(--primary);
  text-decoration: underline;
  font-size: 13px;
}
@media only screen and (max-width: 1199px) {
  .cart-page {
    padding: 40px 0;
  }
  .cart-page__table {
    min-width: 0;
  }
}
@media only screen and (max-width: 991px) {
  .cart-page {
    padding: 32px 0;
  }
  .cart-page__th {
    font-size: 12px;
    padding: 14px 16px;
  }
  .cart-page__product {
    padding: 14px 16px;
  }
  .cart-page__price, .cart-page__total, .cart-page__qty-cell {
    padding: 14px 16px;
    width: auto;
  }
  .cart-page__coupon {
    max-width: 100%;
  }
}
@media only screen and (max-width: 767px) {
  .cart-page {
    padding: 24px 0;
  }
  .cart-page__table-wrap {
    border-radius: 10px;
  }
  .cart-page .cart-page__table,
  .cart-page .cart-page__head {
    width: 100%;
    min-width: 0;
  }
  .cart-page .cart-page__product {
    padding: 10px;
    margin-bottom: 5px;
  }
  .cart-page .cart-page__price,
  .cart-page .cart-page__qty-cell,
  .cart-page .cart-page__total {
    padding: 0;
    font-size: 13px;
    margin-top: 6px;
  }
  .cart-page .cart-page__coupon {
    flex-direction: column;
    gap: 8px;
  }
  .cart-page .cart-page__coupon-btn,
  .cart-page .cart-page__update-btn {
    width: 100%;
  }
}
@media (max-width: 575px) {
  .cart-page {
    padding: 18px 0;
  }
  .cart-page__thumb {
    width: 48px;
    height: 48px;
  }
  .cart-page__qty-input {
    width: 58px;
  }
  .cart-page__coupon-input {
    padding: 10px 12px;
    width: 100%;
  }
  .cart-page__checkout-btn {
    padding: 10px 12px;
    font-size: 14px;
  }
}

.check-out {
  background: #f4f6f8;
}
.check-out__box {
  background: transparent;
}
.check-out__box--summary {
  margin-top: 16px;
}
.check-out__heading {
  color: var(--black);
  font-family: var(--font_instr);
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 28px;
  margin-bottom: 25px;
}
.check-out__heading--right {
  text-align: left;
  color: var(--black);
  font-family: var(--font_instr);
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 28px;
  margin-bottom: 25px;
}
.check-out .check-out__box--form {
  padding: 0 8px;
  max-width: 720px;
  margin: 0 auto;
}
.check-out .check-out__box--form .check-out__toggle {
  margin-bottom: 12px;
}
.check-out .check-out__box--form .check-out__toggle-title {
  cursor: pointer;
  color: var(--black);
  font-family: var(--font_kanit);
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  padding: 16px 20px;
  display: block;
  border-radius: 10px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: var(--white);
}
.check-out .check-out__box--form .check-out__toggle-title .check-out__link {
  color: var(--primary);
  text-decoration: none;
  margin-left: 6px;
}
.check-out .check-out__box--form .check-out__form {
  background: transparent;
}
.check-out .check-out__box--form .check-out__form .check-out__label {
  display: block;
  color: var(--secondary);
  font-family: var(--font_kanit);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  margin-bottom: 10px;
}
.check-out .check-out__box--form .check-out__form .check-out__input,
.check-out .check-out__box--form .check-out__form .check-out__select,
.check-out .check-out__box--form .check-out__form .check-out__textarea {
  width: 100%;
  padding: 16px 20px;
  height: 56px;
  border-radius: 8px;
  border: 1px solid var(--border-color-one);
  border-radius: 10px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: #fff;
  font-size: 14px;
  color: var(--primary);
  outline: none;
  transition: box-shadow 0.12s ease, border-color 0.12s ease;
}
.check-out .check-out__box--form .check-out__form .check-out__input:focus,
.check-out .check-out__box--form .check-out__form .check-out__select:focus,
.check-out .check-out__box--form .check-out__form .check-out__textarea:focus {
  box-shadow: 0 6px 18px rgba(16, 24, 40, 0.06);
}
.check-out .check-out__box--form .check-out__form .check-out__select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--secondary) 50%), linear-gradient(135deg, var(--secondary) 50%, transparent 50%);
  background-position: calc(100% - 18px) calc(1em + 2px), calc(100% - 13px) calc(1em + 2px);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  padding-right: 36px;
  line-height: 1.4;
}
.check-out .check-out__box--form .check-out__form .check-out__textarea {
  resize: vertical;
}
.check-out .check-out__box--form .check-out__form .check-out__checks {
  display: flex;
  gap: 18px;
  margin-top: 8px;
  flex-wrap: wrap;
}
.check-out .check-out__box--form .check-out__form .check-out__checks .check-out__checkbox {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--secondary);
}
.check-out .check-out__box--form .check-out__form .check-out__checks .check-out__checkbox input[type=checkbox] {
  width: 16px;
  height: 16px;
  accent-color: var(--primary);
  /* Chrome/Edge support */
}
.check-out .check-out__box--form .check-out__form .check-out__checks .check-out__checkbox span {
  display: inline-block;
}
.check-out .check-out__box--summary {
  background: var(--white);
  border-radius: 10px;
  padding: 18px;
  box-shadow: 0 6px 18px rgba(16, 24, 40, 0.06);
  border: 1px solid rgba(16, 24, 40, 0.03);
  max-width: 480px;
}
.check-out .check-out__box--summary .order-summary__item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.check-out .check-out__box--summary .order-summary__media {
  width: 77px;
  height: 77px;
  border-radius: 10px;
  background: #f0f2f4;
  display: flex;
  align-items: center;
  justify-content: center;
}
.check-out .check-out__box--summary .order-summary__thumb {
  width: 56px;
  height: 56px;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid var(--border-color-one);
}
.check-out .check-out__box--summary .order-summary__title {
  color: var(--black);
  font-family: var(--font_kanit);
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
}
.check-out .check-out__box--summary .order-summary__qty {
  font-size: 13px;
  color: var(--secondary);
  margin-top: 4px;
}
.check-out .check-out__box--summary .order-summary__price {
  margin-left: auto;
  color: var(--primary);
  font-family: var(--font_kanit);
  font-size: 15px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
}
.check-out .check-out__box--summary .order-summary__divider {
  border: none;
  border-top: 1px solid var(--border-color-one);
  margin: 12px 0;
}
.check-out .check-out__box--summary .order-summary__row {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  color: var(--black);
  padding: 30px 0;
  font-family: var(--font_kanit);
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  border-top: 1px solid var(--border-color-two);
}
.check-out .check-out__box--summary .order-summary__value {
  color: var(--primary);
  font-size: 15px;
  font-style: normal;
  font-weight: 600;
  line-height: 24px;
}
.check-out .check-out__box--summary .order-summary__value.flat-rate {
  color: #555;
  font-family: var(--font_kanit);
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
}
.check-out .check-out__box--summary .order-summary__total {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  color: var(--black);
  padding: 30px 0;
  font-family: var(--font_kanit);
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  border-top: 1px solid var(--border-color-two);
  font-weight: 700;
}
.check-out .check-out__box--summary .order-summary__total .order-summary__total-label {
  color: var(--secondary);
  font-weight: 600;
}
.check-out .check-out__box--summary .order-summary__total .order-summary__total-value {
  color: var(--primary);
  font-size: 15px;
  font-style: normal;
  font-weight: 600;
  line-height: 24px;
}
.check-out .check-out__box--summary .order-summary__payment {
  padding: 30px;
  margin-top: 12px;
  border-radius: 10px;
  background: #f0f2f4;
}
.check-out .check-out__box--summary .order-summary__payment .order-summary__radio {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  border-radius: 8px;
  border: 1px solid rgba(16, 24, 40, 0.03);
  margin-bottom: 8px;
  font-size: 14px;
  cursor: pointer;
}
.check-out .check-out__box--summary .order-summary__payment .order-summary__radio input[type=radio] {
  width: 16px;
  height: 16px;
  accent-color: var(--primary);
}
.check-out .check-out__box--summary .order-summary__payment .order-summary__radio span {
  color: var(--primary);
}
.check-out .check-out__box--summary .order-summary__payment .order-summary__payment-note {
  font-size: 13px;
  color: var(--secondary);
  margin: 8px 6px 12px;
}
.check-out .check-out__box--summary .order-summary__payment .order-summary__paypal-help {
  font-size: 11px;
  color: var(--secondary);
  margin-left: 8px;
}
.check-out .check-out__box--summary .check-out__placeorder {
  width: 100%;
  display: inline-block;
  margin-top: 30px;
  padding: 12px 16px;
  background: var(--primary);
  color: var(--white);
  border: none;
  border-radius: 500px;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.08s ease, box-shadow 0.08s ease;
}
.check-out .check-out__box--summary .check-out__placeorder:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(255, 106, 0, 0.12);
}
@media only screen and (max-width: 1199px) {
  .check-out .check-out__box--summary {
    margin-top: 24px;
  }
}
@media only screen and (max-width: 991px) {
  .check-out .check-out__box--summary {
    padding: 14px;
  }
  .check-out .check-out__heading {
    font-size: 15px;
  }
}
@media only screen and (max-width: 767px) {
  .check-out .check-out__box--form {
    padding: 0 6px;
  }
  .check-out .check-out__box--summary {
    margin-top: 18px;
    padding: 12px;
  }
  .check-out .check-out__label {
    font-size: 13px;
  }
  .check-out .check-out__input,
  .check-out .check-out__select {
    padding: 9px 10px;
  }
  .check-out .order-summary__thumb {
    width: 48px;
    height: 48px;
  }
}
@media (max-width: 575px) {
  .check-out .check-out__box--summary {
    padding: 10px;
  }
  .check-out .check-out__placeorder {
    padding: 10px 12px;
    font-size: 15px;
  }
}

@media only screen and (max-width: 991px) {
  .contact-us-wrapper .contact-us__info {
    margin-top: 30px;
  }
}
.contact-us-wrapper .contact-us__info .text {
  max-width: 515px;
  padding-bottom: 24px;
  margin-bottom: 32px;
  border-bottom: 1px solid rgba(201, 201, 200, 0.24);
}
.contact-us-wrapper .contact-us__info .text .title {
  font-size: 40px;
  font-weight: 700;
  line-height: 48px;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}
@media only screen and (max-width: 1199px) {
  .contact-us-wrapper .contact-us__info .text .title {
    font-size: 34px;
  }
}
@media only screen and (max-width: 767px) {
  .contact-us-wrapper .contact-us__info .text .title {
    font-size: 28px;
  }
}
.contact-us-wrapper .contact-us__info .contact-us-box {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 24px;
  transition: all 0.4s ease-in-out;
}
@media only screen and (max-width: 1399px) {
  .contact-us-wrapper .contact-us__info .contact-us-box {
    display: grid;
  }
}
@media only screen and (max-width: 1199px) {
  .contact-us-wrapper .contact-us__info .contact-us-box {
    max-width: initial;
    display: flex;
    align-items: center;
  }
}
@media only screen and (max-width: 991px) {
  .contact-us-wrapper .contact-us__info .contact-us-box {
    display: grid;
  }
}
.contact-us-wrapper .contact-us__info .contact-us-box h3 {
  font-size: 18px;
  margin-bottom: 6px;
  font-weight: 600;
  line-height: 26px;
  letter-spacing: 0.5px;
}
.contact-us-wrapper .contact-us__info .contact-us-box .icon {
  width: 80px;
  min-width: 80px;
  height: 80px;
  justify-content: center;
  text-align: center;
  background-color: #F6F6F6;
  font-size: 30px;
  line-height: 80px;
  border-radius: 500px;
  color: var(--black);
  transition: all 0.4s ease-in-out;
}
.contact-us-wrapper .contact-us__info .contact-us-box .icon i {
  transition: all 0.4s ease-in-out;
  display: inline-block;
}
.contact-us-wrapper .contact-us__info .contact-us-box .contact-us-content span {
  color: var(--black);
  margin-bottom: 5px;
}
@media only screen and (max-width: 1399px) {
  .contact-us-wrapper .contact-us__info .contact-us-box .contact-us-content h5 br {
    display: none;
  }
}
@media only screen and (max-width: 1199px) {
  .contact-us-wrapper .contact-us__info .contact-us-box .contact-us-content h5 br {
    display: initial;
  }
}
.contact-us-wrapper .contact-us__info .contact-us-box:hover .icon {
  background-color: var(--primary);
  color: var(--white);
}
.contact-us-wrapper .contact-us__info .contact-us-box:hover .icon i {
  transform: scaleX(-1) !important;
  filter: brightness(0) invert(1);
}
.contact-us-wrapper .comment-form-wrap h3 {
  font-size: 40px;
  font-weight: 700;
  line-height: 48px;
  letter-spacing: 0.5px;
  margin-bottom: 32px;
}
@media only screen and (max-width: 1199px) {
  .contact-us-wrapper .comment-form-wrap h3 {
    font-size: 34px;
  }
}
@media only screen and (max-width: 767px) {
  .contact-us-wrapper .comment-form-wrap h3 {
    font-size: 28px;
  }
}
.contact-us-wrapper .comment-form-wrap p {
  margin-bottom: 20px;
}
.contact-us-wrapper .comment-form-wrap .form-clt {
  margin-bottom: 24px;
}
.contact-us-wrapper .comment-form-wrap .form-clt span {
  color: var(--black);
  display: inline-block;
  margin-bottom: 10px;
  font-size: 18px;
  font-weight: 600;
}
.contact-us-wrapper .comment-form-wrap .form-clt input,
.contact-us-wrapper .comment-form-wrap .form-clt textarea {
  width: 100%;
  outline: none;
  border: none;
  border-radius: 12px;
  background: #F6F6F6;
  padding: 22px 20px;
  font-weight: 400;
  font-size: 16px;
  color: var(--black);
}
.contact-us-wrapper .comment-form-wrap .form-clt input::placeholder,
.contact-us-wrapper .comment-form-wrap .form-clt textarea::placeholder {
  color: var(--black);
}
.contact-us-wrapper .comment-form-wrap .form-clt textarea {
  padding-bottom: 126px;
  resize: none;
}
.contact-us-wrapper .comment-form-wrap .rr-btn {
  margin-top: 24px;
  width: 100%;
}

.map-box {
  margin-bottom: -236px;
}
@media only screen and (max-width: 1919px) {
  .map-box {
    margin-bottom: 0;
  }
}
.map-box iframe {
  border: 0;
  width: 100%;
  height: 800px;
}
@media only screen and (max-width: 1199px) {
  .map-box iframe {
    height: 500px;
  }
}
@media only screen and (max-width: 767px) {
  .map-box iframe {
    height: 300px;
  }
}

/* Base styles for shop-area */
.shop-area {
  background: #f4f6f8;
  /* MAIN content */
  /* .shop-main */
  /* responsive tweaks */
}
.shop-area .shop-sidebar {
  background: transparent;
}
.shop-area .shop-sidebar__widget {
  background: #ffffff;
  border-radius: 12px;
  padding: 18px;
  box-shadow: 0 6px 18px rgba(16, 24, 40, 0.06);
  margin-bottom: 18px;
  border: 1px solid var(--border-color-two);
}
.shop-area .shop-sidebar__widget .shop-sidebar__title {
  font-size: 12px;
  color: var(--secondary);
  font-weight: 700;
  letter-spacing: 0.6px;
  margin-bottom: 12px;
}
.shop-area .shop-sidebar__categories .shop-sidebar__item {
  font-size: 14px;
  color: var(--primary);
  padding: 8px 6px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.12s ease;
  border-bottom: 1px solid var(--border-color-two);
}
.shop-area .shop-sidebar__categories .shop-sidebar__item a {
  text-decoration: none;
  font-family: var(--font_kanit);
  background: var(--white);
  color: var(--gray-two);
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
}
.shop-area .shop-sidebar__categories .shop-sidebar__item:hover {
  background: #f7f8f9;
}
.shop-area .shop-sidebar__categories .shop-sidebar__item .shop-sidebar__count {
  color: var(--gray);
  font-size: 13px;
}
.shop-area .shop-sidebar__price .shop-sidebar__range-values {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: var(--secondary);
  margin-bottom: 8px;
}
.shop-area .shop-sidebar__price .shop-sidebar__range {
  width: 100%;
  accent-color: var(--orange);
  margin: 6px 0 12px;
}
.shop-area .shop-sidebar__price .shop-sidebar__filter-btn-wrap {
  display: flex;
  gap: 8px;
  align-items: center;
}
.shop-area .shop-sidebar__price .shop-sidebar__filter-btn-wrap .shop-sidebar__price-input {
  flex: 1;
  padding: 8px 10px;
  border-radius: 8px;
  border: 1px solid var(--border-color-two);
  font-size: 13px;
  background: #f7f8f9;
}
.shop-area .shop-sidebar__price .shop-sidebar__filter-btn-wrap .shop-sidebar__filter-btn {
  background: var(--primary);
  color: var(--white);
  border: none;
  padding: 8px 12px;
  border-radius: 8px;
  font-weight: 700;
  cursor: pointer;
}
.shop-area .shop-sidebar__colors .shop-sidebar__color-item label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--primary);
  padding: 6px;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.12s;
}
.shop-area .shop-sidebar__colors .shop-sidebar__color-item input[type=radio] {
  display: none;
}
.shop-area .shop-sidebar__colors .shop-sidebar__color-item input[type=radio]:checked + .color-dot {
  outline: 2px solid var(--orange);
}
.shop-area .shop-sidebar__colors .shop-sidebar__color-item:hover {
  background: #f7f8f9;
}
.shop-area .shop-sidebar__colors .shop-sidebar__color-item .color-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.06);
}
.shop-area .shop-sidebar__colors .shop-sidebar__color-item .color-dot--yellow {
  background: var(--yellow);
}
.shop-area .shop-sidebar__colors .shop-sidebar__color-item .color-dot--green {
  background: var(--lime-green);
}
.shop-area .shop-sidebar__colors .shop-sidebar__color-item .color-dot--red {
  background: var(--red);
}
.shop-area .shop-sidebar__colors .shop-sidebar__color-item .color-dot--purple {
  background: var(--purple);
}
.shop-area .shop-sidebar__colors .shop-sidebar__color-item .color-dot--orange {
  background: var(--orange);
}
.shop-area .shop-sidebar__colors .shop-sidebar__color-item .count {
  color: var(--gray);
  margin-left: auto;
  font-size: 13px;
}
.shop-area .shop-sidebar__size .shop-sidebar__size-label {
  position: relative;
}
.shop-area .shop-sidebar__size .shop-sidebar__size-label input {
  display: none;
}
.shop-area .shop-sidebar__size .shop-sidebar__size-label input:checked + .shop-sidebar__size-btn {
  background: var(--primary);
  color: var(--white);
  border-color: var(--orange);
}
.shop-area .shop-sidebar__size .shop-sidebar__size-btn {
  border: 1px solid var(--border-color-two);
  background: transparent;
  padding: 8px 10px;
  border-radius: 8px;
  font-weight: 700;
  cursor: pointer;
  transition: 0.2s;
}
.shop-area .shop-sidebar__featured .shop-sidebar__featured-item {
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 8px 6px;
  border-radius: 8px;
}
.shop-area .shop-sidebar__featured .shop-sidebar__featured-item:hover {
  background: #f7f8f9;
}
.shop-area .shop-sidebar__featured .shop-sidebar__featured-item .shop-sidebar__featured-thumb {
  width: 48px;
  height: 48px;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid var(--border-color-two);
}
.shop-area .shop-sidebar__featured .shop-sidebar__featured-item .shop-sidebar__featured-title {
  display: block;
  font-family: var(--font_instr);
  font-weight: 600;
  font-size: 18px;
  line-height: 24px;
  color: var(--primary);
  text-decoration: none;
}
.shop-area .shop-sidebar__featured .shop-sidebar__featured-item .shop-sidebar__featured-title:hover {
  color: var(--orange);
}
.shop-area .shop-sidebar__featured .shop-sidebar__featured-item .shop-sidebar__featured-price {
  font-size: 13px;
  color: var(--gray);
}
.shop-area .shop-sidebar__featured .shop-sidebar__featured-item .shop-sidebar__featured-price .muted {
  color: var(--border-color-two);
  font-size: 12px;
  margin-left: 6px;
}
.shop-area .shop-sidebar__tags .shop-sidebar__tags-wrap {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.shop-area .shop-sidebar__tags .shop-sidebar__tags-wrap .shop-sidebar__tag {
  background: transparent;
  border: 1px solid var(--border-color-two);
  padding: 6px 10px;
  border-radius: 16px;
  font-size: 13px;
  text-decoration: none;
  color: var(--primary);
  transition: 0.2s;
}
.shop-area .shop-sidebar__tags .shop-sidebar__tags-wrap .shop-sidebar__tag:hover {
  background: var(--primary);
  color: var(--white);
  border-color: var(--orange);
}
.shop-area .shop-sidebar {
  background: transparent;
  /* Responsive */
}
.shop-area .shop-sidebar__widget {
  background: #ffffff;
  border: 1px solid var(--border-color-two);
  border-radius: 12px;
  padding: 22px 20px;
  box-shadow: 0 6px 18px rgba(16, 24, 40, 0.06);
  margin-bottom: 20px;
  transition: all 0.2s ease;
}
.shop-area .shop-sidebar__widget:hover {
  box-shadow: 0 6px 22px rgba(16, 24, 40, 0.1);
}
.shop-area .shop-sidebar__widget .shop-sidebar__title {
  position: relative;
  color: var(--primary);
  font-family: var(--font_instr);
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  padding-bottom: 17px;
  border-bottom: 1px solid var(--border-color-two);
  margin-bottom: 24px;
}
.shop-area .shop-sidebar__widget .shop-sidebar__title:before {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  width: 60px;
  height: 2px;
  background: var(--primary);
}
.shop-area .shop-sidebar__list, .shop-area .shop-sidebar__color-list, .shop-area .shop-sidebar__featured-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.shop-area .shop-sidebar__item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 15px;
  color: var(--primary);
  padding: 10px 8px;
  transition: background 0.2s ease;
  cursor: pointer;
}
.shop-area .shop-sidebar__item:hover {
  background: #f7f8f9;
}
.shop-area .shop-sidebar__item .shop-sidebar__count {
  font-size: 13px;
  color: var(--gray);
}
.shop-area .shop-sidebar__price .shop-sidebar__range-values {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: var(--secondary);
  margin-bottom: 10px;
}
.shop-area .shop-sidebar__price .shop-sidebar__range {
  width: 100%;
  height: 4px;
  accent-color: var(--primary);
  margin-bottom: 14px;
}
.shop-area .shop-sidebar__price .shop-sidebar__filter-btn-wrap {
  display: flex;
  gap: 8px;
  align-items: center;
}
.shop-area .shop-sidebar__price .shop-sidebar__filter-btn-wrap .shop-sidebar__price-input {
  flex: 1;
  padding: 8px 12px;
  border: 1px solid var(--border-color-two);
  border-radius: 8px;
  font-size: 13px;
}
.shop-area .shop-sidebar__price .shop-sidebar__filter-btn-wrap .shop-sidebar__filter-btn {
  background: var(--primary);
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  padding: 8px 14px;
  border-radius: 8px;
  border: none;
  transition: background 0.2s;
}
.shop-area .shop-sidebar__price .shop-sidebar__filter-btn-wrap .shop-sidebar__filter-btn:hover {
  background: var(--gray);
}
.shop-area .shop-sidebar__color-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 6px;
  font-size: 14px;
  color: var(--primary);
  border-radius: 8px;
  transition: background 0.15s ease;
}
.shop-area .shop-sidebar__color-item:hover {
  background: #f7f8f9;
}
.shop-area .shop-sidebar__color-item .color-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  display: inline-block;
}
.shop-area .shop-sidebar__color-item .color-dot--yellow {
  background: var(--yellow);
}
.shop-area .shop-sidebar__color-item .color-dot--green {
  background: var(--lime-green);
}
.shop-area .shop-sidebar__color-item .color-dot--red {
  background: var(--red);
}
.shop-area .shop-sidebar__color-item .color-dot--purple {
  background: var(--purple);
}
.shop-area .shop-sidebar__color-item .color-dot--orange {
  background: var(--orange);
}
.shop-area .shop-sidebar__color-item .count {
  margin-left: auto;
  color: var(--gray);
  font-size: 13px;
}
.shop-area .shop-sidebar__size-buttons {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.shop-area .shop-sidebar__size-buttons .shop-sidebar__size-btn {
  display: block;
  border: 1px solid var(--border-color-two);
  background: transparent;
  color: var(--primary);
  font-weight: 700;
  padding: 8px 12px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
}
.shop-area .shop-sidebar__size-buttons .shop-sidebar__size-btn:hover, .shop-area .shop-sidebar__size-buttons .shop-sidebar__size-btn.active {
  background: var(--primary);
  color: var(--white);
  border-color: var(--orange);
}
.shop-area .shop-sidebar__featured-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px;
  border-radius: 8px;
  transition: background 0.15s ease;
}
.shop-area .shop-sidebar__featured-item:hover {
  background: #f7f8f9;
}
.shop-area .shop-sidebar__featured-item .shop-sidebar__featured-thumb {
  width: 50px;
  height: 50px;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid var(--border-color-two);
}
.shop-area .shop-sidebar__featured-item .shop-sidebar__featured-title {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 4px;
}
.shop-area .shop-sidebar__featured-item .shop-sidebar__featured-price {
  font-size: 13px;
  color: var(--gray);
}
.shop-area .shop-sidebar__featured-item .shop-sidebar__featured-price .muted {
  text-decoration: line-through;
  margin-left: 4px;
  color: var(--border-color-two);
}
.shop-area .shop-sidebar__tags-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.shop-area .shop-sidebar__tags-wrap .shop-sidebar__tag {
  border: 1px solid var(--border-color-two);
  background: transparent;
  font-size: 13px;
  padding: 6px 12px;
  border-radius: 16px;
  cursor: pointer;
  transition: all 0.2s ease;
}
.shop-area .shop-sidebar__tags-wrap .shop-sidebar__tag:hover {
  background: var(--primary);
  color: var(--white);
  border-color: var(--orange);
}
@media only screen and (max-width: 991px) {
  .shop-area .shop-sidebar {
    margin-top: 24px;
  }
}
.shop-area .shop-main {
  /* product grid & cards */
}
.shop-area .shop-main__controls {
  border-radius: 20px;
  background: var(--white);
  padding: 25px 35px;
  margin-bottom: 30px;
}
.shop-area .shop-main__controls .shop-main__showing {
  color: var(--secondary);
  font-size: 13px;
}
.shop-area .shop-main__controls .shop-main__sort {
  min-width: 180px;
  border-radius: 10px;
  line-height: 2;
}
.shop-area .shop-main__controls .shop-main__sort:focus {
  box-shadow: none;
}
.shop-area .shop-main__controls .shop-main__view-toggle {
  display: flex;
  gap: 6px;
}
.shop-area .shop-main__controls .shop-main__view-toggle .shop-main__view-btn {
  border: 1px solid var(--border-color-two);
  background: var(--white);
  width: 40px;
  height: 40px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.shop-area .shop-main__controls .shop-main__view-toggle .shop-main__view-btn--active {
  box-shadow: 0 6px 18px rgba(16, 24, 40, 0.06);
}
.shop-area .shop-main__grid .product-card {
  background: var(--white);
  border-radius: 12px;
  padding: 12px;
  box-shadow: 0 6px 18px rgba(16, 24, 40, 0.06);
  border: 1px solid var(--border-color-two);
  display: flex;
  flex-direction: column;
  min-height: 320px;
}
.shop-area .shop-main__grid .product-card__media {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  background: linear-gradient(180deg, rgb(247, 247, 247) 0%, rgb(255, 255, 255) 100%);
  border-radius: 10px;
  margin-bottom: 12px;
}
.shop-area .shop-main__grid .product-card__media .product-card__badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--primary);
  color: var(--white);
  font-weight: 700;
  font-size: 12px;
  padding: 6px 8px;
  border-radius: 8px;
}
.shop-area .shop-main__grid .product-card__media .product-card__img {
  width: 120px;
  height: auto;
  display: block;
  object-fit: contain;
}
.shop-area .shop-main__grid .product-card__body {
  margin-top: auto;
  text-align: center;
}
.shop-area .shop-main__grid .product-card__body .product-card__rating {
  font-size: 13px;
  color: var(--orange);
  margin-bottom: 6px;
}
.shop-area .shop-main__grid .product-card__body .product-card__title {
  font-size: 15px;
  font-weight: 700;
  margin: 6px 0;
  color: var(--primary);
}
.shop-area .shop-main__grid .product-card__body .product-card__price {
  font-size: 16px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 10px;
}
.shop-area .shop-main__grid .product-card__body .product-card__add {
  border: 1px solid var(--border-color-two);
  background: transparent;
  padding: 8px 12px;
  border-radius: 8px;
  font-weight: 700;
  cursor: pointer;
}
.shop-area .shop-main__grid .product-card__body .product-card__add--dark {
  background: var(--black);
  color: var(--white);
  border: none;
}
.shop-area .shop-main__pagination {
  margin-top: 60px;
}
.shop-area .shop-main__pagination .pagination .page-item .page-link {
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border-color-two);
  margin: 0 6px;
  color: var(--primary);
  background: var(--white);
}
.shop-area .shop-main__pagination .pagination .page-item .page-link:focus {
  box-shadow: none;
}
.shop-area .shop-main__pagination .pagination .page-item.active .page-link {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}
@media only screen and (max-width: 991px) {
  .shop-area .shop-area {
    padding: 28px 0;
  }
  .shop-area .shop-sidebar__widget {
    padding: 14px;
  }
  .shop-area .shop-main__controls {
    gap: 8px;
  }
  .shop-area .shop-main__grid .product-card {
    min-height: 300px;
  }
  .shop-area .shop-main__grid .product-card .product-card__img {
    width: 110px;
  }
}
@media only screen and (max-width: 767px) {
  .shop-area {
    /* Make the layout stack nicely: sidebar above products on small screens (HTML order already ensures this) */
  }
  .shop-area .shop-area {
    padding: 20px 0;
  }
  .shop-area .shop-sidebar {
    margin-bottom: 14px;
  }
  .shop-area .shop-main__controls {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    padding: 5px;
  }
  .shop-area .shop-main__controls .shop-main__sort {
    width: 100%;
  }
  .shop-area .shop-main__grid .product-card {
    min-height: 260px;
  }
  .shop-area .shop-main__grid .product-card .product-card__img {
    width: 100px;
  }
  .shop-area .shop-main__pagination {
    margin-top: 12px;
  }
}
@media (max-width: 575px) {
  .shop-area .shop-sidebar__widget {
    padding: 12px;
    border-radius: 10px;
  }
  .shop-area .shop-sidebar__featured .shop-sidebar__featured-thumb {
    width: 44px;
    height: 44px;
  }
  .shop-area .shop-main__grid {
    row-gap: 14px;
    column-gap: 12px;
  }
}

/* .shop-area */
.product-details {
  background: #f4f6f8;
  /* IMAGE CARD (left) */
  /* PRODUCT INFO (right) */
  /* === RESPONSIVE === */
}
.product-details .product-details__image-card {
  background: var(--white);
  border-radius: 20px;
  padding: 28px;
  box-shadow: var(--shadow-sm);
  position: relative;
  min-height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
  /* badge */
}
.product-details .product-details__image-card .product-details__badge {
  position: absolute;
  top: 18px;
  left: 18px;
  background: var(--black);
  color: #fff;
  font-weight: 600;
  font-size: 12px;
  padding: 6px 8px;
  border-radius: 6px;
  box-shadow: 0 3px 8px rgba(11, 11, 11, 0.12);
  z-index: 5;
}
.product-details .product-details__image-card .product-details__image-inner {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-details .product-details__image-card .product-details__img {
  max-width: 86%;
  height: auto;
  display: block;
  border-radius: 12px;
  object-fit: contain;
}
.product-details .product-details__info {
  padding-left: 18px;
}
.product-details .product-details__info .product-details__title {
  font-family: var(--font_instr);
  font-weight: 600;
  font-size: 30px;
  line-height: 40px;
  margin-bottom: 15px;
}
.product-details .product-details__info .product-details__meta {
  margin-bottom: 12px;
}
.product-details .product-details__info .product-details__meta .product-details__rating .product-details__stars {
  font-size: 14px;
  color: #ffb800;
  letter-spacing: 1px;
  margin-right: 8px;
}
.product-details .product-details__info .product-details__meta .product-details__rating .product-details__reviews {
  font-size: 13px;
  color: var(--muted);
}
.product-details .product-details__info .product-details__meta .product-details__stock-pill {
  margin-left: auto;
  padding: 6px 20px;
  border-radius: 18px;
  align-self: center;
  font-family: var(--font_kanit);
  background: var(--white);
  color: var(--gray-two);
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
}
.product-details .product-details__info .product-details__price-wrap {
  display: flex;
  align-items: baseline;
  gap: 12px;
  padding-bottom: 25px;
  margin-bottom: 25px;
  border-bottom: 1px solid var(--border-color-two);
}
.product-details .product-details__info .product-details__price-wrap .product-details__price--new {
  font-family: var(--font_instr);
  font-weight: 500;
  font-size: 20px;
  line-height: 100%;
}
.product-details .product-details__info .product-details__price-wrap .product-details__price--old {
  font-family: var(--font_instr);
  font-weight: 500;
  font-size: 20px;
  line-height: 100%;
  text-decoration: line-through;
}
.product-details .product-details__info .product-details__desc {
  font-family: var(--font_kanit);
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  padding-bottom: 25px;
  border-bottom: 1px solid var(--border-color-two);
}
.product-details .product-details__info .product-details__divider {
  border: none;
  height: 1px;
  background: var(--border-color-two);
  margin: 8px 0 60px;
}
.product-details .product-details__info .product-details__controls {
  border-radius: 15px;
}
.product-details .product-details__info .product-details__controls .product-details__quantity {
  background: var(--white);
  border-radius: 10px;
  padding: 6px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-width: 120px;
}
.product-details .product-details__info .product-details__controls .product-details__quantity .product-details__qty-btn {
  background: transparent;
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  font-size: 20px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.15s ease;
}
.product-details .product-details__info .product-details__controls .product-details__quantity .product-details__qty-btn:hover {
  background: rgba(16, 24, 40, 0.04);
}
.product-details .product-details__info .product-details__controls .product-details__quantity .product-details__qty-input {
  width: 44px;
  height: 36px;
  border-radius: 8px;
  border: none;
  text-align: center;
  font-weight: 600;
  background: transparent;
  outline: none;
}
.product-details .product-details__info .product-details__controls .product-details__add-btn {
  min-width: 370px;
  transition: all 0.3s;
}
.product-details .product-details__info .product-details__controls .product-details__add-btn:hover {
  background: var(--primary);
  transform: translateY(-1px);
  color: var(--white);
}
.product-details__tabs {
  margin-top: 120px;
}
.product-details__tabs .product-details__tabs-nav {
  border-bottom: 1px solid var(--border-color-two);
}
.product-details__tabs .product-details__tabs-nav .nav-link {
  color: var(--primary);
  font-weight: 600;
  padding: 10px 20px;
  border: none;
  border-radius: 10px 10px 0 0;
  transition: 0.3s;
}
.product-details__tabs .product-details__tabs-nav .nav-link.active {
  background: var(--primary);
  color: var(--white);
}
.product-details__tabs .product-details__tabs-nav .nav-link:hover {
  color: var(--black);
}
.product-details__tabs .product-details__text {
  font-family: var(--font_kanit);
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
}
.product-details__related .product-details__related-title {
  color: var(--primary);
  font-family: var(--font_instr);
  font-size: 36px;
  font-style: normal;
  font-weight: 700;
  line-height: 46px;
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: auto;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
  color: var(--primary);
  margin-bottom: 70px;
}
@media only screen and (max-width: 991px) {
  .product-details__info {
    margin-top: 20px;
    text-align: center;
  }
  .product-details .product-details__image-card {
    min-height: 320px;
    padding: 22px;
  }
  .product-details .product-details__image-card .product-details__img {
    max-width: 78%;
  }
  .product-details .product-details__info {
    padding-left: 0;
    margin-top: 6px;
  }
  .product-details .product-details__info .product-details__add-btn {
    min-width: 180px;
  }
  .product-details .product-details__meta {
    flex-wrap: wrap;
    gap: 8px;
  }
  .product-details .product-details__meta .product-details__stock-pill {
    margin-left: 0;
  }
}
@media only screen and (max-width: 767px) {
  .product-details .product-details__image-card {
    padding: 18px;
    border-radius: 12px;
    min-height: 260px;
  }
  .product-details .product-details__image-card .product-details__img {
    max-width: 92%;
  }
  .product-details .product-details__image-card .product-details__badge {
    top: 12px;
    left: 12px;
    font-size: 11px;
    padding: 5px 7px;
  }
  .product-details .product-details__info .product-details__title {
    font-size: 18px;
  }
  .product-details .product-details__info .product-details__price-wrap .product-details__price--new {
    font-size: 16px;
  }
  .product-details .product-details__info .product-details__price-wrap .product-details__price--old {
    font-size: 13px;
  }
  .product-details .product-details__info .product-details__controls {
    width: 100%;
    justify-content: space-between;
  }
  .product-details .product-details__info .product-details__controls .product-details__quantity {
    min-width: 110px;
  }
  .product-details .product-details__info .product-details__controls .product-details__add-btn {
    flex: 1 1 auto;
    min-width: 0;
  }
  .product-details .product-details__title {
    font-size: 1.4rem;
  }
  .product-details .product-details__tabs-nav .nav-link {
    font-size: 0.9rem;
    padding: 8px 10px;
  }
  .product-details .product-card {
    padding: 15px;
  }
}

.main-sideber .single-sidebar-widget {
  padding: 40px 35px;
  margin-bottom: 30px;
  border-radius: 10px;
  background-color: var(--gray-three);
}
@media only screen and (max-width: 1199px) {
  .main-sideber .single-sidebar-widget {
    padding: 30px 20px;
  }
}
.main-sideber .single-sidebar-widget .wid-title {
  margin-bottom: 20px;
}
.main-sideber .single-sidebar-widget .search-widget form {
  width: 100%;
  position: relative;
}
.main-sideber .single-sidebar-widget .search-widget form input {
  background-color: var(--white);
  font-size: 18px;
  font-weight: 400;
  padding: 16px 20px;
  padding-right: 70px;
  width: 100%;
  border-radius: 10px;
  border: none;
  outline: none;
  color: var(--primary);
}
.main-sideber .single-sidebar-widget .search-widget form button {
  position: absolute;
  right: -2px;
  top: 0;
  width: 58px;
  font-size: 18px;
  height: 100%;
  border-radius: 0px 10px 10px 0px;
  background-color: var(--primary);
  color: var(--white);
  text-align: center;
  transition: all 0.3s ease-in-out;
}
.main-sideber .single-sidebar-widget .search-widget form button:hover {
  background-color: var(--red);
}
.main-sideber .single-sidebar-widget .news-widget-categories ul li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 18px;
  font-weight: 400;
  background-color: var(--white);
  transition: all 0.4s ease-in-out;
  border-radius: 10px;
  overflow: hidden;
  line-height: 1;
  padding: 20px;
  position: relative;
}
.main-sideber .single-sidebar-widget .news-widget-categories ul li::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background: var(--primary);
  z-index: 0;
  transition: width 0.5s ease;
}
.main-sideber .single-sidebar-widget .news-widget-categories ul li a {
  color: var(--black);
}
.main-sideber .single-sidebar-widget .news-widget-categories ul li span {
  transition: all 0.4s ease-in-out;
  color: var(--black);
}
.main-sideber .single-sidebar-widget .news-widget-categories ul li:not(:last-child) {
  margin-bottom: 20px;
}
.main-sideber .single-sidebar-widget .news-widget-categories ul li:hover::before {
  width: 100%;
}
.main-sideber .single-sidebar-widget .news-widget-categories ul li:hover a {
  color: var(--white);
  position: relative;
  z-index: 999;
}
.main-sideber .single-sidebar-widget .news-widget-categories ul li:hover span {
  color: var(--white);
  position: relative;
  z-index: 999;
}
.main-sideber .single-sidebar-widget .recent-post-area .recent-items {
  display: flex;
  align-items: center;
  gap: 20px;
}
.main-sideber .single-sidebar-widget .recent-post-area .recent-items:not(:last-child) {
  margin-bottom: 20px;
}
@media (max-width: 575px) {
  .main-sideber .single-sidebar-widget .recent-post-area .recent-items {
    flex-wrap: wrap;
  }
}
.main-sideber .single-sidebar-widget .recent-post-area .recent-items .recent-thumb {
  width: 90px;
  height: 90px;
  min-width: 90px;
  overflow: hidden;
  border-radius: 10px;
}
.main-sideber .single-sidebar-widget .recent-post-area .recent-items .recent-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.main-sideber .single-sidebar-widget .recent-post-area .recent-items .recent-content h3 {
  margin-bottom: 10px;
  font-size: 22px;
  line-height: 28px;
}
@media only screen and (max-width: 1199px) {
  .main-sideber .single-sidebar-widget .recent-post-area .recent-items .recent-content h3 {
    font-size: 18px;
    line-height: 20px;
  }
}
.main-sideber .single-sidebar-widget .recent-post-area .recent-items .recent-content h3 a:hover {
  color: var(--primary);
}
.main-sideber .single-sidebar-widget .recent-post-area .recent-items .recent-content ul {
  list-style: none;
}
.main-sideber .single-sidebar-widget .recent-post-area .recent-items .recent-content ul li {
  color: var(--primary);
}
.main-sideber .single-sidebar-widget .tagcloud a {
  display: inline-block;
  padding: 12px 20px;
  line-height: 1;
  font-size: 16px;
  font-weight: 400;
  background: transparent;
  margin-right: 5px;
  overflow: hidden;
  text-transform: capitalize;
  margin-bottom: 10px;
  border-radius: 500px;
  color: var(--black);
  background: var(--white);
  transition: all 0.4s ease-in-out;
  position: relative;
}
.main-sideber .single-sidebar-widget .tagcloud a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background: var(--primary);
  z-index: 0;
  transition: width 0.5s ease;
}
.main-sideber .single-sidebar-widget .tagcloud a:last-child {
  margin-right: 0;
}
.main-sideber .single-sidebar-widget .tagcloud a:hover {
  color: var(--white);
  z-index: 999;
  position: relative;
  border-color: transparent;
}
.main-sideber .single-sidebar-widget .tagcloud a:hover::before {
  width: 100%;
  z-index: -1;
}

.product-card__inner {
  background: #F6F6F6;
  border-radius: 20px;
  box-shadow: 0 6px 18px rgba(16, 24, 40, 0.06);
  position: relative;
  padding: 20px;
  transition: all 0.3s ease;
}
.product-card__inner:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(16, 24, 40, 0.1);
}
.product-card__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--primary);
  font-size: 0.85rem;
  padding: 4px 10px;
  border-radius: 10px;
  color: var(--white);
  font-family: var(--font_instr);
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}
.product-card__image {
  background: var(--white);
  border-radius: 16px;
  padding: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  height: 310px;
}
.product-card__image img {
  max-width: 100%;
  width: 221px;
  height: 249px;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.product-card__image:hover img {
  transform: scale(1.05);
}
.product-card__rating {
  font-size: 0.9rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  margin-bottom: 16px;
}
.product-card__rating .product-card__stars {
  color: var(--primary);
  font-size: 0.9rem;
}
.product-card__rating .product-card__review {
  font-size: 0.85rem;
}
.product-card__title {
  color: var(--primary);
  text-align: center;
  font-family: var(--font_instr);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 16px;
}
.product-card__price {
  color: var(--primary);
  color: #000;
  text-align: center;
  font-family: var(--font_instr);
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 30px;
}
.product-card__btn {
  border: 1px solid var(--black);
  background: transparent;
  color: var(--primary);
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 12px;
  transition: all 0.3s ease;
  width: 100%;
}
.product-card__btn:hover {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

/* === Responsive === */
@media only screen and (max-width: 991px) {
  .product-card__inner {
    padding: 15px;
  }
  .product-card__image {
    padding: 20px;
  }
}
@media only screen and (max-width: 767px) {
  .product-card__inner {
    border-radius: 16px;
  }
  .product-card__title {
    font-size: 0.95rem;
  }
  .product-card__price {
    font-size: 1rem;
  }
  .product-card__btn {
    font-size: 0.9rem;
    padding: 8px 16px;
  }
}
.error__content {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
}
.error__content .title {
  font-size: 72px;
  margin-top: 50px;
  font-weight: 800;
  line-height: 80px;
  text-align: center;
  margin-bottom: 12px;
  letter-spacing: 0.36px;
}
@media only screen and (max-width: 1199px) {
  .error__content .title {
    font-size: 65px;
    line-height: 70px;
  }
}
@media only screen and (max-width: 991px) {
  .error__content .title {
    font-size: 55px;
    line-height: 65px;
  }
}
@media only screen and (max-width: 767px) {
  .error__content .title {
    font-size: 45px;
    line-height: 60px;
  }
}
@media (max-width: 575px) {
  .error__content .title {
    font-size: 30px;
    margin-top: 30px;
    line-height: 35px;
  }
}
.error__content p {
  max-width: 698px;
  text-align: center;
  margin-bottom: 48px;
}

.sing-in__wrapper {
  background: #F6F6F6;
  border-radius: 15px;
  padding: 64px 56px;
  max-width: 870px;
  margin: 0 auto;
}
@media only screen and (max-width: 991px) {
  .sing-in__wrapper {
    padding: 30px;
  }
}
@media (max-width: 575px) {
  .sing-in__wrapper {
    padding: 30px 20px;
  }
}
.sing-in__wrapper .title {
  font-size: 48px;
  font-weight: 700;
  line-height: 56px;
  margin-bottom: 16px;
  letter-spacing: 0.5px;
}
@media only screen and (max-width: 991px) {
  .sing-in__wrapper .title {
    font-size: 40px;
  }
}
@media (max-width: 575px) {
  .sing-in__wrapper .title {
    font-size: 30px;
    line-height: 35px;
  }
}
.sing-in__wrapper .form-wrap {
  display: flex;
  gap: 20px;
  margin-top: 56px;
}
@media only screen and (max-width: 991px) {
  .sing-in__wrapper .form-wrap {
    gap: 0;
    margin-top: 30px;
    flex-direction: column;
  }
}
.sing-in__wrapper input {
  flex: 1;
  padding: 20px 16px;
  border-radius: 8px;
  width: 100%;
  border: none;
  outline: none;
}
.sing-in__wrapper input::placeholder {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: #646463;
}
.sing-in__wrapper .input-group {
  display: flex;
  width: 100%;
  margin-bottom: 32px;
  flex-direction: column;
}
.sing-in__wrapper .input-group span {
  font-size: 18px;
  font-weight: 600;
  line-height: 26px;
  display: inline-block;
  margin-bottom: 12px;
  color: var(--black);
  letter-spacing: 0.5px;
}
.sing-in__wrapper .rr-btn {
  width: 100%;
}
.sing-in__wrapper .or-text {
  color: #646463;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  text-transform: capitalize;
  display: flex;
  margin: 32px 0;
  align-items: center;
  justify-content: center;
  width: 100%;
  position: relative;
  z-index: 1;
}
.sing-in__wrapper .or-text:before {
  background-color: rgba(201, 201, 200, 0.24);
  content: "";
  width: 100%;
  height: 2px;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  z-index: -2;
}
.sing-in__wrapper .or-text:after {
  background-color: #F6F6F6;
  content: "";
  width: 50px;
  height: 20px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}
.sing-in__wrapper .icon-wrapper {
  display: flex;
  gap: 24px;
}
@media (max-width: 575px) {
  .sing-in__wrapper .icon-wrapper {
    flex-wrap: wrap;
  }
}
.sing-in__wrapper .icon-wrapper a {
  gap: 8px;
  width: 100%;
  display: flex;
  padding: 15px 24px;
  border-radius: 8px;
  align-items: center;
  font-size: 16px;
  color: var(--black);
  font-weight: 400;
  line-height: 24px;
  justify-content: center;
  border: 1px solid rgba(201, 201, 200, 0.24);
}
.sing-in__wrapper .icon-wrapper a i {
  color: var(--primary);
}
.sing-in__wrapper .checkbox-wrap {
  display: flex;
  align-items: center;
  margin-bottom: 32px;
  gap: 10px;
  justify-content: space-between;
}
@media (max-width: 575px) {
  .sing-in__wrapper .checkbox-wrap {
    flex-wrap: wrap;
  }
}
.sing-in__wrapper .checkbox-group {
  display: flex;
  align-items: center;
  gap: 12px;
}
.sing-in__wrapper .checkbox-group input[type=checkbox] {
  width: 24px;
  height: 24px;
  cursor: pointer;
}
.sing-in__wrapper .checkbox-group label {
  color: var(--black);
}
.sing-in__wrapper .checkbox-group label a {
  color: var(--primary);
}
.sing-in__wrapper .forgot-password a {
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
  color: var(--primary);
  font-family: var(--font_monts);
}
.sing-in__wrapper .sign-up {
  text-align: center;
  margin-top: 32px;
}
.sing-in__wrapper .sign-up .title {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  font-family: var(--font_jakarta);
}
@media (max-width: 575px) {
  .sing-in__wrapper .sign-up .title {
    font-size: 14px;
  }
}
.sing-in__wrapper .sign-up .title a {
  color: var(--primary);
}

.service-details-sidebar {
  padding: 40px 35px;
  margin-bottom: 30px;
  border-radius: 10px;
  background-color: var(--gray-three);
}
@media only screen and (max-width: 1199px) {
  .service-details-sidebar {
    padding: 40px 20px;
  }
}
.service-details-sidebar .title {
  margin-bottom: 20px;
}
.service-details-sidebar-categories ul li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 18px;
  font-weight: 400;
  background-color: var(--white);
  transition: all 0.4s ease-in-out;
  border-radius: 10px;
  overflow: hidden;
  line-height: 1;
  padding: 20px;
  position: relative;
}
.service-details-sidebar-categories ul li::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background: var(--primary);
  z-index: 0;
  transition: width 0.5s ease;
}
.service-details-sidebar-categories ul li a {
  color: var(--black);
}
.service-details-sidebar-categories ul li span {
  transition: all 0.4s ease-in-out;
  color: var(--black);
}
.service-details-sidebar-categories ul li:not(:last-child) {
  margin-bottom: 20px;
}
.service-details-sidebar-categories ul li:hover::before {
  width: 100%;
}
.service-details-sidebar-categories ul li:hover a {
  color: var(--white);
  position: relative;
  z-index: 999;
}
.service-details-sidebar-categories ul li:hover span {
  color: var(--white);
  position: relative;
  z-index: 999;
}
.service-details .analytics {
  padding: 40px 32px;
  position: relative;
  border-radius: 16px;
  background: linear-gradient(90deg, #004FFC 0%, var(--Text-Primary, #0E0E0C) 100%), var(--BG-Sedentary, #F6F6F6);
}
@media only screen and (max-width: 1199px) {
  .service-details .analytics {
    padding: 40px 20px;
  }
}
.service-details .analytics .title {
  font-size: 24px;
  font-weight: 700;
  line-height: 32px;
  color: var(--white);
  margin-bottom: 12px;
  letter-spacing: 0.5px;
}
.service-details .analytics p {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  margin-bottom: 40px;
  color: var(--white);
}
.service-details .analytics .rr-btn-green {
  background: var(--white);
  padding: 10px 31px;
}
.service-details .analytics .shape {
  position: absolute;
  bottom: 0;
  left: 0;
}
.service-details .analytics .media {
  margin-top: 40px;
}
.service-details__top {
  margin-bottom: 48px;
}
.service-details__top .media {
  overflow: hidden;
  border-radius: 24px;
}
.service-details__top .media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media only screen and (max-width: 991px) {
  .service-details__content {
    margin-top: 30px;
  }
}
.service-details__content .title {
  margin-bottom: 16px;
  font-size: 32px;
  font-weight: 700;
  line-height: 40px;
  letter-spacing: 0.5px;
}
@media only screen and (max-width: 767px) {
  .service-details__content .title {
    font-size: 25px;
    font-weight: 700;
    line-height: 30px;
  }
}
.service-details__content p {
  margin-bottom: 24px;
}
.service-details__content .media {
  overflow: hidden;
  border-radius: 16px;
  margin-bottom: 32px;
}
.service-details__content .media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.service-details__content .features ul {
  margin-bottom: 48px;
}
.service-details__content .features ul li {
  font-size: 16px;
}
.service-details__content .features ul li span {
  font-size: 18px;
  font-weight: 600;
  line-height: 26px;
  color: var(--black);
  margin-right: 5px;
  letter-spacing: 0.5px;
}
.service-details__content ul {
  list-style: none;
  margin-bottom: 32px;
}
.service-details__content ul li {
  font-size: 18px;
  font-weight: 400;
  line-height: 26px;
  display: flex;
  align-items: baseline;
  gap: 10px;
}
.service-details__content ul li:not(:last-child) {
  margin-bottom: 8px;
}
@media only screen and (max-width: 1199px) {
  .service-details__content ul li {
    flex-wrap: wrap;
  }
}
.service-details__content ul li i {
  font-size: 12px;
  color: var(--primary);
}
.service-details__content .sideber {
  padding: 30px 40px;
  background-color: var(--gray-three);
  margin-bottom: 40px;
  margin-top: 40px;
  border-radius: 10px;
}
@media only screen and (max-width: 767px) {
  .service-details__content .sideber {
    padding: 30px;
  }
}
.service-details__content .sideber h3 {
  margin-bottom: 15px;
  line-height: 150%;
  font-size: 18px;
  letter-spacing: 0.5px;
}
.service-details__content .sideber .client-info-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media only screen and (max-width: 1399px) {
  .service-details__content .sideber .client-info-item {
    flex-wrap: wrap;
    gap: 30px;
  }
}
.service-details__content .sideber .client-info-item .client-info {
  display: flex;
  align-items: center;
  gap: 12px;
}
.service-details__content .sideber .client-info-item .client-info .image {
  width: 70px;
  height: 70px;
  overflow: hidden;
  border-radius: 100%;
}
.service-details__content .sideber .client-info-item .client-info .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.service-details__content .sideber .client-info-item .client-info h4 {
  font-size: 20px;
}
.service-details__content .sideber .client-info-item .icon {
  font-size: 48px;
  color: var(--primary);
}

.service-2__area .section-title-3__wrapper {
  margin-bottom: 48px;
}
.service-2__area .section-title-3__wrapper .title {
  margin-bottom: 0;
}
.service-2__item {
  background: var(--bg);
  border-radius: 16px;
  padding: 32px;
  margin-bottom: 30px;
  padding-bottom: 40px;
  border: 2px solid transparent;
  transition: border-color 0.3s ease;
}
@media only screen and (max-width: 991px) {
  .service-2__item {
    padding: 32px 20px;
  }
}
.service-2__item .icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 500px;
  background: var(--white);
  margin-bottom: 24px;
  transition: background 0.3s ease;
}
.service-2__item .icon img {
  transition: filter 0.3s ease;
}
.service-2__item .title {
  font-size: 24px;
  font-weight: 700;
  line-height: 32px;
  margin-bottom: 10px;
  letter-spacing: 0.5px;
}
@media only screen and (max-width: 991px) {
  .service-2__item .title {
    font-size: 18px;
    line-height: 29px;
  }
}
.service-2__item p {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  margin-bottom: 32px;
  color: var(--secondary);
}
.service-2__item a {
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  color: var(--primary);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-family: var(--font_monts);
  position: relative;
  transition: all 0.3s;
}
.service-2__item a::before {
  content: "";
  bottom: 0px;
  width: 0;
  height: 1px;
  position: absolute;
  transition: all 0.3s;
  background-color: currentColor;
}
.service-2__item:hover {
  border-color: var(--primary);
}
.service-2__item:hover .icon {
  background: var(--primary);
}
.service-2__item:hover .icon img {
  filter: brightness(0) invert(1);
}
.service-2__item:hover a::before {
  width: 100%;
}/*# sourceMappingURL=style.css.map */