@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=Kanit: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&display=swap");

:root {
  --primary: #C4F012;
  --primary-2: #FF5E14;
  --secondary: #04030A;
  --secondary-2: #121212;
  --secondary-3: #343434;
  --black: #000;
  --white: #FFF;
  --gray: #F5F5F5;
  --border: rgb(4 3 10 / 14%);
}

:root .dark {
  --border: rgb(224 238 238 / 14%);
  --gray: #04030A;
  --secondary-3: #ffffff;
}

@font-face {
  font-family: "Cooper Hewitt";
  src: url("../fonts/CooperHewitt-Light.otf");
  font-weight: 400;
}

@font-face {
  font-family: "Cooper Hewitt";
  src: url("../fonts/CooperHewitt-medium.otf");
  font-weight: 500;
}

@font-face {
  font-family: "Cooper Hewitt";
  src: url("../fonts/CooperHewitt-Semibold.otf");
  font-weight: 600;
}

@font-face {
  font-family: "Cooper Hewitt";
  src: url("../fonts/CooperHewitt-Bold.otf");
  font-weight: 700;
}

:root {
  --font_kanit: "Kanit", sans-serif;
  --font_serif: "DM Serif Display", serif;
  --font_cooper: "Cooper Hewitt";
  --font_awesome: "Font Awesome 6 Pro";
}

* {
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font_kanit);
  line-height: 1;
  font-size: 18px;
  font-weight: 400;
  line-height: 20px;
  color: rgba(4, 3, 10, 0.7);
}

body.dark {
  background-color: var(--secondary);
}

html {
  scroll-behavior: smooth;
}

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

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

a {
  text-decoration: none;
  transition: all 0.3s;
  color: inherit;
}

a:hover {
  color: var(--primary-2);
}

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

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-1630 {
  max-width: 1630px;
}

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

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

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

.rr-bg-black-2 {
  background-color: #121212;
}

.rr-bg-secondary-2 {
  background-color: var(--secondary-2);
}

.rr-bg-pale-taupe {
  background-color: #DDCCB0;
}

.rr-bg-gray {
  background-color: #F5F5F5;
}

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

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

/* === Section spacing  scss (index 07) === */
/* === 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-160 {
  padding-bottom: 160px;
  padding-top: 160px;
}

@media only screen and (max-width: 1919px) {
  .section-spacing-160 {
    padding-bottom: 110px;
    padding-top: 110px;
  }
}

@media only screen and (max-width: 1399px) {
  .section-spacing-160 {
    padding-bottom: 100px;
    padding-top: 100px;
  }
}

@media only screen and (max-width: 1199px) {
  .section-spacing-160 {
    padding-bottom: 80px;
    padding-top: 80px;
  }
}

.section-spacing-bottom-160 {
  padding-bottom: 160px;
}

@media only screen and (max-width: 1919px) {
  .section-spacing-bottom-160 {
    padding-bottom: 110px;
  }
}

@media only screen and (max-width: 1399px) {
  .section-spacing-bottom-160 {
    padding-bottom: 100px;
  }
}

@media only screen and (max-width: 1199px) {
  .section-spacing-bottom-160 {
    padding-bottom: 80px;
  }
}

.section-spacing-top-160 {
  padding-top: 160px;
}

@media only screen and (max-width: 1919px) {
  .section-spacing-top-160 {
    padding-top: 110px;
  }
}

@media only screen and (max-width: 1399px) {
  .section-spacing-top-160 {
    padding-top: 100px;
  }
}

@media only screen and (max-width: 1199px) {
  .section-spacing-top-160 {
    padding-top: 80px;
  }
}

.section-spacing-180 {
  padding-bottom: 180px;
  padding-top: 180px;
}

@media only screen and (max-width: 1919px) {
  .section-spacing-180 {
    padding-bottom: 110px;
    padding-top: 110px;
  }
}

@media only screen and (max-width: 1399px) {
  .section-spacing-180 {
    padding-bottom: 100px;
    padding-top: 100px;
  }
}

@media only screen and (max-width: 1199px) {
  .section-spacing-180 {
    padding-bottom: 80px;
    padding-top: 80px;
  }
}

.section-spacing-bottom-180 {
  padding-bottom: 180px;
}

@media only screen and (max-width: 1919px) {
  .section-spacing-bottom-180 {
    padding-bottom: 110px;
  }
}

@media only screen and (max-width: 1399px) {
  .section-spacing-bottom-180 {
    padding-bottom: 100px;
  }
}

@media only screen and (max-width: 1199px) {
  .section-spacing-bottom-180 {
    padding-bottom: 80px;
  }
}

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

/* ===Side info and offcanvas scss (index 10) === */
.offcanvas-overlay {
  position: fixed;
  height: 100%;
  width: 100%;
  background: rgba(3, 6, 17, 0.36);
  backdrop-filter: blur(3px);
  z-index: 900;
  top: 0;
  right: 0;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s;
}

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

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

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

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

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

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

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

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

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

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

/* === Offset header scss (index 11) === */
.offset-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.offset-logo {
  width: 95px;
}

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

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

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

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

/* === Offset widget box scss (index 12) === */
.offset-widget-box {
  margin-top: 90px;
}

.offset-widget-box .title {
  font-weight: 500;
  font-size: 36px;
  line-height: 30px;
  margin-bottom: 20px;
  color: #121212;
  font-family: var(--font_kanit);
}

.dark .offset-widget-box .title {
  color: #fff;
}

@media only screen and (max-width: 767px) {
  .offset-widget-box .title {
    font-size: 30px;
    margin-bottom: 15px;
  }
}

.offset-widget-box p {
  font-family: var(--font_kanit);
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  color: rgba(4, 3, 10, 0.7);
}

.dark .offset-widget-box p {
  color: rgba(255, 255, 255, 0.7);
}

.offset-widget-box .gallery-wrapper {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-top: 40px;
}

@media only screen and (max-width: 767px) {
  .offset-widget-box .gallery-wrapper {
    margin-top: 25px;
  }
}

.offset-widget-box .gallery__media {
  overflow: hidden;
  border-radius: 5px;
}

.offset-widget-box .gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.offset-widget-box .info {
  margin-top: 55px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(4, 3, 10, 0.14);
}

@media only screen and (max-width: 991px) {
  .offset-widget-box .info {
    margin-top: 35px;
  }
}

@media only screen and (max-width: 767px) {
  .offset-widget-box .info {
    margin-top: 25px;
  }
}

.offset-widget-box .info .title {
  font-weight: 400;
  font-size: 22px;
  line-height: 28px;
  color: #04030A;
  font-family: var(--font_kanit);
}

.dark .offset-widget-box .info .title {
  color: #fff;
}

.offset-widget-box .info-wrap {
  gap: 16px;
  display: flex;
  align-items: center;
}

.offset-widget-box .info .text span {
  font-weight: 400;
  font-size: 16px;
  display: block;
  line-height: 26px;
  margin-bottom: 4px;
  color: rgba(4, 3, 10, 0.6);
  font-family: var(--font_kanit);
}

.dark .offset-widget-box .info .text span {
  color: #fff;
}

.offset-widget-box .info .text a {
  font-family: var(--font_kanit);
  color: #04030A;
  font-size: 18px;
}

.dark .offset-widget-box .info .text a {
  color: #fff;
}

.offset-widget-box .info .text a:hover {
  color: var(--primary);
}

.offset-widget-box .info ul {
  list-style: none;
  display: flex;
  align-items: center;
}

.offset-widget-box .info ul .author {
  width: 56px;
  height: 56px;
  display: flex;
  overflow: hidden;
  border-radius: 500px;
}

.offset-widget-box .info ul .author img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.offset-widget-box .info ul .call {
  width: 56px;
  height: 56px;
  background: var(--primary);
  border-radius: 500px;
  display: flex;
  margin-left: -16px;
  align-items: center;
  justify-content: center;
}

.offset-widget-box .follow-us {
  margin-top: 70px;
}

@media only screen and (max-width: 991px) {
  .offset-widget-box .follow-us {
    margin-top: 35px;
  }
}

@media only screen and (max-width: 767px) {
  .offset-widget-box .follow-us {
    margin-top: 25px;
  }
}

.offset-widget-box .follow-us .title {
  font-weight: 400;
  font-size: 22px;
  line-height: 28px;
  color: #04030A;
  font-family: var(--font_kanit);
}

.dark .offset-widget-box .follow-us .title {
  color: #fff;
}

.offset-widget-box .follow-us .social-list {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 10px;
}

.offset-widget-box .follow-us .social-list li a {
  width: 46px;
  height: 46px;
  display: flex;
  color: #04030A;
  align-items: center;
  transition: all 0.3s;
  border-radius: 500px;
  justify-content: center;
  border: 1px solid rgba(4, 3, 10, 0.14);
}

.dark .offset-widget-box .follow-us .social-list li a {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.7);
}

.offset-widget-box .follow-us .social-list li a:hover {
  background: var(--primary);
  border-color: transparent;
}

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

/* ===Inverted scss (index 09) === */
.text-invert>div {
  background-image: linear-gradient(to right, var(--white) 50%, rgba(224, 238, 238, 0.4) 51%);
  background-size: 200% 100%;
  background-position-x: 100%;
  color: transparent;
  background-clip: text;
  -webkit-background-clip: text;
}

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

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

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

.switcher-button-inner {
  position: relative;
  width: 100%;
  height: 100%;
}

.switcher-button-inner i {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-size: 20px;
  transition: transform 0.4s ease, opacity 0.4s ease;
}

.switcher-button-inner i.icon-light {
  color: var(--primary);
}

.switcher-button-inner i.icon-dark {
  transform: translate(-50%, 100%);
  opacity: 0;
  color: var(--white);
}

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

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

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

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

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

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

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

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

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

.rr-container-1840 {
  max-width: 1870px;
}

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

.gx-30 {
  --bs-gutter-x: 30px;
}

.gy-30 {
  --bs-gutter-y: 30px;
}

.gy-60 {
  --bs-gutter-y: 60px;
}

@media only screen and (max-width: 991px) {
  .gy-60 {
    --bs-gutter-y: 30px;
  }
}

.g-20,
.gy-20 {
  --bs-gutter-y: 20px;
}

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

.loader-wrap svg {
  position: absolute;
  top: 0;
  width: 100vw;
  height: 110vh;
  fill: #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;
  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(--black);
  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) === */
.btn-primary span {
  font-size: 15px;
  font-weight: 500;
  color: #04030A;
  line-height: 22px;
  text-align: center;
  display: inline-block;
  border-radius: 10px;
  padding: 11px 21px;
  z-index: 2;
  transition: all 0.3s;
  text-transform: uppercase;
  border: 1px solid rgba(4, 3, 10, 0.14);
}

.dark .btn-primary span {
  border-color: rgba(224, 238, 238, 0.14);
}

.btn-primary>* {
  position: relative;
  overflow: hidden;
}

.btn-primary>*::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: -1;
  bottom: 0;
  transition: all 0.3s;
  background: var(--primary);
}

.dark .btn-primary>*:nth-child(1) {
  color: #E0EEEE;
}

.btn-primary>*:nth-child(1)::before {
  left: 0;
  width: 0;
}

.btn-primary>*:nth-child(2) {
  color: var(--black);
}

.btn-primary>*:nth-child(2)::before {
  left: 0;
}

.dark .btn-primary>*:nth-child(3) {
  color: #E0EEEE;
}

.btn-primary>*:nth-child(3)::before {
  right: 0;
  width: 0;
}

.dark .btn-primary:hover>*:nth-child(1) {
  color: var(--secondary);
}

.btn-primary:hover>*:nth-child(1)::before {
  width: 100%;
}

.btn-primary:hover>*:nth-child(2) {
  color: var(--black);
}

.dark .btn-primary:hover>*:nth-child(2) {
  color: #E0EEEE;
}

.btn-primary:hover>*:nth-child(2)::before {
  height: 0;
}

.dark .btn-primary:hover>*:nth-child(3) {
  color: var(--secondary);
}

.btn-primary:hover>*:nth-child(3)::before {
  width: 100%;
}

.rr-btn-4 {
  align-items: center;
  font-weight: 400;
  font-size: 18px;
  line-height: 24px;
  border-radius: 500px;
  color: #101010;
  background: var(--white);
  font-family: var(--font_kanit);
  padding: 8.5px 36.2px 8.5px 5px;
  transition: all 0.3s ease-in-out;
  border: 1px solid rgba(16, 16, 16, 0.14);
}

.rr-btn-4:hover {
  color: #101010;
  background: var(--primary);
}

.rr-btn-4:hover i {
  color: #101010;
  background: var(--white);
}

.rr-btn-4 i {
  margin-right: 30px;
  padding: 9px 10.5px;
  border-radius: 100px;
  color: var(--white);
  background: #101010;
  transition: all 0.3s ease-in-out;
}

/* === primary btn scss (index 01) === */
.btn_primary span {
  font-size: 15px;
  font-weight: 500;
  color: #04030A;
  line-height: 22px;
  text-align: center;
  display: inline-block;
  border-radius: 10px;
  padding: 11px 21px;
  z-index: 2;
  transition: all 0.3s;
  text-transform: uppercase;
  border: 1px solid rgba(4, 3, 10, 0.14);
}

.btn_primary>* {
  position: relative;
  overflow: hidden;
}

.btn_primary>*::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: -1;
  bottom: 0;
  transition: all 0.3s;
  background: var(--primary-2);
}

.btn_primary>*:nth-child(1)::before {
  left: 0;
  width: 0;
}

.btn_primary>*:nth-child(2) {
  color: var(--black);
}

.btn_primary>*:nth-child(2)::before {
  left: 0;
}

.btn_primary>*:nth-child(3)::before {
  right: 0;
  width: 0;
}

.btn_primary:hover>*:nth-child(1)::before {
  width: 100%;
}

.btn_primary:hover>*:nth-child(2) {
  color: var(--black);
}

.btn_primary:hover>*:nth-child(2)::before {
  height: 0;
}

.btn_primary:hover>*:nth-child(3)::before {
  width: 100%;
}

.btn_primary-2 span {
  border: none;
  font-size: 16px;
  line-height: 1;
  font-weight: 400;
  color: var(--white);
  border-radius: 500px;
  padding: 15px 26.41px;
  text-transform: capitalize;
  font-family: var(--font_kanit);
  transition: all 0.3s ease-in-out;
  background-color: var(--secondary-3);
}

.btn_primary-2:hover span {
  background-color: transparent;
  transition: all 0.4s ease-in-out;
}

.btn_primary.white_btn span {
  color: var(--secondary-3);
  background-color: var(--white);
}

.btn_primary.white_btn span:hover {
  color: var(--white);
}

.dark .btn_primary span {
  color: #343434;
}

.dark .btn_primary span:hover {
  color: #343434 !important;
}

.dark .white_btn span {
  color: #343434;
}

.dark .white_btn span:hover {
  color: var(--secondary-3) !important;
}

.rr-hover-btn {
  background: transparent;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font_kanit);
  width: 160px;
  height: 160px;
  border-radius: 50%;
  font-weight: 500;
  font-size: 15px;
  line-height: 1.4;
  color: var(--black);
  text-transform: uppercase;
  border: 2px solid #E0EEEE;
  z-index: 1;
}

.dark .rr-hover-btn {
  color: #E0EEEE;
}

.rr-hover-btn i {
  margin-left: 12px;
}

.rr-hover-btn:hover {
  color: var(--rr-common-white);
  border-color: transparent;
}

.rr-hover-btn:hover .rr-btn-circle-dot {
  width: 420px;
  height: 420px;
}

.rr-hover-btn .rr-btn-circle-dot {
  bottom: -35%;
  left: 50%;
  width: 47px;
  height: 47px;
  line-height: 20px;
  border-radius: 50%;
  position: absolute;
  -webkit-transition: all 0.5s ease-out;
  -moz-transition: all 0.5s ease-out;
  -ms-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: -1;
  background-color: var(--primary);
}

/* =========================
   Button Circle
========================= */
.rr-btn-circle {
  background-color: var(--secondary);
  width: 50px;
  height: 50px;
  font-size: 18px;
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.dark .rr-btn-circle {
  background-color: var(--white);
  color: var(--black);
}

.rr-btn-circle:hover {
  filter: brightness(1.1);
}

.rr-btn-circle i {
  transform: rotate(-45deg);
  transition: transform 0.3s ease;
}

.rr-btn-circle:hover i {
  transform: rotate(0deg);
}

/* =========================
   Primary Button
========================= */
.rr-btn-primary {
  font-size: 16px;
  font-weight: 400;
  background-color: var(--secondary);
  border: 1px solid transparent;
  color: var(--white);
  padding: 24px 31px;
  font-family: var(--font_kanit);
  height: 25px;
  border-radius: 500px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.rr-btn-primary i {
  rotate: -45deg;
}

.rr-btn-primary:hover {
  filter: brightness(1.1);
}

.dark .rr-btn-primary:hover {
  color: var(--black);
}

/* =========================
   Button Group
========================= */
.rr-btn-group {
  display: inline-flex;
  align-items: center;
  gap: 3px;
}

.rr-btn-group>* {
  transition: transform 0.4s ease, opacity 0.3s ease, margin 0.4s ease;
}

.rr-btn-group {
  /* Initial State */
}

.rr-btn-group>*:nth-child(1) {
  transform: scale3d(0.5, 0.5, 1);
  margin-inline-end: -50px;
}

.rr-btn-group>*:nth-child(2) {
  transform: scale3d(1, 1, 1);
}

.rr-btn-group>*:nth-child(3) {
  transform: scale3d(1, 1, 1);
}

.rr-btn-group {
  /* Hover State */
}

.rr-btn-group:hover>*:nth-child(1) {
  transform: scale3d(1, 1, 1);
  margin-inline-end: 0;
}

.rr-btn-group:hover>*:nth-child(3) {
  opacity: 0;
  transform: scale3d(0.5, 0.5, 1);
  margin-inline-start: -70px;
  pointer-events: none;
}

.rr-btn-5 {
  position: relative;
  padding: 14px 36px;
  font-weight: 500;
  font-size: 18px;
  line-height: 27px;
  color: var(--secondary-2);
  background: #FFFFFF;
  border-radius: 6px;
  transition: all 0.3s ease-in-out;
  text-decoration: none;
  overflow: hidden;
}

.dark .rr-btn-5 {
  background: rgba(255, 255, 255, 0.06) !important;
  color: var(--white) !important;
}

.rr-btn-5 i {
  transform: rotate(-45deg);
  font-size: 16px;
  font-weight: 400;
  margin-left: 8px;
}

.dark .rr-btn-5 i {
  color: var(--white);
}

/* common */
.rr-btn-5 span {
  position: absolute;
  transition: 0.5s ease;
  height: 14px;
  width: 14px;
}

/* TOP */
.top-arrow {
  top: 0px;
  left: 0px;
  border-right: none;
  border-bottom: none;
  border-radius: 6px 0 0 0;
  border-top: 2px solid var(--secondary-2);
  border-left: 2px solid var(--secondary-2);
}

.dark .top-arrow {
  border-top: 2px solid var(--white);
  border-left: 2px solid var(--white);
}

/* RIGHT */
.right-arrow {
  top: 0;
  right: 0;
  width: 3px;
  height: 20%;
  border-top: 2px solid var(--secondary-2);
  border-right: 2px solid var(--secondary-2);
  border-radius: 0px 6px 0 0;
}

.dark .right-arrow {
  border-top: 2px solid var(--white);
  border-right: 2px solid var(--white);
}

/* BOTTOM */
.bottom-arrow {
  bottom: 0;
  right: 0;
  width: 20%;
  height: 3px;
  border-right: 2px solid var(--secondary-2);
  border-bottom: 2px solid var(--secondary-2);
  border-radius: 0px 0 6px 0;
}

.dark .bottom-arrow {
  border-right: 2px solid var(--white);
  border-bottom: 2px solid var(--white);
}

/* LEFT */
.left-arrow {
  bottom: 0;
  left: 0;
  width: 3px;
  height: 60%;
  border-left: 2px solid var(--secondary-2);
  border-bottom: 2px solid var(--secondary-2);
  border-radius: 0px 0 0 6px;
}

.dark .left-arrow {
  border-left: 2px solid var(--white);
  border-bottom: 2px solid var(--white);
}

.rr-btn-5:hover {
  width: 100%;
  height: 100%;
}

.rr-btn-5:hover .top-arrow {
  border-top: none;
  width: 100%;
  height: 100%;
  border-bottom: none;
  border-left: none;
  border-radius: 6px 0 0 0;
}

.rr-btn-5:hover .left-arrow {
  width: 100%;
  height: 100%;
  border-bottom: none;
  border-radius: 6px 0 0 6px;
}

.rr-btn-5:hover .bottom-arrow {
  border-radius: 0px 6px 6px 6px;
  width: 100%;
  height: 100%;
}

.rr-btn-5:hover .right-arrow {
  border-radius: 6px 6px 0 0;
  width: 100%;
  height: 100%;
  border-right: none;
}

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

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

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

.switcher-button-inner {
  width: 100%;
  height: 100%;
  position: relative;
}

.switcher-button-inner i {
  left: 50%;
  top: 50%;
  font-size: 20px;
  position: absolute;
  transform: translate(-50%, -50%);
  transition: transform 0.4s ease, opacity 0.4s ease;
}

.switcher-button-inner i.icon-light {
  color: var(--secondary);
}

.switcher-button-inner i.icon-dark {
  opacity: 0;
  color: var(--white);
  transform: translate(-50%, 100%);
}

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

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

/* === menu scss (index 01) === */
.main-menu {
  position: relative;
}

.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>ul>li:hover>ul.grid-100 {
  transform: translate(-30%, 0px);
  /* final position */
  opacity: 1;
  pointer-events: all;
}

@media only screen and (max-width: 1919px) {
  .main-menu>ul>li:hover>ul.grid-100 {
    transform: translate(-30%, 0px);
  }
}

@media only screen and (max-width: 1399px) {
  .main-menu>ul>li:hover>ul.grid-100 {
    transform: translate(-26%, 0px);
  }
}

@media only screen and (max-width: 1366px) {
  .main-menu>ul>li:hover>ul.grid-100 {
    transform: translate(-29%, 0px);
  }
}

@media only screen and (max-width: 1200px) {
  .main-menu>ul>li:hover>ul.grid-100 {
    transform: translate(-26%, 0px);
  }
}

.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;
  font-family: var(--font_kanit);
  text-transform: capitalize;
}

.main-menu ul.dp-menu {
  position: absolute;
  top: 100%;
  left: 0;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
  background-color: #F3F4F6;
  padding: 15px;
  width: 200px;
  z-index: 10;
  border-radius: 10px;
  display: grid;
}

.main-menu ul.dp-menu.grid {
  padding: 15px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  width: 580px;
}

.main-menu ul.dp-menu.grid>li>ul>li:first-child {
  border-bottom: none;
  margin-left: 0px;
}

.main-menu ul.dp-menu.grid-100 {
  gap: 40px;
  left: -50%;
  width: calc(100vw - 40px);
  transform: translate(-30%, 80px);
  grid-template-columns: repeat(4, 1fr) 470px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease, transform 0.35s ease;
  padding-bottom: 0;
  padding-right: 0;
}

@media only screen and (max-width: 1919px) {
  .main-menu ul.dp-menu.grid-100 {
    gap: 25px;
    transform: translate(-30%, 80px);
  }
}

@media only screen and (max-width: 1399px) {
  .main-menu ul.dp-menu.grid-100 {
    transform: translate(-26%, 0px);
    grid-template-columns: repeat(5, 1fr);
  }
}

.main-menu ul.dp-menu.grid-100 img {
  margin-top: -15px;
}

.main-menu ul.dp-menu.grid-100>li>ul>li {
  padding: 0;
}

.main-menu ul.dp-menu>li {
  list-style: none;
}

.main-menu ul.dp-menu>li .preview {
  text-align: center;
  display: flex;
  flex-direction: column;
  background: #252525;
  padding: 20px 20px 25px;
  border-radius: 10px;
}

@media only screen and (max-width: 1399px) {
  .main-menu ul.dp-menu>li .preview {
    padding: 20px 15px 0px;
  }
}

.main-menu ul.dp-menu>li .preview .title {
  font-size: 16px;
  font-weight: 600;
  color: var(--white);
  margin-top: 20px;
  text-align: center;
  justify-content: center;
  display: flex;
  gap: 10px;
}

.main-menu ul.dp-menu>li .preview .preview-image {
  max-width: 300px;
}

.main-menu ul.dp-menu>li .preview .preview-image img {
  width: 100%;
  height: 100%;
  display: block;
  transition: opacity 0.3s ease;
}

.main-menu ul.dp-menu>li>ul {
  list-style: none;
  padding: 0;
  margin: 10px 0 0 0;
}

.main-menu ul.dp-menu>li>ul>li:first-child {
  border-bottom: 1px solid rgba(16, 16, 16, 0.12);
}

.main-menu ul.dp-menu>li>ul>li.title {
  padding: 0;
}

.main-menu ul.dp-menu>li>ul>li>span {
  font-size: 20px;
  font-weight: 600;
  color: var(--secondary);
  margin-bottom: 10px;
  display: inline-block;
  padding-bottom: 5px;
  cursor: context-menu;
}

.main-menu ul.dp-menu>li>ul>li {
  margin-bottom: 5px;
}

.main-menu ul.dp-menu>li>ul>li>a {
  display: flex;
  align-items: center;
  gap: 15px;
  text-decoration: none;
  color: #999999;
  font-size: 15px;
  padding: 5px 0;
  transition: all 0.3s ease;
  border-radius: 10px;
  padding: 13px 15px;
}

@media only screen and (max-width: 1399px) {
  .main-menu ul.dp-menu>li>ul>li>a {
    gap: 10px;
    padding: 13px 10px;
  }
}

.main-menu ul.dp-menu>li>ul>li>a .badge {
  font-size: 12px;
  font-weight: 600;
  background: rgba(34, 34, 34, 0.1);
  color: #360EE5;
  padding: 6px 12px;
  line-height: 1;
  display: flex;
  align-items: center;
  text-transform: uppercase;
  border-radius: 500px;
  font-family: var(--font_kanit);
}

@media only screen and (max-width: 1399px) {
  .main-menu ul.dp-menu>li>ul>li>a .badge {
    display: none;
  }
}

.main-menu ul.dp-menu>li>ul>li>a .badge-2 {
  font-size: 12px;
  font-weight: 600;
  background: rgba(29, 170, 51, 0.1);
  color: #1DAA33;
  padding: 6px 12px;
  line-height: 1;
  display: flex;
  align-items: center;
  text-transform: uppercase;
  border-radius: 500px;
  font-family: var(--font_kanit);
}

@media only screen and (max-width: 1399px) {
  .main-menu ul.dp-menu>li>ul>li>a .badge-2 {
    display: none;
  }
}

.main-menu ul.dp-menu>li>ul>li>a:hover {
  color: #999999;
  background: #252525;
}

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

.dp-menu.grid-2 ul,
.grid-100 ul {
  display: block !important;
}

.dp-menu.grid-2 .mean-expand,
.grid-100 .mean-expand {
  display: none !important;
}

/*! 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;
  -webkit-transition: opacity 0.3s, color 0.4s;
  -o-transition: opacity 0.3s, color 0.4s;
  -moz-transition: opacity 0.3s, color 0.4s;
  transition: opacity 0.3s, color 0.4s;
}

.cb-cursor-text {
  position: absolute;
  top: -28px;
  left: -40px;
  width: 160px;
  height: 160px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: scale(0) rotate(10deg);
  opacity: 0;
  color: black;
  font-size: 16px;
  line-height: 20px;
  text-align: center;
  white-space: nowrap;
  -webkit-border-radius: 500px;
  -moz-border-radius: 500px;
  border-radius: 500px;
  letter-spacing: -0.01em;
  -webkit-transition: opacity 0.4s, -webkit-transform 0.3s;
  transition: opacity 0.4s, -webkit-transform 0.3s;
  -o-transition: opacity 0.4s, -o-transform 0.3s;
  -moz-transition: opacity 0.4s, transform 0.3s, -moz-transform 0.3s;
  transition: opacity 0.4s, transform 0.3s;
  transition: opacity 0.4s, transform 0.3s, -webkit-transform 0.3s, -moz-transform 0.3s, -o-transform 0.3s;
}

@media (max-width: 767px) {
  .cb-cursor-text {
    width: 130px;
    height: 130px;
  }
}

.cb-cursor.-text .cb-cursor-text {
  opacity: 1;
  transform: scale(1);
  background-color: var(--black);
}

.cb-cursor.-text .cb-cursor-text .btn span {
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  text-transform: uppercase;
  font-family: var(--rr-ff-body);
  color: var(--rr-heading-secondary);
}

@media (max-width: 767px) {
  .cb-cursor.-text .cb-cursor-text .btn span {
    font-size: 14px;
    font-weight: 500;
  }
}

.cb-cursor.-text .cb-cursor-text .btn span i {
  transform: rotate(-45deg);
}

.cb-cursor.-big .cb-cursor-text {
  width: 160px;
  height: 160px;
  opacity: 1;
  transform: scale(1);
  background-color: var(--black);
}

@media (max-width: 767px) {
  .cb-cursor.-big .cb-cursor-text {
    width: 130px;
    height: 130px;
  }
}

.cb-cursor.-big .cb-cursor-text .btn2 span {
  font-weight: 400;
  font-size: 15px;
  line-height: 25px;
  text-align: start;
  transform: translateY(30px);
  display: inline-block;
  text-transform: uppercase;
  color: var(--white);
  font-family: var(--font_kanit);
}

@media (max-width: 767px) {
  .cb-cursor.-big .cb-cursor-text .btn2 span {
    font-size: 14px;
    transform: translateY(20px);
  }
}

.cb-cursor.-big .cb-cursor-text .btn2 .arrow {
  position: relative;
  display: inline-block;
  transform: translateY(-30px);
}

.cb-cursor.-big .cb-cursor-text .btn2 .arrow i {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 500px;
  color: var(--black);
  background-color: var(--white);
}

.cb-cursor.-big .cb-cursor-text .btn2 .arrow::before {
  content: "";
  width: 1px;
  height: 100px;
  top: 0px;
  bottom: 0px;
  position: absolute;
  transform: rotate(-45deg) translateY(-15px);
  background-color: var(--white);
}

@media (max-width: 767px) {
  .cb-cursor.-big .cb-cursor-text .btn2 .arrow::before {
    height: 80px;
    transform: rotate(-45deg) translateY(-5px);
  }
}

/* === header scss (index 01) === */
.header-area {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}

.header-area.inner-page {
  border-bottom: 1px solid var(--border);
}

.header-area.header-area-inner-2 .main-menu li a {
  color: var(--white);
}

.header-area.header-area-inner-2 .main-menu li a:hover {
  color: var(--white);
}

.header-area.header-area-inner-2 .header-right {
  gap: 24px;
  display: flex;
  align-items: center;
}

@media (max-width: 575px) {
  .header-area.header-area-inner-2 .header-right .search-wrap {
    display: none;
  }
}

.header-area.header-area-inner-2 .header-right .search-open-btn {
  border-color: rgba(255, 255, 255, 0.14);
  color: var(--white);
}

.header-area.header-area-inner-2 .header-right .bar-icon {
  border-color: rgba(255, 255, 255, 0.14);
}

.header-area.header-area-inner-2 .header-right .bar-icon i {
  color: var(--white);
}

.header-area.header-area-inner-2 .header-right .nice-select {
  border-color: rgba(255, 255, 255, 0.14);
  color: var(--white);
}

.header-area.header-area-inner-2 .header-right .nice-select:after {
  border-bottom-color: var(--white);
  border-right-color: var(--white);
}

.header-area-2 {
  position: relative;
  border-bottom: 1px solid rgba(52, 52, 52, 0.14);
}

.header-area-2 .main-menu>ul>li a {
  font-weight: 400;
}

.dark .header-area-2 .main-menu>ul>li a {
  color: var(--white);
}

.header-area-2 .main-menu>ul>li:hover>a {
  color: var(--secondary);
}

.header-area-2 .main-menu>ul>li:hover>ul.grid-100 {
  transform: translate(-34%, 0px);
}

@media only screen and (max-width: 1399px) {
  .header-area-2 .main-menu>ul>li:hover>ul.grid-100 {
    transform: translate(-30%, 0px);
  }
}

.header-area-2 .main-menu ul.dp-menu {
  background: #f8f9fa;
}

.header-area-2 .main-menu ul.dp-menu.grid-100 {
  transform: translate(-34%, 80px);
}

.header-area-2 .main-menu li a:hover {
  color: var(--primary-2) !important;
}

.header-area-4 .main-menu>ul>li>a {
  font-size: 18px !important;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6) !important;
}

.header-area-4 .main-menu>ul>li>a::after {
  display: none;
}

.header-area-4 .main-menu>ul>li:hover>ul.grid-100 {
  transform: translate(-34%, 0px);
}

@media only screen and (max-width: 1399px) {
  .header-area-4 .main-menu>ul>li:hover>ul.grid-100 {
    transform: translate(-30%, 0px);
  }
}

.header-area-4 .main-menu ul.dp-menu {
  background: #f8f9fa;
}

.header-area-4 .main-menu ul.dp-menu.grid-100 {
  transform: translate(-34%, 80px);
}

.header-area-4 .main-menu ul.dp-menu ul li>a:hover {
  color: var(--black) !important;
}

.header-area-4 .header-area__inner .header-right {
  gap: 24px;
  display: flex;
  align-items: center;
}

.header-area-4 .header-area__inner .header-right .bar-icon {
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.header-area-4 .header-area__inner .header-right .bar-icon i {
  color: var(--white);
  font-size: 16px;
}

.header-area-6 .main-menu>ul>li>a {
  color: var(--white);
  font-size: 15px;
  font-weight: 400;
  font-family: var(--font_kanit);
}

.header-area-6 .main-menu>ul>li:hover>a {
  color: var(--primary-2) !important;
}

.header-area-6 .main-menu>ul>li:hover>ul.grid-100 {
  transform: translate(-32%, 0px);
}

@media only screen and (max-width: 1919px) {
  .header-area-6 .main-menu>ul>li:hover>ul.grid-100 {
    transform: translate(-31.5%, 0px);
  }
}

@media only screen and (max-width: 1399px) {
  .header-area-6 .main-menu>ul>li:hover>ul.grid-100 {
    transform: translate(-27.5%, 0px);
  }
}

.header-area-6 .main-menu ul.dp-menu {
  background: #f8f9fa;
}

.header-area-6 .main-menu ul.dp-menu.grid-100 {
  transform: translate(-32%, 80px);
}

@media only screen and (max-width: 1919px) {
  .header-area-6 .main-menu ul.dp-menu.grid-100 {
    transform: translate(-31.5%, 80px);
  }
}

@media only screen and (max-width: 1399px) {
  .header-area-6 .main-menu ul.dp-menu.grid-100 {
    transform: translate(-27.5%, 80px);
  }
}

.header-area-6 .main-menu li a:hover {
  color: var(--primary-2) !important;
}

.header-area-6 .header-area__inner .header-right .search-open-btn {
  border-color: rgba(255, 255, 255, 0.14);
  width: 60px;
  height: 34px;
  color: var(--white);
}

@media (max-width: 575px) {
  .header-area-6 .header-area__inner .header-right .search-open-btn {
    display: none;
  }
}

.header-area-6 .header-area__inner .header-right .side-toggle {
  border: 1px solid rgba(255, 255, 255, 0.14);
  width: 60px;
  height: 34px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 500px;
}

.header-area-6 .header-area__inner .header-right .bar-icon {
  border: none;
  width: 26px;
  height: 8px;
  border-radius: 0;
  justify-content: space-between;
}

.header-area-6 .header-area__inner .header-right .bar-icon span:nth-child(1) {
  margin-left: 0;
}

.header-area-6 .header-area__inner .header-right .bar-icon i {
  color: var(--white);
}

.header-area__inner {
  gap: 30px;
  display: flex;
  align-items: center;
  border-radius: 208px;
  background: transparent;
  justify-content: space-between;
}

@media only screen and (max-width: 1199px) {
  .header-area__inner {
    padding: 10px 20px;
  }
}

.header-area__inner-2 {
  padding: 0;
}

@media only screen and (max-width: 1199px) {
  .header-area__inner-2 {
    padding: 15px 0;
  }
}

.header-area .header__logo .white {
  display: none;
}

@media (max-width: 575px) {
  .header-area .header__logo {
    max-width: 100px;
  }
}

.header-area .header-right {
  gap: 24px;
  display: flex;
  align-items: center;
}

@media (max-width: 575px) {
  .header-area .header-right .search-wrap {
    display: none;
  }
}

.header-area .header-right .search-open-btn {
  width: 50px;
  height: 50px;
  display: flex;
  font-size: 16px;
  align-items: center;
  color: var(--black);
  border-radius: 500px;
  justify-content: center;
  border: 1px solid rgba(4, 3, 10, 0.14);
}

@media (max-width: 575px) {
  .header-area .header-right .search-open-btn {
    display: none;
  }
}

.header-area .header-right .bar-icon {
  border: 1px solid rgba(4, 3, 10, 0.14);
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 500px;
}

.header-area .header-right .bar-icon i {
  color: var(--secondary);
  font-size: 16px;
}

.header-area .header-right .nice-select {
  width: 50px;
  height: 50px;
  font-size: 15px;
  padding-left: 8px;
  line-height: 46px;
  border-radius: 500px;
  background: transparent;
  border: none;
  font-weight: 500;
  color: var(--black);
  text-transform: capitalize;
  border: 1px solid rgba(4, 3, 10, 0.14);
}

@media (max-width: 575px) {
  .header-area .header-right .nice-select {
    display: none;
  }
}

.header-area .header-right .nice-select:after {
  width: 6px;
  height: 6px;
  right: 14px;
  border-bottom: 1px solid var(--secondary);
  border-right: 1px solid var(--secondary);
}

.header-area .header-right .nice-select .list li {
  font-weight: 500;
  text-transform: capitalize;
}

.header-area .sticky,
.header-area .transformed {
  background-color: #ffffff;
}

.header-area .main-menu ul.dp-menu li {
  position: relative;
}

.header-area .main-menu ul.dp-menu li:hover>a {
  color: var(--secondary);
  background-color: rgba(4, 3, 10, 0.04);
}

.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: 18px;
  font-weight: 400;
  padding: 8px 16px;
  color: #101010;
  border-radius: 6px;
  font-family: var(--font_kanit);
  background-color: transparent;
}

@media only screen and (max-width: 1919px) {
  .header-area .main-menu ul.dp-menu li a {
    padding: 8px 10px;
  }
}

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

.header-area .main-menu li a {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  padding: 36px 26px;
  color: var(--secondary);
  letter-spacing: 0.5px;
  font-family: var(--font_kanit);
}

@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(--secondary);
}

.header-area .header__navicon {
  margin-left: auto;
}

.header-area .header__navicon-2 .bar-icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  border-radius: 500px;
  justify-content: center;
  border: 1px solid rgba(52, 52, 52, 0.14);
}

.header-area .header__navicon i {
  font-size: 22px;
  color: var(--white);
}

.header-area-3 {
  z-index: 100;
  position: absolute;
  width: 100%;
  top: 20px;
}

.header-area-3 .header-area__inner {
  padding: 0;
}

.header-area-3.has--fix {
  position: fixed;
  top: 20px;
  left: 0;
  width: 100%;
  right: 0;
}

.header-area-3.has--fix .header__navicon .bar-icon {
  border: 1px solid rgba(4, 3, 10, 0.14);
}

.dark .header-area-3.has--fix .header__navicon .bar-icon {
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.header-area-3.has--fix .header__navicon i {
  color: var(--secondary);
}

.dark .header-area-3.has--fix .header__navicon i {
  color: var(--white);
}

.header-area-3.has--fix-2 {
  position: fixed;
  top: 20px;
  left: 0;
  width: 100%;
  right: 0;
}

.header-area-3.has--fix-2 .header__navicon .bar-icon {
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.header-area-3.has--fix-2 .header__navicon i {
  color: var(--white);
}

.header-area-3 .header__navicon .bar-icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  border-radius: 500px;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.header-area-3 .header__navicon i {
  color: var(--white);
}

.header-area-4 {
  z-index: 50;
  width: 100%;
  position: absolute;
  overflow-x: clip;
}

.header-area-4 .header__button {
  display: flex;
  align-items: center;
}

@media only screen and (max-width: 1199px) {
  .header-area-4 .header__button {
    gap: 15px;
  }
}

@media only screen and (max-width: 767px) {
  .header-area-4 .header__button .rr-btn {
    display: none;
  }
}

.header-area-4__inner {
  gap: 10px;
  display: flex;
  position: relative;
  align-items: center;
  background: transparent;
  justify-content: space-between;
}

@media only screen and (max-width: 1399px) {
  .header-area-4__inner {
    padding: 0 15px;
  }
}

@media only screen and (max-width: 1199px) {
  .header-area-4__inner {
    height: 80px;
    gap: 10px;
    padding: 0;
  }
}

.header-area-4 .main-menu>ul>li>a {
  color: var(--white);
  font-size: 15px;
  font-weight: 400;
  font-family: var(--font_kanit);
}

.header-area-4 .main-menu>ul>li:hover>a {
  color: var(--primary-2) !important;
}

.header-area-4 .main-menu>ul>li:hover>ul.grid-100 {
  transform: translate(-27%, 0px);
}

@media only screen and (max-width: 1919px) {
  .header-area-4 .main-menu>ul>li:hover>ul.grid-100 {
    transform: translate(-24%, 0px);
  }
}

@media only screen and (max-width: 1399px) {
  .header-area-4 .main-menu>ul>li:hover>ul.grid-100 {
    transform: translate(-18.5%, 0px);
  }
}

.header-area-4 .main-menu ul.dp-menu {
  background: #f8f9fa;
}

.header-area-4 .main-menu ul.dp-menu.grid-100 {
  transform: translate(-27%, 80px);
}

@media only screen and (max-width: 1919px) {
  .header-area-4 .main-menu ul.dp-menu.grid-100 {
    transform: translate(-24%, 80px);
  }
}

@media only screen and (max-width: 1399px) {
  .header-area-4 .main-menu ul.dp-menu.grid-100 {
    transform: translate(-18.5%, 80px);
  }
}

.header-area-4 .main-menu li a:hover {
  color: var(--primary-2) !important;
}

.header__right {
  gap: 20px;
  display: flex;
  align-items: center;
}

.header__btn a {
  align-items: center;
  font-weight: 400;
  font-size: 18px;
  line-height: 24px;
  border-radius: 24px;
  color: var(--secondary);
  background: var(--white);
  font-family: var(--font_kanit);
  padding: 8.5px 36.2px 8.5px 5px;
  transition: all 0.3s ease-in-out;
  border: 1px solid rgba(16, 16, 16, 0.14);
}

.header__btn a:hover {
  color: var(--secondary);
  background: var(--primary);
}

.header__btn a:hover i {
  color: var(--secondary);
  background: var(--white);
}

.header__btn a i {
  margin-right: 30px;
  padding: 9px 10.5px;
  border-radius: 100px;
  color: var(--white);
  background: #101010;
  transition: all 0.3s ease-in-out;
}

.header-area-5 .header-area__inner {
  padding: 0;
  gap: 0;
}

.header-area-5 .header__nav {
  display: none;
}

.header-area-5 .header__title {
  color: transparent;
  font-size: 364px;
  font-weight: 500;
  line-height: 215px;
  text-transform: uppercase;
  margin-top: -90px;
  font-family: var(--font_kanit);
  -webkit-text-stroke: 1px #04030A;
}

.dark .header-area-5 .header__title {
  -webkit-text-stroke-color: rgba(255, 255, 255, 0.1);
}

@media only screen and (max-width: 1919px) {
  .header-area-5 .header__title {
    font-size: 325px;
  }
}

@media only screen and (max-width: 1399px) {
  .header-area-5 .header__title {
    font-size: 240px;
  }
}

@media only screen and (max-width: 1199px) {
  .header-area-5 .header__title {
    font-size: 180px;
  }
}

@media only screen and (max-width: 991px) {
  .header-area-5 .header__title {
    font-size: 130px;
    line-height: 130px;
    margin-top: 0;
  }
}

@media only screen and (max-width: 767px) {
  .header-area-5 .header__title {
    font-size: 60px;
    line-height: 60px;
  }
}

@media (max-width: 575px) {
  .header-area-5 .header__title {
    display: none;
  }
}

.header-area-5 .bar-icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  border-radius: 500px;
  justify-content: center;
  border: 1px solid rgba(52, 52, 52, 0.14);
}

.dark .header-area-5 .bar-icon {
  border-color: rgba(255, 255, 255, 0.14);
  color: white;
}

.header-area-5 .bar-icon:hover {
  color: #FF5E14;
}

.header-area-inner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  border-bottom: 1px solid rgba(4, 3, 10, 0.14);
}

.header-area-inner-2 {
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.header-area-inner__inner {
  gap: 30px;
  display: flex;
  padding: 0px 0px;
  align-items: center;
  border-radius: 208px;
  background: transparent;
  justify-content: space-between;
}

@media only screen and (max-width: 1199px) {
  .header-area-inner__inner {
    padding: 20px 0px;
  }
}

@media (max-width: 575px) {
  .header-area-inner .header__logo {
    max-width: 100px;
  }
}

.header-area-inner .header-right {
  gap: 24px;
  display: flex;
  align-items: center;
}

@media (max-width: 575px) {
  .header-area-inner .header-right .search-wrap {
    display: none;
  }
}

.header-area-inner .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-inner .header-right .search {
    display: none;
  }
}

.header-area-inner .header-right .search:hover {
  background: var(--secondary);
  color: var(--black);
}

.header-area-inner .header-right .bar-icon i {
  color: var(--secondary);
}

.header-area-inner .header-right .nice-select {
  width: 50px;
  height: 50px;
  font-size: 15px;
  padding-left: 0px;
  line-height: 46px;
  border-radius: 500px;
  background: transparent;
  border: none;
  text-transform: capitalize;
}

@media (max-width: 575px) {
  .header-area-inner .header-right .nice-select {
    display: none;
  }
}

.header-area-inner .sticky,
.header-area-inner .transformed {
  background-color: #ffffff;
}

.header-area-inner .main-menu ul.dp-menu li {
  position: relative;
}

.header-area-inner .main-menu ul.dp-menu li:hover>a {
  color: var(--secondary);
  background-color: rgba(4, 3, 10, 0.04);
}

.header-area-inner .main-menu ul.dp-menu li:hover>ul {
  opacity: 1;
  transform: none !important;
  pointer-events: all;
}

.header-area-inner .main-menu ul.dp-menu li a {
  font-size: 18px;
  font-weight: 400;
  padding: 8px 16px;
  color: #101010;
  border-radius: 6px;
  font-family: var(--font_kanit);
  background-color: transparent;
}

@media only screen and (max-width: 1919px) {
  .header-area-inner .main-menu ul.dp-menu li a {
    padding: 8px 10px;
  }
}

.header-area-inner .main-menu ul.dp-menu li a:hover {
  letter-spacing: 0.5px;
}

.header-area-inner .main-menu ul.dp-menu li a:after {
  transform: rotate(-90deg);
  margin-left: auto;
}

.header-area-inner .main-menu>ul {
  display: flex;
}

.header-area-inner .main-menu>ul>li:hover>a {
  color: var(--secondary);
}

.header-area-inner .main-menu li a {
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  padding: 33px 26px;
  color: var(--secondary);
  letter-spacing: 0.5px;
  font-family: var(--font_monts);
}

@media only screen and (max-width: 1919px) {
  .header-area-inner .main-menu li a {
    padding: 36px 12px;
  }
}

.header-area-inner .main-menu li a:hover {
  color: var(--secondary);
}

.header-area-inner .main-menu-2 ul.dp-menu li {
  position: relative;
}

.header-area-inner .main-menu-2 ul.dp-menu li:hover>a {
  color: var(--secondary);
  background-color: rgba(4, 3, 10, 0.04);
}

.header-area-inner .main-menu-2 ul.dp-menu li:hover>ul {
  opacity: 1;
  transform: none !important;
  pointer-events: all;
}

.header-area-inner .main-menu-2 ul.dp-menu li a {
  font-size: 18px;
  font-weight: 400;
  padding: 8px 16px;
  color: var(--secondary);
  border-radius: 6px;
  font-family: var(--font_kanit);
  background-color: transparent;
}

@media only screen and (max-width: 1919px) {
  .header-area-inner .main-menu-2 ul.dp-menu li a {
    padding: 8px 10px;
  }
}

.header-area-inner .main-menu-2 ul.dp-menu li a:hover {
  letter-spacing: 0.5px;
}

.header-area-inner .main-menu-2 ul.dp-menu li a:after {
  transform: rotate(-90deg);
  margin-left: auto;
}

.header-area-inner .main-menu-2>ul {
  display: flex;
}

.header-area-inner .main-menu-2>ul>li:hover>a {
  color: var(--secondary);
}

.header-area-inner .main-menu-2 li a {
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  padding: 33px 26px;
  color: var(--white);
  letter-spacing: 0.5px;
  font-family: var(--font_monts);
}

@media only screen and (max-width: 1919px) {
  .header-area-inner .main-menu-2 li a {
    padding: 36px 12px;
  }
}

.header-area-inner .main-menu-2 li a:hover {
  color: var(--secondary);
}

.header-area-inner .header__navicon {
  margin-left: auto;
}

.header-area-inner .header__navicon i {
  font-size: 22px;
  color: var(--white);
}

.dark .header-area-2 {
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.dark .header__navicon-2 .bar-icon {
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.dark .header__navicon-2 .bar-icon i {
  color: var(--white);
}

.dark .header__logo .dark {
  display: none;
}

.dark .header__logo .white {
  display: block;
}

/* === Icon draw scss (index 01) === */
.bar-icon {
  width: 28px;
  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(--white);
  transition: color 0.2s ease-out;
}

.bar-icon span:nth-child(1) {
  margin-left: 11px;
}

.bar-icon span:nth-child(2) {
  margin-left: 0px;
}

.bar-icon span:nth-child(3) {
  margin-left: -11px;
}

.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 .footer-widget-wrapper-box {
  border-bottom: 1px solid rgba(224, 238, 238, 0.14);
}

.footer-area .footer-widget-wrapper {
  display: grid;
  gap: 30px 60px;
  grid-template-columns: 592px 215px 180px auto;
}

@media only screen and (max-width: 1919px) {
  .footer-area .footer-widget-wrapper {
    gap: 30px 50px;
    grid-template-columns: 592px auto auto auto;
  }
}

@media only screen and (max-width: 1399px) {
  .footer-area .footer-widget-wrapper {
    grid-template-columns: 380px auto auto auto;
  }
}

@media only screen and (max-width: 1199px) {
  .footer-area .footer-widget-wrapper {
    gap: 30px 20px;
  }
}

@media only screen and (max-width: 991px) {
  .footer-area .footer-widget-wrapper {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
}

@media (max-width: 575px) {
  .footer-area .footer-widget-wrapper {
    grid-template-columns: 1fr;
  }
}

.footer-area .footer-widget-wrapper .content {
  border-right: 1px solid rgba(224, 238, 238, 0.14);
  padding-top: 140px;
  padding-bottom: 200px;
}

@media only screen and (max-width: 1399px) {
  .footer-area .footer-widget-wrapper .content {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}

@media only screen and (max-width: 991px) {
  .footer-area .footer-widget-wrapper .content {
    border-right: none;
    padding-top: 30px;
    padding-bottom: 0;
  }
}

.footer-area .footer-widget-wrapper .content .title-wrapper {
  display: flex;
  gap: 25px;
  align-items: center;
}

@media only screen and (max-width: 1399px) {
  .footer-area .footer-widget-wrapper .content .title-wrapper {
    flex-wrap: wrap;
  }
}

.footer-area .footer-widget-wrapper .content .title-wrapper .title {
  margin-top: 40px;
  font-weight: 600;
  font-size: 44px;
  line-height: 54px;
  color: #E0EEEE;
  margin-bottom: 55px;
  font-family: var(--font_cooper);
}

@media only screen and (max-width: 1399px) {
  .footer-area .footer-widget-wrapper .content .title-wrapper .title {
    margin-bottom: 20px;
  }
}

.footer-area .footer-widget-wrapper .content .title-wrapper p {
  font-weight: 300;
  font-size: 18px;
  line-height: 27px;
  color: #E0EEEE;
  opacity: 0.7;
  font-family: var(--font_kanit);
}

.footer-area .footer-widget-wrapper .content .rr-hover-btn {
  border-color: rgba(224, 238, 238, 0.14);
}

.footer-area .footer-widget-wrapper .content .rr-hover-btn span {
  color: #E0EEEE;
}

.footer-area .footer-widget-wrapper .content .rr-hover-btn:hover span {
  color: var(--black);
}

.footer-area .footer-widget-wrapper .content .rr-hover-btn:hover {
  border-color: transparent;
}

.footer-area .footer-widget-box:not(:first-child) {
  margin-top: 130px;
}

@media only screen and (max-width: 1399px) {
  .footer-area .footer-widget-box:not(:first-child) {
    margin-top: 100px;
  }
}

@media only screen and (max-width: 991px) {
  .footer-area .footer-widget-box:not(:first-child) {
    margin-top: 30px;
  }
}

.footer-area .footer-widget-box .title {
  font-weight: 500;
  font-size: 20px;
  line-height: 26px;
  color: #E0EEEE;
  margin-bottom: 41px;
  font-family: var(--font_cooper);
}

.footer-area .newsletter p {
  font-weight: 300;
  font-size: 18px;
  line-height: 28px;
  max-width: 324px;
  color: rgba(224, 238, 238, 0.7);
}

.footer-area .newsletter .subscribe {
  border-radius: 6px;
  display: flex;
  padding: 6px;
  margin-top: 34px;
  align-items: center;
  border: 1px solid rgba(224, 238, 238, 0.14);
}

.footer-area .newsletter .subscribe input {
  height: 40px;
  background: transparent;
  outline: none;
  width: 100%;
  padding-right: 5px;
  border: none;
  color: rgba(224, 238, 238, 0.7);
  padding-left: 24px;
}

.footer-area .newsletter .subscribe::placeholder {
  font-weight: 400;
  font-size: 16px;
  line-height: 28px;
  color: rgba(224, 238, 238, 0.7);
}

.footer-area .newsletter .subscribe button {
  background: var(--primary);
  font-weight: 500;
  font-size: 15px;
  border-radius: 6px;
  padding: 8px 24px;
  line-height: 25px;
  text-transform: uppercase;
}

.footer-area .newsletter .conditions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 25px;
}

.footer-area .newsletter .conditions input {
  width: 15px;
  height: 15px;
}

.footer-area .newsletter .conditions {
  /* Hide default checkbox */
}

.footer-area .newsletter .conditions input[type=checkbox] {
  appearance: none;
  -webkit-appearance: none;
  width: 15px;
  height: 15px;
  border: 1px solid rgba(224, 238, 238, 0.14);
  border-radius: 4px;
  background-color: transparent;
  cursor: pointer;
  position: relative;
  transition: all 0.3s ease;
}

.footer-area .newsletter .conditions input[type=checkbox]:checked {
  background-color: var(--primary);
  border-color: var(--primary);
}

.footer-area .newsletter .conditions input[type=checkbox]:checked::after {
  content: "";
  position: absolute;
  left: 4px;
  top: 1px;
  width: 4px;
  height: 8px;
  border: solid var(--black);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.footer-area .newsletter .conditions label {
  font-weight: 300;
  font-size: 16px;
  line-height: 28px;
  color: rgba(224, 238, 238, 0.7);
}

.footer-area .footer-nav-list li {
  font-weight: 300;
  font-size: 18px;
  line-height: 28px;
  color: rgba(224, 238, 238, 0.7);
  list-style: none;
  position: relative;
  padding-left: 15px;
}

.footer-area .footer-nav-list li:not(:last-child) {
  margin-bottom: 27px;
}

.footer-area .footer-nav-list li::before {
  left: 0;
  top: 50%;
  width: 4px;
  content: "";
  height: 4px;
  position: absolute;
  border-radius: 500px;
  transform: translateY(-50%);
  background: rgba(224, 238, 238, 0.7);
}

.footer-area .footer-nav-list li:hover a {
  color: var(--primary);
}

.copyright__inner {
  display: flex;
  max-width: 1600px;
  margin: 0 auto;
  padding: 23px 10px;
  align-items: center;
  justify-content: space-between;
}

@media only screen and (max-width: 767px) {
  .copyright__inner {
    flex-wrap: wrap;
    gap: 20px;
  }
}

.copyright__text p {
  font-weight: 300;
  font-size: 18px;
  line-height: 27px;
  color: rgba(224, 238, 238, 0.7);
}

.copyright__menu {
  gap: 20px;
  display: flex;
  list-style: none;
  align-items: center;
}

.copyright__menu li {
  position: relative;
}

.copyright__menu li:not(:last-child)::before {
  content: "";
  top: 50%;
  width: 2px;
  height: 15px;
  right: -10px;
  position: absolute;
  background: rgba(224, 238, 238, 0.7);
  transform: translateY(-50%);
}

.copyright__menu li a {
  font-weight: 300;
  font-size: 18px;
  line-height: 27px;
  color: rgba(224, 238, 238, 0.7);
}

.copyright__menu li a:hover {
  color: #E0EEEE;
}

/* === footer-3 scss (index 01) === */
.footer-area-3 .footer-widget-3-wrapper-box {
  border-bottom: 1px solid rgba(224, 238, 238, 0.14);
}

.footer-area-3 .footer-widget-3-wrapper {
  display: grid;
  gap: 30px 115px;
  grid-template-columns: 1078px 1fr;
}

@media only screen and (max-width: 1919px) {
  .footer-area-3 .footer-widget-3-wrapper {
    grid-template-columns: 900px 1fr;
  }
}

@media only screen and (max-width: 1399px) {
  .footer-area-3 .footer-widget-3-wrapper {
    grid-template-columns: 800px 1fr;
    gap: 30px 50px;
  }
}

@media only screen and (max-width: 1199px) {
  .footer-area-3 .footer-widget-3-wrapper {
    gap: 30px 20px;
    grid-template-columns: 550px 1fr;
  }
}

@media only screen and (max-width: 991px) {
  .footer-area-3 .footer-widget-3-wrapper {
    gap: 30px;
    padding-top: 60px;
    padding-bottom: 60px;
    grid-template-columns: 1fr;
  }
}

@media (max-width: 575px) {
  .footer-area-3 .footer-widget-3-wrapper {
    grid-template-columns: 1fr;
  }
}

.footer-area-3 .footer-widget-3-wrapper .content {
  border-right: 1px solid rgba(224, 238, 238, 0.14);
  height: 100%;
  padding-bottom: 60px;
  padding-right: 60px;
}

@media only screen and (max-width: 1399px) {
  .footer-area-3 .footer-widget-3-wrapper .content {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}

@media only screen and (max-width: 991px) {
  .footer-area-3 .footer-widget-3-wrapper .content {
    border-right: none;
    padding-top: 0px;
    padding-right: 0;
    padding-bottom: 40px;
  }
}

.footer-area-3 .footer-widget-3-wrapper .content .title-wrapper {
  gap: 25px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

@media only screen and (max-width: 1399px) {
  .footer-area-3 .footer-widget-3-wrapper .content .title-wrapper {
    flex-wrap: wrap;
  }
}

.footer-area-3 .footer-widget-3-wrapper .content .title-wrapper .social-links {
  gap: 10px;
  display: flex;
  list-style: none;
  align-items: center;
}

.footer-area-3 .footer-widget-3-wrapper .content .title-wrapper .social-links li a {
  width: 60px;
  height: 60px;
  display: flex;
  border-radius: 6px;
  color: var(--white);
  transition: all 0.3s;
  font-size: 24px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(224, 238, 238, 0.14);
}

.footer-area-3 .footer-widget-3-wrapper .content .title-wrapper .social-links li a:hover {
  color: var(--black);
  background: var(--primary);
}

.footer-area-3 .footer-widget-3-wrapper .content .title-wrapper p {
  font-weight: 300;
  font-size: 20px;
  line-height: 30px;
  color: #fff;
  opacity: 0.7;
  margin-top: 35px;
  max-width: 412px;
  font-family: var(--font_kanit);
}

.footer-area-3 .footer-widget-3-box {
  padding-top: 140px;
}

@media only screen and (max-width: 991px) {
  .footer-area-3 .footer-widget-3-box {
    padding-top: 0;
  }
}

.footer-area-3 .footer-info {
  margin-top: 170px;
}

@media only screen and (max-width: 1399px) {
  .footer-area-3 .footer-info {
    margin-top: 100px;
  }
}

@media only screen and (max-width: 1199px) {
  .footer-area-3 .footer-info {
    margin-top: 60px;
  }
}

.footer-area-3 .footer-info__item {
  display: flex;
  justify-content: space-between;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(224, 238, 238, 0.14);
}

@media (max-width: 575px) {
  .footer-area-3 .footer-info__item {
    flex-wrap: wrap;
    gap: 10px;
  }
}

.footer-area-3 .footer-info__item:not(:last-child) {
  margin-bottom: 20px;
}

.footer-area-3 .footer-info__item .title {
  color: var(--white);
  font-size: 20px;
  font-weight: 500;
  line-height: 20px;
}

.footer-area-3 .footer-info__item span {
  font-size: 18px;
  line-height: 18px;
  color: rgba(255, 255, 255, 0.7);
}

.footer-area-3 .footer-info__item a {
  font-size: 18px;
  line-height: 18px;
  color: rgba(255, 255, 255, 0.7);
}

.footer-area-3 .footer-info__item a:hover {
  color: var(--primary);
}

.footer-area-3 .backtop {
  font-size: 30px;
  line-height: 48px;
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--white);
  justify-content: end;
  margin-top: 200px;
}

@media only screen and (max-width: 1399px) {
  .footer-area-3 .backtop {
    margin-top: 100px;
  }
}

@media only screen and (max-width: 1199px) {
  .footer-area-3 .backtop {
    margin-top: 60px;
  }
}

.footer-area-3 .backtop span {
  display: flex;
  width: 50px;
  height: 50px;
  align-items: center;
  justify-content: center;
  border-radius: 500px;
  background: rgba(255, 255, 255, 0.1);
}

.footer-area-3 .footer-3-link.wrap .wrapper {
  display: flex;
  justify-content: space-between;
}

.footer-area-3 .footer-3-link .title {
  font-weight: 500;
  font-size: 20px;
  line-height: 26px;
  color: #E0EEEE;
  margin-bottom: 40px;
  font-family: var(--font_cooper);
}

.footer-area-3 .footer-nav-list li {
  font-weight: 300;
  font-size: 18px;
  line-height: 28px;
  color: rgba(224, 238, 238, 0.7);
  list-style: none;
  position: relative;
  padding-left: 15px;
}

.footer-area-3 .footer-nav-list li:not(:last-child) {
  margin-bottom: 27px;
}

.footer-area-3 .footer-nav-list li::before {
  left: 0;
  top: 50%;
  width: 4px;
  content: "";
  height: 4px;
  position: absolute;
  border-radius: 500px;
  transform: translateY(-50%);
  background: rgba(224, 238, 238, 0.7);
}

.footer-area-3 .footer-nav-list li:hover a {
  color: var(--primary);
}

.copyright-3__inner {
  display: flex;
  padding: 32px 0px;
  align-items: center;
  justify-content: space-between;
}

@media only screen and (max-width: 767px) {
  .copyright-3__inner {
    flex-wrap: wrap;
    gap: 20px;
  }
}

.copyright-3__text p {
  font-weight: 300;
  font-size: 18px;
  line-height: 27px;
  color: rgba(224, 238, 238, 0.7);
}

.copyright-3__text p a {
  color: var(--white);
}

.copyright-3__menu {
  gap: 37px;
  display: flex;
  list-style: none;
  align-items: center;
}

.copyright-3__menu li {
  position: relative;
}

.copyright-3__menu li:not(:last-child)::before {
  content: "";
  top: 50%;
  width: 2px;
  height: 15px;
  right: -18px;
  position: absolute;
  background: rgba(224, 238, 238, 0.7);
  transform: translateY(-50%);
}

.copyright-3__menu li a {
  font-weight: 300;
  font-size: 18px;
  line-height: 27px;
  color: rgba(224, 238, 238, 0.7);
}

.copyright-3__menu li a:hover {
  color: #E0EEEE;
}

.footer-4__wrapper {
  background: #F7F7F7;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  position: relative;
  z-index: 1;
  margin-top: -4px;
  overflow: hidden;
}

.dark .footer-4__wrapper {
  background: var(--secondary);
}

@media only screen and (max-width: 1399px) {
  .footer-4__wrapper {
    padding: 0px 0 87.4px 0;
  }
}

@media only screen and (max-width: 991px) {
  .footer-4__wrapper {
    padding: 0px 0 40px 0;
  }
}

@media only screen and (max-width: 767px) {
  .footer-4__wrapper {
    padding: 30px 0 30.4px 0;
  }
}

.dark .footer-4__logo img {
  filter: brightness(0) invert(1);
}

.footer-4__wrap {
  display: flex;
}

@media only screen and (max-width: 991px) {
  .footer-4__wrap {
    flex-wrap: wrap;
  }
}

.footer-4__wrap:last-child {
  border-right: none;
  padding-left: 80px;
}

.footer-4__widget {
  text-align: start;
  padding-right: 126px;
  margin: 118px 0 39px 0;
}

@media only screen and (max-width: 1919px) {
  .footer-4__widget {
    padding-right: 45px;
  }
}

@media only screen and (max-width: 1399px) {
  .footer-4__widget {
    padding-right: 55px;
    margin: 70px 0 0px 0;
  }
}

@media only screen and (max-width: 1199px) {
  .footer-4__widget {
    padding-right: 30px;
  }
}

@media only screen and (max-width: 991px) {
  .footer-4__widget {
    padding-right: 45px;
  }
}

@media only screen and (max-width: 767px) {
  .footer-4__widget {
    padding-right: 50px;
    margin: 30px 0 0px 0;
  }
}

@media (max-width: 575px) {
  .footer-4__widget {
    padding-right: 20px;
    margin: 30px 0 0px 15px;
  }
}

.footer-4__widget:nth-child(3) {
  padding-right: 126px;
}

@media only screen and (max-width: 1919px) {
  .footer-4__widget:nth-child(3) {
    padding-right: 36px;
  }
}

@media only screen and (max-width: 1399px) {
  .footer-4__widget:nth-child(3) {
    padding-right: 50px;
  }
}

@media only screen and (max-width: 767px) {
  .footer-4__widget:nth-child(3) {
    padding-left: 20px;
  }
}

.footer-4__widget.one {
  padding-left: 160px;
}

@media only screen and (max-width: 1919px) {
  .footer-4__widget.one {
    padding-left: 20px;
  }
}

@media only screen and (max-width: 1399px) {
  .footer-4__widget.one {
    padding-left: 20px;
  }
}

@media (max-width: 575px) {
  .footer-4__widget.one {
    padding-left: 0;
  }
}

.footer-4__widget.two {
  padding-right: 80px;
}

@media only screen and (max-width: 1919px) {
  .footer-4__widget.two {
    padding-right: 0;
  }
}

@media only screen and (max-width: 1399px) {
  .footer-4__widget.two {
    padding-right: 0;
  }
}

@media only screen and (max-width: 991px) {
  .footer-4__widget.two {
    padding-left: 20px;
  }
}

@media (max-width: 575px) {
  .footer-4__widget.two {
    padding-left: 0;
  }
}

.footer-4__widget.two .footer__links li::before {
  display: none;
  padding-left: 0;
}

.footer-4__widget .address-company {
  position: relative;
}

.footer-4__widget .address-company .item {
  gap: 10px;
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.footer-4__widget .address-company .item:last-child {
  margin-bottom: 0;
}

.footer-4__widget .address-company .video-thumb {
  position: absolute;
  top: -118px;
  left: 66px;
  width: 395px;
  overflow: hidden;
  height: 470px;
}

@media only screen and (max-width: 1919px) {
  .footer-4__widget .address-company .video-thumb {
    left: 42px;
  }
}

@media only screen and (max-width: 1399px) {
  .footer-4__widget .address-company .video-thumb {
    position: inherit;
    left: 54px;
  }
}

@media only screen and (max-width: 1199px) {
  .footer-4__widget .address-company .video-thumb {
    top: 0;
    left: 30px;
  }
}

@media (max-width: 575px) {
  .footer-4__widget .address-company .video-thumb {
    left: 0;
  }
}

.footer-4__widget .address-company .video-thumb .video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0 0 0 14px;
}

@media only screen and (max-width: 1399px) {
  .footer-4__widget .address-company .video-thumb .video {
    max-width: 100%;
  }
}

@media only screen and (max-width: 1199px) {
  .footer-4__widget .address-company .video-thumb .video {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

.footer-4__widget .address-company .video-thumb .play {
  position: absolute;
  top: 50%;
  left: 50%;
}

.footer-4__widget .address-company .video-thumb .play a {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  color: var(--white);
  transform: translate(-50%, -50%);
  background: var(--secondary);
}

.footer-4__title {
  position: relative;
  margin-bottom: 29px;
  font-family: var(--font_kanit);
  font-weight: 400;
  font-size: 20px;
  line-height: 17px;
  color: #101010;
}

.dark .footer-4__title {
  color: var(--white);
}

@media only screen and (max-width: 1399px) {
  .footer-4__title {
    white-space: nowrap;
  }
}

@media only screen and (max-width: 1199px) {
  .footer-4__title {
    margin-bottom: 30px;
  }
}

@media only screen and (max-width: 767px) {
  .footer-4__title {
    margin-bottom: 10px;
  }
}

@media (max-width: 575px) {
  .footer-4__title {
    margin-bottom: 5px;
  }
}

.footer-4__desc {
  font-family: var(--font_kanit);
  font-size: 18px;
  margin-top: 29px;
  font-weight: 400;
  line-height: 26px;
  max-width: 344px;
  color: rgba(16, 16, 16, 0.6);
}

.dark .footer-4__desc {
  color: rgba(255, 255, 255, 0.6);
}

@media only screen and (max-width: 1919px) {
  .footer-4__desc {
    max-width: 320px;
  }
}

@media only screen and (max-width: 991px) {
  .footer-4__desc {
    margin-top: 12px;
  }
}

@media (max-width: 575px) {
  .footer-4__desc {
    margin-top: 30px;
  }
}

.footer-4__social {
  gap: 30px;
  display: flex;
  margin-top: 40px;
  align-items: center;
}

.footer-4__social li {
  list-style: none;
}

.footer-4__social li a {
  color: rgba(255, 255, 255, 0.6);
}

.dark .footer-4__social li a {
  color: rgba(255, 255, 255, 0.6);
}

.footer-4__social li a:hover i {
  color: var(--secondary);
}

.dark .footer-4__social li a:hover i {
  color: var(--white);
}

.footer-4__social li a i {
  font-size: 20px;
  font-weight: 400;
  line-height: 14px;
  color: rgba(16, 16, 16, 0.6);
  transition: all 0.3s ease-in-out;
}

.dark .footer-4__social li a i {
  color: rgba(255, 255, 255, 0.6);
}

@media (max-width: 575px) {
  .footer-4__links {
    margin-top: 0;
  }
}

.footer-4__links li {
  list-style: none;
  position: relative;
  padding-left: 18px;
  margin-bottom: 7px;
}

.footer-4__links li::before {
  content: "";
  left: 0;
  top: 18px;
  width: 6px;
  height: 6px;
  position: absolute;
  border-radius: 30px;
  background: rgba(16, 16, 16, 0.7);
}

.dark .footer-4__links li::before {
  background: rgba(255, 255, 255, 0.7);
}

.footer-4__links li a {
  gap: 13px;
  display: flex;
  font-size: 16px;
  font-weight: 400;
  line-height: 40px;
  align-items: center;
  color: rgba(16, 16, 16, 0.7);
  vertical-align: middle;
  font-family: var(--font_inter);
  transition: all 0.3s ease-in-out;
}

.dark .footer-4__links li a {
  color: rgba(255, 255, 255, 0.7);
}

.footer-4__links li a:hover {
  color: var(--secondary);
}

.dark .footer-4__links li a:hover {
  color: var(--white);
}

.footer-4__contact-info {
  margin-bottom: 20px;
}

.footer-4__contact-info li {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  padding-left: 0;
}

.footer-4__contact-info li::before {
  display: none;
}

@media only screen and (max-width: 1399px) {
  .footer-4__contact-info li {
    margin-bottom: 10px;
  }
}

@media only screen and (max-width: 991px) {
  .footer-4__contact-info li {
    padding-left: 0;
  }
}

.footer-4__contact-info li:last-child {
  margin-bottom: 0;
}

.footer-4__contact-info li.one {
  max-width: 286px;
}

@media (max-width: 575px) {
  .footer-4__contact-info li.one {
    max-width: 100%;
  }
}

.footer-4__contact-info li.one i {
  transform: translateY(-10px);
}

.footer-4__contact-info li i {
  color: rgba(16, 16, 16, 0.6);
  margin-right: 16px;
}

.dark .footer-4__contact-info li i {
  color: var(--white);
}

.footer-4__contact-info li span {
  font-family: var(--font_inter);
  font-weight: 500;
  font-size: 16px;
  color: rgba(16, 16, 16, 0.6);
  margin-right: 5px;
  line-height: 26px;
  vertical-align: middle;
}

.footer-4__contact-info li a {
  font-family: var(--font_inter);
  font-weight: 500;
  font-size: 16px;
  color: rgba(16, 16, 16, 0.6);
  line-height: 26px;
  vertical-align: middle;
}

.dark .footer-4__contact-info li a {
  color: rgba(255, 255, 255, 0.6);
}

.footer-4__contact-info li a:hover {
  color: var(--secondary);
}

.dark .footer-4__contact-info li a:hover {
  color: var(--white);
}

.footer-4__contact-info-item.one {
  max-width: 232px;
}

@media only screen and (max-width: 991px) {
  .footer-4__contact-info-item.one {
    margin-top: 20px;
  }
}

.footer-4__bottom {
  z-index: 3;
  padding-top: 120px;
  position: relative;
  overflow: hidden;
}

@media only screen and (max-width: 1399px) {
  .footer-4__bottom {
    padding-top: 40px;
  }
}

@media only screen and (max-width: 991px) {
  .footer-4__bottom {
    padding-top: 0;
  }
}

.footer-4__bottom .shape {
  top: 38px;
  left: 0;
  position: absolute;
}

@media only screen and (max-width: 1399px) {
  .footer-4__bottom .shape {
    top: 0px;
  }
}

@media only screen and (max-width: 1199px) {
  .footer-4__bottom .shape {
    display: none;
  }
}

.footer-4__bottom-logo {
  display: flex;
  align-items: center;
  padding-left: 160px;
  padding-top: 26px;
  padding-bottom: 18px;
  justify-content: space-between;
  position: relative;
  z-index: 1;
}

@media only screen and (max-width: 1919px) {
  .footer-4__bottom-logo {
    padding-left: 20px;
    margin-bottom: -45px;
  }
}

@media only screen and (max-width: 1399px) {
  .footer-4__bottom-logo {
    padding-left: 20px;
    margin-bottom: -45px;
  }
}

@media only screen and (max-width: 991px) {
  .footer-4__bottom-logo {
    margin-bottom: 0;
    flex-wrap: wrap;
  }
}

.footer-4__bottom-logo .logo {
  padding-left: 31px;
  position: absolute;
  bottom: -74px;
}

.dark .footer-4__bottom-logo .logo img {
  filter: brightness(0) invert(1);
}

@media only screen and (max-width: 1199px) {
  .footer-4__bottom-logo .logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

@media only screen and (max-width: 1919px) {
  .footer-4__bottom-logo .logo {
    bottom: -26px;
  }
}

@media only screen and (max-width: 1399px) {
  .footer-4__bottom-logo .logo {
    bottom: 0;
    width: 700px;
  }
}

@media only screen and (max-width: 1199px) {
  .footer-4__bottom-logo .logo {
    padding-left: 0;
  }
}

@media only screen and (max-width: 991px) {
  .footer-4__bottom-logo .logo {
    width: 500px;
  }
}

@media only screen and (max-width: 767px) {
  .footer-4__bottom-logo .logo {
    width: 320px;
  }
}

@media (max-width: 575px) {
  .footer-4__bottom-logo .logo {
    width: 285px;
  }
}

.footer-4__bottom-wrap {
  display: flex;
  overflow: hidden;
  position: relative;
  z-index: 2;
  align-items: center;
  background: #E6E7E9;
  padding: 30px 160px 30px 160px;
  justify-content: space-between;
}

.dark .footer-4__bottom-wrap {
  background: var(--secondary);
}

@media only screen and (max-width: 1919px) {
  .footer-4__bottom-wrap {
    padding: 30px 20px 30px 20px;
  }
}

@media only screen and (max-width: 767px) {
  .footer-4__bottom-wrap {
    padding: 30px 20px 30px 20px;
  }
}

@media (max-width: 575px) {
  .footer-4__bottom-wrap {
    flex-wrap: wrap;
    text-align: start;
    flex-direction: column;
  }
}

.footer-4__bottom-wrap .copyright {
  font-size: 16px;
  font-weight: 400;
  line-height: 16px;
  color: rgba(16, 16, 16, 0.6);
  font-family: var(--font_inter);
}

.dark .footer-4__bottom-wrap .copyright {
  color: rgba(255, 255, 255, 0.6);
}

@media only screen and (max-width: 767px) {
  .footer-4__bottom-wrap .copyright {
    padding-bottom: 10px;
  }
}

@media (max-width: 575px) {
  .footer-4__bottom-wrap .copyright {
    line-height: 24px;
    text-align: start;
    margin-bottom: 10px;
  }
}

.footer-4__bottom-menu {
  gap: 24px;
  display: flex;
  align-items: center;
}

@media only screen and (max-width: 767px) {
  .footer-4__bottom-menu {
    gap: 10px;
    flex-wrap: wrap;
  }
}

.footer-4__bottom-menu li {
  list-style: none;
  position: relative;
}

.footer-4__bottom-menu li::before {
  content: "";
  top: 4px;
  width: 2px;
  left: -12px;
  height: 16px;
  display: block;
  position: absolute;
  background: rgba(16, 16, 16, 0.6);
}

@media only screen and (max-width: 767px) {
  .footer-4__bottom-menu li::before {
    left: -6px;
  }
}

.footer-4__bottom-menu li:first-child::before {
  display: none;
}

.footer-4__bottom-menu li a {
  font-size: 16px;
  font-weight: 300;
  line-height: 16px;
  color: rgba(16, 16, 16, 0.6);
  font-family: var(--font_inter);
  transition: all 0.3s ease-in-out;
}

.dark .footer-4__bottom-menu li a {
  color: rgba(255, 255, 255, 0.6);
}

.footer-4__bottom-menu li a:hover {
  color: var(--secondary);
}

.footer-4__btn {
  padding-right: 160px;
  padding-bottom: 61px;
  margin-left: auto;
  padding-top: 27px;
}

@media only screen and (max-width: 1399px) {
  .footer-4__btn {
    padding-right: 20px;
  }
}

@media only screen and (max-width: 991px) {
  .footer-4__btn {
    padding-bottom: 25px;
  }
}

@media only screen and (max-width: 767px) {
  .footer-4__btn {
    padding-bottom: 0px;
  }
}

.footer-4__btn a {
  gap: 12px;
  display: flex;
  font-family: var(--font_kanit);
  align-items: center;
  font-weight: 400;
  font-size: 24px;
  line-height: 54px;
  color: #101010;
}

.dark .footer-4__btn a {
  color: var(--white);
}

@media only screen and (max-width: 1399px) {
  .footer-4__btn a {
    font-size: 22px;
  }
}

.footer-4__btn a i {
  width: 60px;
  height: 60px;
  display: flex;
  font-size: 16px;
  align-items: center;
  justify-content: center;
  border-radius: 100px;
  transition: all 0.3s ease-in-out;
  border: 1px solid rgba(16, 16, 16, 0.14);
}

.dark .footer-4__btn a i {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 100px;
}

@media only screen and (max-width: 1199px) {
  .footer-4__btn a i {
    width: 50px;
    height: 50px;
  }
}

.footer-4__btn a i:hover {
  color: var(--secondary);
  background: var(--primary);
}

.footer-6__wrapper {
  z-index: 1;
  margin-top: -4px;
  overflow: hidden;
  position: relative;
  background: var(--secondary);
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}

@media only screen and (max-width: 1399px) {
  .footer-6__wrapper {
    padding: 0px 0 87.4px 0;
  }
}

@media only screen and (max-width: 991px) {
  .footer-6__wrapper {
    padding: 0px 0 40px 0;
  }
}

@media only screen and (max-width: 767px) {
  .footer-6__wrapper {
    padding: 30px 0 30.4px 0;
  }
}

.footer-6__wrap {
  display: flex;
}

@media only screen and (max-width: 991px) {
  .footer-6__wrap {
    flex-wrap: wrap;
  }
}

.footer-6__wrap:last-child {
  border-right: none;
  padding-left: 80px;
}

.footer-6__widget {
  text-align: start;
  padding-right: 126px;
  margin: 118px 0 39px 0;
}

@media only screen and (max-width: 1919px) {
  .footer-6__widget {
    padding-right: 45px;
  }
}

@media only screen and (max-width: 1399px) {
  .footer-6__widget {
    padding-right: 55px;
    margin: 70px 0 0px 0;
  }
}

@media only screen and (max-width: 1199px) {
  .footer-6__widget {
    padding-right: 30px;
  }
}

@media only screen and (max-width: 991px) {
  .footer-6__widget {
    padding-right: 45px;
  }
}

@media only screen and (max-width: 767px) {
  .footer-6__widget {
    padding-right: 50px;
    margin: 30px 0 0px 0;
  }
}

@media (max-width: 575px) {
  .footer-6__widget {
    padding-right: 20px;
    margin: 30px 0 0px 15px;
  }
}

.footer-6__widget:nth-child(3) {
  padding-right: 126px;
}

@media only screen and (max-width: 1919px) {
  .footer-6__widget:nth-child(3) {
    padding-right: 36px;
  }
}

@media only screen and (max-width: 1399px) {
  .footer-6__widget:nth-child(3) {
    padding-right: 50px;
  }
}

@media only screen and (max-width: 767px) {
  .footer-6__widget:nth-child(3) {
    padding-left: 20px;
  }
}

.footer-6__widget.one {
  padding-left: 160px;
}

@media only screen and (max-width: 1919px) {
  .footer-6__widget.one {
    padding-left: 20px;
  }
}

@media only screen and (max-width: 1399px) {
  .footer-6__widget.one {
    padding-left: 20px;
  }
}

@media (max-width: 575px) {
  .footer-6__widget.one {
    padding-left: 0;
  }
}

.footer-6__widget.two {
  padding-right: 80px;
}

@media only screen and (max-width: 1919px) {
  .footer-6__widget.two {
    padding-right: 0;
  }
}

@media only screen and (max-width: 1399px) {
  .footer-6__widget.two {
    padding-right: 0;
  }
}

@media only screen and (max-width: 991px) {
  .footer-6__widget.two {
    padding-left: 20px;
  }
}

@media (max-width: 575px) {
  .footer-6__widget.two {
    padding-left: 0;
  }
}

.footer-6__widget.two .footer__links li::before {
  display: none;
  padding-left: 0;
}

.footer-6__widget .address-company {
  position: relative;
}

.footer-6__widget .address-company .item {
  gap: 10px;
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.footer-6__widget .address-company .item:last-child {
  margin-bottom: 0;
}

.footer-6__widget .address-company .video-thumb {
  position: absolute;
  top: -118px;
  left: 66px;
}

@media only screen and (max-width: 1919px) {
  .footer-6__widget .address-company .video-thumb {
    left: 42px;
  }
}

@media only screen and (max-width: 1399px) {
  .footer-6__widget .address-company .video-thumb {
    position: inherit;
    left: 54px;
  }
}

@media only screen and (max-width: 1199px) {
  .footer-6__widget .address-company .video-thumb {
    top: 0;
    left: 30px;
  }
}

@media (max-width: 575px) {
  .footer-6__widget .address-company .video-thumb {
    left: 0;
  }
}

.footer-6__widget .address-company .video-thumb img {
  max-width: inherit;
  border-radius: 0 0 0 14px;
}

@media only screen and (max-width: 1399px) {
  .footer-6__widget .address-company .video-thumb img {
    max-width: 100%;
  }
}

@media only screen and (max-width: 1199px) {
  .footer-6__widget .address-company .video-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

.footer-6__widget .address-company .video-thumb .play {
  position: absolute;
  top: 50%;
  left: 50%;
}

.footer-6__widget .address-company .video-thumb .play a {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  color: var(--white);
  transform: translate(-50%, -50%);
  background: var(--secondary);
}

.footer-6__title {
  position: relative;
  margin-bottom: 29px;
  font-family: var(--font_kanit);
  font-weight: 400;
  font-size: 20px;
  line-height: 17px;
  color: var(--white);
}

@media only screen and (max-width: 1399px) {
  .footer-6__title {
    white-space: nowrap;
  }
}

@media only screen and (max-width: 1199px) {
  .footer-6__title {
    margin-bottom: 30px;
  }
}

@media only screen and (max-width: 767px) {
  .footer-6__title {
    margin-bottom: 10px;
  }
}

@media (max-width: 575px) {
  .footer-6__title {
    margin-bottom: 5px;
  }
}

.footer-6__desc {
  font-family: var(--font_kanit);
  font-size: 18px;
  margin-top: 29px;
  font-weight: 400;
  line-height: 26px;
  max-width: 344px;
  color: rgba(255, 255, 255, 0.6);
}

@media only screen and (max-width: 1919px) {
  .footer-6__desc {
    max-width: 320px;
  }
}

@media only screen and (max-width: 991px) {
  .footer-6__desc {
    margin-top: 12px;
  }
}

@media (max-width: 575px) {
  .footer-6__desc {
    margin-top: 30px;
  }
}

.footer-6__social {
  gap: 30px;
  display: flex;
  margin-top: 40px;
  align-items: center;
}

.footer-6__social li {
  list-style: none;
}

.footer-6__social li a {
  color: rgba(255, 255, 255, 0.6);
}

.footer-6__social li a:hover i {
  color: var(--white);
}

.footer-6__social li a i {
  font-size: 20px;
  font-weight: 400;
  line-height: 14px;
  color: rgba(255, 255, 255, 0.6);
  transition: all 0.3s ease-in-out;
}

@media (max-width: 575px) {
  .footer-6__links {
    margin-top: 0;
  }
}

.footer-6__links li {
  list-style: none;
  position: relative;
  padding-left: 18px;
  margin-bottom: 7px;
}

.footer-6__links li::before {
  content: "";
  left: 0;
  top: 18px;
  width: 6px;
  height: 6px;
  position: absolute;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.7);
}

.footer-6__links li a {
  gap: 13px;
  display: flex;
  font-size: 16px;
  font-weight: 400;
  line-height: 40px;
  align-items: center;
  color: rgba(255, 255, 255, 0.7);
  vertical-align: middle;
  font-family: var(--font_inter);
  transition: all 0.3s ease-in-out;
}

.footer-6__links li a:hover {
  color: var(--white);
}

.footer-6__contact-info {
  margin-bottom: 20px;
}

.footer-6__contact-info li {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  padding-left: 0;
}

@media only screen and (max-width: 1399px) {
  .footer-6__contact-info li {
    margin-bottom: 10px;
  }
}

@media only screen and (max-width: 991px) {
  .footer-6__contact-info li {
    padding-left: 0;
  }
}

.footer-6__contact-info li:last-child {
  margin-bottom: 0;
}

.footer-6__contact-info li.one {
  max-width: 286px;
}

@media (max-width: 575px) {
  .footer-6__contact-info li.one {
    max-width: 100%;
  }
}

.footer-6__contact-info li.one i {
  transform: translateY(-10px);
}

.footer-6__contact-info li i {
  color: rgba(255, 255, 255, 0.6);
  margin-right: 16px;
}

.footer-6__contact-info li span {
  font-family: var(--font_inter);
  font-weight: 500;
  font-size: 16px;
  color: rgba(16, 16, 16, 0.6);
  margin-right: 5px;
  line-height: 26px;
  vertical-align: middle;
}

.footer-6__contact-info li a {
  font-family: var(--font_inter);
  font-weight: 500;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 26px;
  vertical-align: middle;
}

.footer-6__contact-info li a:hover {
  color: var(--white);
}

.footer-6__contact-info-item.one {
  max-width: 232px;
}

@media only screen and (max-width: 991px) {
  .footer-6__contact-info-item.one {
    margin-top: 20px;
  }
}

.footer-6__bottom {
  z-index: 3;
  padding-top: 120px;
  position: relative;
  overflow: hidden;
}

@media only screen and (max-width: 1399px) {
  .footer-6__bottom {
    padding-top: 40px;
  }
}

@media only screen and (max-width: 991px) {
  .footer-6__bottom {
    padding-top: 0;
  }
}

.footer-6__bottom .shape {
  top: 38px;
  left: 0;
  position: absolute;
}

@media only screen and (max-width: 1399px) {
  .footer-6__bottom .shape {
    top: 0px;
  }
}

@media only screen and (max-width: 1199px) {
  .footer-6__bottom .shape {
    display: none;
  }
}

.footer-6__bottom-logo {
  display: flex;
  align-items: center;
  padding-left: 160px;
  padding-top: 26px;
  padding-bottom: 18px;
  justify-content: space-between;
  position: relative;
  z-index: 1;
}

@media only screen and (max-width: 1919px) {
  .footer-6__bottom-logo {
    padding-left: 20px;
    margin-bottom: -45px;
  }
}

@media only screen and (max-width: 1399px) {
  .footer-6__bottom-logo {
    padding-left: 20px;
    margin-bottom: -45px;
  }
}

@media only screen and (max-width: 991px) {
  .footer-6__bottom-logo {
    margin-bottom: 0;
    flex-wrap: wrap;
  }
}

.footer-6__bottom-logo .logo {
  padding-left: 31px;
  position: absolute;
  bottom: -74px;
}

@media only screen and (max-width: 1919px) {
  .footer-6__bottom-logo .logo {
    bottom: -26px;
  }
}

@media only screen and (max-width: 1399px) {
  .footer-6__bottom-logo .logo {
    bottom: 0;
    width: 700px;
  }
}

@media only screen and (max-width: 1199px) {
  .footer-6__bottom-logo .logo {
    padding-left: 0;
  }
}

@media only screen and (max-width: 991px) {
  .footer-6__bottom-logo .logo {
    width: 500px;
  }
}

@media only screen and (max-width: 767px) {
  .footer-6__bottom-logo .logo {
    width: 320px;
  }
}

@media (max-width: 575px) {
  .footer-6__bottom-logo .logo {
    width: 285px;
  }
}

@media only screen and (max-width: 1199px) {
  .footer-6__bottom-logo .logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

.footer-6__bottom-wrap {
  display: flex;
  overflow: hidden;
  position: relative;
  z-index: 2;
  align-items: center;
  background: var(--secondary);
  padding: 30px 160px 30px 160px;
  justify-content: space-between;
}

@media only screen and (max-width: 1919px) {
  .footer-6__bottom-wrap {
    padding: 30px 20px 30px 20px;
  }
}

@media only screen and (max-width: 767px) {
  .footer-6__bottom-wrap {
    padding: 30px 20px 30px 20px;
  }
}

@media (max-width: 575px) {
  .footer-6__bottom-wrap {
    flex-wrap: wrap;
    text-align: start;
    flex-direction: column;
  }
}

.footer-6__bottom-wrap .copyright {
  font-size: 16px;
  font-weight: 400;
  line-height: 16px;
  color: rgba(255, 255, 255, 0.6);
  font-family: var(--font_inter);
}

@media only screen and (max-width: 767px) {
  .footer-6__bottom-wrap .copyright {
    padding-bottom: 10px;
  }
}

@media (max-width: 575px) {
  .footer-6__bottom-wrap .copyright {
    line-height: 24px;
    text-align: start;
    margin-bottom: 10px;
  }
}

.footer-6__bottom-menu {
  gap: 24px;
  display: flex;
  align-items: center;
}

@media only screen and (max-width: 767px) {
  .footer-6__bottom-menu {
    gap: 10px;
    flex-wrap: wrap;
  }
}

.footer-6__bottom-menu li {
  list-style: none;
  position: relative;
}

.footer-6__bottom-menu li::before {
  content: "";
  top: 4px;
  width: 2px;
  left: -12px;
  height: 16px;
  display: block;
  position: absolute;
  background: rgba(255, 255, 255, 0.6);
}

@media only screen and (max-width: 767px) {
  .footer-6__bottom-menu li::before {
    left: -6px;
  }
}

.footer-6__bottom-menu li:first-child::before {
  display: none;
}

.footer-6__bottom-menu li a {
  font-size: 16px;
  font-weight: 300;
  line-height: 16px;
  color: rgba(255, 255, 255, 0.6);
  font-family: var(--font_inter);
  transition: all 0.3s ease-in-out;
}

.footer-6__bottom-menu li a:hover {
  color: var(--white);
}

.footer-6__btn {
  padding-right: 160px;
  padding-bottom: 61px;
  margin-left: auto;
  padding-top: 27px;
}

@media only screen and (max-width: 1399px) {
  .footer-6__btn {
    padding-right: 20px;
  }
}

@media only screen and (max-width: 991px) {
  .footer-6__btn {
    padding-bottom: 25px;
  }
}

@media only screen and (max-width: 767px) {
  .footer-6__btn {
    padding-bottom: 0px;
  }
}

.footer-6__btn a {
  gap: 12px;
  display: flex;
  font-family: var(--font_kanit);
  align-items: center;
  font-weight: 400;
  font-size: 24px;
  line-height: 54px;
  color: var(--white);
}

@media only screen and (max-width: 1399px) {
  .footer-6__btn a {
    font-size: 22px;
  }
}

.footer-6__btn a i {
  width: 60px;
  height: 60px;
  display: flex;
  font-size: 16px;
  align-items: center;
  justify-content: center;
  border-radius: 100px;
  transition: all 0.3s ease-in-out;
  border: 1px solid rgba(255, 255, 255, 0.14);
}

@media only screen and (max-width: 1199px) {
  .footer-6__btn a i {
    width: 50px;
    height: 50px;
  }
}

.footer-6__btn a i:hover {
  color: var(--secondary);
  background: var(--primary);
}

/* === footer scss (index 01) === */
.footer-5-area {
  background: #121212;
  padding-top: 60px;
}

.footer-5-widget-wrapper {
  display: grid;
  grid-template-columns: 206px 372px 1fr;
  gap: 196px;
  margin-bottom: 60px;
  align-items: center;
}

@media only screen and (max-width: 1399px) {
  .footer-5-widget-wrapper {
    gap: 160px;
  }
}

@media only screen and (max-width: 1199px) {
  .footer-5-widget-wrapper {
    gap: 50px;
  }
}

@media only screen and (max-width: 991px) {
  .footer-5-widget-wrapper {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}

@media (max-width: 575px) {
  .footer-5-widget-wrapper {
    grid-template-columns: repeat(1, 1fr);
    gap: 30px;
  }
}

.footer-5-widget-box {
  position: relative;
  padding-top: 50px;
  padding-bottom: 90px;
}

@media only screen and (max-width: 991px) {
  .footer-5-widget-box {
    padding: 0;
  }
}

.footer-5-widget-box:first-child::before {
  position: absolute;
  content: "";
  right: -93px;
  height: 100%;
  top: 0;
  width: 1px;
  background: rgba(255, 255, 255, 0.14);
}

@media only screen and (max-width: 1199px) {
  .footer-5-widget-box:first-child::before {
    right: -25px;
  }
}

@media only screen and (max-width: 991px) {
  .footer-5-widget-box:first-child::before {
    display: none;
  }
}

.footer-5-widget-box:last-child::before {
  position: absolute;
  content: "";
  left: -93px;
  height: 100%;
  top: 0;
  width: 1px;
  background: rgba(255, 255, 255, 0.14);
}

@media only screen and (max-width: 1199px) {
  .footer-5-widget-box:last-child::before {
    left: -25px;
  }
}

@media only screen and (max-width: 991px) {
  .footer-5-widget-box:last-child::before {
    display: none;
  }
}

.footer-5-widget-box .follow {
  font-weight: 500;
  font-size: 20px;
  line-height: 28px;
  color: #FFFFFF;
  font-family: var(--font_kanit);
}

.footer-5-widget-box .email {
  font-weight: 400;
  font-size: 18px;
  line-height: 26px;
  color: #FFFFFF;
  opacity: 0.7;
  font-family: var(--font_kanit);
}

.footer-5-widget-box .title {
  font-weight: 500;
  font-size: 20px;
  line-height: 28px;
  color: #FFFFFF;
  font-family: var(--font_kanit);
  margin-bottom: 33px;
}

.footer-5-widget-box .custom-check {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 18px;
  color: #b3b3b3;
  cursor: pointer;
  position: relative;
}

.footer-5-widget-box .custom-check input {
  display: none;
}

.footer-5-widget-box .checkmark {
  width: 14px;
  height: 14px;
  border: 2px solid #2d2d2d;
  border-radius: 1px;
  background-color: transparent;
  display: inline-block;
  position: relative;
  transition: 0.3s;
}

.footer-5-widget-box .custom-check input:checked+.checkmark {
  background-color: #D5F637;
  border-color: #D5F637;
}

.footer-5-widget-box .custom-check input:checked+.checkmark::after {
  content: "";
  position: absolute;
  left: 2px;
  top: 1px;
  width: 5px;
  height: 7px;
  border: solid #000;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.footer-5-widget-social {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 28px;
  margin-bottom: 38px;
}

@media (max-width: 575px) {
  .footer-5-widget-social {
    margin-bottom: 20px;
  }
}

.footer-5-widget-social a {
  background: #1877F2;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  width: 44px;
  transition: all 0.3s ease-in-out;
}

.footer-5-widget-social a:nth-child(2) {
  background: #FFFFFF;
  border-radius: 6px;
}

.footer-5-widget-social a:nth-child(2) i {
  color: #121212;
  transition: all 0.3s ease-in-out;
}

.footer-5-widget-social a:last-child {
  background: #CB2027;
  border-radius: 6px;
}

.footer-5-widget-social a i {
  font-size: 17px;
  color: #FFFFFF;
}

.footer-5-widget-social a:hover {
  background: #CB2027;
}

.footer-5-widget-social a:hover i {
  color: #FFFFFF;
}

.footer-5-widget-subscribe {
  margin-top: 34px;
  align-items: center;
  padding: 12px 0;
  justify-content: space-between;
  background: inherit;
  position: relative;
  margin-bottom: 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 6px;
}

.footer-5-widget-subscribe .input-box {
  gap: 14px;
  display: flex;
  align-items: center;
  margin-left: 25px;
  padding-right: 66px;
}

.footer-5-widget-subscribe input {
  outline: 0;
  width: 100%;
  border: none;
  color: var(--white);
  background: transparent;
}

.footer-5-widget-subscribe input::placeholder {
  font-weight: 400;
  font-size: 18px;
  line-height: 26px;
  color: #FFFFFF;
  opacity: 0.7;
  font-family: var(--font_kanit);
}

.footer-5-widget-subscribe .subscribe-btn {
  display: block;
  font-weight: 600;
  font-size: 16px;
  line-height: 19px;
  color: #FFFFFF;
  background: #D5F637;
  border-radius: 6px;
  transition: all 0.3s ease-in-out;
  padding: 13.5px 15.5px;
  position: absolute;
  right: 0;
  top: 0;
}

.footer-5-widget-subscribe .subscribe-btn i {
  font-size: 18px;
  font-weight: 500;
  color: #121212;
}

.footer-5-area .copyright-area {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 14.5px 0;
}

.footer-5-area .copyright-area-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  flex-wrap: wrap;
}

.footer-5-area .copyright-area-inner .copyright-text .text {
  font-weight: 400;
  font-size: 18px;
  line-height: 1;
  color: rgba(255, 255, 255, 0.7);
  font-family: var(--font_kanit);
}

.footer-5-area .copyright-area-inner .timer {
  display: flex;
  align-items: center;
  gap: 20px;
}

.footer-5-area .copyright-area-inner .timer span {
  font-weight: 400;
  font-size: 18px;
  line-height: 1;
  color: #FFFFFF;
  font-family: var(--font_kanit);
  position: relative;
}

.footer-5-area .copyright-area-inner .timer span:first-child::before {
  position: absolute;
  content: "";
  right: -10px;
  height: 15px;
  top: 15px;
  bottom: 0;
  width: 1px;
  background: rgba(255, 255, 255, 0.7);
}

.footer-5-area .copyright-area-inner .timer a {
  font-weight: 400;
  font-size: 18px;
  line-height: 42px;
  color: rgba(255, 255, 255, 0.7);
  font-family: var(--font_kanit);
}

.section-title-5__wrapper {
  text-align: center;
  margin-bottom: 70px;
}

@media only screen and (max-width: 991px) {
  .section-title-5__wrapper {
    margin-bottom: 50px;
  }
}

.section-title-5__wrapper .sub-title {
  font-weight: 400;
  font-size: 18px;
  line-height: 27px;
  color: var(--white);
  font-family: var(--font_kanit);
  background: var(--secondary-2);
  border-radius: 6px;
  padding: 4.5px 22.5px;
  display: inline-block;
  margin-bottom: 12px;
}

.dark .section-title-5__wrapper .sub-title {
  background: inherit;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 6px;
}

.section-title-5__wrapper .title {
  font-weight: 400;
  font-size: 70px;
  line-height: 80px;
  color: var(--secondary-2);
  font-family: var(--font_kanit);
}

.dark .section-title-5__wrapper .title {
  color: var(--white);
}

@media only screen and (max-width: 991px) {
  .section-title-5__wrapper .title {
    font-size: 55px;
    line-height: 60px;
  }
}

@media only screen and (max-width: 767px) {
  .section-title-5__wrapper .title {
    font-size: 48px;
    line-height: 54px;
  }
}

@media (max-width: 575px) {
  .section-title-5__wrapper .title {
    font-size: 30px;
    line-height: 34px;
  }
}

.section-title-2__wrapper .title {
  font-weight: 600;
  font-size: 60px;
  line-height: 70px;
  letter-spacing: -3px;
  text-transform: uppercase;
  font-family: var(--font_cooper);
}

@media only screen and (max-width: 991px) {
  .section-title-2__wrapper .title {
    font-size: 45px;
    line-height: 55px;
    letter-spacing: 0;
  }
}

@media only screen and (max-width: 767px) {
  .section-title-2__wrapper .title {
    font-size: 35px;
    line-height: 45px;
  }
}

.section-title-2__wrapper .title span {
  font-weight: 400;
  font-style: italic;
  color: var(--primary-2);
  font-family: var(--font_serif);
}

.dark .section-title-2__wrapper .title {
  color: var(--secondary-3);
}

.search__popup {
  padding: 70px;
  padding-top: 70px;
  padding-bottom: 100px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 55%;
  z-index: 9999;
  background-color: rgba(25, 41, 41, 0.8);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  -webkit-transform: translateY(calc(-100% - 80px));
  transform: translateY(calc(-100% - 80px));
  -webkit-transition: transform 0.6s ease-in-out, opacity 0.6s ease-in-out;
  -webkit-transition: opacity 0.6s ease-in-out, -webkit-transform 0.6s ease-in-out;
  transition: opacity 0.6s ease-in-out, -webkit-transform 0.6s ease-in-out;
  transition: transform 0.6s ease-in-out, opacity 0.6s ease-in-out;
  transition: transform 0.6s ease-in-out, opacity 0.6s ease-in-out, -webkit-transform 0.6s ease-in-out;
  -webkit-transition-delay: 0.7s;
  transition-delay: 0.7s;
}

.search__popup.search-opened {
  -webkit-transform: translateY(0%);
  transform: translateY(0%);
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
}

.search__popup.search-opened .search__input {
  -webkit-transform: translateY(0px);
  transform: translateY(0px);
  opacity: 1;
  -webkit-transition-delay: 0.3s;
  transition-delay: 0.3s;
}

.search__popup.search-opened .search__input::after {
  width: 100%;
  -webkit-transition-delay: 0.5s;
  transition-delay: 0.5s;
}

.search__top {
  margin-bottom: 80px;
}

.search__input {
  position: relative;
  height: 80px;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  -webkit-transition-delay: 0.5s;
  transition-delay: 0.5s;
  opacity: 0;
}

.search__input::after {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  width: 0%;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.3);
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  -webkit-transition-delay: 0.3s;
  transition-delay: 0.3s;
}

.search__input input {
  width: 100%;
  height: 100%;
  background-color: transparent;
  border: 0;
  outline: 0;
  font-size: 24px;
  color: var(--rr-common-white);
  border-bottom: 1px solid transparent;
  padding: 0;
  padding-right: 30px;
}

.search__input input::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: rgba(255, 255, 255, 0.5);
  font-size: 24px;
}

.search__input input::-moz-placeholder {
  /* Firefox 19+ */
  color: rgba(255, 255, 255, 0.5);
  font-size: 24px;
}

.search__input input:-ms-input-placeholder {
  /* IE 10+  Edge*/
  color: rgba(255, 255, 255, 0.5);
  font-size: 24px;
}

.search__input input::-ms-input-placeholder {
  /* MODERN BROWSER */
  color: rgba(255, 255, 255, 0.5);
  font-size: 24px;
}

.search__input input::placeholder {
  /* MODERN BROWSER */
  color: rgba(255, 255, 255, 0.5);
  font-size: 24px;
}

.search__input button {
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  font-size: 18px;
  color: var(--rr-common-white);
}

.search__close-btn {
  font-size: 25px;
  color: rgba(255, 255, 255, 0.3);
}

.search__close-btn:hover {
  color: var(--rr-common-white);
}

/* === pages scss (index 01) === */
.single-image {
  overflow: hidden;
}

.single-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-stories__info {
  text-align: center;
  margin-bottom: 85px;
}

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

@media only screen and (max-width: 767px) {
  .about-stories__info {
    margin-bottom: 40px;
  }
}

.about-stories__info .sub-title {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #04030A;
  border: 1px solid rgba(4, 3, 10, 0.14);
  border-radius: 6px;
  display: inline-block;
  padding: 5px 26px;
  margin-bottom: 35px;
}

.about-stories__info .title {
  font-size: 60px;
  line-height: 70px;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  color: #04030A;
  font-family: var(--font_cooper);
  font-weight: 700;
  max-width: 1321px;
  margin: 0 auto;
}

@media only screen and (max-width: 1199px) {
  .about-stories__info .title {
    font-size: 40px;
    line-height: 52px;
  }
}

@media only screen and (max-width: 767px) {
  .about-stories__info .title {
    font-size: 32px;
    line-height: 44px;
  }
}

@media (max-width: 575px) {
  .about-stories__info .title {
    font-size: 28px;
    line-height: 36px;
    letter-spacing: 0;
  }
}

.about-stories__item {
  background: #FFFFFF;
  border-top: 1px solid rgba(4, 3, 10, 0.14);
  border-radius: 10px;
  display: grid;
  grid-template-columns: 1fr 624px 450px;
  padding: 29px 0;
  align-items: center;
}

@media only screen and (max-width: 1399px) {
  .about-stories__item {
    grid-template-columns: 1fr 424px 414px;
    gap: 20px;
  }
}

@media only screen and (max-width: 1199px) {
  .about-stories__item {
    grid-template-columns: 1fr 337px 320px;
    gap: 20px;
  }
}

@media only screen and (max-width: 991px) {
  .about-stories__item {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 575px) {
  .about-stories__item {
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
  }
}

.about-stories__name .title {
  font-weight: 700;
  font-size: 44px;
  line-height: 48px;
  color: #04030A;
  font-family: var(--font_cooper);
}

@media (max-width: 575px) {
  .about-stories__name .title {
    font-size: 32px;
    line-height: 35px;
  }
}

.about-stories__content .decs {
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  text-transform: capitalize;
  color: #04030A;
  opacity: 0.6;
  font-family: var(--font_kanit);
  max-width: 546px;
}

.about-stories__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

.about-fact {
  background: var(--white);
}

.about-fact__wrapper {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  border-top: 1px solid rgba(4, 3, 10, 0.14);
  padding-top: 60px;
}

@media only screen and (max-width: 991px) {
  .about-fact__wrapper {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
}

@media only screen and (max-width: 767px) {
  .about-fact__wrapper {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 575px) {
  .about-fact__wrapper {
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
  }
}

.about-fact__item {
  border: 1px solid rgba(4, 3, 10, 0.14);
  border-radius: 10px;
  padding: 30px 44px 15px 44px;
  transition: all 0.3s ease-in-out;
}

@media only screen and (max-width: 1199px) {
  .about-fact__item {
    padding: 30px 20px 15px 20px;
  }
}

.about-fact__item:hover {
  background: #04030A;
  border-radius: 10px;
}

.about-fact__item:hover .decs {
  color: var(--white);
  opacity: 0.6;
}

.about-fact__item:hover h2 {
  color: var(--white);
}

.about-fact__item:hover h2 span {
  color: var(--white);
}

.about-fact__item .decs {
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  text-transform: capitalize;
  color: #04030A;
  opacity: 0.6;
  font-family: var(--font_kanit);
  transition: all 0.3s ease-in-out;
}

.about-fact__item h2 {
  font-weight: 709;
  font-size: 70px;
  line-height: 1.2;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  color: #04030A;
  font-family: var(--font_cooper);
  display: flex;
  align-items: center;
  transition: all 0.3s ease-in-out;
}

@media only screen and (max-width: 1199px) {
  .about-fact__item h2 {
    font-size: 60px;
  }
}

.about-fact__item h2 span {
  font-weight: 709;
  font-size: 70px;
  line-height: 1.2;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  color: #04030A;
  font-family: var(--font_cooper);
  transition: all 0.3s ease-in-out;
}

@media only screen and (max-width: 1199px) {
  .about-fact__item h2 span {
    font-size: 60px;
  }
}

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

/* === hero__inner (index 01) === */
.hero__inner {
  background: #C4F012;
  padding-top: 230px;
  padding-bottom: 260px;
  position: relative;
  border-bottom: 2px solid #fff;
}

@media only screen and (max-width: 991px) {
  .hero__inner {
    padding-top: 170px;
    padding-bottom: 80px;
  }
}

@media (max-width: 575px) {
  .hero__inner {
    padding-top: 30px;
    padding-bottom: 60px;
  }
}

.hero__inner .shape-1 {
  max-width: 1100px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(4, 3, 10, 0.14);
}

@media (max-width: 575px) {
  .hero__inner .shape-1 {
    display: none;
  }
}

.hero__inner .shape-2 {
  position: absolute;
  left: 0;
  bottom: 0;
}

.hero__inner .shape-3 {
  position: absolute;
  right: -62px;
  top: 50%;
  transform: translateY(0%);
}

@media (max-width: 575px) {
  .hero__inner .shape-3 {
    display: none;
  }
}

.hero__inner .popup-video {
  position: absolute;
  top: 143px;
  right: 160px;
  border-radius: 10px;
  overflow: hidden;
}

@media only screen and (max-width: 1919px) {
  .hero__inner .popup-video {
    top: 130px;
    right: 90px;
  }
}

@media only screen and (max-width: 991px) {
  .hero__inner .popup-video {
    right: 50px;
  }
}

@media only screen and (max-width: 767px) {
  .hero__inner .popup-video {
    right: 10px;
    top: 100px;
  }
}

@media (max-width: 575px) {
  .hero__inner .popup-video {
    position: relative;
    right: inherit;
    top: 30px;
  }
}

.hero__inner .popup-video .icon-play {
  width: 50px;
  height: 50px;
  display: flex;
  border-radius: 500px;
  align-items: center;
  position: absolute;
  bottom: 30px;
  left: 30px;
  justify-content: center;
  background: #E0EEEE;
  color: var(--black);
}

.hero__inner .popup-video video {
  width: 370px;
  border-radius: 10px;
}

@media only screen and (max-width: 991px) {
  .hero__inner .popup-video video {
    width: 300px;
  }
}

.hero__content .title-wrap {
  gap: 45px;
  display: flex;
  align-items: center;
}

@media only screen and (max-width: 1199px) {
  .hero__content .title-wrap {
    gap: 20px;
    flex-wrap: wrap;
  }
}

.hero__content .title-wrap.top-title {
  margin-top: 60px;
}

.hero__content .title-wrap.bottom-title {
  margin-top: 40px;
}

.hero__content .title-wrap .title {
  font-weight: 600;
  font-size: 160px;
  line-height: 100px;
  text-transform: uppercase;
  letter-spacing: -9px;
}

@media only screen and (max-width: 1919px) {
  .hero__content .title-wrap .title {
    font-size: 130px;
    letter-spacing: -6px;
  }
}

@media only screen and (max-width: 1399px) {
  .hero__content .title-wrap .title {
    font-size: 100px;
    line-height: 100px;
    letter-spacing: -4px;
  }
}

@media only screen and (max-width: 991px) {
  .hero__content .title-wrap .title {
    font-size: 80px;
    line-height: 80px;
    letter-spacing: -4px;
  }
}

@media only screen and (max-width: 767px) {
  .hero__content .title-wrap .title {
    font-size: 60px;
    line-height: 60px;
    letter-spacing: 0;
  }
}

@media (max-width: 575px) {
  .hero__content .title-wrap .title {
    font-size: 40px;
    line-height: 45px;
  }
}

.hero__content .title-wrap .text {
  transform: translateY(-10px);
}

.hero__content .title-wrap ul {
  gap: 10px;
  display: flex;
  list-style: none;
  align-items: center;
  margin-bottom: 20px;
}

@media (max-width: 575px) {
  .hero__content .title-wrap ul {
    flex-wrap: wrap;
  }
}

.hero__content .title-wrap ul li {
  font-size: 16px;
  font-weight: 400;
  padding: 2px 15px;
  line-height: 24px;
  border-radius: 500px;
  border: 1px solid rgba(4, 3, 10, 0.14);
}

.hero__content .title-wrap .description {
  max-width: 458px;
  font-size: 18px;
  line-height: 26px;
  color: rgba(4, 3, 10, 0.7);
}

.hero__content .btn-primary span {
  color: var(--black);
  border: 1px solid rgba(0, 0, 0, 0.14);
  padding: 11px 24px;
}

.hero__content .btn-primary>*::before {
  background: var(--black);
}

.hero__content .btn-primary>*:nth-child(1) {
  color: var(--secondary);
}

.hero__content .btn-primary>*:nth-child(1)::before {
  left: 0;
  width: 0;
}

.hero__content .btn-primary>*:nth-child(2) {
  color: var(--white);
}

.hero__content .btn-primary>*:nth-child(2)::before {
  left: 0;
}

.hero__content .btn-primary>*:nth-child(3) {
  color: var(--secondary);
}

.hero__content .btn-primary>*:nth-child(3)::before {
  right: 0;
  width: 0;
}

.hero__content .btn-primary:hover>*:nth-child(1) {
  color: var(--white);
}

.hero__content .btn-primary:hover>*:nth-child(1)::before {
  width: 100%;
}

.hero__content .btn-primary:hover>*:nth-child(2) {
  color: var(--black);
}

.hero__content .btn-primary:hover>*:nth-child(2)::before {
  height: 0;
}

.hero__content .btn-primary:hover>*:nth-child(3) {
  color: var(--white);
}

.hero__content .btn-primary:hover>*:nth-child(3)::before {
  width: 100%;
}

/* === about-us (index 01) === */
.about-us__inner {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  background: #F3F4F6;
  padding: 120px 0 100px;
  overflow: hidden;
  transform: scale(0.2);
}

@media only screen and (max-width: 1399px) {
  .about-us__inner {
    padding: 120px 0 40px;
  }
}

@media only screen and (max-width: 991px) {
  .about-us__inner {
    height: auto;
    padding: 60px 0 60px;
  }
}

.dark .about-us__inner {
  background: #131416;
}

.about-us__inner .about-us__content .title {
  font-weight: 600;
  font-size: 36px;
  line-height: 48px;
  max-width: 662px;
  margin-bottom: 70px;
}

@media only screen and (max-width: 1399px) {
  .about-us__inner .about-us__content .title {
    margin-bottom: 50px;
  }
}

@media only screen and (max-width: 767px) {
  .about-us__inner .about-us__content .title {
    font-size: 30px;
    line-height: 45px;
    margin-bottom: 40px;
  }
}

@media (max-width: 575px) {
  .about-us__inner .about-us__content .title {
    font-size: 20px;
    line-height: 30px;
  }
}

.dark .about-us__inner .about-us__content .title {
  color: #E0EEEE;
}

.about-us__inner .about-us__shape {
  position: relative;
}

.about-us__inner .about-us__shape .title {
  font-weight: 600;
  font-size: 275px;
  line-height: 194px;
  letter-spacing: -13.75px;
  text-transform: capitalize;
  color: #04030A;
  opacity: 0.03;
  margin-left: 280px;
}

@media only screen and (max-width: 1399px) {
  .about-us__inner .about-us__shape .title {
    font-size: 200px;
    line-height: 150px;
  }
}

@media only screen and (max-width: 767px) {
  .about-us__inner .about-us__shape .title {
    margin-left: 0;
    font-size: 120px;
    line-height: 120px;
    letter-spacing: 0;
  }
}

.dark .about-us__inner .about-us__shape .title {
  color: #E0EEEE;
}

.about-us__inner .about-us__shape .shape-1 {
  position: absolute;
  right: 0;
  bottom: 0;
}

.about-us__inner .about-us__shape .shape-2 {
  position: absolute;
  right: 120px;
  bottom: 37px;
  border-radius: 40px;
  rotate: 25deg;
}

@media only screen and (max-width: 1399px) {
  .about-us__inner .about-us__shape .shape-2 {
    width: 200px;
  }
}

@media only screen and (max-width: 767px) {
  .about-us__inner .about-us__shape .shape-2 {
    display: none;
  }
}

.about-us__inner .about-us__wrapper {
  display: grid;
  grid-template-columns: 450px 430px 380px 334px;
  position: relative;
}

@media only screen and (max-width: 1919px) {
  .about-us__inner .about-us__wrapper {
    grid-template-columns: repeat(4, auto);
  }
}

@media only screen and (max-width: 991px) {
  .about-us__inner .about-us__wrapper {
    grid-template-columns: repeat(3, auto);
  }
}

@media only screen and (max-width: 767px) {
  .about-us__inner .about-us__wrapper {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
  }
}

.about-us__inner .about-us__item {
  border-top: 1px solid #D9D9D9;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-top-left-radius: 10px;
  padding-top: 70px;
  padding-bottom: 70px;
  border-top-right-radius: 10px;
}

@media only screen and (max-width: 991px) {
  .about-us__inner .about-us__item {
    border: none;
    padding-top: 20px;
    padding-bottom: 0;
  }
}

.about-us__inner .about-us__item:not(:last-child) {
  border-right: 1px solid #D9D9D9;
}

@media only screen and (max-width: 991px) {
  .about-us__inner .about-us__item:not(:last-child) {
    border: none;
    padding-top: 20px;
    padding-bottom: 0;
  }
}

.about-us__inner .about-us__item:first-child {
  gap: 10px;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: center;
  border-top-left-radius: 0px;
}

.about-us__inner .about-us__item:first-child .title span {
  font-size: 130px;
  line-height: 130px;
  font-family: var(--font_cooper);
}

.dark .about-us__inner .about-us__item:first-child .title span {
  color: #E0EEEE;
}

@media only screen and (max-width: 1399px) {
  .about-us__inner .about-us__item:first-child .title span {
    font-size: 100px;
    line-height: 100px;
  }
}

@media only screen and (max-width: 991px) {
  .about-us__inner .about-us__item:first-child .title span {
    font-size: 50px;
    line-height: 50px;
  }
}

.about-us__inner .about-us__item:last-child {
  border-top-right-radius: 0px;
}

.about-us__inner .about-us__item .title {
  font-weight: 600;
  font-size: 90px;
  line-height: 90px;
  color: #04030A;
  letter-spacing: -0.05em;
  font-family: var(--font_cooper);
}

.dark .about-us__inner .about-us__item .title {
  color: #E0EEEE;
}

@media only screen and (max-width: 1399px) {
  .about-us__inner .about-us__item .title {
    font-size: 70px;
    line-height: 70px;
  }
}

@media only screen and (max-width: 991px) {
  .about-us__inner .about-us__item .title {
    font-size: 50px;
    line-height: 50px;
  }
}

.about-us__inner .about-us__item .title span {
  font-weight: 600;
  font-size: 90px;
  line-height: 90px;
  color: #04030A;
  letter-spacing: -0.05em;
  font-family: var(--font_cooper);
}

.dark .about-us__inner .about-us__item .title span {
  color: #E0EEEE;
}

@media only screen and (max-width: 1399px) {
  .about-us__inner .about-us__item .title span {
    font-size: 70px;
    line-height: 70px;
  }
}

@media only screen and (max-width: 991px) {
  .about-us__inner .about-us__item .title span {
    font-size: 50px;
    line-height: 50px;
  }
}

.about-us__inner .about-us__item p {
  position: relative;
  padding-left: 25px;
  margin-top: 10px;
}

.dark .about-us__inner .about-us__item p {
  color: rgba(224, 238, 238, 0.6);
}

.about-us__inner .about-us__item p::before {
  content: "";
  width: 15px;
  height: 15px;
  border-radius: 500px;
  background: #C4F012;
  position: absolute;
  left: 0;
}

.about-us__inner .about-us__item .sub-title {
  opacity: 0.6;
  font-size: 16px;
  font-weight: 400;
  color: #04030A;
  text-transform: uppercase;
  line-height: 16px;
  font-family: var(--font_kanit);
}

.dark .about-us__inner .about-us__item .sub-title {
  color: rgba(255, 255, 255, 0.6);
}

/* === service__inner (index 01) === */
.service___wrapper {
  display: grid;
  grid-template-columns: 640px 1fr;
  gap: 160px;
}

@media only screen and (max-width: 1399px) {
  .service___wrapper {
    gap: 20px;
    grid-template-columns: 550px 1fr;
  }
}

@media only screen and (max-width: 1199px) {
  .service___wrapper {
    grid-template-columns: 425px 1fr;
  }
}

@media only screen and (max-width: 991px) {
  .service___wrapper {
    display: block;
  }
}

.service__inner {
  position: relative;
}

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

.service__inner .service__content {
  margin-top: 80px;
}

@media only screen and (max-width: 1399px) {
  .service__inner .service__content {
    margin-top: 15px;
  }
}

.service__inner .service__content .sub-title {
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  border-radius: 6px;
  padding: 5px 25px;
  margin-bottom: 94px;
  display: inline-block;
  font-family: var(--font_kanit);
  border: 1px solid var(--border);
}

@media only screen and (max-width: 1399px) {
  .service__inner .service__content .sub-title {
    margin-bottom: 40px;
  }
}

.dark .service__inner .service__content .sub-title {
  color: #E0EEEE;
}

@media only screen and (max-width: 1199px) {
  .service__inner .service__content .sub-title {
    margin-bottom: 30px;
  }
}

.service__inner .service__content .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 500px;
  width: 120px;
  height: 120px;
  margin-bottom: 60px;
  border: 1px solid var(--border);
}

@media only screen and (max-width: 1399px) {
  .service__inner .service__content .icon {
    margin-bottom: 40px;
  }
}

@media only screen and (max-width: 767px) {
  .service__inner .service__content .icon {
    width: 100px;
    height: 100px;
    margin-bottom: 30px;
  }
}

.dark .service__inner .service__content .icon img {
  filter: brightness(0) invert(1);
}

.service__inner .service__content .title {
  border-top: 1px solid var(--border);
  padding-top: 80px;
  margin-bottom: 34px;
  font-weight: 600;
}

.dark .service__inner .service__content .title {
  color: #E0EEEE;
}

@media only screen and (max-width: 1399px) {
  .service__inner .service__content .title {
    padding-top: 50px;
  }
}

@media only screen and (max-width: 767px) {
  .service__inner .service__content .title {
    padding-top: 30px;
  }
}

.service__inner .service__content .desc {
  margin-bottom: 80px;
  max-width: 564px;
  line-height: 28px;
}

.dark .service__inner .service__content .desc {
  color: rgba(224, 238, 238, 0.7);
}

@media only screen and (max-width: 1399px) {
  .service__inner .service__content .desc {
    margin-bottom: 40px;
  }
}

@media only screen and (max-width: 1199px) {
  .service__inner .service__content .desc {
    margin-bottom: 30px;
  }
}

.service__inner .rr-snap-slide {
  width: 100vw;
  height: 100vh;
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

@media only screen and (max-width: 991px) {
  .service__inner .rr-snap-slide {
    height: auto;
  }
}

.service__inner .rr-snap-slide .img-mask {
  width: 100%;
  height: 100%;
  display: block;
  position: relative;
  top: 0;
  left: 0;
  opacity: 1;
}

.service__inner .rr-snap-slide .img-mask .section-image {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

@media only screen and (max-width: 991px) {
  .service__inner .rr-snap-slide .img-mask .section-image {
    margin-top: 30px;
  }
}

.service__inner .rr-snap-slide .img-mask .section-image img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.service__inner .rr-snap-slide .text-wrapper {
  position: absolute;
  top: 50%;
  border-radius: 10px;
  padding: 30px;
  width: 260px;
  height: 260px;
  background: #F3F4F6;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  left: 42%;
  transform: translate(-50%, -50%);
  color: var(--primary);
  z-index: 10;
}

.dark .service__inner .rr-snap-slide .text-wrapper {
  background: #131416;
}

@media only screen and (max-width: 991px) {
  .service__inner .rr-snap-slide .text-wrapper {
    display: none;
  }
}

.service__inner .rr-snap-slide .text-wrapper .title {
  font-size: 80px;
  font-weight: 600;
  line-height: 80px;
  margin-bottom: 34px;
}

.dark .service__inner .rr-snap-slide .text-wrapper .title {
  color: #E0EEEE;
}

@media (max-width: 575px) {
  .service__inner .rr-snap-slide .text-wrapper .title {
    font-size: 26px;
    margin-bottom: 20px;
  }
}

.service__inner .rr-snap-slide .text-wrapper .sub-title {
  font-size: 18px;
  line-height: 20px;
  font-weight: 400;
  text-align: right;
  color: rgba(4, 3, 10, 0.7);
  font-family: var(--font_kanit);
}

.dark .service__inner .rr-snap-slide .text-wrapper .sub-title {
  color: #E0EEEE;
}

/* ===project (index 01) === */
.project .section-title__wrapper {
  text-align: center;
  margin-bottom: 110px;
}

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

.project .section-title__wrapper .sub-title {
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  border-radius: 6px;
  padding: 5px 25px;
  margin-bottom: 94px;
  color: var(--white);
  display: inline-block;
  background: transparent;
  font-family: var(--font_kanit);
  border: 1px solid rgba(224, 238, 238, 0.14);
}

@media only screen and (max-width: 767px) {
  .project .section-title__wrapper .sub-title {
    margin-bottom: 30px;
  }
}

.project .section-title__wrapper .title {
  font-weight: 600;
  font-size: 60px;
  line-height: 70px;
  text-align: center;
  letter-spacing: -3px;
  text-transform: uppercase;
  color: rgba(224, 238, 238, 0.4);
  max-width: 1295px;
  margin: 0 auto;
}

@media only screen and (max-width: 1399px) {
  .project .section-title__wrapper .title {
    font-size: 50px;
    line-height: 55px;
  }
}

@media only screen and (max-width: 991px) {
  .project .section-title__wrapper .title {
    font-size: 40px;
    line-height: 50px;
  }
}

@media only screen and (max-width: 767px) {
  .project .section-title__wrapper .title {
    font-size: 25px;
    line-height: 40px;
    letter-spacing: 0px;
  }
}

.project__wrapper {
  max-width: 1290px;
  margin: 0 auto;
}

.project__item {
  padding: 60px;
  border-radius: 20px;
  background: #04030A;
}

@media only screen and (max-width: 1399px) {
  .project__item {
    padding: 31px 20px;
  }
}

.project__content {
  display: flex;
  align-items: center;
  margin-bottom: 60px;
  justify-content: space-between;
}

@media only screen and (max-width: 1399px) {
  .project__content {
    margin-bottom: 30px;
  }
}

@media (max-width: 575px) {
  .project__content {
    flex-wrap: wrap;
  }
}

.project__content .number {
  font-weight: 500;
  font-size: 40px;
  color: #E0EEEE;
  line-height: 53px;
  padding: 13px 30px 13px;
  text-transform: capitalize;
  font-family: var(--font_kanit);
  border-bottom: 1px solid rgba(224, 238, 238, 0.15);
  border-right: 1px solid rgba(224, 238, 238, 0.15);
  border-bottom-right-radius: 10px;
}

@media only screen and (max-width: 767px) {
  .project__content .number {
    padding: 5px 20px 5px;
    font-size: 25px;
  }
}

@media (max-width: 575px) {
  .project__content .number {
    padding: 0;
    border: none;
  }
}

.project__content .title {
  width: 100%;
  display: flex;
  font-size: 40px;
  font-weight: 500;
  color: #E0EEEE;
  line-height: 53px;
  text-transform: capitalize;
  padding: 13px 0px 13px 40px;
  font-family: var(--font_kanit);
  justify-content: space-between;
  border-bottom-left-radius: 10px;
  border-bottom: 1px solid rgba(224, 238, 238, 0.15);
}

@media only screen and (max-width: 767px) {
  .project__content .title {
    padding: 5px 0px 5px 20px;
    font-size: 25px;
  }
}

@media (max-width: 575px) {
  .project__content .title {
    padding: 0;
    border: none;
  }
}

.project__content .title span {
  opacity: 0.7;
  font-weight: 400;
  font-size: 18px;
  color: #E0EEEE;
  line-height: 28px;
  text-transform: capitalize;
  font-family: var(--font_kanit);
}

.project__media {
  margin: 0 20px;
  overflow: hidden;
  border-radius: 20px;
}

@media only screen and (max-width: 1399px) {
  .project__media {
    height: 450px;
  }
}

@media (max-width: 575px) {
  .project__media {
    margin: 0;
  }
}

.project__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* === cta (index 01) === */
.cta__inner {
  padding-top: 385px;
  padding-bottom: 80px;
  position: relative;
  z-index: 2;
}

@media only screen and (max-width: 1399px) {
  .cta__inner {
    padding-top: 250px;
  }
}

@media only screen and (max-width: 991px) {
  .cta__inner {
    padding-top: 80px;
  }
}

.cta__inner::before {
  top: 0;
  left: 0;
  width: 100%;
  content: "";
  height: 100%;
  opacity: 0.2;
  position: absolute;
  background: #04030A;
}

.cta__content {
  z-index: 3;
  display: grid;
  margin-left: auto;
  max-width: 1600px;
  margin-top: 90px;
  margin-right: auto;
  position: relative;
  grid-template-columns: 410px 1fr;
}

@media only screen and (max-width: 991px) {
  .cta__content {
    margin-top: 35px;
    grid-template-columns: 370px 1fr;
  }
}

@media only screen and (max-width: 767px) {
  .cta__content {
    grid-template-columns: 1fr;
    margin-top: 0;
  }
}

.cta__content-left {
  padding-top: 50px;
  gap: 15px;
  display: flex;
  text-align: center;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  border-top: 1.5px solid rgba(224, 238, 238, 0.1);
  border-right: 1.5px solid rgba(224, 238, 238, 0.1);
  border-top-right-radius: 20px;
}

@media only screen and (max-width: 991px) {
  .cta__content-left {
    padding-top: 30px;
  }
}

@media only screen and (max-width: 767px) {
  .cta__content-left {
    border: none;
  }
}

.cta__content-left .icon {
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  border-radius: 500px;
  justify-content: center;
  backdrop-filter: blur(5px);
  background: rgba(255, 255, 255, 0.1);
  border: 1.5px solid rgba(224, 238, 238, 0.14);
}

.cta__content-left .title {
  font-size: 24px;
  font-weight: 500;
  color: #E0EEEE;
  line-height: 34px;
  text-transform: capitalize;
  font-family: var(--font_kanit);
}

.cta__content-right {
  padding-top: 50px;
  padding-left: 120px;
  border-top: 1.5px solid rgba(224, 238, 238, 0.1);
  border-left: 1.5px solid rgba(224, 238, 238, 0.1);
  border-top-left-radius: 20px;
}

@media only screen and (max-width: 991px) {
  .cta__content-right {
    padding-top: 30px;
    padding-left: 30px;
  }
}

@media only screen and (max-width: 767px) {
  .cta__content-right {
    border: none;
  }
}

.cta__content-right .desc {
  color: var(--white);
  max-width: 891px;
  line-height: 28px;
}

/* === marquee (index 01) === */
.marquee-text-area.rr-bg-primary .section-title {
  color: var(--white);
}

.dark .marquee-text-area.rr-bg-primary .section-title {
  color: var(--black);
}

.marquee-text-area .wrapper-text {
  position: relative;
}

.marquee-text-area .section-title {
  font-weight: 600;
  font-size: 160px;
  line-height: 160px;
  letter-spacing: -8px;
  text-transform: uppercase;
  color: var(--primary);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 60px;
  position: relative;
}

@media only screen and (max-width: 1399px) {
  .marquee-text-area .section-title {
    font-size: 150px;
  }
}

@media only screen and (max-width: 991px) {
  .marquee-text-area .section-title {
    font-size: 110px;
    gap: 30px;
    letter-spacing: -4px;
  }
}

@media only screen and (max-width: 767px) {
  .marquee-text-area .section-title {
    font-size: 90px;
    letter-spacing: -2px;
  }
}

@media (max-width: 575px) {
  .marquee-text-area .section-title {
    font-size: 50px;
    letter-spacing: 0px;
  }
}

@media only screen and (max-width: 767px) {
  .marquee-text-area .section-title img {
    width: 60px;
  }
}

.marquee-text-area .section-title .video-wrap {
  width: 240px;
  min-width: 240px;
  height: 340px;
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}

.marquee-text-area .section-title .video {
  position: absolute;
  border-radius: 10px;
  top: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translateY(-50%);
}

.marquee-text-area .moving-text {
  width: 100%;
}

/* === testimonial (index 01) === */
.testimonial__inner {
  padding: 120px;
  background: #EBE2D2;
  max-width: 1840px;
  margin: 0 auto;
  position: relative;
  border-radius: 40px 40px 0px 0px;
}

.dark .testimonial__inner {
  background: #131416;
}

@media only screen and (max-width: 1919px) {
  .testimonial__inner {
    padding: 120px 10px;
  }
}

@media only screen and (max-width: 991px) {
  .testimonial__inner {
    padding: 80px 10px;
  }
}

.testimonial__inner .section-title__wrapper .title {
  font-weight: 600;
  font-size: 60px;
  line-height: 60px;
  text-align: center;
  margin-bottom: 55px;
  letter-spacing: -3px;
  text-transform: uppercase;
}

.dark .testimonial__inner .section-title__wrapper .title {
  color: #E0EEEE;
}

@media only screen and (max-width: 767px) {
  .testimonial__inner .section-title__wrapper .title {
    font-size: 45px;
    line-height: 50px;
    letter-spacing: 0;
  }
}

.testimonial__inner .rating {
  gap: 4px;
  display: flex;
  color: #F7931A;
  align-items: center;
}

.testimonial__inner .desc {
  color: rgba(224, 238, 238, 0.7);
  line-height: 28px;
  margin-top: 37px;
}

.testimonial__inner .text .name {
  color: #E0EEEE;
  line-height: 28px;
  font-family: var(--font_kanit);
}

.testimonial__inner .text span {
  color: rgba(224, 238, 238, 0.7);
  display: inline-block;
}

.testimonial__inner .author {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 60px;
}

@media only screen and (max-width: 1399px) {
  .testimonial__inner .author {
    margin-top: 30px;
  }
}

.testimonial__inner .author .media {
  width: 50px;
  height: 50px;
  overflow: hidden;
  border-radius: 6px;
}

.testimonial__inner .author .media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial__inner .testimonial__item {
  background: var(--black);
  border-radius: 10px;
  padding: 44px 30px;
}

@media only screen and (max-width: 1399px) {
  .testimonial__inner .testimonial__item {
    padding: 44px 20px;
  }
}

.testimonial__inner .testimonial__media {
  overflow: hidden;
  border-radius: 10px;
  position: relative;
}

.testimonial__inner .testimonial__media::before {
  top: 0;
  left: 0;
  width: 100%;
  content: "";
  height: 99%;
  position: absolute;
  background: linear-gradient(180deg, rgba(27, 27, 27, 0.1) 0%, rgba(27, 27, 27, 0.7) 89.96%);
}

.testimonial__inner .testimonial__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

.testimonial__inner .testimonial__media .video {
  width: 100%;
  height: 100%;
  min-height: 365px;
  object-fit: cover;
  border-radius: 10px;
  overflow: hidden;
}

.testimonial__inner .testimonial__media .rating {
  position: absolute;
  top: 44px;
  left: 30px;
}

.testimonial__inner .testimonial__media .popup-video {
  width: 50px;
  height: 50px;
  border-radius: 500px;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 50%;
  left: 50%;
  color: var(--black);
  z-index: 2;
  transform: translate(-50%, -50%);
}

.testimonial__inner .testimonial__media .text {
  position: absolute;
  left: 30px;
  bottom: 50px;
}

.testimonial__btn {
  gap: 32px;
  display: flex;
  margin: 0 auto;
  margin-top: 48px;
  max-width: 286px;
  align-items: center;
  justify-content: center;
}

@media only screen and (max-width: 991px) {
  .testimonial__btn {
    margin-top: 30px;
  }
}

.testimonial__arrow {
  width: 40px;
  height: 40px;
  min-width: 40px;
  display: flex;
  color: var(--black);
  align-items: center;
  border-radius: 500px;
  justify-content: center;
  transition: all 0.3s ease-in-out;
  position: relative;
}

.dark .testimonial__arrow {
  color: #E0EEEE;
}

.testimonial__arrow::before {
  content: "";
  top: 50%;
  left: 50%;
  width: 50px;
  height: 50px;
  position: absolute;
  border-radius: 500px;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.dark .testimonial__arrow::before {
  border-color: var(--border);
}

.testimonial__arrow:hover {
  background-color: var(--primary);
}

.testimonial__pagination {
  gap: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonial__pagination .swiper-pagination-bullet {
  width: 5px;
  height: 5px;
  opacity: 1;
  margin: 0;
  border-radius: 500px;
  background-color: var(--black);
  position: relative;
}

.dark .testimonial__pagination .swiper-pagination-bullet {
  background-color: #E0EEEE;
}

.testimonial__pagination .swiper-pagination-bullet::before {
  content: "";
  top: 50%;
  left: 50%;
  width: 21px;
  height: 21px;
  position: absolute;
  border-radius: 500px;
  transform: translate(-50%, -50%);
  border: 1px solid transparent;
}

.testimonial__pagination .swiper-pagination-bullet.swiper-pagination-bullet-active::before {
  border-color: var(--black);
}

.dark .testimonial__pagination .swiper-pagination-bullet.swiper-pagination-bullet-active::before {
  border-color: #E0EEEE;
}

/* === team (index 01) === */
.team-active {
  margin-top: -250px;
  z-index: 2;
}

@media only screen and (max-width: 767px) {
  .team-active {
    margin-top: 20px;
  }
}

.team__inner {
  padding: 120px;
  padding-bottom: 100px;
  max-width: 1840px;
  margin: 0 auto;
  background: var(--white);
  border-radius: 0px 0px 40px 40px;
}

.dark .team__inner {
  background-color: var(--secondary);
}

@media only screen and (max-width: 1919px) {
  .team__inner {
    padding: 120px 10px;
  }
}

@media only screen and (max-width: 991px) {
  .team__inner {
    padding: 100px 10px;
  }
}

.team .section-title__wrapper {
  gap: 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.team .section-title__wrapper .title {
  font-weight: 600;
  font-size: 100px;
  max-width: 984px;
  line-height: 100px;
  letter-spacing: -6px;
  text-transform: uppercase;
}

.dark .team .section-title__wrapper .title {
  color: #E0EEEE;
}

@media only screen and (max-width: 1199px) {
  .team .section-title__wrapper .title {
    font-size: 100px;
    line-height: 110px;
    letter-spacing: -4px;
  }
}

@media only screen and (max-width: 1199px) {
  .team .section-title__wrapper .title {
    font-size: 80px;
    line-height: 80px;
    letter-spacing: -4px;
  }
}

@media only screen and (max-width: 767px) {
  .team .section-title__wrapper .title {
    font-size: 55px;
    line-height: 55px;
    letter-spacing: 0;
  }
}

@media (max-width: 575px) {
  .team .section-title__wrapper .title {
    font-size: 30px;
    line-height: 40px;
  }
}

.team__media {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin: 0 auto;
  max-width: 415px;
}

@media only screen and (max-width: 767px) {
  .team__media {
    max-width: 350px;
  }
}

.team__wrapper {
  z-index: 3;
  display: grid;
  position: relative;
  grid-template-columns: 410px 1fr;
}

@media only screen and (max-width: 991px) {
  .team__wrapper {
    grid-template-columns: 220px 1fr;
  }
}

@media (max-width: 575px) {
  .team__wrapper {
    grid-template-columns: 1fr;
  }
}

.team__wrapper .text {
  padding-top: 50px;
  padding-left: 100px;
  border-top: 1.5px solid rgba(4, 3, 10, 0.1);
  border-left: 1.5px solid rgba(4, 3, 10, 0.1);
  border-top-left-radius: 20px;
}

.dark .team__wrapper .text {
  border-color: var(--border);
}

@media only screen and (max-width: 991px) {
  .team__wrapper .text {
    padding-top: 30px;
    padding-left: 30px;
  }
}

@media (max-width: 575px) {
  .team__wrapper .text {
    border: none;
    padding-left: 0;
  }
}

.team__wrapper .text .desc {
  font-size: 20px;
  line-height: 30px;
  color: rgba(4, 3, 10, 0.7);
}

.dark .team__wrapper .text .desc {
  color: #E0EEEE;
}

.team__info {
  gap: 15px;
  display: flex;
  padding-top: 50px;
  flex-direction: column;
  border-top: 1.5px solid rgba(4, 3, 10, 0.1);
  border-right: 1.5px solid rgba(4, 3, 10, 0.1);
  border-top-right-radius: 20px;
}

.dark .team__info {
  border-color: var(--border);
}

@media only screen and (max-width: 991px) {
  .team__info {
    padding-top: 30px;
  }
}

@media (max-width: 575px) {
  .team__info {
    border: none;
  }
}

.team__info .name {
  font-weight: 600;
  font-size: 26px;
  line-height: 28px;
}

.dark .team__info .name {
  color: #E0EEEE;
}

.team__info .sub-title {
  font-weight: 400;
  font-size: 18px;
  line-height: 18px;
  color: rgba(4, 3, 10, 0.7);
  font-family: var(--font_kanit);
}

.dark .team__info .sub-title {
  color: rgba(224, 238, 238, 0.7);
}

.team__info ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 5px;
}

.team__info ul li .link {
  font-size: 16px;
  color: #E0EEEE;
  font-weight: 400;
  padding: 3px 17px;
  line-height: 28px;
  border-radius: 500px;
  background: var(--black);
  text-transform: capitalize;
  font-family: var(--font_kanit);
  transition: all 0.3s;
}

.dark .team__info ul li .link {
  background: #E0EEEE;
  color: var(--secondary);
}

.team__info ul li .link:hover {
  background: var(--primary);
  color: var(--black);
}

.team__info ul li a span {
  padding: 0;
  width: 30px;
  height: 30px;
  display: flex;
  color: #E0EEEE;
  font-size: 12px;
  align-items: center;
  border-radius: 500px;
  background: var(--black);
  justify-content: center;
  transition: all 0.3s;
}

.dark .team__info ul li a span {
  background: #E0EEEE;
  color: var(--secondary);
}

.team__info ul li a span:hover {
  background: var(--primary);
  color: var(--black);
}

.team__btn {
  gap: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  z-index: 3;
  transform: translate(0%, -50%);
}

@media only screen and (max-width: 991px) {
  .team__btn {
    margin-top: 30px;
  }
}

.team__arrow {
  width: 100px;
  height: 100px;
  min-width: 100px;
  display: flex;
  color: var(--black);
  align-items: center;
  border-radius: 500px;
  justify-content: center;
  transition: all 0.3s ease-in-out;
  position: relative;
  font-size: 30px;
}

.dark .team__arrow {
  color: #E0EEEE;
}

@media only screen and (max-width: 767px) {
  .team__arrow {
    display: none;
  }
}

.team__arrow::before {
  content: "";
  top: 50%;
  left: 50%;
  width: 100px;
  height: 100px;
  position: absolute;
  border-radius: 500px;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.dark .team__arrow::before {
  border-color: var(--border);
}

.team__arrow:hover {
  background-color: var(--primary);
}

.dark .team__arrow:hover {
  color: var(--secondary);
}

.team__arrow:hover::before {
  border-color: transparent;
}

/* === contact-us (index 01) === */
.contact-us__inner {
  padding-top: 40px;
  padding-bottom: 80px;
}

.contact-us__wrapper {
  gap: 100px;
  display: grid;
  border-radius: 20px;
  overflow: hidden;
  padding-right: 60px;
  background: #EBE2D2;
  grid-template-columns: 490px 490px 1fr;
}

.dark .contact-us__wrapper {
  background-color: var(--secondary);
}

@media only screen and (max-width: 1919px) {
  .contact-us__wrapper {
    grid-template-columns: 400px 400px 1fr;
    gap: 50px;
  }
}

@media only screen and (max-width: 1399px) {
  .contact-us__wrapper {
    display: block;
    padding: 30px;
  }
}

@media (max-width: 575px) {
  .contact-us__wrapper {
    padding: 20px 10px;
  }
}

@media only screen and (max-width: 1399px) {
  .contact-us__wrapper .contact-us__box .media {
    height: 700px;
  }
}

@media only screen and (max-width: 991px) {
  .contact-us__wrapper .contact-us__box .media {
    height: 500px;
  }
}

@media only screen and (max-width: 767px) {
  .contact-us__wrapper .contact-us__box .media {
    height: 300px;
  }
}

@media (max-width: 575px) {
  .contact-us__wrapper .contact-us__box .media {
    height: 250px;
  }
}

.contact-us__wrapper .contact-us__box .media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-us__wrapper .contact-us__box .connect {
  margin-top: 60px;
}

@media only screen and (max-width: 1919px) {
  .contact-us__wrapper .contact-us__box .connect {
    padding-bottom: 20px;
    padding-top: 20px;
  }
}

.contact-us__wrapper .contact-us__box .connect .title {
  font-size: 36px;
  line-height: 48px;
  margin-bottom: 34px;
}

.dark .contact-us__wrapper .contact-us__box .connect .title {
  color: #E0EEEE;
}

.contact-us__wrapper .contact-us__box .connect .form-wrap {
  display: flex;
  gap: 10px;
}

@media only screen and (max-width: 991px) {
  .contact-us__wrapper .contact-us__box .connect .form-wrap {
    flex-direction: column;
  }
}

.contact-us__wrapper .contact-us__box .connect .form-wrap__input-group {
  margin-bottom: 10px;
  width: 100%;
}

.contact-us__wrapper .contact-us__box .connect .nice-select {
  height: 50px;
  width: 100%;
  font-size: 16px;
  padding-left: 24px;
  line-height: 46px;
  border-radius: 6px;
  background: transparent;
  text-transform: capitalize;
  border: 1px solid var(--border);
}

.dark .contact-us__wrapper .contact-us__box .connect .nice-select {
  color: rgba(224, 238, 238, 0.7);
}

.contact-us__wrapper .contact-us__box .connect .nice-select::after {
  height: 10px;
  width: 10px;
  right: 16px;
  border-right: 2px solid var(--black);
  border-bottom: 2px solid var(--black);
}

.dark .contact-us__wrapper .contact-us__box .connect .nice-select::after {
  border-color: rgba(224, 238, 238, 0.7);
}

.contact-us__wrapper .contact-us__box .connect .nice-select .list {
  width: 100%;
}

.contact-us__wrapper .contact-us__box .connect input,
.contact-us__wrapper .contact-us__box .connect textarea {
  flex: 1;
  padding: 14px 24px;
  border-radius: 6px;
  width: 100%;
  outline: none;
  background: transparent;
  border: 1px solid var(--border);
}

.dark .contact-us__wrapper .contact-us__box .connect input,
.dark .contact-us__wrapper .contact-us__box .connect textarea {
  color: rgba(224, 238, 238, 0.7);
}

.contact-us__wrapper .contact-us__box .connect input::placeholder,
.contact-us__wrapper .contact-us__box .connect textarea::placeholder {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: #646463;
}

.dark .contact-us__wrapper .contact-us__box .connect input::placeholder,
.dark .contact-us__wrapper .contact-us__box .connect textarea::placeholder {
  color: rgba(224, 238, 238, 0.7);
}

.contact-us__wrapper .contact-us__box .connect textarea {
  height: 140px;
}

.contact-us__wrapper .contact-us__info {
  margin-top: 60px;
  max-width: 382px;
}

.contact-us__wrapper .contact-us__info .title {
  font-size: 36px;
  line-height: 48px;
  margin-bottom: 34px;
}

.dark .contact-us__wrapper .contact-us__info .title {
  color: #E0EEEE;
}

.contact-us__wrapper .contact-us__item {
  display: flex;
  align-items: center;
  gap: 30px;
}

@media (max-width: 575px) {
  .contact-us__wrapper .contact-us__item {
    flex-wrap: wrap;
  }
}

.contact-us__wrapper .contact-us__item:not(:last-child) {
  margin-bottom: 40px;
}

.contact-us__wrapper .contact-us__item .icon {
  width: 70px;
  height: 70px;
  display: flex;
  min-width: 70px;
  font-size: 21px;
  color: var(--black);
  align-items: center;
  border-radius: 500px;
  justify-content: center;
  border: 1px solid var(--border);
}

.dark .contact-us__wrapper .contact-us__item .icon {
  color: #E0EEEE;
}

.contact-us__wrapper .contact-us__item .icon i {
  font-weight: 400;
}

.contact-us__wrapper .contact-us__item .text .title {
  font-size: 18px;
  line-height: 20px;
  margin-bottom: 6px;
  font-weight: 500;
}

.dark .contact-us__wrapper .contact-us__item .text .title {
  color: #E0EEEE;
}

.contact-us__wrapper .contact-us__item .text a {
  line-height: 28px;
  font-size: 18px;
  color: hsla(249, 54%, 3%, 0.7);
}

.dark .contact-us__wrapper .contact-us__item .text a {
  color: rgba(224, 238, 238, 0.7);
}

.contact-us__wrapper .contact-us__item .text a:hover {
  color: var(--black);
}

.dark .contact-us__wrapper .contact-us__item .text a:hover {
  color: var(--primary);
}

.dark .contact-us__wrapper .contact-us__item .text .mail,
.dark .contact-us__wrapper .contact-us__item .text .call {
  color: rgba(224, 238, 238, 0.7);
}

.dark .contact-us__wrapper .contact-us__item .text p {
  color: rgba(224, 238, 238, 0.7);
}

/* ===partners (index 01) === */
.partners .title {
  font-weight: 600;
  font-size: 60px;
  line-height: 60px;
  margin-bottom: 90px;
  letter-spacing: -3px;
  text-transform: uppercase;
}

.dark .partners .title {
  color: #E0EEEE;
}

@media only screen and (max-width: 767px) {
  .partners .title {
    font-size: 50px;
    line-height: 50px;
  }
}

@media (max-width: 575px) {
  .partners .title {
    font-size: 30px;
    letter-spacing: 0;
    line-height: 30px;
    margin-bottom: 30px;
  }
}

.partners__wrapper {
  position: relative;
  overflow-x: clip;
}

.partners__wrapper ul {
  list-style: none;
  display: flex;
  animation: scroll 10s linear infinite;
}

.partners__wrapper ul:hover {
  animation-play-state: paused;
}

.partners__wrapper ul li {
  min-width: 310px;
  padding: 42px 0;
  display: flex;
  align-content: center;
  justify-content: center;
  border-right: 1px solid var(--border);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

@media only screen and (max-width: 1399px) {
  .partners__wrapper ul li {
    min-width: 250px;
  }
}

@media only screen and (max-width: 991px) {
  .partners__wrapper ul li {
    min-width: 200px;
    padding: 20px 0;
  }
}

.dark .partners__wrapper ul li img {
  filter: brightness(0) invert(1);
}

.partners__wrapper .secend-slider {
  margin-top: -1px;
  animation: scrollReverse 10s linear infinite;
}

.partners__wrapper .partners__info {
  max-width: 370px;
  padding: 44px 32px;
  border-radius: 10px;
  background: #F3F4F6;
  overflow: hidden;
  position: absolute;
  right: 0;
  top: 50%;
  height: 500px;
  transform: translateY(-50%);
}

.dark .partners__wrapper .partners__info {
  background: #131416;
}

@media only screen and (max-width: 991px) {
  .partners__wrapper .partners__info {
    position: inherit;
    margin-top: 30px;
    height: auto;
    transform: translateY(0%);
  }
}

@media (max-width: 575px) {
  .partners__wrapper .partners__info {
    padding: 31px 20px;
  }
}

.partners__wrapper .partners__info .logo {
  margin-bottom: 30px;
}

.dark .partners__wrapper .partners__info .logo img {
  filter: brightness(0) invert(1);
}

.partners__wrapper .partners__info P {
  line-height: 24px;
  padding-bottom: 95px;
  position: relative;
  margin-bottom: 40px;
}

.dark .partners__wrapper .partners__info P {
  color: rgba(224, 238, 238, 0.7);
}

@media only screen and (max-width: 991px) {
  .partners__wrapper .partners__info P {
    padding-bottom: 30px;
  }
}

.partners__wrapper .partners__info P::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: -100px;
  width: 1000px;
  height: 1px;
  background: var(--border);
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

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

  100% {
    transform: translateX(0);
  }
}

/* === hm-1-video__info (index 01) === */
.hm-1-video__inner {
  margin-bottom: 240px;
  margin-top: 150px;
}

@media only screen and (max-width: 991px) {
  .hm-1-video__inner {
    position: inherit;
    margin-top: 0px;
    margin-bottom: 80px;
  }
}

.hm-1-video__info {
  max-width: 550px;
  border-radius: 20px;
  background: #F3F4F6;
  overflow: hidden;
  position: absolute;
  right: 160px;
  bottom: -60px;
}

@media only screen and (max-width: 1399px) {
  .hm-1-video__info {
    max-width: 460px;
    right: 100px;
  }
}

@media only screen and (max-width: 991px) {
  .hm-1-video__info {
    position: inherit;
    right: inherit;
    top: inherit;
    margin-left: 10px;
    margin-top: 30px;
  }
}

.hm-1-video__info .content {
  padding: 54px 50px;
}

@media (max-width: 575px) {
  .hm-1-video__info .content {
    padding: 30px 10px;
  }
}

.hm-1-video__info .wrapper {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-bottom: 76px;
}

@media only screen and (max-width: 1399px) {
  .hm-1-video__info .wrapper {
    margin-bottom: 30px;
  }
}

.hm-1-video__info .wrapper .popup-video {
  width: 64px;
  height: 64px;
  min-width: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 500px;
  background: var(--black);
  color: var(--white);
}

.hm-1-video__info .wrapper .sub-title {
  font-weight: 500;
  font-size: 18px;
  max-width: 251px;
  line-height: 26px;
  font-family: var(--font_kanit);
}

.hm-1-video__info .title {
  font-size: 30px;
  line-height: 40px;
  margin-bottom: 25px;
  font-weight: 500;
}

@media (max-width: 575px) {
  .hm-1-video__info .title {
    font-size: 25px;
    line-height: 35px;
  }
}

.hm-1-video__info p {
  line-height: 28px;
  margin-bottom: 70px;
}

@media only screen and (max-width: 1399px) {
  .hm-1-video__info p {
    margin-bottom: 0;
  }
}

.hm-1-video__info a {
  gap: 12px;
  width: 100%;
  display: flex;
  padding: 19px;
  font-size: 15px;
  font-weight: 500;
  color: #04030A;
  line-height: 22px;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
  background: var(--primary);
}

.blog .section-title__wrapper {
  text-align: center;
}

.blog .section-title__wrapper .title {
  font-weight: 600;
  margin-bottom: 90px;
  font-size: 60px;
  line-height: 60px;
  letter-spacing: -3px;
  text-transform: uppercase;
}

.dark .blog .section-title__wrapper .title {
  color: #E0EEEE;
}

@media only screen and (max-width: 767px) {
  .blog .section-title__wrapper .title {
    font-size: 50px;
    line-height: 55px;
    margin-bottom: 60px;
  }
}

@media (max-width: 575px) {
  .blog .section-title__wrapper .title {
    font-size: 40px;
    letter-spacing: 0;
    line-height: 45px;
    margin-bottom: 30px;
  }
}

.blog__btn-wrap {
  display: flex;
  margin-top: 80px;
  align-content: center;
  justify-content: center;
}

.blog__wrapper {
  border-top: 1px solid var(--border);
}

.blog__wrapper .blog__item {
  display: grid;
  padding-top: 30px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 60px;
  gap: 30px;
  align-items: center;
  grid-template-columns: 310px 800px 1fr;
}

@media only screen and (max-width: 1919px) {
  .blog__wrapper .blog__item {
    grid-template-columns: 310px 600px 1fr;
  }
}

@media only screen and (max-width: 1399px) {
  .blog__wrapper .blog__item {
    grid-template-columns: 310px 400px 1fr;
  }
}

@media only screen and (max-width: 1199px) {
  .blog__wrapper .blog__item {
    grid-template-columns: 300px 300px 1fr;
  }
}

@media only screen and (max-width: 991px) {
  .blog__wrapper .blog__item {
    grid-template-columns: 1fr;
  }
}

.blog__wrapper .blog__item-box .media {
  overflow: hidden;
  border-radius: 10px;
}

.blog__wrapper .blog__item-box .media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog__wrapper .blog__item-box .content .title {
  font-weight: 500;
  font-size: 26px;
  line-height: 36px;
  max-width: 451px;
}

.dark .blog__wrapper .blog__item-box .content .title {
  color: #E0EEEE;
}

.blog__wrapper .blog__item-box .content p {
  line-height: 28px;
  margin-bottom: 30px;
  max-width: 393px;
}

.dark .blog__wrapper .blog__item-box .content p {
  color: rgba(224, 238, 238, 0.7);
}

.blog__wrapper .blog__meta {
  list-style: none;
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.blog__wrapper .blog__meta li {
  gap: 12px;
  display: flex;
  font-weight: 400;
  font-size: 16px;
  line-height: 28px;
  align-items: center;
}

.dark .blog__wrapper .blog__meta li {
  color: #E0EEEE;
}

.hero-2__inner {
  padding-top: 119px;
  padding-bottom: 115px;
  background-color: var(--white);
  border-left: 1px solid rgba(4, 3, 10, 0.14);
  border-right: 1px solid rgba(4, 3, 10, 0.14);
}

@media only screen and (max-width: 1199px) {
  .hero-2__inner {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}

@media only screen and (max-width: 991px) {
  .hero-2__inner {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}

.hero-2__info {
  max-width: 1445px;
  margin: 0 auto;
}

.hero-2__title {
  font-weight: 600;
  font-size: 110px;
  line-height: 125px;
  text-align: center;
  display: inline-block;
  letter-spacing: -2.2px;
  text-transform: uppercase;
  color: var(--secondary-3);
}

@media (min-width: 1400px) and (max-width: 1750px) {
  .hero-2__title {
    font-size: 80px;
    line-height: 90px;
  }
}

@media only screen and (max-width: 1399px) {
  .hero-2__title {
    font-size: 80px;
    line-height: 90px;
  }
}

@media only screen and (max-width: 1199px) {
  .hero-2__title {
    font-size: 65px;
    line-height: 80px;
  }
}

@media only screen and (max-width: 991px) {
  .hero-2__title {
    font-size: 45px;
    line-height: 55px;
    letter-spacing: 0;
  }
}

@media only screen and (max-width: 767px) {
  .hero-2__title {
    font-size: 35px;
    line-height: 40px;
  }
}

@media (max-width: 575px) {
  .hero-2__title {
    font-size: 25px;
    line-height: 35px;
  }
}

.hero-2__title .text {
  font-weight: 400;
  font-style: Italic;
  font-size: 122px;
  color: var(--primary-2);
  letter-spacing: -2.24px;
  font-family: var(--font_serif);
}

@media (min-width: 1400px) and (max-width: 1750px) {
  .hero-2__title .text {
    font-size: 90px;
  }
}

@media only screen and (max-width: 1399px) {
  .hero-2__title .text {
    font-size: 90px;
  }
}

@media only screen and (max-width: 1199px) {
  .hero-2__title .text {
    font-size: 70px;
  }
}

@media only screen and (max-width: 991px) {
  .hero-2__title .text {
    font-size: 50px;
    letter-spacing: 0;
  }
}

@media only screen and (max-width: 767px) {
  .hero-2__title .text {
    font-size: 40px;
  }
}

@media (max-width: 575px) {
  .hero-2__title .text {
    font-size: 28px;
  }
}

.hero-2__title img {
  border-radius: 500px;
}

.hero-2__title .image {
  transform: translateY(-12px);
}

@media only screen and (max-width: 991px) {
  .hero-2__title .image {
    height: 70px;
    transform: translateY(0px);
  }
}

@media only screen and (max-width: 767px) {
  .hero-2__title .image {
    display: none;
  }
}

.hero-2__title .author {
  display: inline-flex;
  align-items: center;
}

.hero-2__title .author img {
  max-width: 86px;
  max-height: 86px;
  outline: 1px solid #fff;
}

@media only screen and (max-width: 991px) {
  .hero-2__title .author img {
    max-width: 65px;
    max-height: 65px;
  }
}

@media only screen and (max-width: 767px) {
  .hero-2__title .author img {
    display: none;
  }
}

.hero-2__title .author img:not(:first-of-type) {
  margin-left: -44px;
}

@media only screen and (max-width: 991px) {
  .hero-2__title .author img:not(:first-of-type) {
    margin-left: -30px;
  }
}

.dark .hero-2__inner {
  background-color: #131416;
  background-image: none !important;
  border-color: rgba(255, 255, 255, 0.14);
}

.brand-2__active {
  padding: 16px 0;
  background-color: var(--primary-2);
}

@media only screen and (max-width: 767px) {
  .brand-2__active {
    padding: 10px 0;
  }
}

.brand-2__active .swiper-wrapper {
  transition-timing-function: linear;
}

.brand-2__active .swiper-wrapper .swiper-slide {
  width: auto;
}

.brand-2__item h2 {
  gap: 30px;
  display: flex;
  font-size: 26px;
  line-height: 48px;
  align-items: center;
  color: var(--white);
  font-family: var(--font_cooper);
  font-weight: 500;
}

@media only screen and (max-width: 767px) {
  .brand-2__item h2 {
    gap: 20px;
    font-size: 20px;
    line-height: 30px;
  }
}

.brand-2__video #myVideo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.who-we-are__wrap {
  margin-top: -235px;
  padding-bottom: 30px;
}

@media only screen and (max-width: 767px) {
  .who-we-are__wrap {
    margin-top: 0;
    padding-top: 30px;
  }
}

.who-we-are__item {
  max-width: 370px;
  padding: 34px 30px;
  border-radius: 26px;
  position: relative;
  margin: 0 0 0 auto;
  background-color: #131416;
}

@media only screen and (max-width: 767px) {
  .who-we-are__item {
    margin: 0 auto;
  }
}

.who-we-are__author {
  gap: 15px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

.who-we-are__thumb {
  display: flex;
  align-items: center;
}

.who-we-are__thumb img {
  width: 50px;
  height: 50px;
  object-fit: cover;
  margin-left: -25px;
  border-radius: 500px;
  border: 1px solid var(--white);
}

.who-we-are__thumb img:first-of-type {
  margin-left: 0;
}

.who-we-are__name {
  font-weight: 600;
  font-size: 18px;
  line-height: 48px;
  color: var(--white);
}

.who-we-are__dec {
  font-weight: 400;
  font-size: 18px;
  line-height: 30px;
  margin-top: 47px;
  margin-bottom: 80px;
  color: rgba(255, 255, 255, 0.7);
}

@media only screen and (max-width: 991px) {
  .who-we-are__dec {
    margin-top: 30px;
    margin-bottom: 40px;
  }
}

.who-we-are__btn {
  text-align: end;
}

.who-we-are__arrow {
  left: -1px;
  bottom: -1px;
  width: 90px;
  height: 90px;
  display: flex;
  position: absolute;
  align-items: center;
  border-radius: 0 26px;
  justify-content: center;
  background-color: var(--gray);
}

.who-we-are__arrow a {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  border-radius: 500px;
  justify-content: center;
  background-color: var(--primary-2);
}

.who-we-are__arrow a i {
  rotate: -45deg;
  font-size: 21px;
  font-weight: 400;
  color: var(--white);
}

.about-us-2__subtitle {
  font-weight: 500;
  font-size: 16px;
  line-height: 1;
  border-radius: 6px;
  padding: 9px 25.4px;
  display: inline-block;
  color: var(--secondary-3);
  font-family: var(--font_kanit);
  border: 1px solid rgba(52, 52, 52, 0.14);
}

.about-us-2__title {
  font-weight: 600;
  font-size: 36px;
  line-height: 48px;
  max-width: 730px;
  margin-top: 28px;
  margin-bottom: 50px;
  color: var(--secondary-3);
}

@media only screen and (max-width: 1399px) {
  .about-us-2__title {
    font-size: 28px;
    line-height: 35px;
    margin-top: 20px;
    margin-bottom: 30px;
  }
}

@media only screen and (max-width: 1199px) {
  .about-us-2__title {
    font-size: 23px;
    line-height: 30px;
  }
}

@media only screen and (max-width: 767px) {
  .about-us-2__title {
    font-size: 19px;
    line-height: 28px;
  }
}

.about-us-2__title span {
  font-weight: 400;
  font-style: Italic;
  font-size: 46px;
  line-height: 48px;
  color: var(--primary-2);
  font-family: var(--font_serif);
}

@media only screen and (max-width: 1399px) {
  .about-us-2__title span {
    font-size: 30px;
    line-height: 35px;
  }
}

@media only screen and (max-width: 1199px) {
  .about-us-2__title span {
    font-size: 25px;
    line-height: 30px;
  }
}

@media only screen and (max-width: 767px) {
  .about-us-2__title span {
    font-size: 22px;
    line-height: 28px;
  }
}

.about-us-2__btn {
  gap: 10px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.about-us-2__btn .btn_primary:first-of-type span {
  color: var(--white);
  background-color: var(--primary-2);
}

.about-us-2__btn .btn_primary:first-of-type span::before {
  background-color: var(--secondary-3);
}

@media only screen and (max-width: 991px) {
  .about-us-2__tab {
    margin-top: 30px;
  }
}

.about-us-2__tab .nav-pills {
  gap: 30px;
  display: flex;
  margin-bottom: 36px;
  align-items: center;
}

@media only screen and (max-width: 1199px) {
  .about-us-2__tab .nav-pills {
    margin-bottom: 25px;
  }
}

@media only screen and (max-width: 991px) {
  .about-us-2__tab .nav-pills {
    margin-bottom: 20px;
  }
}

@media only screen and (max-width: 767px) {
  .about-us-2__tab .nav-pills {
    gap: 15px;
  }
}

.about-us-2__tab .nav-pills .nav-link.active,
.about-us-2__tab .nav-pills .show>.nav-link {
  color: var(--secondary-3);
  background-color: transparent;
}

.about-us-2__tab .nav-link {
  font-weight: 500;
  font-size: 18px;
  line-height: 1;
  padding: 0;
  border-radius: 0;
  padding-bottom: 7px;
  position: relative;
  color: var(--secondary-3);
  border-bottom: 1px solid rgba(52, 52, 52, 0.14);
}

.about-us-2__tab .nav-link::before {
  content: "";
  right: 0;
  bottom: -1px;
  width: 0%;
  height: 1px;
  position: absolute;
  border-radius: 1px;
  transition: all 0.3s ease-in-out;
  background-color: var(--primary-2);
}

.about-us-2__tab .nav-link:hover,
.about-us-2__tab .nav-link.active {
  color: var(--secondary-3);
}

.about-us-2__tab .nav-link:hover::before,
.about-us-2__tab .nav-link.active::before {
  left: 0;
  width: 100%;
}

.about-us-2__dec {
  font-weight: 400;
  font-size: 18px;
  line-height: 30px;
  max-width: 720px;
  color: rgba(52, 52, 52, 0.7);
}

@media only screen and (max-width: 1199px) {
  .about-us-2__dec {
    font-size: 16px;
    line-height: 28px;
  }
}

.bout-us-2__wrap {
  margin-left: 65px;
}

@media only screen and (max-width: 1399px) {
  .bout-us-2__wrap {
    margin-left: 39px;
  }
}

.dark .about-us-2__tab .nav-link {
  border-color: rgba(255, 255, 255, 0.14);
}

.dark .about-us-2__dec {
  color: rgba(255, 255, 255, 0.7);
}

.dark .about-us-2__subtitle {
  border-color: rgba(255, 255, 255, 0.14);
}

.service-2__inner {
  background-color: #131416;
}

.service-2__top {
  gap: 15px;
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  margin-bottom: 100px;
  justify-content: space-between;
}

@media only screen and (max-width: 1199px) {
  .service-2__top {
    margin-bottom: 50px;
  }
}

@media only screen and (max-width: 991px) {
  .service-2__top {
    margin-bottom: 40px;
  }
}

@media only screen and (max-width: 767px) {
  .service-2__top {
    margin-bottom: 30px;
  }
}

.service-2__top .title {
  max-width: 707px;
  font-weight: 600;
}

@media (max-width: 575px) {
  .service-2__top .title {
    font-size: 29px;
    line-height: 40px;
  }
}

.service-2__box {
  top: 0;
  z-index: 9;
  width: 100%;
  height: 142px;
  display: flex;
  position: absolute;
  align-items: center;
  justify-content: space-between;
}

@media only screen and (max-width: 1399px) {
  .service-2__box {
    height: 115px;
  }
}

@media only screen and (max-width: 1199px) {
  .service-2__box {
    height: 90px;
  }
}

@media only screen and (max-width: 991px) {
  .service-2__box {
    position: inherit;
    margin-bottom: 20px;
  }
}

@media (max-width: 575px) {
  .service-2__box {
    gap: 10px;
    height: 135px;
    padding: 10px 0;
    flex-wrap: wrap;
    justify-content: center;
  }
}

.service-2__item {
  padding: 47.5px 0;
  position: relative;
  margin-bottom: 30px;
}

@media only screen and (max-width: 1399px) {
  .service-2__item {
    padding: 30px 0;
    margin-bottom: 10px;
  }
}

@media only screen and (max-width: 991px) {
  .service-2__item {
    padding: 10px 0;
  }
}

.service-2__item:last-of-type {
  margin-bottom: 0;
}

.service-2__item.active .service-2__title {
  color: var(--primary-2);
}

.service-2__thumb {
  height: 90px;
  width: 440px;
  margin-left: 26px;
  position: relative;
}

@media only screen and (max-width: 1399px) {
  .service-2__thumb {
    max-width: 360px;
    width: 100%;
    height: 73px;
  }
}

@media only screen and (max-width: 1199px) {
  .service-2__thumb {
    max-width: 290px;
    height: 59px;
  }
}

@media (max-width: 575px) {
  .service-2__thumb {
    margin: 0 10px;
  }
}

.service-2__thumb .image {
  left: 0;
  gap: 10px;
  z-index: 1;
  display: flex;
  position: absolute;
  align-items: center;
  transform: scale(0);
  transition: all 0.3s ease-in-out;
}

.service-2__thumb .image a {
  display: contents;
}

@media only screen and (max-width: 1399px) {
  .service-2__thumb .image a {
    display: block;
  }
}

.service-2__thumb .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 6px;
}

.service-2__thumb .image.active {
  z-index: 2;
  transform: scale(1);
}

.service-2__title {
  margin: 0 auto;
  font-weight: 600;
  font-size: 44px;
  line-height: 48px;
  text-align: center;
  color: var(--white);
  max-width: fit-content;
}

@media only screen and (max-width: 1199px) {
  .service-2__title {
    font-size: 30px;
    line-height: 30px;
  }
}

@media (max-width: 575px) {
  .service-2__title {
    font-size: 25px;
    line-height: 25px;
  }
}

.service-2__title a:hover {
  color: var(--primary-2);
}

.service-2__button {
  width: 100%;
  height: 46px;
  position: relative;
}

@media (max-width: 575px) {
  .service-2__button {
    text-align: center;
  }
}

.service-2__btn {
  right: 0;
  z-index: 1;
  transform: scale(0);
  position: absolute;
  margin-right: 26px;
  transition: all 0.3s ease-in-out;
}

@media (max-width: 575px) {
  .service-2__btn {
    left: 0;
    right: 0;
    margin: 0 auto;
  }
}

.service-2__btn.active {
  z-index: 2;
  transform: scale(1);
}

.service-2__btn .btn_primary-2 span {
  color: var(--white);
  background-color: var(--primary-2);
}

.service-2__btn .btn_primary-2 span::before {
  background-color: var(--white);
}

.service-2__btn .btn_primary-2 span:hover {
  color: var(--secondary-3);
}

.service-2__border {
  top: 0;
  width: 100%;
  height: 26px;
  position: absolute;
  display: inline-block;
  border-radius: 10px 10px 0 0;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.service-2__border.top {
  border-bottom: none;
}

.service-2__border.bottom {
  top: auto;
  bottom: 0;
  border-top: none;
  border-radius: 0 0 10px 10px;
}

.team-2__top {
  gap: 20px;
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  margin-bottom: 88px;
  justify-content: space-between;
}

@media only screen and (max-width: 1399px) {
  .team-2__top {
    margin-bottom: 50px;
  }
}

@media only screen and (max-width: 1199px) {
  .team-2__top {
    margin-bottom: 40px;
  }
}

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

.team-2__btn {
  transform: translateY(-10px);
}

.team-2__item {
  overflow: hidden;
  padding: 44px 40px;
  padding-bottom: 52px;
  border-radius: 14px;
  position: relative;
  background-color: var(--white);
}

@media only screen and (max-width: 1199px) {
  .team-2__item {
    padding: 30px 30px;
    padding-bottom: 45px;
  }
}

@media only screen and (max-width: 767px) {
  .team-2__item {
    padding: 25px 20px;
    padding-bottom: 40px;
  }
}

.team-2__thumb {
  gap: 34px;
  display: flex;
  align-items: center;
  margin-bottom: 50px;
}

@media only screen and (max-width: 1199px) {
  .team-2__thumb {
    gap: 20px;
    margin-bottom: 35px;
  }
}

.team-2__thumb .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 6px;
  mask-size: 100% 100%;
  mask-image: url("../imgs/home-2/team/team-2_1.png");
}

.team-2__experience .years {
  font-weight: 600;
  font-size: 60px;
  line-height: 48px;
  max-width: fit-content;
  color: var(--secondary-3);
}

@media only screen and (max-width: 1199px) {
  .team-2__experience .years {
    font-size: 40px;
    line-height: 40px;
  }
}

@media only screen and (max-width: 767px) {
  .team-2__experience .years {
    font-size: 30px;
    line-height: 30px;
  }
}

.team-2__experience .text {
  font-weight: 400;
  font-size: 18px;
  line-height: 22px;
  margin-top: 13px;
  max-width: 89px;
  margin-bottom: 28px;
  text-transform: capitalize;
  color: rgba(52, 52, 52, 0.7);
}

@media only screen and (max-width: 767px) {
  .team-2__experience .text {
    font-size: 16px;
    line-height: 18px;
    margin-top: 11px;
    margin-bottom: 20px;
  }
}

.team-2__experience .arrow {
  line-height: 1;
}

.team-2__experience .arrow i {
  font-size: 26px;
  line-height: 0.8;
  font-weight: 500;
  color: var(--secondary-3);
}

.team-2__name {
  font-weight: 600;
  font-size: 26px;
  line-height: 1;
  margin-bottom: 13px;
  color: var(--secondary-3);
}

@media only screen and (max-width: 767px) {
  .team-2__name {
    font-size: 24px;
    margin-bottom: 10px;
  }
}

.team-2__name a:hover {
  color: var(--primary-2);
}

.team-2__position {
  font-weight: 400;
  font-size: 18px;
  line-height: 1;
  text-transform: capitalize;
  color: rgba(52, 52, 52, 0.7);
}

.team-2__share {
  max-width: 80px;
  width: 100%;
  max-height: 80px;
  height: 100%;
  position: absolute;
  bottom: 0;
  right: 0;
}

@media only screen and (max-width: 1199px) {
  .team-2__share {
    max-width: 60px;
    max-height: 60px;
  }
}

.team-2__share:hover .icon i {
  color: var(--primary-2);
}

.team-2__share:hover .team-2__social {
  bottom: 100%;
}

.team-2__share .icon {
  z-index: 1;
  width: 80px;
  height: 80px;
  display: flex;
  cursor: pointer;
  position: relative;
  align-items: center;
  justify-content: center;
  border-radius: 6px 0 14px 0;
  background-color: var(--gray);
}

@media only screen and (max-width: 1199px) {
  .team-2__share .icon {
    width: 60px;
    height: 60px;
  }
}

.team-2__share .icon i {
  font-size: 32px;
  color: var(--secondary-3);
  transition: all 0.3s ease-in-out;
}

.team-2__social {
  gap: 5px;
  display: flex;
  margin: 0 auto;
  max-width: fit-content;
  flex-direction: column;
  position: absolute;
  bottom: -100%;
  right: 20px;
  margin-bottom: 15px;
  transition: all 0.3s ease-in-out;
}

@media only screen and (max-width: 1199px) {
  .team-2__social {
    bottom: -135%;
    right: 10px;
  }
}

.team-2__social a {
  width: 40px;
  height: 40px;
  display: flex;
  border-radius: 6px;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease-in-out;
}

.team-2__social a i {
  font-size: 20px;
  color: #01010B;
  transition: all 0.3s ease-in-out;
}

.team-2__social a:hover {
  background-color: var(--primary-2);
}

.team-2__social a:hover i {
  color: var(--white);
}

.dark .team-2__item {
  background-color: #131416;
}

.dark .team-2__experience .text {
  color: rgba(255, 255, 255, 0.7);
}

.dark .team-2__position {
  color: rgba(255, 255, 255, 0.7);
}

.dark .team-2__social a i {
  color: var(--secondary-3);
}

.dark .team-2__btn .btn_primary span:hover {
  color: #fff !important;
}

.client-2__top {
  margin-bottom: 75px;
}

@media only screen and (max-width: 1199px) {
  .client-2__top {
    margin-bottom: 50px;
  }
}

@media only screen and (max-width: 991px) {
  .client-2__top {
    margin-bottom: 40px;
  }
}

@media only screen and (max-width: 767px) {
  .client-2__top {
    margin-bottom: 30px;
  }
}

.client-2__active {
  margin: 0 -85px;
}

@media only screen and (max-width: 991px) {
  .client-2__active {
    margin: 0 15px;
  }
}

.client-2__item {
  max-width: 500px;
  padding: 44px 40px;
  border-radius: 14px;
  padding-bottom: 50px;
  background-color: var(--white);
}

@media only screen and (max-width: 1199px) {
  .client-2__item {
    padding: 30px 25px;
  }
}

.client-2__star {
  gap: 8px;
  display: flex;
  align-items: center;
}

.client-2__star i {
  font-size: 14px;
  color: #FFA800;
}

.client-2__dec {
  font-weight: 400;
  font-size: 18px;
  max-width: 406px;
  line-height: 30px;
  margin-top: 26px;
  margin-bottom: 72px;
  color: rgba(52, 52, 52, 0.7);
}

@media only screen and (max-width: 1199px) {
  .client-2__dec {
    font-size: 17px;
    margin-top: 20px;
    margin-bottom: 30px;
  }
}

@media only screen and (max-width: 767px) {
  .client-2__dec {
    padding-bottom: 20px;
  }
}

.client-2__meta {
  gap: 10px;
  display: flex;
  flex-wrap: wrap;
  padding-top: 30px;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(52, 52, 52, 0.14);
}

@media only screen and (max-width: 767px) {
  .client-2__meta {
    padding-top: 20px;
  }
}

.client-2__author {
  gap: 16px;
  display: flex;
  align-items: center;
}

@media only screen and (max-width: 991px) {
  .client-2__author {
    gap: 10px;
  }
}

.client-2__author .image {
  width: 50px;
  height: 50px;
}

.client-2__author .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 4px;
}

.client-2__author .info .name {
  font-weight: 500;
  font-size: 20px;
  line-height: 1;
  margin-bottom: 8px;
  color: var(--secondary-3);
  font-family: var(--font_cooper);
}

@media only screen and (max-width: 991px) {
  .client-2__author .info .name {
    font-size: 18px;
    margin-bottom: 5px;
  }
}

.client-2__author .info .position {
  font-weight: 400;
  font-size: 16px;
  line-height: 1;
  text-transform: capitalize;
  color: rgba(52, 52, 52, 0.7);
}

.client-2__logo .white {
  display: none;
}

.client-2__bottom {
  gap: 10px;
  display: flex;
  margin-top: 64px;
  align-items: center;
  justify-content: center;
}

@media only screen and (max-width: 991px) {
  .client-2__bottom {
    margin-top: 40px;
  }
}

@media only screen and (max-width: 767px) {
  .client-2__bottom {
    margin-top: 30px;
  }
}

.client-2__play {
  width: 60px;
  height: 60px;
  font-size: 24px;
  display: flex;
  align-items: center;
  border-radius: 500px;
  justify-content: center;
  background: var(--white);
  color: var(--secondary-3);
}

.dark .client-2__play {
  color: var(--secondary);
}

@media only screen and (max-width: 767px) {
  .client-2__play {
    width: 48px;
    height: 48px;
  }
}

.client-2__pagination {
  gap: 14px;
  padding: 26px 30px;
  align-items: center;
  display: inline-flex;
  border-radius: 500px;
  width: fit-content !important;
  background-color: var(--white);
}

@media only screen and (max-width: 767px) {
  .client-2__pagination {
    padding: 20px 26px;
  }
}

.client-2__pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  opacity: 0.6;
  margin: 0 !important;
  border-radius: 500px;
  background-color: rgba(52, 52, 52, 0.6);
}

.client-2__pagination .swiper-pagination-bullet-active {
  opacity: 1;
  width: 40px;
  background-color: var(--secondary-3);
}

.dark .client-2__item {
  background-color: #131416;
}

.dark .client-2__dec {
  color: rgba(255, 255, 255, 0.7);
}

.dark .client-2__meta {
  border-color: rgba(255, 255, 255, 0.14);
}

.dark .client-2__author .info .position {
  color: rgba(255, 255, 255, 0.7);
}

.dark .client-2__logo .dark {
  display: none;
}

.dark .client-2__logo .white {
  display: block;
}

.dark .client-2__play a {
  background-color: #131416;
}

.dark .client-2__pagination {
  background-color: #131416;
}

.dark .client-2__pagination .swiper-pagination-bullet {
  background-color: rgba(255, 255, 255, 0.6);
}

.dark .client-2__pagination .swiper-pagination-bullet-active {
  background-color: #fff;
}

.project-2__top {
  padding-top: 43px;
  position: relative;
}

@media only screen and (max-width: 767px) {
  .project-2__top {
    padding-top: 15px;
  }
}

.project-2__top::before {
  content: "";
  top: 0;
  left: 50%;
  max-width: 1600px;
  width: 100%;
  height: 1px;
  position: absolute;
  transform: translateX(-50%);
  background-color: rgba(52, 52, 52, 0.14);
}

.project-2__text-active .swiper-wrapper {
  transition-timing-function: linear;
}

.project-2__text-active .swiper-wrapper .swiper-slide {
  width: auto;
}

.project-2__text h2 {
  font-weight: 600;
  font-size: 120px;
  line-height: 130px;
  letter-spacing: -6px;
  color: var(--secondary-3);
  text-transform: uppercase;
}

@media only screen and (max-width: 1199px) {
  .project-2__text h2 {
    font-size: 90px;
    line-height: 90px;
  }
}

@media only screen and (max-width: 991px) {
  .project-2__text h2 {
    font-size: 60px;
    line-height: 60px;
    letter-spacing: 0;
  }
}

@media only screen and (max-width: 767px) {
  .project-2__text h2 {
    font-size: 40px;
    line-height: 40px;
  }
}

.project-2__text h2 span {
  font-weight: 400;
  font-size: 132px;
  font-style: Italic;
  color: var(--primary-2);
  font-family: var(--font_serif);
}

@media only screen and (max-width: 1199px) {
  .project-2__text h2 span {
    font-size: 100px;
  }
}

@media only screen and (max-width: 991px) {
  .project-2__text h2 span {
    font-size: 70px;
  }
}

@media only screen and (max-width: 767px) {
  .project-2__text h2 span {
    font-size: 45px;
  }
}

.project-2__wrapper {
  gap: 30px;
  display: grid;
  padding-top: 158px;
  grid-template-columns: repeat(2, 1fr);
}

@media only screen and (max-width: 1399px) {
  .project-2__wrapper {
    padding-top: 100px;
  }
}

@media only screen and (max-width: 1199px) {
  .project-2__wrapper {
    padding-top: 80px;
  }
}

@media only screen and (max-width: 991px) {
  .project-2__wrapper {
    padding-top: 60px;
  }
}

@media only screen and (max-width: 767px) {
  .project-2__wrapper {
    padding-top: 40px;
    grid-template-columns: repeat(1, 1fr);
  }
}

.project-2__item {
  position: relative;
  height: fit-content;
}

.project-2__item:nth-child(2) {
  padding-top: 180px;
}

@media only screen and (max-width: 991px) {
  .project-2__item:nth-child(2) {
    padding-top: 80px;
  }
}

@media only screen and (max-width: 767px) {
  .project-2__item:nth-child(2) {
    padding-top: 0px;
  }
}

.project-2__item:nth-child(3) {
  margin-top: -180px;
}

@media only screen and (max-width: 991px) {
  .project-2__item:nth-child(3) {
    margin-top: -80px;
  }
}

@media only screen and (max-width: 767px) {
  .project-2__item:nth-child(3) {
    margin-top: 0px;
  }
}

.project-2__item:nth-child(5) {
  margin-top: -180px;
}

@media only screen and (max-width: 991px) {
  .project-2__item:nth-child(5) {
    margin-top: -80px;
  }
}

@media only screen and (max-width: 767px) {
  .project-2__item:nth-child(5) {
    margin-top: 0px;
  }
}

.project-2__thumb {
  overflow: hidden;
  position: relative;
  border-radius: 20px;
}

.project-2__thumb::before {
  content: "";
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  position: absolute;
  border-radius: 20px;
  transition: all 0.3s ease-in-out;
  background-color: rgba(52, 52, 52, 0.4);
}

.project-2__thumb:hover .project-2__hover {
  opacity: 1;
  visibility: visible;
}

.project-2__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}

.project-2__hover {
  top: 40px;
  right: 40px;
  left: 40px;
  z-index: 1;
  opacity: 0;
  will-change: transform;
  visibility: hidden;
  position: absolute;
  text-align: center;
}

.project-2__subtitle {
  font-weight: 500;
  font-size: 30px;
  line-height: 1;
  margin-bottom: 14px;
  color: var(--white);
  font-family: var(--font_kanit);
}

@media only screen and (max-width: 991px) {
  .project-2__subtitle {
    font-size: 25px;
    margin-bottom: 10px;
  }
}

.project-2__title {
  font-weight: 500;
  font-size: 34px;
  line-height: 1;
  color: var(--white);
  font-family: var(--font_kanit);
}

@media only screen and (max-width: 991px) {
  .project-2__title {
    font-size: 28px;
  }
}

.project-2__border {
  width: 100%;
  height: 26px;
  display: inline-block;
  border-radius: 10px 10px 0 0;
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.project-2__border.top {
  border-bottom: none;
}

.project-2__border.bottom {
  top: auto;
  bottom: 0;
  border-top: none;
  border-radius: 0 0 10px 10px;
}

.dark .project-2__top::before {
  background-color: rgba(255, 255, 255, 0.14);
}

.cta-2__wrapper {
  column-gap: 20px;
  display: grid;
  grid-template-columns: 385px 1fr 385px;
}

@media only screen and (max-width: 1199px) {
  .cta-2__wrapper {
    grid-template-columns: 310px 1fr 310px;
  }
}

@media only screen and (max-width: 991px) {
  .cta-2__wrapper {
    column-gap: 0;
    row-gap: 20px;
    grid-template-columns: repeat(1, 1fr);
  }
}

.cta-2__item {
  gap: 20px;
  display: flex;
  overflow: hidden;
  flex-direction: column;
}

@media only screen and (max-width: 991px) {
  .cta-2__item {
    flex-direction: row;
  }
}

@media (max-width: 575px) {
  .cta-2__item {
    border-radius: 14px;
    flex-direction: column;
  }
}

.cta-2__item:first-of-type .cta-2__thumb {
  border-radius: 0 14px 14px 0;
}

.cta-2__item:first-of-type .cta-2__content {
  border-radius: 0 14px 14px 0;
}

.cta-2__item:last-of-type .cta-2__thumb {
  border-radius: 14px 0 0 14px;
}

.cta-2__item:last-of-type .cta-2__info {
  border-radius: 14px 0 0 14px;
}

.cta-2__thumb {
  width: 100%;
  height: 100%;
}

@media only screen and (max-width: 991px) {
  .cta-2__thumb {
    height: 270px;
  }
}

.cta-2__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 14px;
}

.cta-2__content {
  position: relative;
  padding: 35px 40px;
  padding-bottom: 50px;
  background-color: #04030A;
}

@media only screen and (max-width: 1199px) {
  .cta-2__content {
    padding: 25px 25px;
    padding-bottom: 30px;
  }
}

@media (max-width: 575px) {
  .cta-2__content {
    border-radius: 14px;
  }
}

.cta-2__title {
  font-weight: 600;
  font-size: 34px;
  line-height: 46px;
  color: var(--white);
  margin-bottom: 130px;
}

@media only screen and (max-width: 1199px) {
  .cta-2__title {
    font-size: 30px;
    line-height: 40px;
    margin-bottom: 40px;
  }
}

@media only screen and (max-width: 767px) {
  .cta-2__title {
    font-size: 25px;
    line-height: 35px;
  }
}

.cta-2__info {
  position: relative;
  padding: 75px 50px;
  padding-bottom: 40px;
  background-color: #FF5E14;
}

@media only screen and (max-width: 1199px) {
  .cta-2__info {
    padding: 30px 30px;
  }
}

@media (max-width: 575px) {
  .cta-2__info {
    border-radius: 14px !important;
  }
}

.cta-2__dec {
  font-weight: 600;
  font-size: 20px;
  line-height: 28px;
  color: var(--white);
  margin-bottom: 112px;
  font-family: var(--font_cooper);
}

@media only screen and (max-width: 1199px) {
  .cta-2__dec {
    z-index: 1;
    position: relative;
    margin-bottom: 30px;
  }
}

.cta-2__count h4 {
  font-weight: 600;
  font-size: 90px;
  line-height: 1;
  color: var(--white);
  letter-spacing: -2.7px;
  text-transform: uppercase;
}

@media only screen and (max-width: 1199px) {
  .cta-2__count h4 {
    z-index: 1;
    line-height: 1;
    font-size: 40px;
    letter-spacing: 0;
    position: relative;
  }
}

@media only screen and (max-width: 991px) {
  .cta-2__count h4 {
    font-size: 60px;
  }
}

.cta-2__shape {
  right: 0;
  bottom: 0;
  position: absolute;
}

.cta-2__shape_2 {
  top: 0;
  bottom: auto;
}

@media only screen and (max-width: 1199px) {
  .cta-2__shape_2 img {
    width: 70%;
  }
}

.dark .cta-2__content {
  background-color: #393939;
}

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

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

.brand-area-2__top {
  gap: 15px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 34px;
  justify-content: space-between;
}

@media only screen and (max-width: 1199px) {
  .brand-area-2__top {
    margin-bottom: 30px;
  }
}

.brand-area-2__main-title {
  font-weight: 600;
  font-size: 20px;
  line-height: 28px;
  color: var(--secondary-3);
}

.brand-area-2__date {
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  text-transform: capitalize;
  color: rgba(52, 52, 52, 0.7);
  font-family: var(--font_kanit);
}

.brand-area-2__date a {
  font-weight: 500;
  color: var(--secondary-3);
}

.brand-area-2__date a:hover {
  color: var(--primary-2);
}

.brand-area-2__item {
  width: 100%;
  display: flex;
  height: 150px;
  cursor: pointer;
  overflow: hidden;
  position: relative;
  align-items: center;
  border-radius: 14px;
  justify-content: center;
  transition: all 0.6s ease-in-out;
  border: 1px solid rgba(52, 52, 52, 0.14);
}

@media only screen and (max-width: 1199px) {
  .brand-area-2__item {
    height: 120px;
  }
}

.brand-area-2__item:hover {
  transform: rotateY(180deg);
  border-color: var(--white);
}

.brand-area-2__item:hover .brand-area-2__logo {
  opacity: 0;
  visibility: hidden;
}

.brand-area-2__item:hover .brand-area-2__link {
  opacity: 1;
  visibility: visible;
  transform: rotateY(-180deg);
}

.brand-area-2__logo {
  transition: all 0.6s ease-in-out;
}

.brand-area-2__logo .white {
  display: none;
}

.brand-area-2__text {
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  margin-bottom: 2px;
  text-transform: capitalize;
  color: rgba(52, 52, 52, 0.7);
}

.brand-area-2__det {
  font-weight: 600;
  font-size: 20px;
  line-height: 28px;
  color: var(--secondary-3);
  font-family: var(--font_cooper);
}

.brand-area-2__det:hover {
  color: var(--primary-2);
}

.brand-area-2__link {
  opacity: 0;
  width: 100%;
  height: 100%;
  display: flex;
  visibility: hidden;
  position: absolute;
  align-items: center;
  justify-content: center;
  background: var(--white);
  transition: all 0.6s ease-in-out;
}

.brand-area-2__link a {
  font-weight: 400;
  font-size: 24px;
  line-height: 53px;
  color: var(--secondary-3);
  text-decoration: underline;
}

.brand-area-2__link a:hover {
  color: var(--primary-2);
}

.dark .brand-area-2__item {
  border-color: rgba(255, 255, 255, 0.14);
}

.dark .brand-area-2__link {
  background-color: #131416;
}

.dark .brand-area-2__date {
  color: rgba(255, 255, 255, 0.7);
}

.dark .brand-area-2__text {
  color: rgba(255, 255, 255, 0.7);
}

.dark .brand-area-2__logo .dark {
  display: none;
}

.dark .brand-area-2__logo .white {
  display: block;
}

.blog-2__top {
  gap: 20px;
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  margin-bottom: 88px;
  justify-content: space-between;
}

@media only screen and (max-width: 1399px) {
  .blog-2__top {
    margin-bottom: 50px;
  }
}

@media only screen and (max-width: 991px) {
  .blog-2__top {
    margin-bottom: 40px;
  }
}

@media only screen and (max-width: 767px) {
  .blog-2__top {
    margin-bottom: 30px;
  }
}

.blog-2__btn {
  transform: translateY(-10px);
}

.blog-2__item {
  max-width: 514px;
}

.blog-2__item:hover .blog-2__thumb img {
  transform: scale(1);
}

.blog-2__item:hover .blog-2__meta ul li {
  color: var(--white);
}

.blog-2__item:hover .blog-2__meta ul li a::before {
  background-color: var(--white);
}

.blog-2__thumb {
  overflow: hidden;
  position: relative;
  border-radius: 14px;
  margin-bottom: 27px;
  background-color: var(--white);
}

@media only screen and (max-width: 1399px) {
  .blog-2__thumb {
    margin-bottom: 20px;
  }
}

.blog-2__thumb img {
  border-radius: 14px;
  transform: scale(0.5);
  transition: all 0.3s ease-in-out;
}

.blog-2__meta {
  top: 32px;
  left: 40px;
  right: 40px;
  position: absolute;
}

@media only screen and (max-width: 1399px) {
  .blog-2__meta {
    top: 20px;
    left: 20px;
    right: 20px;
  }
}

@media only screen and (max-width: 767px) {
  .blog-2__meta {
    left: 15px;
    right: 15px;
  }
}

.blog-2__meta ul {
  gap: 10px;
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  align-items: center;
  justify-content: space-between;
}

.blog-2__meta ul li {
  font-weight: 400;
  font-size: 16px;
  line-height: 1;
  color: var(--secondary-3);
  transition: all 0.3s ease-in-out;
}

@media only screen and (max-width: 767px) {
  .blog-2__meta ul li {
    font-size: 14px;
  }
}

.blog-2__meta ul li a {
  gap: 9px;
  display: flex;
  align-items: center;
}

.blog-2__meta ul li a::before {
  content: "";
  width: 6px;
  height: 6px;
  display: inline-block;
  border-radius: 500px;
  transition: all 0.3s ease-in-out;
}

.blog-2__title {
  font-weight: 500;
  font-size: 26px;
  line-height: 36px;
  max-width: 430px;
  color: var(--secondary-3);
  font-family: var(--font_cooper);
}

@media only screen and (max-width: 1399px) {
  .blog-2__title {
    font-size: 25px;
    line-height: 30px;
  }
}

@media only screen and (max-width: 1199px) {
  .blog-2__title {
    font-size: 20px;
    line-height: 25px;
  }
}

.blog-2__title a:hover {
  color: var(--primary-2);
}

.blog-2__bottom {
  gap: 40px;
  display: flex;
  margin-top: 70px;
  align-items: center;
}

@media only screen and (max-width: 991px) {
  .blog-2__bottom {
    gap: 30px;
    margin-top: 40px;
  }
}

.blog-2__progressbar {
  width: 100%;
  height: 10px !important;
  background-color: rgba(52, 52, 52, 0.06);
  border-radius: 25px;
  position: relative;
}

.blog-2__progressbar .swiper-pagination-progressbar-fill {
  background-color: var(--primary-2);
  border-radius: 25px;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform-origin: left top;
}

.blog-2__button {
  gap: 10px;
  display: flex;
  align-items: center;
}

.blog-2__arrow {
  width: 46px;
  height: 46px;
  display: flex;
  cursor: pointer;
  border-radius: 4px;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease-in-out;
  background: rgba(57, 57, 57, 0.1);
}

.blog-2__arrow:hover {
  background-color: var(--primary-2);
}

.blog-2__arrow:hover svg [fill="#343434"] {
  fill: var(--white);
  transition: all 0.3s ease-in-out;
}

.blog-2__custom-pagination {
  width: 80px;
  height: 46px;
  display: flex;
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
  border-radius: 4px;
  align-items: center;
  justify-content: center;
  text-transform: capitalize;
  color: rgba(52, 52, 52, 0.7);
  background: rgba(57, 57, 57, 0.1);
}

.dark .blog-2__btn .btn_primary span:hover {
  color: #fff !important;
}

.dark .blog-2__thumb {
  background-color: #131416;
}

.dark .blog-2__dots .swiper-pagination-bullet {
  opacity: 0.6;
  background-color: rgba(255, 255, 255, 0.06);
}

.dark .blog-2__dots .swiper-pagination-bullet-active {
  opacity: 1;
  background-color: var(--primary-2);
}

.dark .blog-2__custom-pagination {
  color: rgba(255, 255, 255, 0.7);
  background-color: rgba(255, 255, 255, 0.2);
}

.dark .blog-2__arrow {
  background-color: rgba(255, 255, 255, 0.2);
}

.dark .blog-2__arrow span svg [fill="#343434"] {
  fill: #fff;
}

.dark .blog-2__arrow:hover {
  background-color: var(--primary-2);
}

.footer-2__menu {
  padding: 40px 0;
  position: relative;
}

@media only screen and (max-width: 1199px) {
  .footer-2__menu {
    padding: 30px 0;
  }
}

@media (max-width: 575px) {
  .footer-2__menu {
    padding: 22px 0;
  }
}

.footer-2__menu::before {
  content: "";
  width: 1000%;
  height: 1px;
  left: -100%;
  bottom: 0;
  position: absolute;
  background-color: rgba(255, 255, 255, 0.16);
}

.footer-2__menu ul {
  gap: 5px;
  display: flex;
  list-style: none;
  align-items: center;
  justify-content: center;
}

@media (max-width: 575px) {
  .footer-2__menu ul {
    flex-wrap: wrap;
  }
}

.footer-2__menu ul li a {
  font-weight: 400;
  font-size: 16px;
  line-height: 1;
  color: var(--white);
  padding: 9px 21.43px;
  display: inline-block;
  border-radius: 500px;
  border: 1px solid transparent;
}

@media (max-width: 575px) {
  .footer-2__menu ul li a {
    padding: 8px 11px;
  }
}

.footer-2__menu ul li a:hover {
  border-color: rgba(255, 255, 255, 0.14);
}

.footer-2__wrap {
  display: grid;
  padding-top: 80px;
  align-items: start;
  padding-bottom: 37px;
  justify-content: space-between;
  grid-template-columns: 1fr 674px;
}

@media only screen and (max-width: 1199px) {
  .footer-2__wrap {
    gap: 50px;
    grid-template-columns: 1fr 500px;
  }
}

@media only screen and (max-width: 991px) {
  .footer-2__wrap {
    gap: 40px;
    padding-top: 60px;
    grid-template-columns: repeat(2, 1fr);
  }
}

@media only screen and (max-width: 767px) {
  .footer-2__wrap {
    gap: 40px;
    grid-template-columns: repeat(1, 1fr);
  }
}

.footer-2__dec {
  font-weight: 500;
  font-size: 36px;
  line-height: 48px;
  max-width: 443px;
  margin-top: 52px;
  margin-bottom: 44px;
  color: var(--white);
  text-transform: uppercase;
  font-family: var(--font_cooper);
}

@media only screen and (max-width: 1399px) {
  .footer-2__dec {
    font-size: 30px;
    line-height: 35px;
    margin-top: 40px;
    margin-bottom: 30px;
  }
}

@media only screen and (max-width: 991px) {
  .footer-2__dec {
    font-size: 25px;
    line-height: 30px;
    margin-top: 25px;
    margin-bottom: 20px;
  }
}

@media only screen and (max-width: 767px) {
  .footer-2__dec {
    max-width: 100%;
  }
}

@media (max-width: 575px) {
  .footer-2__dec {
    font-size: 23px;
  }
}

.footer-2__subscribe {
  max-width: 510px;
  position: relative;
}

@media only screen and (max-width: 767px) {
  .footer-2__subscribe {
    max-width: 100%;
  }
}

.footer-2__subscribe input {
  width: 100%;
  height: 70px;
  border-radius: 6px;
  border: none;
  outline: none;
  padding: 0 68px;
  padding-left: 36px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
}

@media (max-width: 575px) {
  .footer-2__subscribe input {
    padding-left: 15px;
  }
}

.footer-2__subscribe input::placeholder {
  font-weight: 400;
  font-size: 16px;
  line-height: 28px;
  text-transform: capitalize;
  color: rgba(255, 255, 255, 0.7);
}

.footer-2__btn button {
  top: 50%;
  right: 5px;
  width: 60px;
  height: 60px;
  display: flex;
  border-radius: 4px;
  position: absolute;
  align-items: center;
  justify-content: center;
  transform: translateY(-50%);
  background-color: var(--primary-2);
}

.footer-2__btn button i {
  rotate: -45deg;
  font-size: 24px;
  font-weight: 300;
  color: var(--white);
}

.footer-2__big-text {
  font-weight: 500;
  font-size: 160px;
  line-height: 1;
  margin-top: 170px;
  letter-spacing: -8px;
  color: var(--white);
  text-transform: uppercase;
}

@media only screen and (max-width: 1919px) {
  .footer-2__big-text {
    font-size: 110px;
    margin-top: 100px;
    letter-spacing: -3px;
  }
}

@media only screen and (max-width: 1399px) {
  .footer-2__big-text {
    margin-top: 70px;
  }
}

@media only screen and (max-width: 1199px) {
  .footer-2__big-text {
    margin-top: 50px;
    font-size: 80px;
    letter-spacing: 0;
  }
}

@media only screen and (max-width: 991px) {
  .footer-2__big-text {
    margin-top: 30px;
    font-size: 69px;
  }
}

@media (max-width: 575px) {
  .footer-2__big-text {
    font-size: 55px;
  }
}

.footer-2__widget {
  position: relative;
}

.footer-2__widget:first-of-type::before {
  content: "";
  width: 1px;
  height: 817px;
  top: -80px;
  right: 90px;
  position: absolute;
  background-color: rgba(255, 255, 255, 0.16);
}

@media (min-width: 1px) and (max-width: 1700px) {
  .footer-2__widget:first-of-type::before {
    display: none;
  }
}

.footer-2__widget:last-of-type {
  max-width: 674px;
  margin: 0 0 0 auto;
  width: 100%;
}

.footer-2__widget .title {
  font-weight: 500;
  font-size: 30px;
  line-height: 30px;
  color: var(--white);
}

.footer-2__service {
  gap: 90px;
  display: grid;
  align-items: start;
  margin-bottom: 100px;
  grid-template-columns: 134px 1fr;
}

@media only screen and (max-width: 1919px) {
  .footer-2__service {
    gap: 50px;
    margin-bottom: 50px;
  }
}

@media only screen and (max-width: 991px) {
  .footer-2__service {
    gap: 25px;
    margin-bottom: 40px;
    grid-template-columns: 1fr;
  }
}

.footer-2__service-item ul {
  max-width: 450px;
  width: 100%;
  list-style: none;
}

@media only screen and (max-width: 767px) {
  .footer-2__service-item ul {
    max-width: 100%;
  }
}

.footer-2__service-item ul li {
  font-weight: 400;
  font-size: 18px;
  line-height: 1;
  position: relative;
  padding: 16.5px 0;
  transition: all 0.3s ease-in-out;
  color: rgba(255, 255, 255, 0.7);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.footer-2__service-item ul li::after {
  content: "";
  top: 50%;
  right: 0;
  width: 6px;
  height: 6px;
  position: absolute;
  border-radius: 500px;
  transform: translateY(-50%);
  transition: all 0.3s ease-in-out;
  background-color: rgba(255, 255, 255, 0.4);
}

.footer-2__service-item ul li:first-of-type {
  padding-top: 0;
}

.footer-2__service-item ul li:hover {
  border-color: var(--white);
}

.footer-2__service-item ul li:hover::after {
  background-color: var(--white);
}

.footer-2__service-item ul li:hover a {
  color: var(--white);
}

.footer-2__social {
  gap: 123px;
  display: flex;
  align-items: start;
}

@media only screen and (max-width: 991px) {
  .footer-2__social {
    gap: 25px;
    flex-wrap: wrap;
  }
}

.footer-2__social ul {
  gap: 10px;
  display: flex;
  list-style: none;
  align-items: center;
}

.footer-2__social ul li a {
  width: 46px;
  height: 46px;
  display: flex;
  font-size: 20px;
  color: var(--white);
  align-items: center;
  border-radius: 500px;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.footer-2__social ul li a:hover {
  color: var(--primary-2);
}

.copyright-2__wrap {
  padding: 30.5px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

@media only screen and (max-width: 767px) {
  .copyright-2__wrap {
    padding: 20px 0;
  }
}

.copyright-2__inner {
  gap: 15px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

@media only screen and (max-width: 767px) {
  .copyright-2__inner {
    gap: 10px;
    justify-content: center;
  }
}

.copyright-2__text .text {
  font-weight: 400;
  font-size: 18px;
  line-height: 30px;
  color: rgba(255, 255, 255, 0.7);
}

@media only screen and (max-width: 767px) {
  .copyright-2__text .text {
    line-height: 1;
    text-align: center;
  }
}

.copyright-2__text .text a {
  color: var(--white);
}

.copyright-2__menu ul {
  gap: 37px;
  display: inline-flex;
  list-style: none;
  align-items: center;
}

.copyright-2__menu ul li {
  font-weight: 400;
  font-size: 18px;
  line-height: 30px;
  display: inline-block;
  position: relative;
  font-family: var(--font_kanit);
  color: rgba(255, 255, 255, 0.7);
}

@media only screen and (max-width: 767px) {
  .copyright-2__menu ul li {
    line-height: 1;
  }
}

.copyright-2__menu ul li:not(:last-child)::before {
  content: "";
  top: 50%;
  width: 2px;
  height: 15px;
  right: -17px;
  position: absolute;
  background: rgba(224, 238, 238, 0.7);
  transform: translateY(-50%);
}

.copyright-2__menu ul li a:hover {
  color: var(--white);
}

/* === section-title (index 01) === */
.section-title-3__wrapper {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 100px;
  gap: 10px;
}

@media only screen and (max-width: 1199px) {
  .section-title-3__wrapper {
    flex-wrap: wrap;
  }
}

.section-title-3__wrapper .sub-title {
  font-weight: 400;
  font-size: 14px;
  line-height: 21px;
  color: var(--secondary-2);
  margin-bottom: 24px;
  border-radius: 500px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  display: inline-flex;
  font-family: var(--font_kanit);
}

.section-title-3__wrapper .sub-title .text {
  border: 1px solid rgba(18, 18, 18, 0.14);
  padding: 4px 20px;
  display: inline-block;
  border-radius: 500px;
}

.section-title-3__wrapper .sub-title .number {
  background: var(--secondary-2);
  border-radius: 500px;
  color: var(--white);
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.section-title-3__wrapper .title {
  font-weight: 600;
  font-size: 70px;
  line-height: 64px;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--secondary-2);
  font-family: var(--font_kanit);
}

@media only screen and (max-width: 1199px) {
  .section-title-3__wrapper .title {
    font-size: 45px;
    line-height: 55px;
  }
}

@media only screen and (max-width: 767px) {
  .section-title-3__wrapper .title {
    font-size: 40px;
    line-height: 50px;
  }
}

@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: 480px;
  line-height: 24px;
  margin-bottom: 48px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(201, 201, 200, 0.32);
}

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

.hero-3 {
  background-repeat: no-repeat;
  background-size: cover;
}

.hero-3__inner {
  padding-top: 228px;
  padding-bottom: 80px;
}

@media only screen and (max-width: 1399px) {
  .hero-3__inner {
    padding-top: 120px;
  }
}

@media only screen and (max-width: 991px) {
  .hero-3__inner {
    padding-top: 110px;
  }
}

.hero-3__inner .hero-3__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media (max-width: 575px) {
  .hero-3__inner .hero-3__content {
    flex-wrap: wrap;
    margin-bottom: 50px;
  }
}

.hero-3__inner .hero-3__content .title {
  gap: 0 20px;
  display: flex;
  flex-wrap: wrap;
  font-size: 140px;
  font-weight: 600;
  max-width: 1256px;
  line-height: 140px;
  color: var(--white);
  align-items: center;
  letter-spacing: -1.4px;
  text-transform: uppercase;
  font-family: var(--font_kanit);
  margin-bottom: 60px;
}

@media only screen and (max-width: 1399px) {
  .hero-3__inner .hero-3__content .title {
    font-size: 100px;
    max-width: 960px;
    margin-bottom: 30px;
  }
}

@media only screen and (max-width: 1199px) {
  .hero-3__inner .hero-3__content .title {
    font-size: 80px;
    max-width: 750px;
    line-height: 70px;
  }
}

@media only screen and (max-width: 991px) {
  .hero-3__inner .hero-3__content .title {
    font-size: 65px;
    max-width: 588px;
    line-height: 70px;
  }
}

@media only screen and (max-width: 767px) {
  .hero-3__inner .hero-3__content .title {
    font-size: 60px;
    line-height: 65px;
    letter-spacing: 0;
  }
}

@media (max-width: 575px) {
  .hero-3__inner .hero-3__content .title {
    font-size: 45px;
    margin-bottom: 30px;
    line-height: 50px;
  }
}

@media only screen and (max-width: 1199px) {
  .hero-3__inner .hero-3__content .title .shape-1 {
    max-width: 130px;
  }
}

@media (max-width: 575px) {
  .hero-3__inner .hero-3__content .title .shape-1 {
    max-width: 100px;
  }
}

.hero-3__inner .hero-3__content .title .video {
  height: 94px;
  width: 222px;
  display: block;
  border-radius: 500px;
  transform: translateY(-35px);
}

@media only screen and (max-width: 1199px) {
  .hero-3__inner .hero-3__content .title .video {
    height: 60px;
    width: 137px;
    transform: translateY(0px);
  }
}

@media only screen and (max-width: 991px) {
  .hero-3__inner .hero-3__content .title .video {
    height: 50px;
    width: 100px;
    transform: translateY(-14px);
  }
}

@media (max-width: 575px) {
  .hero-3__inner .hero-3__content .title .video {
    height: 35px;
    width: 75px;
  }
}

.hero-3__inner .hero-3__content .title .video img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 500px;
}

.hero-3__inner .hero-3__content .text-wrapper {
  position: relative;
}

@media only screen and (max-width: 1399px) {
  .hero-3__inner .hero-3__content .text-wrapper {
    margin-right: 15px;
  }
}

.hero-3__inner .hero-3__content .text-wrapper::before {
  top: 50%;
  left: 50%;
  content: "";
  width: 160px;
  height: 160px;
  position: absolute;
  border-radius: 500px;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

@media only screen and (max-width: 991px) {
  .hero-3__inner .hero-3__content .text-wrapper::before {
    width: 140px;
    height: 140px;
  }
}

@media (max-width: 575px) {
  .hero-3__inner .hero-3__content .text-wrapper::before {
    width: 100px;
    height: 100px;
  }
}

.hero-3__inner .hero-3__content .text-wrapper .rotate {
  max-width: 100px;
}

@media only screen and (max-width: 991px) {
  .hero-3__inner .hero-3__content .text-wrapper .rotate {
    max-width: 100px;
  }
}

@media (max-width: 575px) {
  .hero-3__inner .hero-3__content .text-wrapper .rotate {
    max-width: 70px;
  }
}

.hero-3__inner .hero-3__content .text-wrapper .arrow {
  top: 50%;
  left: 50%;
  position: absolute;
  transform: translate(-50%, -50%);
}

@media only screen and (max-width: 991px) {
  .hero-3__inner .hero-3__content .text-wrapper .arrow {
    max-width: 25px;
  }
}

@media (max-width: 575px) {
  .hero-3__inner .hero-3__content .text-wrapper .arrow {
    max-width: 15px;
  }
}

.hero-3__inner .hero-3__bottom .text-slider-active {
  padding-top: 105px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

@media only screen and (max-width: 1399px) {
  .hero-3__inner .hero-3__bottom .text-slider-active {
    padding-top: 30px;
  }
}

@media only screen and (max-width: 991px) {
  .hero-3__inner .hero-3__bottom .text-slider-active {
    padding-top: 60px;
  }
}

.hero-3__inner .hero-3__bottom .text-slider-active .swiper-slide {
  width: auto;
}

.hero-3__inner .hero-3__bottom .swiper-wrapper {
  transition-timing-function: linear !important;
}

.hero-3__inner .hero-3__bottom__item {
  gap: 18px;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
}

.hero-3__inner .hero-3__bottom__item .media {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
}

.hero-3__inner .hero-3__bottom__item .media::before {
  content: "";
  background: rgba(18, 18, 18, 0.5);
  width: 100%;
  height: 0;
  position: absolute;
  bottom: 0;
  left: 0;
  transition: all 0.3s;
}

.hero-3__inner .hero-3__bottom__item .media .icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  position: absolute;
  top: 50%;
  left: 50%;
  opacity: 0;
  z-index: 2;
  transform: translate(-50%, -50%);
  justify-content: center;
  background-color: var(--white);
  color: var(--black);
  border-radius: 500px;
  transition: all 0.3s;
}

.hero-3__inner .hero-3__bottom__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
  transition: transform 0.3s ease;
}

.hero-3__inner .hero-3__bottom__item span {
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  color: rgba(255, 255, 255, 0.6);
}

.hero-3__inner .hero-3__bottom__item:hover .media::before {
  height: 100%;
}

.hero-3__inner .hero-3__bottom__item:hover .media .icon {
  opacity: 1;
}

.hero-3__inner .hero-3__bottom__item:hover span {
  color: var(--white);
}

.about-3__inner {
  max-width: 1290px;
  margin-left: auto;
  margin-right: auto;
}

.about-3__inner .about-3__top {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 106px;
}

@media only screen and (max-width: 767px) {
  .about-3__inner .about-3__top {
    margin-bottom: 60px;
  }
}

.about-3__inner .about-3__top .media {
  margin-bottom: 80px;
}

@media only screen and (max-width: 991px) {
  .about-3__inner .about-3__top .media {
    margin-bottom: 60px;
    max-width: 100px;
  }
}

@media (max-width: 575px) {
  .about-3__inner .about-3__top .media {
    margin-bottom: 30px;
    max-width: 50px;
  }
}

.dark .about-3__inner .about-3__top .media .light-shape {
  display: none;
}

.about-3__inner .about-3__top .media .dark-shape {
  display: none;
}

.dark .about-3__inner .about-3__top .media .dark-shape {
  display: block;
}

.about-3__inner .about-3__top .title {
  max-width: 1259px;
  font-size: 50px;
  line-height: 60px;
  text-align: center;
  font-weight: 400;
  font-family: var(--font_kanit);
}

@media only screen and (max-width: 991px) {
  .about-3__inner .about-3__top .title {
    font-size: 35px;
    line-height: 40px;
  }
}

@media only screen and (max-width: 767px) {
  .about-3__inner .about-3__top .title {
    font-size: 30px;
    line-height: 40px;
  }
}

@media (max-width: 575px) {
  .about-3__inner .about-3__top .title {
    font-size: 25px;
    line-height: 30px;
  }
}

.about-3__inner .about-3__top .text-invert>div {
  background-image: linear-gradient(to right, var(--secondary-2) 50%, rgba(18, 18, 18, 0.6) 50%);
  background-size: 200% 100%;
  background-position-x: 100%;
  color: transparent;
  background-clip: text;
  -webkit-background-clip: text;
}

.dark .about-3__inner .about-3__top .text-invert>div {
  background-image: linear-gradient(to right, #FFFFFF 50%, rgba(255, 255, 255, 0.3) 50%);
}

.about-3__inner .about-3__wrapper {
  gap: 30px;
  display: grid;
  align-items: center;
  grid-template-columns: 738px 1fr;
}

@media only screen and (max-width: 1399px) {
  .about-3__inner .about-3__wrapper {
    grid-template-columns: 612px 1fr;
  }
}

@media only screen and (max-width: 1199px) {
  .about-3__inner .about-3__wrapper {
    grid-template-columns: 1fr;
  }
}

.about-3__inner .about-3__content {
  display: grid;
  background: #F5F5F5;
  border-radius: 14px;
  padding: 50px;
  gap: 20px 100px;
  grid-template-columns: repeat(2, 1fr);
  position: relative;
}

.dark .about-3__inner .about-3__content {
  background: #1B1B1B;
}

@media only screen and (max-width: 1399px) {
  .about-3__inner .about-3__content {
    padding: 50px 30px;
  }
}

@media only screen and (max-width: 991px) {
  .about-3__inner .about-3__content {
    padding: 30px 30px;
    gap: 20px 60px;
  }
}

@media only screen and (max-width: 767px) {
  .about-3__inner .about-3__content {
    padding: 30px 20px;
    gap: 20px 30px;
  }
}

@media (max-width: 575px) {
  .about-3__inner .about-3__content {
    grid-template-columns: 1fr;
  }
}

.about-3__inner .about-3__content::before {
  content: "";
  position: absolute;
  right: 50%;
  top: 0;
  bottom: 0;
  width: 1px;
  height: 100%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.36) 10%, rgba(18, 18, 18, 0.36) 50%, rgba(255, 255, 255, 0.36) 94.23%);
}

@media (max-width: 575px) {
  .about-3__inner .about-3__content::before {
    display: none;
  }
}

.dark .about-3__inner .about-3__content::before {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.36) 10%, rgba(18, 18, 18, 0.36) 50%, rgba(255, 255, 255, 0.36) 94.23%);
}

.about-3__inner .about-3__content .sub-title {
  color: var(--secondary-2);
}

.dark .about-3__inner .about-3__content .sub-title {
  color: var(--white);
}

.about-3__inner .about-3__info .title {
  font-weight: 600;
  font-size: 60px;
  line-height: 44px;
  font-family: var(--font_kanit);
  margin-bottom: 70px;
}

.dark .about-3__inner .about-3__info .title {
  color: var(--white);
}

@media only screen and (max-width: 991px) {
  .about-3__inner .about-3__info .title {
    margin-bottom: 30px;
  }
}

.about-3__inner .about-3__info .odometer.odometer-auto-theme,
.about-3__inner .about-3__info .odometer.odometer-theme-default {
  font-family: var(--font_kanit);
  line-height: 44px;
}

.about-3__inner .about-3__info .sub-title {
  font-weight: 500;
  font-size: 18px;
  line-height: 20px;
  margin-bottom: 16px;
  font-family: var(--font_kanit);
}

.dark .about-3__inner .about-3__info .sub-title {
  color: var(--white);
}

@media only screen and (max-width: 991px) {
  .about-3__inner .about-3__info .sub-title {
    margin-bottom: 5px;
  }
}

.about-3__inner .about-3__info p {
  font-size: 16px;
  line-height: 22px;
  color: rgba(18, 18, 18, 0.6);
}

.dark .about-3__inner .about-3__info p {
  color: rgba(255, 255, 255, 0.6);
}

.about-3__inner .about-3__info ul {
  list-style: none;
  display: flex;
  margin-top: 50px;
  align-items: center;
}

@media only screen and (max-width: 991px) {
  .about-3__inner .about-3__info ul {
    margin-top: 30px;
  }
}

.about-3__inner .about-3__info ul li {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  border-radius: 500px;
  overflow: hidden;
  border: 2px solid var(--white);
}

.about-3__inner .about-3__info ul li:not(:first-child) {
  margin-left: -20px;
}

.about-3__inner .about-3__info ul li img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-3__inner .about-3__text .media {
  overflow: hidden;
  border-radius: 6px;
  width: 80px;
  margin-bottom: 35px;
}

.about-3__inner .about-3__text .media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-3__inner .about-3__text .title {
  font-size: 24px;
  line-height: 30px;
  font-family: var(--font_kanit);
  font-weight: 500;
  margin-bottom: 60px;
}

.dark .about-3__inner .about-3__text .title {
  color: var(--white);
}

@media only screen and (max-width: 991px) {
  .about-3__inner .about-3__text .title {
    margin-bottom: 30px;
  }
}

.dark .about-3__inner .about-3__text .rr-btn-primary {
  background: var(--white);
  color: var(--secondary);
}

.about-3__inner .about-3__media {
  overflow: hidden;
  border-radius: 16px;
  position: relative;
}

@media only screen and (max-width: 1199px) {
  .about-3__inner .about-3__media {
    height: 500px;
  }
}

@media only screen and (max-width: 991px) {
  .about-3__inner .about-3__media {
    height: 400px;
  }
}

@media (max-width: 575px) {
  .about-3__inner .about-3__media {
    height: 300px;
  }
}

.about-3__inner .about-3__media::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(18, 18, 18, 0) 30.09%, var(--secondary-2) 100%);
}

.about-3__inner .about-3__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-3__inner .about-3__media .text {
  position: absolute;
  left: 40px;
  bottom: 50px;
}

@media (max-width: 575px) {
  .about-3__inner .about-3__media .text {
    left: 10px;
    bottom: 10px;
  }
}

.about-3__inner .about-3__media .text .title {
  font-weight: 600;
  font-size: 40px;
  line-height: 44px;
  font-family: var(--font_kanit);
  margin-bottom: 4px;
  color: var(--white);
}

.about-3__inner .about-3__media .text .odometer.odometer-auto-theme,
.about-3__inner .about-3__media .text .odometer.odometer-theme-default {
  font-family: var(--font_kanit);
  line-height: 44px;
}

.about-3__inner .about-3__media .text .sub-title {
  font-size: 24px;
  line-height: 30px;
  font-family: var(--font_kanit);
  color: var(--white);
  font-weight: 500;
}

.service-3-bg {
  background: #F5F5F5;
}

.dark .service-3-bg {
  background: #1B1B1B;
}

.dark .service-3-bg .section-title-3__wrapper .sub-title .text {
  color: var(--white);
  border-color: var(--border);
}

.dark .service-3-bg .section-title-3__wrapper .sub-title .number {
  background: var(--white);
  color: var(--secondary-2);
}

.dark .service-3-bg .section-title-3__wrapper .title {
  color: var(--white);
}

.dark .service-3-bg .section-title-3__wrapper .rr-btn-primary {
  background: var(--white);
  color: var(--secondary);
}

.service-3__wrapper {
  border-top: 1px solid rgba(18, 18, 18, 0.1);
}

.service-3__wrapper .service-3__item {
  display: grid;
  align-items: center;
  padding: 0 120px;
  transition: all 0.5s;
  border-bottom: 1px solid rgba(18, 18, 18, 0.1);
  grid-template-columns: 195px 380px 639px 464px;
}

@media only screen and (max-width: 1919px) {
  .service-3__wrapper .service-3__item {
    padding: 0 10px;
    grid-template-columns: 195px 340px 480px auto;
  }
}

@media only screen and (max-width: 1399px) {
  .service-3__wrapper .service-3__item {
    grid-template-columns: 100px 324px 452px auto;
  }
}

@media only screen and (max-width: 1199px) {
  .service-3__wrapper .service-3__item {
    grid-template-columns: repeat(2, auto);
    gap: 20px;
    padding: 10px;
  }
}

@media (max-width: 575px) {
  .service-3__wrapper .service-3__item {
    grid-template-columns: 1fr;
  }
}

.service-3__wrapper .service-3__item:hover,
.service-3__wrapper .service-3__item.active {
  background: rgba(18, 18, 18, 0.06);
}

.dark .service-3__wrapper .service-3__item:hover,
.dark .service-3__wrapper .service-3__item.active {
  background: rgba(255, 255, 255, 0.06);
}

.service-3__wrapper .service-3__item:hover p,
.service-3__wrapper .service-3__item.active p {
  opacity: 1;
}

.service-3__wrapper .service-3__item:hover .thumb img,
.service-3__wrapper .service-3__item.active .thumb img {
  opacity: 1;
  transform: scale(1) !important;
}

.service-3__wrapper .service-3__item span {
  padding: 46px 0px;
  font-weight: 500;
  font-size: 20px;
  line-height: 30px;
  color: var(--secondary-2);
  opacity: 0.4;
  height: 100%;
  display: inline-block;
  border-right: 1px solid rgba(18, 18, 18, 0.1);
  font-family: var(--font_kanit);
}

.dark .service-3__wrapper .service-3__item span {
  color: var(--white);
}

@media only screen and (max-width: 1199px) {
  .service-3__wrapper .service-3__item span {
    padding: 0;
    border: none;
  }
}

.service-3__wrapper .service-3__item .title {
  font-weight: 500;
  font-size: 30px;
  color: var(--secondary-2);
  line-height: 30px;
  padding: 47px 0px 0px 43px;
  height: 100%;
  text-transform: uppercase;
  font-family: var(--font_kanit);
  border-right: 1px solid rgba(18, 18, 18, 0.1);
}

.dark .service-3__wrapper .service-3__item .title {
  color: var(--white);
}

@media only screen and (max-width: 1199px) {
  .service-3__wrapper .service-3__item .title {
    padding: 0;
    border: none;
  }
}

.service-3__wrapper .service-3__item p {
  font-weight: 400;
  font-size: 18px;
  line-height: 26px;
  color: var(--secondary-2);
  opacity: 0.6;
  padding: 36px 0px 0px 43px;
  height: 100%;
  transition: all 0.5s;
  font-family: var(--font_kanit);
  border-right: 1px solid rgba(18, 18, 18, 0.1);
}

.dark .service-3__wrapper .service-3__item p {
  color: var(--white);
}

@media only screen and (max-width: 1199px) {
  .service-3__wrapper .service-3__item p {
    padding: 0;
    border: none;
  }
}

.service-3__wrapper .service-3__item .thumb {
  display: flex;
  gap: 10px;
  justify-self: end;
}

@media only screen and (max-width: 1199px) {
  .service-3__wrapper .service-3__item .thumb {
    justify-self: start;
  }
}

.service-3__wrapper .service-3__item .thumb img {
  width: 90px;
  height: 80px;
  object-fit: cover;
  opacity: 0;
  border-radius: 10px;
  transform: scale(0) !important;
  transition: all 0.5s;
}

@media only screen and (max-width: 767px) {
  .service-3__wrapper .service-3__item .thumb img {
    width: 70px;
    height: 70px;
  }
}

.projects-3 .section-title-3__wrapper {
  margin-bottom: 0;
  text-align: center;
  justify-content: center;
  padding: 254px 0;
}

@media only screen and (max-width: 1199px) {
  .projects-3 .section-title-3__wrapper {
    padding: 150px 0;
  }
}

@media only screen and (max-width: 991px) {
  .projects-3 .section-title-3__wrapper {
    padding: 100px 0;
  }
}

@media only screen and (max-width: 767px) {
  .projects-3 .section-title-3__wrapper {
    padding: 60px 0;
  }
}

.projects-3 .section-title-3__wrapper .title {
  font-weight: 600;
  font-size: 220px;
  line-height: 220px;
  text-align: center;
  letter-spacing: -2.2px;
  text-transform: uppercase;
  color: var(--secondary-2);
  font-family: var(--font_kanit);
}

.dark .projects-3 .section-title-3__wrapper .title {
  color: var(--white);
}

@media only screen and (max-width: 1399px) {
  .projects-3 .section-title-3__wrapper .title {
    font-size: 180px;
    line-height: 180px;
  }
}

@media only screen and (max-width: 1199px) {
  .projects-3 .section-title-3__wrapper .title {
    font-size: 150px;
    line-height: 150px;
  }
}

@media only screen and (max-width: 991px) {
  .projects-3 .section-title-3__wrapper .title {
    font-size: 100px;
    line-height: 100px;
  }
}

@media only screen and (max-width: 767px) {
  .projects-3 .section-title-3__wrapper .title {
    font-size: 70px;
    line-height: 70px;
  }
}

@media (max-width: 575px) {
  .projects-3 .section-title-3__wrapper .title {
    font-size: 50px;
    line-height: 50px;
    letter-spacing: 0;
  }
}

.projects-3__wrapper {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 120px;
}

@media only screen and (max-width: 1919px) {
  .projects-3__wrapper {
    gap: 100px;
  }
}

@media only screen and (max-width: 1399px) {
  .projects-3__wrapper {
    gap: 50px;
  }
}

@media only screen and (max-width: 767px) {
  .projects-3__wrapper {
    gap: 30px 20px;
  }
}

@media (max-width: 575px) {
  .projects-3__wrapper {
    grid-template-columns: 1fr;
  }
}

.dark .projects-3 .light-bg {
  display: none;
}

.projects-3 .dark-bg {
  display: none;
}

.dark .projects-3 .dark-bg {
  display: block;
}

.projects-3__bg {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  z-index: -1;
  background-size: cover;
  background-position: center center;
}

.projects-3__item {
  position: relative;
  overflow: hidden;
}

.projects-3__item:nth-child(1) {
  grid-column: span 1;
  width: 580px;
}

@media only screen and (max-width: 1919px) {
  .projects-3__item:nth-child(1) {
    width: 100%;
  }
}

@media (max-width: 575px) {
  .projects-3__item:nth-child(1) {
    grid-column: auto;
  }
}

.projects-3__item:nth-child(2) {
  grid-column: span 1;
  width: 980px;
}

@media only screen and (max-width: 1919px) {
  .projects-3__item:nth-child(2) {
    width: 100%;
  }
}

.projects-3__item:nth-child(3) {
  grid-column: span 2;
}

@media (max-width: 575px) {
  .projects-3__item:nth-child(3) {
    grid-column: auto;
    width: 100%;
  }
}

.projects-3__item:nth-child(4) {
  grid-column: span 1;
}

.projects-3__item:nth-child(5) {
  grid-column: span 1;
}

.projects-3__item:nth-child(6) {
  margin-right: -480px;
  grid-column: span 1;
}

@media only screen and (max-width: 1919px) {
  .projects-3__item:nth-child(6) {
    margin-right: 0;
  }
}

.projects-3__item:nth-child(7) {
  grid-column: span 1;
  margin-left: 440px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@media only screen and (max-width: 1919px) {
  .projects-3__item:nth-child(7) {
    margin-left: 0;
  }
}

.projects-3__item:nth-child(7) .title {
  color: var(--white);
  font-size: 50px;
  margin-top: -80px;
  line-height: 60px;
  font-weight: 500;
  margin-bottom: 50px;
}

@media only screen and (max-width: 991px) {
  .projects-3__item:nth-child(7) .title {
    font-size: 35px;
    line-height: 40px;
    margin-bottom: 30px;
  }
}

@media only screen and (max-width: 767px) {
  .projects-3__item:nth-child(7) .title {
    font-size: 30px;
    line-height: 30px;
    margin-bottom: 20px;
  }
}

@media (max-width: 575px) {
  .projects-3__item:nth-child(7) .title {
    margin-top: 0;
  }
}

.projects-3__item:nth-child(7) .rr-btn-primary {
  background-color: var(--white);
  color: var(--secondary-2);
}

.projects-3__item:nth-child(7) .rr-btn-primary:hover {
  background-color: var(--primary);
}

.projects-3__item:nth-child(7) .rr-btn-circle {
  background-color: var(--white);
  color: var(--black);
}

.dark .projects-3__item:nth-child(7) .rr-btn-circle {
  background-color: var(--white);
  color: var(--black);
}

.projects-3__item:nth-child(7) .rr-btn-circle:hover {
  background-color: var(--primary);
}

.projects-3__media {
  width: 100%;
  overflow: hidden;
  position: relative;
  border-radius: 16px;
}

.projects-3__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.projects-3__content {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: nowrap;
  justify-content: space-between;
}

.projects-3__content .text {
  margin-top: 23px;
}

.projects-3__content .text .title {
  font-weight: 500;
  font-size: 20px;
  line-height: 30px;
  color: var(--white);
  margin-bottom: 5px;
  font-family: var(--font_kanit);
}

.projects-3__content .text .yeer {
  font-weight: 400;
  font-size: 18px;
  line-height: 26px;
  display: inline-block;
  color: rgba(255, 255, 255, 0.6);
  font-family: var(--font_kanit);
}

.projects-3__content a {
  color: var(--white);
}

.team-3 .section-title-3__wrapper {
  margin-bottom: 140px;
}

@media only screen and (max-width: 1199px) {
  .team-3 .section-title-3__wrapper {
    margin-bottom: 100px;
  }
}

@media only screen and (max-width: 991px) {
  .team-3 .section-title-3__wrapper {
    margin-bottom: 60px;
  }
}

.dark .team-3 .section-title-3__wrapper .sub-title .text {
  color: var(--white);
  border-color: var(--border);
}

.dark .team-3 .section-title-3__wrapper .sub-title .number {
  background: var(--white);
  color: var(--secondary-2);
}

.dark .team-3 .section-title-3__wrapper .title {
  color: var(--white);
}

.team-3 .section-title-3__wrapper p {
  font-weight: 400;
  font-size: 18px;
  line-height: 26px;
  max-width: 404px;
  color: rgba(18, 18, 18, 0.7);
  font-family: var(--font_kanit);
}

.dark .team-3 .section-title-3__wrapper p {
  color: rgba(255, 255, 255, 0.7);
}

.team-3__wrapper {
  display: grid;
  gap: 100px 30px;
  grid-template-columns: repeat(4, 1fr);
}

@media only screen and (max-width: 1199px) {
  .team-3__wrapper {
    gap: 50px 30px;
  }
}

@media only screen and (max-width: 991px) {
  .team-3__wrapper {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media only screen and (max-width: 767px) {
  .team-3__wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 575px) {
  .team-3__wrapper {
    grid-template-columns: 1fr;
  }
}

.team-3__item:nth-child(1) {
  grid-column-start: 2;
}

@media only screen and (max-width: 991px) {
  .team-3__item:nth-child(1) {
    grid-column-start: auto;
  }
}

.team-3__item:nth-child(5) {
  grid-column-start: 3;
}

@media only screen and (max-width: 991px) {
  .team-3__item:nth-child(5) {
    grid-column-start: auto;
  }
}

.team-3__item:hover .team-3__media::before {
  height: 100%;
}

.team-3__item:hover .team-3__socail-meida {
  opacity: 1;
  top: 50%;
  transform: translate(-50%, -50%);
}

.team-3__icon {
  min-height: calc(100% - 85px);
  background: #F5F5F5;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 575px) {
  .team-3__icon {
    min-height: auto;
    padding: 50px 20px;
  }
}

.team-3__media {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
}

.team-3__media::before {
  content: "";
  background: rgba(18, 18, 18, 0.6);
  width: 100%;
  height: 0%;
  position: absolute;
  left: 0;
  bottom: 0;
  transition: all 0.3s;
}

.dark .team-3__media::before {
  background: rgba(255, 255, 255, 0.3);
}

.team-3__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-3__socail-meida {
  list-style: none;
  position: absolute;
  top: 50%;
  left: 50%;
  gap: 3px;
  transform: translate(-50%, 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  opacity: 0;
}

.team-3__socail-meida li a {
  font-size: 14px;
  line-height: 1;
  color: var(--secondary-2);
  border-radius: 500px;
  font-family: var(--font_kanit);
}

.team-3__socail-meida li a span {
  background: var(--white);
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 500px;
  transition: all 0.3s;
}

.team-3__socail-meida li a span:hover {
  background: var(--primary);
}

.team-3__socail-meida li:last-child a {
  background: var(--white);
  transition: all 0.3s;
  padding: 5px 16px;
}

.team-3__socail-meida li:last-child a:hover {
  background: var(--primary);
}

.team-3__content {
  margin-top: 14px;
}

.team-3__content .title {
  font-weight: 500;
  font-size: 26px;
  line-height: 36px;
  margin-bottom: 4px;
  color: var(--secondary-2);
  font-family: var(--font_kanit);
}

.dark .team-3__content .title {
  color: var(--white);
}

.team-3__content .title.sm-title {
  font-weight: 400;
  font-size: 26px;
  line-height: 30px;
  color: #121212;
}

.team-3__content .des {
  font-size: 18px;
  line-height: 28px;
  display: inline-block;
  color: rgba(18, 18, 18, 0.7);
}

.dark .team-3__content .des {
  color: rgba(255, 255, 255, 0.7);
}

.dark .testimonial-3__dark-bg {
  background: var(--secondary-2);
}

.testimonial-3 .section-title-3__wrapper {
  justify-content: center;
  text-align: center;
}

@media only screen and (max-width: 991px) {
  .testimonial-3 .section-title-3__wrapper {
    margin-bottom: 60px;
  }
}

.dark .testimonial-3 .section-title-3__wrapper .sub-title .text {
  color: var(--white);
  border-color: var(--border);
}

.dark .testimonial-3 .section-title-3__wrapper .sub-title .number {
  background: var(--white);
  color: var(--secondary-2);
}

.dark .testimonial-3 .section-title-3__wrapper .title {
  color: var(--white);
}

.testimonial-3__active {
  margin: 0px -250px;
  padding-bottom: 70px;
}

@media (max-width: 575px) {
  .testimonial-3__active {
    margin: 0px;
  }
}

.testimonial-3 .swiper-slide-active .testimonial-3__item {
  opacity: 1;
}

.testimonial-3__item {
  padding: 54px 60px;
  border-radius: 14px;
  background: var(--white);
  box-shadow: 0px 24px 50px rgba(18, 18, 18, 0.06);
  opacity: 60%;
}

.dark .testimonial-3__item {
  background: rgba(255, 255, 255, 0.06);
}

@media only screen and (max-width: 1919px) {
  .testimonial-3__item {
    padding: 54px 30px;
  }
}

@media only screen and (max-width: 991px) {
  .testimonial-3__item {
    padding: 30px 30px;
  }
}

.testimonial-3__wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media (max-width: 575px) {
  .testimonial-3__wrapper {
    flex-wrap: wrap;
    gap: 10px;
  }
}

.testimonial-3__wrapper .author {
  display: flex;
  gap: 16px;
}

.testimonial-3__wrapper .author .media {
  width: 60px;
  height: 60px;
  display: flex;
  border-radius: 4px;
  overflow: hidden;
}

.testimonial-3__wrapper .author .media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-3__wrapper .author .text .name {
  font-size: 26px;
  line-height: 30px;
  margin-bottom: 8px;
}

.dark .testimonial-3__wrapper .author .text .name {
  color: var(--white);
}

.testimonial-3__wrapper .author .text span {
  display: inline-block;
  color: rgba(18, 18, 18, 0.7);
}

.dark .testimonial-3__wrapper .author .text span {
  color: rgba(255, 255, 255, 0.7);
}

.testimonial-3__wrapper .rating {
  display: flex;
  align-items: center;
  gap: 8px;
}

.testimonial-3__wrapper .rating i {
  color: #FFA000;
}

.testimonial-3__text {
  gap: 34px;
  display: flex;
  margin-top: 65px;
}

@media (max-width: 575px) {
  .testimonial-3__text {
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 30px;
  }
}

.dark .testimonial-3__text .light-icon {
  display: none;
}

.testimonial-3__text .dark-icon {
  display: none;
}

.dark .testimonial-3__text .dark-icon {
  display: block;
}

.testimonial-3__text .desc {
  font-size: 20px;
  line-height: 34px;
  color: rgba(18, 18, 18, 0.6);
}

.dark .testimonial-3__text .desc {
  color: rgba(255, 255, 255, 0.6);
}

.gallery {
  width: 100%;
  width: 350px;
  margin-left: auto;
  margin-right: auto;
  overflow: hidden;
}

@media (max-width: 575px) {
  .gallery {
    width: 240px;
  }
}

.gallery-slider {
  width: 100%;
  height: auto;
  margin: 0 0 10px 0;
}

.gallery-slider .swiper-slide {
  width: auto;
  height: 400px;
}

.gallery-slider .swiper-slide img {
  display: block;
  width: auto;
  height: 100%;
  margin: 0 auto;
}

.gallery-thumbs {
  width: 100%;
  padding: 12px 0 70px;
  overflow: hidden;
}

.gallery-thumbs .swiper-slide {
  width: 54px;
  height: 54px;
  border-radius: 500px;
  text-align: center;
  position: relative;
}

.gallery-thumbs .swiper-slide::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 74px;
  height: 74px;
  border-radius: 500px;
  border: 1px solid transparent;
  transform: translate(-50%, -50%);
}

.gallery-thumbs .swiper-slide .tooltip {
  position: absolute;
  bottom: -55px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--secondary-2);
  color: var(--white);
  padding: 3px 22px;
  border-radius: 4px;
  font-size: 16px;
  font-weight: 500;
  font-family: var(--font_kanit);
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.dark .gallery-thumbs .swiper-slide .tooltip {
  background: rgba(255, 255, 255, 0.06);
}

.gallery-thumbs .swiper-slide .tooltip .arrow {
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  z-index: -1;
  border-radius: 4px;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 10px solid var(--secondary-2);
}

.dark .gallery-thumbs .swiper-slide .tooltip .arrow {
  top: -10px;
  border-bottom-color: rgba(255, 255, 255, 0.06);
}

.gallery-thumbs .swiper-slide-active {
  opacity: 1;
}

.gallery-thumbs .swiper-slide-active::before {
  border-color: var(--secondary-2);
}

.dark .gallery-thumbs .swiper-slide-active::before {
  border-color: rgba(255, 255, 255, 0.06);
}

.gallery-thumbs .swiper-slide-active .tooltip {
  opacity: 1;
  visibility: visible;
}

.gallery-thumbs .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 500px;
}

/* circular shape area style  */
.circular-shape-wrapper {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.circular-shape-wrapper .bg-shape img {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  z-index: -1;
  height: 100%;
  object-fit: cover;
  position: absolute;
  background-position: center center;
}

.dark .circular-shape-wrapper .light-shape {
  display: none;
}

.circular-shape-wrapper .dark-shape {
  display: none;
}

.dark .circular-shape-wrapper .dark-shape {
  display: block;
}

.circular-shape-wrapper .shape-thumb img {
  transform: scale(1) rotate(0);
  opacity: 0.9;
}

.dark .circular-shape-wrapper .shape-thumb .light {
  display: none;
}

.circular-shape-wrapper .shape-thumb .dark {
  display: none;
}

.dark .circular-shape-wrapper .shape-thumb .dark {
  display: block;
}

.blog-3 .section-title-3__wrapper {
  display: block;
  margin-bottom: 60px;
}

.blog-3 .section-title-3__wrapper .title {
  margin-bottom: 30px;
}

.dark .blog-3 .section-title-3__wrapper .title {
  color: var(--white);
}

.blog-3 .section-title-3__wrapper p {
  font-weight: 400;
  font-size: 18px;
  line-height: 26px;
  margin: 0 auto;
  max-width: 705px;
  color: rgba(18, 18, 18, 0.7);
  font-family: var(--font_kanit);
}

.dark .blog-3 .section-title-3__wrapper p {
  color: rgba(255, 255, 255, 0.7);
}

.blog-3__item {
  gap: 50px;
  display: grid;
  padding: 10px;
  align-items: center;
  border-radius: 10px;
  border: 1px solid rgba(18, 18, 18, 0.14);
  grid-template-columns: 680px 693px auto;
  overflow: hidden;
}

.dark .blog-3__item {
  border-color: rgba(255, 255, 255, 0.14);
}

.blog-3__item:not(:last-child) {
  margin-bottom: 30px;
}

@media only screen and (max-width: 1919px) {
  .blog-3__item {
    grid-template-columns: 565px 550px auto;
  }
}

@media only screen and (max-width: 1399px) {
  .blog-3__item {
    grid-template-columns: 460px 380px auto;
  }
}

@media only screen and (max-width: 1199px) {
  .blog-3__item {
    gap: 30px;
    grid-template-columns: 368px 357px auto;
  }
}

@media only screen and (max-width: 991px) {
  .blog-3__item {
    grid-template-columns: 1fr;
  }
}

.blog-3__item .media {
  overflow: hidden;
  border-radius: 10px;
  transition: all 0.4s ease;
  height: 100px;
}

.blog-3__item .media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-3__item .content .meta-list {
  gap: 10px;
  display: flex;
  list-style: none;
  flex-wrap: wrap;
  align-items: center;
}

.blog-3__item .content .meta-list li {
  color: var(--secondary-2);
  padding: 7px 20px;
  border-radius: 6px;
  border: 1px solid rgba(18, 18, 18, 0.14);
}

.dark .blog-3__item .content .meta-list li {
  border-color: rgba(255, 255, 255, 0.14);
  color: var(--white);
}

.blog-3__item .content .title {
  color: var(--secondary-2);
  font-size: 36px;
  font-weight: 500;
  margin-top: 27px;
  line-height: 40px;
  display: none;
  max-width: 568px;
  transition: all 0.4s ease;
  font-family: var(--font_kanit);
}

.dark .blog-3__item .content .title {
  color: var(--white);
}

@media only screen and (max-width: 1399px) {
  .blog-3__item .content .title {
    font-size: 30px;
    line-height: 30px;
  }
}

@media (max-width: 575px) {
  .blog-3__item .content .title {
    font-size: 25px;
    line-height: 30px;
  }
}

.blog-3__item .content .author {
  gap: 16px;
  display: flex;
  margin-top: 70px;
  display: none;
  transition: all 0.4s ease;
}

@media only screen and (max-width: 1399px) {
  .blog-3__item .content .author {
    margin-top: 40px;
  }
}

.blog-3__item .content .author .thumb {
  width: 60px;
  height: 60px;
  border-radius: 6px;
  overflow: hidden;
}

.blog-3__item .content .author .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-3__item .content .author .text .name {
  font-size: 20px;
  line-height: 30px;
  font-weight: 500;
  margin-bottom: 4px;
  font-family: var(--font_kanit);
}

.dark .blog-3__item .content .author .text .name {
  color: var(--white);
}

.dark .blog-3__item .content .author .text span {
  color: rgba(255, 255, 255, 0.7);
}

.blog-3__item .rr-btn a {
  gap: 12px;
  display: inline-flex;
  font-size: 16px;
  color: var(--secondary-2);
  font-weight: 400;
  line-height: 26px;
  padding: 11px 29px;
  align-items: center;
  border-radius: 500px;
  justify-content: center;
  font-family: var(--font_kanit);
  border: 1px solid rgba(18, 18, 18, 0.14);
}

.blog-3__item .rr-btn a span {
  width: 6px;
  height: 6px;
  border-radius: 500px;
  display: inline-block;
  background: var(--secondary-2);
}

.blog-3__item.active {
  border-color: transparent;
  background: #F5F5F5;
}

.dark .blog-3__item.active {
  background: #1B1B1B;
}

.blog-3__item.active .title {
  display: block;
}

.blog-3__item.active .author {
  display: flex;
}

.blog-3__item.active .media {
  height: 360px;
}

@media only screen and (max-width: 1399px) {
  .blog-3__item.active .media {
    height: 255px;
  }
}

.blog-3__item.active .rr-btn a {
  background: var(--secondary-2);
  color: var(--white);
}

.dark .blog-3__item.active .rr-btn a {
  background: var(--white);
  color: var(--secondary-2);
}

.blog-3__item.active .rr-btn a span {
  background: var(--white);
}

.dark .blog-3__item.active .rr-btn a span {
  background: var(--secondary-2);
}

/* image reveal hover page css */
.awards-3 .section-title-3__wrapper {
  margin-bottom: 120px;
}

@media only screen and (max-width: 1199px) {
  .awards-3 .section-title-3__wrapper {
    flex-wrap: wrap;
    margin-bottom: 100px;
  }
}

@media only screen and (max-width: 1199px) {
  .awards-3 .section-title-3__wrapper {
    flex-wrap: wrap;
    margin-bottom: 60px;
  }
}

.awards-3 .section-title-3__wrapper .sub-title {
  color: var(--white);
}

.dark .awards-3 .section-title-3__wrapper .sub-title {
  color: var(--secondary-2);
}

.awards-3 .section-title-3__wrapper .sub-title .text {
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.dark .awards-3 .section-title-3__wrapper .sub-title .text {
  border-color: var(--secondary-2);
  color: var(--black);
}

.awards-3 .section-title-3__wrapper .sub-title .number {
  color: var(--white);
}

.awards-3 .section-title-3__wrapper .title {
  color: var(--white);
}

.dark .awards-3 .section-title-3__wrapper .title {
  color: var(--secondary-2);
}

.dark .awards-3__dark-bg {
  background: var(--white);
}

.awards-3 .awards-3-inner {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  position: relative;
}

.dark .awards-3 .awards-3-inner {
  border-color: rgba(18, 18, 18, 0.14);
}

.awards-3 .awards-3-item {
  padding: 32px 26px;
  display: grid;
  cursor: pointer;
  position: relative;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  grid-template-columns: 512px 653px 440px 1fr;
}

.dark .awards-3 .awards-3-item {
  border-color: rgba(18, 18, 18, 0.14);
}

@media only screen and (max-width: 1919px) {
  .awards-3 .awards-3-item {
    grid-template-columns: 496px 520px 323px 1fr;
  }
}

@media only screen and (max-width: 1399px) {
  .awards-3 .awards-3-item {
    grid-template-columns: 330px 430px 323px 1fr;
  }
}

@media only screen and (max-width: 1199px) {
  .awards-3 .awards-3-item {
    grid-template-columns: 284px 320px 276px 1fr;
  }
}

@media only screen and (max-width: 991px) {
  .awards-3 .awards-3-item {
    grid-template-columns: 206px 260px 220px 1fr;
    padding: 20px 10px;
  }
}

@media only screen and (max-width: 767px) {
  .awards-3 .awards-3-item {
    grid-template-columns: 1fr;
    padding-bottom: 20px;
    gap: 20px;
  }
}

.awards-3 .awards-3-item span {
  font-size: 20px;
  font-weight: 400;
  line-height: 30px;
  display: inline-block;
  color: var(--white);
  letter-spacing: -0.7px;
  text-transform: uppercase;
  font-family: var(--font_kanit);
  z-index: 1;
  position: relative;
  transition: all 0.3s;
}

.dark .awards-3 .awards-3-item span {
  color: var(--secondary-2);
}

.awards-3 .awards-3-item .title {
  font-size: 20px;
  font-weight: 400;
  line-height: 30px;
  display: inline-block;
  color: var(--white);
  letter-spacing: -0.7px;
  text-transform: uppercase;
  font-family: var(--font_kanit);
  z-index: 1;
  position: relative;
  transition: all 0.3s;
}

.dark .awards-3 .awards-3-item .title {
  color: var(--secondary-2);
}

.awards-3 .awards-3-item p {
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
  color: rgba(255, 255, 255, 0.7);
  z-index: 1;
  position: relative;
}

.dark .awards-3 .awards-3-item p {
  color: var(--secondary-2);
}

.awards-3 .awards-3-item .arrow {
  color: var(--white);
}

.dark .awards-3 .awards-3-item .arrow {
  color: var(--secondary-2);
}

.awards-3 .hover-image {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  z-index: 99;
  width: 300px;
  height: 400px;
  overflow: hidden;
  border-radius: 10px;
  pointer-events: none;
  will-change: transform;
  transform: translate(0%, 0%) scale(0);
}

.awards-3 .hover-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
}

.awards-3 .active-bg {
  left: 0;
  right: 0;
  z-index: 0;
  height: 0;
  opacity: 0;
  position: absolute;
  pointer-events: none;
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(0);
  border-radius: 10px;
  transform-origin: top center;
  transition: transform 0.4s ease, height 0.4s ease, opacity 0.4s ease;
}

.dark .awards-3 .active-bg {
  background-color: rgba(18, 18, 18, 0.1);
}

/* === (index 04) === */
.hero-4__wrapper {
  position: relative;
  background: #101010;
  z-index: 1;
}

.hero-4__shape {
  position: absolute;
  top: 17%;
  left: -20%;
}

@media only screen and (max-width: 1399px) {
  .hero-4__shape {
    display: none;
  }
}

.hero-4__wrap {
  display: flex;
  margin: 0 auto;
  padding-top: 62px;
  max-width: 1600px;
  align-items: center;
  justify-content: space-between;
}

@media only screen and (max-width: 1919px) {
  .hero-4__wrap {
    max-width: 1200px;
  }
}

@media (max-width: 575px) {
  .hero-4__wrap {
    flex-wrap: wrap;
  }
}

.hero-4__thumb {
  position: relative;
  z-index: 2;
}

@media only screen and (max-width: 1199px) {
  .hero-4__thumb {
    max-width: 700px;
  }
}

@media only screen and (max-width: 991px) {
  .hero-4__thumb {
    max-width: 500px;
  }
}

@media only screen and (max-width: 767px) {
  .hero-4__thumb {
    max-width: 350px;
  }
}

.hero-4__list {
  margin-bottom: 345px;
}

@media only screen and (max-width: 1399px) {
  .hero-4__list {
    margin-right: 45px;
  }
}

@media only screen and (max-width: 991px) {
  .hero-4__list {
    margin-bottom: 250px;
  }
}

@media only screen and (max-width: 767px) {
  .hero-4__list {
    margin-bottom: 150px;
  }
}

@media (max-width: 575px) {
  .hero-4__list {
    margin-bottom: 178px;
    margin-right: 0;
    margin-left: 15px;
  }
}

.hero-4__list li {
  list-style: none;
  font-family: var(--font_kanit);
  font-size: 20px;
  font-weight: 400;
  line-height: 34px;
  color: var(--white);
  text-transform: uppercase;
}

@media only screen and (max-width: 991px) {
  .hero-4__list li {
    font-size: 16px;
  }
}

.hero-4__content {
  max-width: 1611px;
  margin: 0 auto;
  position: absolute;
  bottom: 72px;
  left: 0;
  right: 0;
  z-index: 3;
}

@media only screen and (max-width: 1919px) {
  .hero-4__content {
    max-width: 1200px;
  }
}

@media only screen and (max-width: 1399px) {
  .hero-4__content {
    max-width: 1050px;
  }
}

@media only screen and (max-width: 1199px) {
  .hero-4__content {
    max-width: 950px;
  }
}

@media only screen and (max-width: 767px) {
  .hero-4__content {
    bottom: 25px;
  }
}

.hero-4__content p {
  font-family: var(--font_kanit);
  text-align: right;
  font-size: 18px;
  font-weight: 500;
  line-height: 26px;
  margin-top: 11px;
  letter-spacing: 11px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}

@media only screen and (max-width: 1399px) {
  .hero-4__content p {
    letter-spacing: 7px;
    margin-right: 20px;
  }
}

@media only screen and (max-width: 991px) {
  .hero-4__content p {
    letter-spacing: 5px;
    padding-right: 20px;
    font-size: 16px;
  }
}

@media (max-width: 575px) {
  .hero-4__content p {
    text-align: start;
    padding-left: 15px;
  }
}

.hero-4__content p span {
  margin: 0 55px;
}

@media only screen and (max-width: 1919px) {
  .hero-4__content p span {
    margin: 0 14px;
  }
}

@media only screen and (max-width: 1199px) {
  .hero-4__content p span {
    margin: 0 40px;
  }
}

@media only screen and (max-width: 767px) {
  .hero-4__content p span {
    margin: 0 25px;
  }
}

.hero-4__title {
  font-family: Cooper Hewitt;
  font-weight: 711;
  font-size: 184px;
  color: #EE6802;
  line-height: 162px;
  letter-spacing: -7px;
  text-transform: uppercase;
}

@media only screen and (max-width: 1919px) {
  .hero-4__title {
    font-size: 139px;
  }
}

@media only screen and (max-width: 1399px) {
  .hero-4__title {
    font-size: 124px;
    line-height: 115px;
  }
}

@media only screen and (max-width: 1199px) {
  .hero-4__title {
    font-size: 104px;
    line-height: 99px;
    letter-spacing: -3px;
  }
}

@media only screen and (max-width: 991px) {
  .hero-4__title {
    font-size: 55px;
    line-height: 48px;
    letter-spacing: 0px;
    padding-left: 10px;
  }
}

@media only screen and (max-width: 767px) {
  .hero-4__title {
    font-size: 40px;
    line-height: 30px;
  }
}

@media (max-width: 575px) {
  .hero-4__title {
    font-size: 32px;
    line-height: 27px;
  }
}

.hero-4 .work-steps__area {
  right: 0;
  z-index: 1;
  bottom: 326px;
  position: absolute;
  max-width: 1421px;
}

@media only screen and (max-width: 1919px) {
  .hero-4 .work-steps__area {
    max-width: 1053px;
  }
}

@media only screen and (max-width: 991px) {
  .hero-4 .work-steps__area {
    bottom: 228px;
  }
}

@media only screen and (max-width: 767px) {
  .hero-4 .work-steps__area {
    bottom: 120px;
  }
}

.hero-4 .work-steps__wrapper {
  position: relative;
  z-index: 1;
  max-width: 1421px;
  margin-left: auto;
}

@media only screen and (max-width: 1399px) {
  .hero-4 .work-steps__wrapper {
    max-width: 950px;
  }
}

@media only screen and (max-width: 1199px) {
  .hero-4 .work-steps__wrapper {
    max-width: 800px;
  }
}

@media only screen and (max-width: 991px) {
  .hero-4 .work-steps__wrapper {
    max-width: 600px;
  }
}

@media only screen and (max-width: 767px) {
  .hero-4 .work-steps__wrapper {
    max-width: 470px;
  }
}

.hero-4 .work-steps__wrapper__title {
  z-index: 444;
  position: relative;
}

.hero-4 .work-steps-slider__active .swiper-wrapper {
  transition-timing-function: linear !important;
  -webkit-animation-timing-function: linear;
}

.hero-4 .work-steps-slider__active .swiper-slide {
  width: auto;
  display: inline-block;
}

.hero-4 .work-steps-slider__wrap {
  background: rgba(255, 255, 255, 0.06);
}

.hero-4 .work-steps__title {
  display: block;
  font-weight: 400;
  font-size: 16px;
  line-height: 48px;
  color: #FFFFFF;
  padding: 4px 0;
  text-transform: uppercase;
  font-family: var(--font_cooper);
}

@media only screen and (max-width: 1919px) {
  .hero-4 .work-steps__title {
    margin-right: 40px;
  }
}

@media only screen and (max-width: 1199px) {
  .hero-4 .work-steps__title {
    font-size: 16px;
    letter-spacing: 0.36px;
  }
}

@media only screen and (max-width: 991px) {
  .hero-4 .work-steps__title {
    font-size: 16px;
    letter-spacing: 0;
    line-height: 60px;
  }
}

@media only screen and (max-width: 767px) {
  .hero-4 .work-steps__title {
    font-size: 16px;
    line-height: 45px;
  }
}

.about-us-4__wrapper {
  padding: 180px 0;
}

@media only screen and (max-width: 1199px) {
  .about-us-4__wrapper {
    padding: 80px 0;
  }
}

@media only screen and (max-width: 767px) {
  .about-us-4__wrapper {
    padding: 100px 0 80px;
  }
}

.about-us-4__item {
  gap: 451px;
  display: grid;
  align-items: stretch;
  border-top: 1px solid rgba(16, 16, 16, 0.14);
  padding-top: 44px;
  grid-template-columns: 129px 1020px;
}

.dark .about-us-4__item {
  border-top-color: rgba(255, 255, 255, 0.14);
}

@media only screen and (max-width: 1919px) {
  .about-us-4__item {
    gap: 280px;
    grid-template-columns: 141px 1020px;
  }
}

@media only screen and (max-width: 1399px) {
  .about-us-4__item {
    gap: 270px;
  }
}

@media only screen and (max-width: 1199px) {
  .about-us-4__item {
    gap: 150px;
  }
}

@media only screen and (max-width: 991px) {
  .about-us-4__item {
    gap: 30px;
    grid-template-columns: 1fr;
  }
}

.about-us-4__item .about {
  font-family: var(--font_kanit);
  font-weight: 400;
  color: #101010;
  font-size: 16px;
  height: 30px;
  display: flex;
  align-items: flex-start;
  line-height: 24px;
  padding: 2px 24.1px;
  text-transform: uppercase;
  border: 1px solid rgba(16, 16, 16, 0.14);
  border-radius: 6px;
}

@media only screen and (max-width: 1199px) {
  .about-us-4__item .about {
    max-width: 130px;
  }
}

.dark .about-us-4__item .about {
  border-color: rgba(255, 255, 255, 0.14);
  color: #fff;
}

.about-us-4__content .title {
  font-family: var(--font_kanit);
  font-weight: 400;
  font-size: 44px;
  color: #101010;
  line-height: 54px;
  max-width: 1020px;
  display: block;
  margin-bottom: 68px;
  text-transform: capitalize;
}

.dark .about-us-4__content .title {
  color: #fff;
}

@media only screen and (max-width: 1919px) {
  .about-us-4__content .title {
    max-width: 1000px;
    font-size: 40px;
  }
}

@media only screen and (max-width: 1399px) {
  .about-us-4__content .title {
    font-size: 30px;
    line-height: 40px;
    max-width: 780px;
    margin-bottom: 30px;
  }
}

@media only screen and (max-width: 1199px) {
  .about-us-4__content .title {
    font-size: 28px;
    line-height: 40px;
    max-width: 682px;
  }
}

@media only screen and (max-width: 767px) {
  .about-us-4__content .title {
    font-size: 22px;
    line-height: 34px;
  }
}

@media (max-width: 575px) {
  .about-us-4__content .title {
    font-size: 18px;
    line-height: 28px;
  }
}

.about-us-4__content .title span {
  padding-left: 91px;
}

@media (max-width: 575px) {
  .about-us-4__content .title span {
    padding-left: 0;
  }
}

.about-us-4__counter {
  gap: 30px;
  display: grid;
  padding-top: 176px;
  grid-template-columns: repeat(4, 1fr);
}

@media only screen and (max-width: 1399px) {
  .about-us-4__counter {
    gap: 15px;
    padding-top: 100px;
  }
}

@media only screen and (max-width: 1199px) {
  .about-us-4__counter {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media only screen and (max-width: 991px) {
  .about-us-4__counter {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    padding-top: 78px;
  }
}

@media (max-width: 575px) {
  .about-us-4__counter {
    padding-top: 50px;
    grid-template-columns: 1fr;
  }
}

.about-us-4__counter-item {
  display: flex;
  align-items: center;
  position: relative;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  width: 378px;
  height: 378px;
  border-radius: 100%;
  color: var(--white);
  transition: all 0.6s ease-in-out;
  border: 1px solid rgba(16, 16, 16, 0.2);
  perspective: 1000px;
}

.dark .about-us-4__counter-item {
  background: #131416;
  border: 1px solid rgba(16, 16, 16, 0.2);
}

@media only screen and (max-width: 1919px) {
  .about-us-4__counter-item {
    width: 300px;
    height: 300px;
  }
}

@media only screen and (max-width: 1399px) {
  .about-us-4__counter-item {
    width: 267px;
    height: 267px;
  }
}

@media only screen and (max-width: 767px) {
  .about-us-4__counter-item {
    width: 247px;
    height: 247px;
  }
}

@media (max-width: 575px) {
  .about-us-4__counter-item {
    margin: 0 auto;
  }
}

.about-us-4__counter-item:hover .content {
  transform: rotateX(180deg);
  opacity: 0;
}

.about-us-4__counter-item:hover .text {
  transform: translate(-50%, -50%) rotateX(0deg);
  opacity: 1;
}

.about-us-4__counter-item .content {
  transition: all 0.6s ease-in-out;
  backface-visibility: hidden;
  transform: rotateX(0deg);
}

.about-us-4__counter-item .content h2 {
  display: inline-flex;
  align-items: center;
  font-family: var(--font_cooper);
  font-weight: 600;
  font-size: 90px;
  line-height: 92px;
  color: #101010;
  letter-spacing: -3.6px;
  text-transform: uppercase;
}

.dark .about-us-4__counter-item .content h2 {
  color: var(--white);
}

@media only screen and (max-width: 1919px) {
  .about-us-4__counter-item .content h2 {
    font-size: 74px;
    letter-spacing: -2.6px;
  }
}

@media only screen and (max-width: 767px) {
  .about-us-4__counter-item .content h2 {
    font-size: 60px;
    line-height: 62px;
    letter-spacing: -1.8px;
  }
}

.about-us-4__counter-item .content h2 span {
  font-family: var(--font_cooper);
}

.about-us-4__counter-item .content .desc {
  font-family: var(--font_kanit);
  font-weight: 400;
  font-size: 18px;
  line-height: 24px;
  margin-top: -9px;
  color: rgba(16, 16, 16, 0.6);
  text-transform: uppercase;
}

.about-us-4__counter-item .text {
  transition: all 0.6s ease-in-out;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  transform: translate(-50%, -50%) rotateX(-180deg);
  backface-visibility: hidden;
  opacity: 0;
}

.about-us-4__counter-item .text .desc {
  text-align: center;
  font-family: var(--font_kanit);
  font-weight: 400;
  font-size: 18px;
  line-height: 24px;
  margin-top: -5px;
  color: rgba(16, 16, 16, 0.6);
  margin: 0 auto;
  max-width: 267px;
}

.dark .about-us-4__counter-item .text .desc {
  color: rgba(255, 255, 255, 0.6);
}

@media only screen and (max-width: 1399px) {
  .about-us-4__counter-item .text .desc {
    max-width: 247px;
  }
}

@media only screen and (max-width: 767px) {
  .about-us-4__counter-item .text .desc {
    font-size: 16px;
    line-height: 23px;
    max-width: 218px;
  }
}

.about-us-4__btn a {
  align-items: center;
  font-weight: 400;
  font-size: 18px;
  line-height: 24px;
  border-radius: 24px;
  color: var(--white);
  background: #101010;
  font-family: var(--font_kanit);
  padding: 8.5px 36.2px 8.5px 5px;
  transition: all 0.3s ease-in-out;
  border: 1px solid rgba(16, 16, 16, 0.14);
}

.about-us-4__btn a:hover {
  color: #101010;
  background: var(--primary);
}

.about-us-4__btn a:hover i {
  color: #101010;
  background: var(--white);
}

.about-us-4__btn a i {
  margin-right: 30px;
  padding: 9px 10.5px;
  border-radius: 100px;
  color: #101010;
  background: var(--white);
  transition: all 0.3s ease-in-out;
}

.work-4__wrapper {
  padding: 268px 0 258px 0;
  background: #F3F4F6;
}

.dark .work-4__wrapper {
  background: #131416;
}

@media only screen and (max-width: 1919px) {
  .work-4__wrapper {
    padding-top: 190px;
    padding-bottom: 150px;
  }
}

@media only screen and (max-width: 1399px) {
  .work-4__wrapper {
    padding: 120px 0 80px 0;
  }
}

@media only screen and (max-width: 991px) {
  .work-4__wrapper {
    padding: 100px 0 80px 0;
  }
}

@media only screen and (max-width: 767px) {
  .work-4__wrapper {
    padding: 80px 0 80px 0;
  }
}

@media (max-width: 575px) {
  .work-4__wrapper {
    padding: 60px 0 60px 0;
  }
}

.work-4__title {
  font-family: var(--font_cooper);
  font-weight: 700;
  font-size: 320px;
  margin-bottom: 16px;
  line-height: 278px;
  letter-spacing: -12.8px;
  text-transform: uppercase;
}

.dark .work-4__title {
  color: var(--white);
}

@media only screen and (max-width: 1399px) {
  .work-4__title {
    font-size: 200px;
    margin-bottom: 45px;
    line-height: 120px;
  }
}

@media only screen and (max-width: 1199px) {
  .work-4__title {
    font-size: 180px;
    margin-bottom: 40px;
  }
}

@media only screen and (max-width: 991px) {
  .work-4__title {
    font-size: 150px;
    margin-bottom: 30px;
  }
}

@media only screen and (max-width: 767px) {
  .work-4__title {
    font-size: 120px;
    letter-spacing: -2.8px;
    margin-bottom: 10px;
  }
}

@media (max-width: 575px) {
  .work-4__title {
    font-size: 90px;
    margin-bottom: 2px;
    line-height: 100px;
  }
}

.work-4__item {
  margin: 0 auto;
  max-width: 1016px;
  text-align: center;
}

.work-4__item .text-invert>div {
  background-image: linear-gradient(to right, #101010 50%, rgba(16, 16, 16, 0.4) 51%);
  background-size: 200% 100%;
  background-position-x: 100%;
  color: transparent;
  background-clip: text;
  -webkit-background-clip: text;
}

.dark .work-4__item .text-invert>div {
  background-image: linear-gradient(to right, #FFFFFF 50%, rgba(255, 255, 255, 0.4) 51%);
}

.work-4__item .desc {
  max-width: 1016px;
  font-family: var(--font_kanit);
  font-weight: 400;
  font-size: 34px;
  line-height: 44px;
  color: rgba(16, 16, 16, 0.14);
  text-align: center;
  text-transform: capitalize;
}

.work-4__item .desc span {
  color: #101010;
}

@media only screen and (max-width: 1199px) {
  .work-4__item .desc br {
    display: none;
  }
}

@media only screen and (max-width: 991px) {
  .work-4__item .desc {
    font-size: 26px;
    line-height: 38px;
  }
}

@media only screen and (max-width: 767px) {
  .work-4__item .desc {
    font-size: 19px;
    line-height: 33px;
  }
}

@media (max-width: 575px) {
  .work-4__item .desc {
    font-size: 19px;
    line-height: 28px;
  }
}

.rr-portfolio-area-4 {
  position: relative;
  width: 100vh;
}

.rr-snap-slide-4 {
  width: 100vw;
  height: 100vh;
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.rr-snap-slide-4 .img-mask {
  width: 100%;
  height: 100%;
  display: block;
  position: relative;
  top: 0;
  left: 0;
  opacity: 1;
}

.rr-snap-slide-4 .img-mask .section-image {
  height: 100%;
  object-fit: cover;
  width: 100%;
  position: relative;
}

.rr-snap-slide-4 .img-mask .section-image::before {
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  background: rgba(16, 16, 16, 0.5);
}

.rr-snap-slide-4 .img-mask .section-image img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.rr-snap-slide-4 .text-wrapper {
  position: absolute;
  top: 50%;
  min-width: 1630px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: var(--primary);
  z-index: 10;
}

@media only screen and (max-width: 1919px) {
  .rr-snap-slide-4 .text-wrapper {
    min-width: 1297px;
  }
}

@media only screen and (max-width: 1399px) {
  .rr-snap-slide-4 .text-wrapper {
    min-width: 1150px;
  }
}

@media only screen and (max-width: 1199px) {
  .rr-snap-slide-4 .text-wrapper {
    min-width: 950px;
  }
}

@media only screen and (max-width: 991px) {
  .rr-snap-slide-4 .text-wrapper {
    min-width: 750px;
  }
}

@media only screen and (max-width: 767px) {
  .rr-snap-slide-4 .text-wrapper {
    min-width: 530px;
  }
}

@media (max-width: 575px) {
  .rr-snap-slide-4 .text-wrapper {
    flex-direction: column;
  }
}

.rr-snap-slide-4 .text-wrapper .sub-title {
  font-family: var(--font_kanit);
  font-weight: 400;
  font-size: 18px;
  line-height: 24px;
  color: var(--white);
  width: 300px;
}

@media only screen and (max-width: 767px) {
  .rr-snap-slide-4 .text-wrapper .sub-title {
    font-size: 16px;
  }
}

.rr-snap-slide-4 .text-wrapper .media {
  width: 770px;
  height: 450px;
  display: block;
}

@media only screen and (max-width: 1399px) {
  .rr-snap-slide-4 .text-wrapper .media {
    width: 500px;
    height: 340px;
  }
}

@media only screen and (max-width: 991px) {
  .rr-snap-slide-4 .text-wrapper .media {
    width: 400px;
    height: 220px;
  }
}

@media only screen and (max-width: 767px) {
  .rr-snap-slide-4 .text-wrapper .media {
    width: 230px;
    height: 200px;
  }
}

@media (max-width: 575px) {
  .rr-snap-slide-4 .text-wrapper .media {
    width: 130px;
    height: 100px;
    margin: 5px 0;
  }
}

.rr-snap-slide-4 .text-wrapper .media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.rr-snap-slide-4 .text-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 14px;
}

/* === service (index 04) === */
.service-4__wrapper .row {
  --bs-gutter-x: 30px;
}

.service-4__section-title {
  font-family: var(--font_cooper);
  font-weight: 600;
  font-size: 60px;
  line-height: 60px;
  letter-spacing: -2.4px;
  color: #101010;
  margin-bottom: 70px;
  text-transform: uppercase;
}

.dark .service-4__section-title {
  color: var(--white);
}

@media only screen and (max-width: 991px) {
  .service-4__section-title {
    margin-bottom: 10px;
    font-size: 40px;
    line-height: 70px;
  }
}

@media only screen and (max-width: 767px) {
  .service-4__section-title {
    font-size: 36px;
    line-height: 50px;
  }
}

.service-4__item {
  position: relative;
  border-radius: 14px;
  background: #F3F4F6;
  padding: 30px 40px 50px 40px;
}

.dark .service-4__item {
  background: #131416;
  border-radius: 14px;
}

@media only screen and (max-width: 1919px) {
  .service-4__item {
    padding: 30px 30px 50px 30px;
  }
}

@media only screen and (max-width: 1399px) {
  .service-4__item {
    padding: 30px 15px 50px 15px;
  }
}

@media only screen and (max-width: 767px) {
  .service-4__item {
    padding: 30px 15px 40px 15px;
  }
}

.service-4__item:hover .service-4__btn a {
  background: #101010;
  color: var(--white);
}

.dark .service-4__item:hover .service-4__btn a {
  background: var(--white);
  color: var(--secondary);
}

.service-4__item:hover .service-4__btn a i {
  color: #101010;
  background-color: var(--white);
}

.dark .service-4__item:hover .service-4__btn a i {
  color: var(--white);
  background: var(--secondary);
}

.service-4__title {
  font-family: var(--font_cooper);
  font-size: 26px;
  font-weight: 600;
  line-height: 48px;
  margin-bottom: 40px;
  letter-spacing: -1.04px;
  text-transform: uppercase;
}

.dark .service-4__title {
  color: var(--white);
}

@media only screen and (max-width: 1919px) {
  .service-4__title {
    font-size: 24px;
  }
}

@media only screen and (max-width: 1399px) {
  .service-4__title {
    font-size: 20px;
  }
}

@media only screen and (max-width: 767px) {
  .service-4__title {
    margin-bottom: 10px;
  }
}

@media (max-width: 575px) {
  .service-4__title {
    font-size: 18px;
    letter-spacing: -0.04px;
  }
}

.service-4__icon {
  position: relative;
  z-index: 2;
  width: 80px;
  display: flex;
  height: 80px;
  margin: 0 auto;
  align-items: center;
  border-radius: 100px;
  justify-content: center;
  background: var(--white);
}

.service-4__shape {
  left: 0;
  top: 32%;
  z-index: 1;
  position: absolute;
}

@media only screen and (max-width: 767px) {
  .service-4__shape {
    top: 26%;
  }
}

.service-4__desc {
  font-family: Kanit;
  font-weight: 400;
  font-size: 18px;
  margin-top: 69px;
  line-height: 26px;
  color: #101010;
}

.dark .service-4__desc {
  color: rgba(255, 255, 255, 0.6);
}

@media only screen and (max-width: 1399px) {
  .service-4__desc {
    margin-top: 30px;
  }
}

@media only screen and (max-width: 1199px) {
  .service-4__desc {
    font-size: 17px;
  }
}

@media only screen and (max-width: 991px) {
  .service-4__desc {
    max-width: 283px;
    margin: 0 auto;
    padding-top: 30px;
  }
}

@media (max-width: 575px) {
  .service-4__desc {
    font-size: 16px;
  }
}

.service-4__btn {
  margin-top: 54px;
}

@media only screen and (max-width: 767px) {
  .service-4__btn {
    margin-top: 30px;
  }
}

.service-4__btn a {
  color: #101010;
  font-weight: 400;
  font-size: 18px;
  line-height: 24px;
  align-items: center;
  border-radius: 24px;
  font-family: var(--font_kanit);
  padding: 8.5px 36.2px 8.5px 5px;
  transition: all 0.3s ease-in-out;
  border: 1px solid rgba(16, 16, 16, 0.14);
}

.dark .service-4__btn a {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 25px;
  color: var(--white);
}

@media only screen and (max-width: 1399px) {
  .service-4__btn a {
    font-size: 16px;
  }
}

.service-4__btn a i {
  margin-right: 30px;
  padding: 9px 10.5px;
  border-radius: 100px;
  color: var(--white);
  background: #101010;
  transition: all 0.3s ease-in-out;
}

.dark .service-4__btn a i {
  background: var(--white);
  color: var(--secondary);
}

.skill-4__wrapper {
  gap: 60px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
  padding-bottom: 176px;
}

@media only screen and (max-width: 1399px) {
  .skill-4__wrapper {
    padding-bottom: 80px;
  }
}

@media only screen and (max-width: 1199px) {
  .skill-4__wrapper {
    gap: 30px;
  }
}

@media only screen and (max-width: 991px) {
  .skill-4__wrapper {
    padding-bottom: 100px;
  }
}

@media only screen and (max-width: 767px) {
  .skill-4__wrapper {
    grid-template-columns: 1fr;
  }
}

.skill-4__title {
  max-width: 626px;
  font-family: var(--font_cooper);
  font-weight: 600;
  font-size: 60px;
  line-height: 70px;
  margin-bottom: 47px;
  letter-spacing: -2.5px;
  text-transform: uppercase;
}

.dark .skill-4__title {
  color: var(--white);
}

@media only screen and (max-width: 1399px) {
  .skill-4__title {
    font-size: 35px;
    line-height: 46px;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
  }
}

@media only screen and (max-width: 1199px) {
  .skill-4__title {
    font-size: 28px;
    line-height: 40px;
    letter-spacing: 0.5px;
  }
}

@media only screen and (max-width: 991px) {
  .skill-4__title {
    font-size: 23px;
    line-height: 34px;
    letter-spacing: 0.5px;
  }
}

.skill-4__item {
  display: flex;
  align-items: center;
  background: #F3F4F6;
  padding: 36px 40px 36px 30px;
  justify-content: space-between;
  margin-bottom: 15px;
  border-radius: 14px;
}

.dark .skill-4__item {
  background: #131416;
  border-radius: 14px;
}

@media only screen and (max-width: 1199px) {
  .skill-4__item {
    flex-wrap: wrap;
    padding: 26px 20px 26px 20px;
  }
}

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

@media only screen and (max-width: 767px) {
  .skill-4__item {
    padding: 20px 10px 20px 10px;
  }
}

.skill-4__item:last-child {
  margin-bottom: 0;
}

.skill-4__item .years {
  gap: 46px;
  display: flex;
  align-items: center;
}

@media only screen and (max-width: 1399px) {
  .skill-4__item .years {
    gap: 20px;
  }
}

@media (max-width: 575px) {
  .skill-4__item .years {
    gap: 10px;
  }
}

.skill-4__item .years span {
  font-family: var(--font_kanit);
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
}

.dark .skill-4__item .years span {
  color: rgba(255, 255, 255, 0.6);
}

.skill-4__item .years a {
  font-family: var(--font_cooper);
  font-weight: 600;
  font-size: 26px;
  line-height: 48px;
  color: #101010;
  letter-spacing: -1px;
  text-transform: uppercase;
}

.dark .skill-4__item .years a {
  color: var(--white);
}

@media only screen and (max-width: 1399px) {
  .skill-4__item .years a {
    font-size: 16px;
    letter-spacing: inherit;
  }
}

@media only screen and (max-width: 991px) {
  .skill-4__item .years a {
    line-height: 30px;
  }
}

.skill-4__item .learn-more {
  display: flex;
  align-items: center;
  gap: 16px;
}

.skill-4__item .learn-more a {
  font-family: var(--font_kanit);
  font-weight: 400;
  font-size: 18px;
  line-height: 24px;
  color: #101010;
}

.dark .skill-4__item .learn-more a {
  color: var(--white);
}

@media (max-width: 575px) {
  .skill-4__item .learn-more a {
    font-size: 16px;
  }
}

.skill-4__item .learn-more .icon a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  border-radius: 100%;
  border: 1px solid rgba(16, 16, 16, 0.14);
  justify-content: center;
}


.work-steps__wrapper {
  position: relative;
  z-index: 1;
}

.work-steps__wrapper__title {
  z-index: 444;
  position: relative;
}

.work-steps-slider-active {
  margin-bottom: 34px;
}

.work-steps-slider-active__rtl .swiper-wrapper {
  transition-timing-function: linear;
}

.work-steps-slider-active__rtl .swiper-wrapper .swiper-slide {
  width: auto;
}

.work-steps__title {
  display: block;
  font-weight: 500;
  white-space: nowrap;
  font-size: 16px;
  line-height: 26px;
  color: #101010;
  padding: 0 30px;
  font-family: var(--font_kanit);
  text-transform: uppercase;
}

.dark .work-steps__title {
  color: var(--white);
}

@media only screen and (max-width: 1199px) {
  .work-steps__title {
    font-size: 18px;
  }
}

@media only screen and (max-width: 991px) {
  .work-steps__title {
    font-size: 20px;
    letter-spacing: 0;
    line-height: 39px;
  }
}

@media only screen and (max-width: 767px) {
  .work-steps__title {
    font-size: 20px;
    line-height: 30px;
  }
}

/* wrapper */
.logo-slider {
  width: 100%;
  padding: 9.5px 0;
  overflow: hidden;
  border-top: 1px solid rgba(16, 16, 16, 0.12);
}

.dark .logo-slider {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.logo-slider.one {
  padding: 0;
}

.dark .logo-slider .logo-track .logo-item svg path {
  stroke: rgb(255, 255, 255) !important;
}

/* track */
.logo-track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: slideLogos 25s linear infinite;
}

.logo-track.one {
  padding: 0;
}

.logo-track.one .logo-item {
  min-width: 240px;
}

@media only screen and (max-width: 767px) {
  .logo-track.one .logo-item {
    min-width: 137px;
  }
}

/* each logo item */
.logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
}

.brand-4.one .logo-item {
  position: relative;
  padding: 60px 15px 60px 20px;
  transition: all 0.3s ease-in-out;
}

.brand-4.one .logo-item svg path {
  transition: all 0.3s ease-in-out;
}

.dark .brand-4.one .logo-item svg path {
  fill: #FFFFFF;
  fill-opacity: 0.2;
}

.brand-4.one .logo-item:hover {
  background: #F3F4F6;
  border-radius: 0px 0px 10px 10px;
}

.brand-4.one .logo-item:hover svg path {
  fill: #101010;
  fill-opacity: 1;
}

.brand-4.one .logo-item:hover .content {
  opacity: 1;
  visibility: visible;
}

.brand-4.one .logo-item .content {
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-in-out;
}

.brand-4.one .logo-item .content .icon {
  position: absolute;
  top: 15px;
  right: 15px;
}

.brand-4.one .logo-item .content .icon i {
  transform: rotate(-45deg);
}

.brand-4.one .logo-item .content span {
  position: absolute;
  bottom: 15px;
  left: 15px;
  font-family: var(--font_kanit);
  font-weight: 400;
  font-size: 16px;
  line-height: 28px;
  color: #101010;
}

/* animation */
@keyframes slideLogos {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* pause on hover */
.logo-track:hover {
  animation-play-state: paused;
}

/* responsive */
@media (max-width: 768px) {
  .logo-item {
    min-width: 120px;
    margin-right: 20px;
  }
}

/* === testimonial (index 04) === */
.testimonial-4__wrapper {
  padding-top: 140px;
}

.testimonial-4__wrapper .title {
  text-align: center;
  font-family: var(--font_cooper);
  font-weight: 600;
  font-size: 60px;
  margin-bottom: 32px;
  line-height: 130px;
  letter-spacing: -2px;
  color: #101010;
  text-transform: uppercase;
}

.dark .testimonial-4__wrapper .title {
  color: var(--white);
}

@media only screen and (max-width: 991px) {
  .testimonial-4__wrapper .title {
    font-size: 40px;
    margin-bottom: 32px;
    line-height: 60px;
  }
}

@media only screen and (max-width: 767px) {
  .testimonial-4__wrapper .title {
    font-size: 33px;
    line-height: 35px;
  }
}

@media (max-width: 575px) {
  .testimonial-4__wrapper .title {
    font-size: 31px;
    line-height: 50px;
    letter-spacing: 0px;
  }
}

.testimonial-4__wrapper .swiper.testimonial-4__active {
  margin-left: -125px;
  margin-right: -125px;
}

@media only screen and (max-width: 1399px) {
  .testimonial-4__wrapper .swiper.testimonial-4__active {
    margin-left: 0;
    margin-right: 0;
  }
}

.testimonial-4__wrapper .swiper-pagination {
  position: inherit;
}

.testimonial-4__wrapper .swiper-pagination-bullet {
  width: 6px;
  height: 6px;
  margin: 4px;
}

.dark .testimonial-4__wrapper .swiper-pagination-bullet {
  background: rgba(255, 255, 255, 0.1);
  opacity: inherit;
}

.testimonial-4__wrapper .swiper-pagination-bullet-active {
  background: #101010;
}

.dark .testimonial-4__wrapper .swiper-pagination-bullet-active {
  background: var(--white);
}

.testimonial-4__item {
  position: relative;
}

.testimonial-4__item.one {
  border-radius: 6px;
  background: #F3F4F6;
  padding: 43px 38px 43px 41px;
}

.dark .testimonial-4__item.one {
  background: #131416;
  border-radius: 14px;
}

@media only screen and (max-width: 1919px) {
  .testimonial-4__item.one {
    padding: 29px 31px 36px 31px;
  }
}

@media only screen and (max-width: 1399px) {
  .testimonial-4__item.one {
    padding: 20px 20px 20px 20px;
  }
}

@media only screen and (max-width: 1199px) {
  .testimonial-4__item.one {
    padding: 20px 15px 20px 15px;
  }
}

.testimonial-4__item .rating {
  margin-bottom: 34px;
}

@media only screen and (max-width: 1919px) {
  .testimonial-4__item .rating {
    margin-bottom: 18px;
  }
}

@media only screen and (max-width: 1399px) {
  .testimonial-4__item .rating {
    margin-bottom: 10px;
  }
}

.testimonial-4__item .rating i {
  font-size: 16px;
  color: #F7931A;
}

.testimonial-4__item .desc {
  font-family: var(--font_kanit);
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  color: rgba(16, 16, 16, 0.6);
}

.dark .testimonial-4__item .desc {
  color: rgba(255, 255, 255, 0.6);
}

@media only screen and (max-width: 1919px) {
  .testimonial-4__item .desc {
    font-size: 16px;
    line-height: 24px;
  }
}

@media only screen and (max-width: 1399px) {
  .testimonial-4__item .desc {
    font-size: 16px;
    line-height: 23px;
  }
}

@media only screen and (max-width: 991px) {
  .testimonial-4__item .desc {
    font-size: 15px;
    line-height: 21px;
  }
}

.testimonial-4__item .author {
  gap: 16px;
  display: flex;
  margin-top: 70px;
  align-items: center;
}

@media only screen and (max-width: 1919px) {
  .testimonial-4__item .author {
    margin-top: 15px;
  }
}

@media only screen and (max-width: 1399px) {
  .testimonial-4__item .author {
    margin-top: 20px;
  }
}

.testimonial-4__item .author img {
  border-radius: 6px;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-4__item .author .text .name {
  font-family: var(--font_kanit);
  font-size: 18px;
  font-weight: 500;
  color: #101010;
  line-height: 28px;
}

.dark .testimonial-4__item .author .text .name {
  color: var(--white);
}

.testimonial-4__item .author .text .desgn {
  font-family: var(--font_kanit);
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
  color: rgba(16, 16, 16, 0.6);
}

.dark .testimonial-4__item .author .text .desgn {
  color: rgba(255, 255, 255, 0.6);
}

.testimonial-4__thumb {
  position: relative;
}

.testimonial-4__thumb img {
  border-radius: 6px;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-4__thumb::before {
  content: "";
  left: 0;
  top: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  border-radius: 14px;
  background: rgba(16, 16, 16, 0.34);
}

.testimonial-4__author .rating {
  margin-bottom: 25px;
}

@media only screen and (max-width: 1199px) {
  .testimonial-4__author .rating {
    margin-bottom: 10px;
  }
}

.testimonial-4__author .rating i {
  font-size: 16px;
  color: #F7931A;
}

.testimonial-4__author .name {
  font-family: var(--font_kanit);
  font-weight: 500;
  font-size: 18px;
  line-height: 28px;
  color: var(--white);
}

.testimonial-4__author .desgn {
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
  font-family: var(--font_kanit);
  color: rgba(255, 255, 255, 0.6);
}

.testimonial-4__content {
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  display: flex;
  position: absolute;
  align-items: center;
  padding: 40px 40px 42px 40px;
  justify-content: space-between;
}

@media only screen and (max-width: 1399px) {
  .testimonial-4__content {
    padding: 40px 10px 42px 10px;
  }
}

@media only screen and (max-width: 1199px) {
  .testimonial-4__content {
    flex-wrap: wrap;
  }
}

.testimonial-4__video .popup-video {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  border-radius: 100%;
  background: var(--white);
  justify-content: center;
}

@media only screen and (max-width: 1199px) {
  .testimonial-4__video .popup-video {
    width: 40px;
    height: 40px;
    margin-top: 10px;
  }
}

.testimonial-4__video .popup-video i {
  font-size: 16px;
  color: var(--secondary);
}

.testimonial-4__arrow {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 110px;
}

.testimonial-4__swiper-button-next {
  width: 26px;
  height: 26px;
  position: absolute;
  left: 0;
  top: -2px;
  z-index: 3;
  display: flex;
  align-items: center;
  border-radius: 100%;
  justify-content: center;
  transition: all 0.3s ease-in-out;
  border: 1px solid rgba(16, 16, 16, 0.1);
}

.dark .testimonial-4__swiper-button-next {
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.testimonial-4__swiper-button-next:hover {
  background: #101010;
}

.dark .testimonial-4__swiper-button-next:hover {
  background: var(--white);
  cursor: pointer;
}

.testimonial-4__swiper-button-next:hover i {
  color: var(--white);
  cursor: pointer;
}

.dark .testimonial-4__swiper-button-next:hover i {
  color: var(--secondary);
}

.testimonial-4__swiper-button-next i {
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.dark .testimonial-4__swiper-button-next i {
  color: var(--white);
}

.testimonial-4__swiper-button-prev {
  width: 26px;
  height: 26px;
  display: flex;
  align-items: center;
  border-radius: 100%;
  justify-content: center;
  position: absolute;
  top: -2px;
  right: 0;
  z-index: 3;
  transition: all 0.3s ease-in-out;
  border: 1px solid rgba(16, 16, 16, 0.1);
}

.dark .testimonial-4__swiper-button-prev {
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.testimonial-4__swiper-button-prev:hover {
  background: #101010;
}

.dark .testimonial-4__swiper-button-prev:hover {
  background: var(--white);
  cursor: pointer;
}

.testimonial-4__swiper-button-prev:hover i {
  color: var(--white);
}

.dark .testimonial-4__swiper-button-prev:hover i {
  color: var(--secondary);
}

.testimonial-4__swiper-button-prev i {
  display: flex;
  font-size: 12px;
  align-items: center;
  cursor: pointer;
  justify-content: center;
}

.dark .testimonial-4__swiper-button-prev i {
  color: var(--white);
  cursor: pointer;
}

.testimonial-4__wrap {
  margin: 0 auto;
  max-width: 202px;
  padding: 13px 20px;
  border-radius: 100px;
  background-color: #F3F4F6;
}

.dark .testimonial-4__wrap {
  background: #131416;
  border-radius: 100px;
  transform: matrix(1, 0, 0, -1, 0, 0);
}

.testimonial-4__wrap.one {
  margin-top: 74px;
}

@media only screen and (max-width: 991px) {
  .testimonial-4__wrap.one {
    margin-top: 40px;
  }
}

@media (max-width: 575px) {
  .testimonial-4__wrap.one {
    margin-top: 40px;
  }
}

.blog-4__wrapper {
  max-width: 1600px;
  margin: 0 auto;
  padding-bottom: 176px;
}

@media only screen and (max-width: 991px) {
  .blog-4__wrapper {
    padding-bottom: 100px;
  }
}

.blog-4__wrapper .title {
  text-align: center;
  font-family: var(--font_cooper);
  font-weight: 600;
  font-size: 60px;
  line-height: 70px;
  margin-bottom: 65px;
  display: block;
  letter-spacing: -2px;
  text-align: center;
  text-transform: uppercase;
}

.dark .blog-4__wrapper .title {
  color: var(--white);
}

@media only screen and (max-width: 1399px) {
  .blog-4__wrapper .title {
    font-size: 50px;
    line-height: 53px;
  }
}

@media only screen and (max-width: 991px) {
  .blog-4__wrapper .title {
    font-size: 40px;
    line-height: 45px;
  }
}

@media only screen and (max-width: 767px) {
  .blog-4__wrapper .title {
    font-size: 30px;
    line-height: 30px;
    margin-bottom: 45px;
  }
}

@media (max-width: 575px) {
  .blog-4__wrapper .title {
    font-size: 30px;
    line-height: 46px;
    margin-bottom: 40px;
  }
}

@media only screen and (max-width: 1919px) {
  .blog-4__wrap {
    margin: 0 15px;
  }
}

@media only screen and (max-width: 767px) {
  .blog-4__wrap {
    margin: 0 15px;
  }
}

.blog-4__item {
  gap: 77px;
  position: relative;
  display: flex;
  padding: 52px 60px;
  align-items: center;
  border-radius: 10px;
  margin-bottom: 30px;
  border: 1px solid rgba(16, 16, 16, 0.12);
}

.dark .blog-4__item {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
}

@media only screen and (max-width: 1199px) {
  .blog-4__item {
    padding: 40px 20px;
  }
}

@media only screen and (max-width: 991px) {
  .blog-4__item {
    gap: 58px;
  }
}

@media only screen and (max-width: 767px) {
  .blog-4__item {
    gap: 19px;
  }
}

@media (max-width: 575px) {
  .blog-4__item {
    flex-wrap: wrap;
    margin-bottom: 20px;
  }
}

.blog-4__item:hover .thumb {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.blog-4__item .date {
  border: 1px solid rgba(16, 16, 16, 0.12);
  border-radius: 20px;
  gap: 10px;
  display: flex;
  padding: 5px 24.5px;
  align-items: center;
  font-family: var(--font_kanit);
  font-weight: 400;
  font-size: 16px;
  color: #101010;
  line-height: 28px;
  letter-spacing: 0%;
  text-transform: capitalize;
}

.dark .blog-4__item .date {
  color: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
}

@media only screen and (max-width: 767px) {
  .blog-4__item .date {
    padding: 5px 17.5px;
  }
}

.blog-4__item .thumb {
  right: 60px;
  opacity: 0;
  visibility: hidden;
  position: absolute;
  text-align: right;
  transform: translateX(300px);
  transition: all 0.3s ease-in-out;
}

@media only screen and (max-width: 1919px) {
  .blog-4__item .thumb {
    width: 260px;
  }
}

@media only screen and (max-width: 1399px) {
  .blog-4__item .thumb {
    width: 250px;
    height: 250px;
  }
}

@media only screen and (max-width: 1199px) {
  .blog-4__item .thumb {
    width: 200px;
    height: 200px;
  }
}

@media only screen and (max-width: 767px) {
  .blog-4__item .thumb {
    width: 160px;
    height: 160px;
  }
}

@media (max-width: 575px) {
  .blog-4__item .thumb {
    right: 16px;
  }
}

.blog-4__item .thumb img {
  border-radius: 10px;
}

.blog-4__item .thumb .icon {
  position: absolute;
  left: 50%;
  top: 50%;
  transition: all 0.3s ease-in-out;
}

.blog-4__item .thumb .icon:hover i {
  background: var(--primary);
  color: var(--secondary);
}

.blog-4__item .thumb .icon i {
  width: 80px;
  height: 80px;
  display: flex;
  color: var(--white);
  align-items: center;
  background: #101010;
  border-radius: 100%;
  justify-content: center;
  transition: all 0.3s ease-in-out;
  transform: translate(-50%, -50%);
}

@media only screen and (max-width: 1919px) {
  .blog-4__item .thumb .icon i {
    width: 70px;
    height: 70px;
  }
}

@media only screen and (max-width: 1399px) {
  .blog-4__item .thumb .icon i {
    width: 50px;
    height: 50px;
  }
}

.blog-4__title {
  font-family: var(--font_kanit);
  font-size: 44px;
  font-weight: 400;
  line-height: 54px;
  color: #101010;
  text-transform: capitalize;
}

.dark .blog-4__title {
  color: var(--white);
}

@media only screen and (max-width: 1399px) {
  .blog-4__title {
    font-size: 34px;
    line-height: 17px;
  }
}

@media only screen and (max-width: 991px) {
  .blog-4__title {
    font-size: 24px;
    line-height: 30px;
  }
}

@media only screen and (max-width: 767px) {
  .blog-4__title {
    font-size: 19px;
    line-height: 26px;
  }
}

.blog-4__btn {
  text-align: center;
  margin-top: 54px;
}

.blog-4__btn a {
  align-items: center;
  font-weight: 400;
  font-size: 18px;
  line-height: 24px;
  border-radius: 24px;
  color: var(--white);
  background: #101010;
  font-family: var(--font_kanit);
  padding: 8.5px 36.2px 8.5px 5px;
  transition: all 0.3s ease-in-out;
  border: 1px solid rgba(16, 16, 16, 0.14);
}

.dark .blog-4__btn a {
  background: var(--white);
  color: var(--secondary);
}

.blog-4__btn a:hover {
  color: #101010;
  background: var(--primary);
}

.blog-4__btn a:hover i {
  color: #101010;
  background: var(--white);
}

.blog-4__btn a i {
  margin-right: 30px;
  padding: 9px 10.5px;
  border-radius: 100px;
  color: #101010;
  background: var(--white);
  transition: all 0.3s ease-in-out;
}

.dark .blog-4__btn a i {
  color: var(--white);
  background: var(--secondary);
}

.contact-page-4__wrapper {
  background: #101010;
  display: flex;
}

@media only screen and (max-width: 767px) {
  .contact-page-4__wrapper {
    flex-wrap: wrap;
  }
}

@media (max-width: 575px) {
  .contact-page-4__wrapper {
    display: block;
  }
}

.contact-page-4__info {
  margin-bottom: 78px;
}

@media only screen and (max-width: 767px) {
  .contact-page-4__info {
    margin-bottom: 40px;
  }
}

@media only screen and (max-width: 767px) {
  .contact-page-4__thumb {
    width: 100%;
    height: 500px;
    object-fit: cover;
  }
}

.contact-page-4__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-page-4__wrap {
  display: grid;
  position: relative;
  grid-template-columns: 435px 1fr;
}

@media only screen and (max-width: 1199px) {
  .contact-page-4__wrap {
    grid-template-columns: 1fr 400px;
  }
}

@media only screen and (max-width: 991px) {
  .contact-page-4__wrap {
    grid-template-columns: 1fr 270px;
  }
}

@media only screen and (max-width: 767px) {
  .contact-page-4__wrap {
    grid-template-columns: 1fr;
  }
}

.contact-page-4__address {
  gap: 40px;
  display: grid;
  padding-left: 60px;
  border-radius: 10px;
  align-items: center;
  background: var(--white);
  border: 1px solid var(--border);
  grid-template-columns: 369px 388px 305px;
}

@media only screen and (max-width: 1399px) {
  .contact-page-4__address {
    gap: 25px;
    padding-left: 33px;
  }
}

@media only screen and (max-width: 1199px) {
  .contact-page-4__address {
    gap: 13px;
    padding-left: 17px;
    grid-template-columns: 294px 321px 307px;
  }
}

@media only screen and (max-width: 991px) {
  .contact-page-4__address {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media only screen and (max-width: 767px) {
  .contact-page-4__address {
    grid-template-columns: repeat(1, 1fr);
  }
}

.contact-page-4__address-item {
  gap: 20px;
  display: flex;
  align-items: center;
  padding: 60px 0px;
  border-right: 1px solid var(--border);
}

.contact-page-4__address-item:first-child {
  padding-left: 0;
}

@media only screen and (max-width: 767px),
(max-width: 575px) {
  .contact-page-4__address-item:first-child {
    padding-top: 20px;
  }
}

.contact-page-4__address-item:last-child {
  border: none;
}

@media only screen and (max-width: 991px) {
  .contact-page-4__address-item {
    padding: 20px 0px;
  }
}

@media only screen and (max-width: 767px),
(max-width: 575px) {
  .contact-page-4__address-item {
    padding-top: inherit;
    padding-bottom: 20px;
  }
}

@media (max-width: 575px) {
  .contact-page-4__address-item {
    display: block;
  }
}

.contact-page-4__address-icon {
  min-width: 60px;
  height: 60px;
  display: flex;
  object-fit: cover;
  border-radius: 5px;
  align-items: center;
  justify-content: center;
  background: var(--light_bg);
}

@media only screen and (max-width: 1919px) {
  .contact-page-4__address-icon {
    min-width: 64px;
  }
}

@media (max-width: 575px) {
  .contact-page-4__address-icon {
    display: inline-flex;
    margin-bottom: 20px;
  }
}

.contact-page-4__address-icon i {
  color: var(--primary);
}

.contact-page-4__address-text-title {
  display: flex;
  font-size: 18px;
  font-weight: 700;
  line-height: 22px;
  align-items: center;
  margin-bottom: 5px;
  color: var(--secondary);
  font-family: var(--font_inter);
}

.contact-page-4__address-text a {
  display: flex;
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  align-items: center;
  color: var(--body_text);
  font-family: var(--font_inter);
}

@media (max-width: 575px) {
  .contact-page-4__address-text a {
    padding-right: 10px;
  }
}

.contact-page-4__address-text a:hover {
  color: var(--primary);
}

.contact-page-4__address-text span {
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  color: var(--body_text);
  font-family: var(--font_inter);
}

.contact-page-4__address-text span cite {
  font-style: normal;
  color: var(--primary);
}

.contact-page-4__contact-from {
  padding: 112px 110px 0 110px;
}

@media only screen and (max-width: 1399px) {
  .contact-page-4__contact-from {
    padding: 75px 40px 0 40px;
  }
}

@media only screen and (max-width: 1199px) {
  .contact-page-4__contact-from {
    padding: 50px 30px 0 30px;
  }
}

@media only screen and (max-width: 991px) {
  .contact-page-4__contact-from {
    padding: 50px 15px 0 20px;
  }
}

@media (max-width: 575px) {
  .contact-page-4__contact-from {
    padding: 50px 20px 0 20px;
  }
}

.contact-page-4__contact-from form button {
  display: flex;
  font-weight: 600;
  font-size: 16px;
  line-height: 19px;
  color: #FFFFFF;
  align-items: center;
  text-align: center;
  color: var(--white);
  padding: 20.5px 0px;
  border-radius: 10px;
  justify-content: center;
  font-family: var(--font_inter);
}

.contact-page-4__contact-from form button::before {
  color: var(--white);
  background: var(--primary);
}

.contact-page-4__contact-from form button.rr-btn {
  padding: 6.5px 14px 14px 29.5px;
  background: #CEEC8B;
}

.contact-page-4__contact-from form button.rr-btn::before {
  background: var(--primary);
}

.contact-page-4__contact-from form button.rr-btn .btn-wrap .text-one {
  color: var(--white);
  font-family: var(--font_inter);
  font-weight: 600;
  font-size: 16px;
  line-height: 19px;
  color: var(--secondary);
  vertical-align: middle;
}

.contact-page-4__contact-from form button.rr-btn .btn-wrap .text-one span {
  width: 40px;
  height: 40px;
  display: flex;
  padding-left: 4px;
  border-radius: 5px;
  align-items: center;
  background: var(--white);
  justify-content: center;
}

.contact-page-4__contact-from form button.rr-btn .btn-wrap .text-one span i {
  font-family: var(--font_awesome);
  font-weight: 900;
  font-size: 14px;
  font-style: Solid;
  line-height: 16px;
  color: #364B36;
  vertical-align: middle;
}

.contact-page-4__contact-from form button.rr-btn .btn-wrap .text-two {
  color: var(--white);
}

.contact-page-4__contact-from form button.rr-btn .btn-wrap .text-two span {
  width: 40px;
  height: 40px;
  display: flex;
  border-radius: 5px;
  padding-left: 4px;
  align-items: center;
  background: var(--white);
  justify-content: center;
}

.contact-page-4__contact-from form button.rr-btn .btn-wrap .text-two span i {
  font-family: var(--font_awesome);
  font-weight: 900;
  font-size: 14px;
  font-style: Solid;
  line-height: 16px;
  color: #364B36;
  vertical-align: middle;
}

.contact-page-4__contact-from .ajax-response.error {
  color: var(--primary);
}

.contact-page-4__contact-from .ajax-response.success {
  color: #198754;
}

.contact-page-4__subtitle {
  font-size: 16px;
  font-weight: 600;
  line-height: 19px;
  color: #CEEC8B;
  margin-bottom: 20px;
  display: block;
  letter-spacing: 1.6px;
  vertical-align: middle;
  text-transform: uppercase;
  font-family: var(--font_dm-sans);
}

.contact-page-4__title {
  font-size: 60px;
  font-weight: 600;
  line-height: 70px;
  margin-bottom: 41px;
  color: var(--white);
  letter-spacing: -2.4px;
  text-transform: uppercase;
  font-family: var(--font_cooper);
}

@media only screen and (max-width: 1199px) {
  .contact-page-4__title {
    font-size: 34px;
    line-height: 38px;
  }
}

@media only screen and (max-width: 991px) {
  .contact-page-4__title {
    font-size: 30px;
    line-height: 20px;
    margin-bottom: 30px;
  }
}

@media only screen and (max-width: 767px) {
  .contact-page-4__title {
    font-size: 24px;
    line-height: 15px;
    letter-spacing: -0.4px;
  }
}

.contact-page-4__desc {
  display: flex;
  font-size: 16px;
  font-weight: 400;
  line-height: 19px;
  align-items: center;
  color: var(--body_text);
  font-family: var(--font_inter);
}

.contact-page-4__form-group {
  gap: 20px;
  display: flex;
  align-items: center;
}

.contact-page-4__form-group.one {
  display: flex;
  align-items: center;
}

.contact-page-4__form-group.one .contact-page__input {
  width: 50%;
}

@media (max-width: 575px) {
  .contact-page-4__form-group.one .contact-page__input {
    width: 100%;
  }
}

.contact-page-4__form-group.one .contact-page__select {
  width: 50%;
}

@media (max-width: 575px) {
  .contact-page-4__form-group.one .contact-page__select {
    width: 100%;
  }
}

@media (max-width: 575px) {
  .contact-page-4__form-group {
    gap: 0;
    flex-wrap: wrap;
  }
}

.contact-page-4__input {
  width: 100%;
  position: relative;
  margin-bottom: 20px;
}

@media only screen and (max-width: 767px) {
  .contact-page-4__input {
    margin-bottom: 20px;
  }
}

.contact-page-4__input input {
  width: 100%;
  border: none;
  height: 50px;
  font-weight: 400;
  border-radius: 5px;
  background: transparent;
  transition: all 0.3s ease-in-out;
  padding: 17.5px 55px 17.5px 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  color: rgba(255, 255, 255, 0.5);
}

.contact-page-4__input input::placeholder {
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
  text-transform: capitalize;
  font-family: var(--font_kanit);
  color: rgba(255, 255, 255, 0.5);
}

.contact-page-4__input input:focus {
  border: none;
  box-shadow: none;
  outline: none;
}

.contact-page-4__textarea {
  margin-bottom: 26px;
  position: relative;
}

.contact-page-4__textarea textarea {
  width: 100%;
  border: none;
  display: block;
  font-size: 16px;
  font-weight: 400;
  line-height: 19px;
  background: transparent;
  padding: 12px 20px 165px 20px;
  color: rgba(255, 255, 255, 0.5);
  font-family: var(--font_dm-sans);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
}

@media only screen and (max-width: 991px) {
  .contact-page-4__textarea textarea {
    padding: 21px 20px 57px 20px;
  }
}

.contact-page-4__textarea textarea:focus {
  outline: 0;
  border: none;
}

.contact-page-4__icon i {
  font-weight: 300;
  font-size: 16px;
  line-height: 1;
  color: var(--gray);
}

.contact-page-4__select {
  position: relative;
  margin-bottom: 25px;
}

.contact-page-4__select i {
  top: 20px;
  left: 20px;
  display: block;
  position: absolute;
  color: var(--primary);
}

.contact-page-4__select .nice-select {
  float: inherit;
  height: 50px;
  position: relative;
  background-color: transparent;
  transition: all 0.3s ease-in-out;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 0;
}

.contact-page-4__select .nice-select .icon {
  top: -7%;
  right: 50px;
  font-size: 20px;
  position: absolute;
  transform: translateY(-50%);
  transition: transform 0.3s ease;
}

@media only screen and (max-width: 767px) {
  .contact-page-4__select .nice-select .icon {
    left: 218px;
  }
}

.contact-page-4__select .nice-select .icon i {
  font-weight: 400;
  font-size: 16px;
  line-height: 16px;
  color: rgba(255, 255, 255, 0.5);
}

.contact-page-4__select .nice-select.open {
  border-color: var(--secondary);
}

.contact-page-4__select .nice-select.open .icon i {
  transform: rotate(180deg);
}

.contact-page-4__select .nice-select::after {
  display: none;
}

.contact-page-4__select .nice-select .current {
  display: flex;
  align-items: center;
  padding: 19.5px 112px 19.5px 20px;
  font-family: var(--font_inter);
  border-radius: 10px;
  font-weight: 400;
  font-size: 16px;
  line-height: 8px;
  color: rgba(255, 255, 255, 0.5);
}

@media only screen and (max-width: 767px) {
  .contact-page-4__select .nice-select .current {
    padding: 19.5px 112px 19.5px 29px;
  }
}

.contact-page-4__select .nice-select:focus {
  outline: none;
  border-color: var(--white);
}

.contact-page-4__select .nice-select .list {
  width: 100%;
}

.contact-page-4__icon {
  top: 17px;
  left: 30px;
  position: absolute;
}

.contact-page-4__icon i {
  font-weight: 400;
  font-size: 16px;
  line-height: 16px;
  color: var(--gray);
}

.contact-page-4__info {
  gap: 83px;
  display: flex;
  margin-top: 100px;
  align-items: center;
}

@media only screen and (max-width: 1399px) {
  .contact-page-4__info {
    margin-top: 30px;
    gap: 30px;
  }
}

@media only screen and (max-width: 991px) {
  .contact-page-4__info {
    flex-wrap: wrap;
  }
}

@media (max-width: 575px) {
  .contact-page-4__info {
    flex-wrap: wrap;
    padding-bottom: 40px;
  }
}

.contact-page-4__info-item {
  gap: 20px;
  display: flex;
}

@media only screen and (max-width: 1399px) {
  .contact-page-4__info-item {
    flex-wrap: wrap;
  }
}

.contact-page-4__info-item .icon {
  height: 64px;
  min-width: 64px;
  display: flex;
  align-items: center;
  border-radius: 100%;
  justify-content: center;
  transition: all 0.3s ease-in-out;
  border: 1.5px solid rgba(255, 255, 255, 0.1);
}

@media only screen and (max-width: 1919px) {
  .contact-page-4__info-item .icon {
    min-width: 64px;
  }
}

.contact-page-4__info-item .icon i {
  color: var(--white);
}

.contact-page-4__info-item .icon:hover i {
  color: var(--secondary);
}

.contact-page-4__info-item .icon:hover {
  background: var(--white);
}

.contact-page-4__info-item .content .title {
  font-family: var(--font_kanit);
  font-weight: 500;
  font-size: 20px;
  line-height: 28px;
  margin-bottom: 5px;
  color: var(--white);
}

.contact-page-4__info-item .content a {
  font-family: var(--font_kanit);
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  color: rgba(255, 255, 255, 0.6);
}

@media only screen and (max-width: 1199px) {
  .contact-page-4__info-item .content a {
    font-size: 16px;
    line-height: 24px;
  }
}

@media only screen and (max-width: 1399px) {
  .contact-page-4__info-item .content a br {
    display: none;
  }
}

.contact-page-4__info-item .content a:hover {
  color: var(--primary);
}

.contact-page-4__info-item .content li {
  list-style: none;
  font-family: var(--font_kanit);
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  color: rgba(255, 255, 255, 0.6);
}

.service-section-5__wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

@media only screen and (max-width: 991px) {
  .service-section-5__wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 575px) {
  .service-section-5__wrapper {
    grid-template-columns: repeat(1, 1fr);
  }
}

.service-section-5__item {
  text-align: center;
  background: #F4FAFF;
  border-radius: 10px;
  padding: 35px 40px 54px 40px;
  overflow: hidden;
  position: relative;
}

.dark .service-section-5__item {
  background: #202020;
  border-radius: 10px;
}

@media only screen and (max-width: 1199px) {
  .service-section-5__item {
    padding: 30px 20px 40px 20px;
  }
}

@media only screen and (max-width: 767px) {
  .service-section-5__item {
    padding: 30px 20px 30px 20px;
  }
}

.service-section-5__item .service-5-shape-1 {
  position: absolute;
  width: 336.85px;
  height: 336.85px;
  left: -90px;
  top: -10px;
  background: #FFFA68;
  filter: blur(100px);
  border-radius: 1000px;
  transform: rotate(-20.7deg);
  z-index: 1;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-in-out;
}

.service-section-5__item .service-5-shape-2 {
  position: absolute;
  width: 833.56px;
  height: 525.53px;
  right: -200px;
  bottom: -430px;
  background: #FF7273;
  filter: blur(150px);
  border-radius: 1000px;
  transform: rotate(-20.7deg);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-in-out;
}

.service-section-5__item .service-5-shape-3 {
  position: absolute;
  width: 445px;
  height: 445px;
  right: -160px;
  top: -130px;
  background: #C2FFF3;
  filter: blur(100px);
  border-radius: 1000px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-in-out;
}

.service-section-5__item .icon {
  background: linear-gradient(180deg, #E1EFFB 0%, #F4FAFF 100%);
  border-radius: 70px;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  transition: all 0.3s ease-in-out;
}

.service-section-5__item .icon img {
  transition: all 0.3s;
}

.dark .service-section-5__item .icon img {
  filter: brightness(0) invert(1);
}

.dark .service-section-5__item .icon {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.14) 0%, rgba(32, 32, 32, 0) 100%);
  border-radius: 70px;
}

.service-section-5__item:hover .service-5-shape-1 {
  opacity: 1;
  visibility: visible;
}

.service-section-5__item:hover .service-5-shape-2 {
  opacity: 1;
  visibility: visible;
}

.service-section-5__item:hover .service-5-shape-3 {
  opacity: 1;
  visibility: visible;
}

.service-section-5__item:hover .icon {
  background: linear-gradient(180deg, #FFFFFF 0%, rgba(255, 255, 255, 0) 100%);
  border-radius: 70px;
}

.service-section-5__item:hover .icon img {
  filter: none;
}

.dark .service-section-5__item:hover .service-section-5__btn a {
  color: var(--secondary-2);
}

.dark .service-section-5__item:hover .service-section-5__content .title {
  color: var(--secondary-2);
}

.dark .service-section-5__item:hover .service-section-5__content .decs {
  color: var(--secondary-2);
}

.service-section-5__content {
  margin-bottom: 48px;
  position: relative;
  z-index: 2;
}

@media only screen and (max-width: 991px) {
  .service-section-5__content {
    margin-bottom: 30px;
  }
}

.service-section-5__content .title {
  font-weight: 500;
  font-size: 24px;
  line-height: 40px;
  color: var(--secondary-2);
  font-family: var(--font_kanit);
  margin-bottom: 6px;
  transition: all 0.3s;
}

.dark .service-section-5__content .title {
  color: var(--white);
}

@media only screen and (max-width: 767px) {
  .service-section-5__content .title {
    font-size: 22px;
    line-height: 36px;
  }
}

.service-section-5__content .decs {
  font-weight: 400;
  font-size: 18px;
  line-height: 26px;
  color: var(--secondary-2);
  opacity: 0.6;
  font-family: var(--font_kanit);
  max-width: 328px;
  transition: all 0.3s;
}

.dark .service-section-5__content .decs {
  color: var(--white);
}

.service-section-5__btn {
  margin-top: 66px;
  position: relative;
  z-index: 2;
}

@media only screen and (max-width: 991px) {
  .service-section-5__btn {
    margin-top: 30px;
  }
}

.service-section-5__btn a {
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  color: var(--secondary-2);
  font-family: var(--font_kanit);
  background: linear-gradient(var(--secondary-2) 0%, var(--secondary-2) 98%);
  background-size: 0 1px;
  background-repeat: no-repeat;
  background-position: left 100%;
  color: var(--secondary-2);
  transition: all 0.3s ease-in-out;
}

.dark .service-section-5__btn a {
  color: #FFFFFF;
}

.service-section-5__btn a:hover {
  color: var(--secondary-2);
  background-size: 100% 1px;
}

.about-section-5__wrap .section-title-5__wrapper {
  text-align: start;
  margin-bottom: 90px;
}

@media only screen and (max-width: 767px) {
  .about-section-5__wrap .section-title-5__wrapper {
    margin-bottom: 40px;
  }
}

@media only screen and (max-width: 1199px) {
  .about-section-5__wrap .section-title-5__wrapper .title {
    font-size: 55px;
    line-height: 61px;
  }
}

@media only screen and (max-width: 767px) {
  .about-section-5__wrap .section-title-5__wrapper .title {
    font-size: 46px;
    line-height: 51px;
  }
}

@media (max-width: 575px) {
  .about-section-5__wrap .section-title-5__wrapper .title {
    font-size: 32px;
    line-height: 38px;
  }
}

.about-section-5__wrap .section-title-5__wrapper .text {
  font-weight: 400;
  font-size: 18px;
  line-height: 26px;
  color: var(--secondary-2);
  opacity: 0.6;
  font-family: var(--font_kanit);
  max-width: 742px;
  margin-top: 23px;
}

.dark .about-section-5__wrap .section-title-5__wrapper .text {
  color: rgba(255, 255, 255, 0.6);
}

.about-section-5__thumb {
  position: relative;
}

.about-section-5__thumb .image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px 10px 0 0;
}

.about-section-5__thumb .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 50%;
  transform: translate(-50%);
  bottom: 46px;
  position: relative;
  z-index: 1;
}

.about-section-5__thumb .icon::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translate(-50%);
  bottom: 0;
  width: 120px;
  height: 60px;
  background: #fff;
  border-radius: 260px 260px 0 0;
}

.about-section-5__box {
  margin-left: 44px;
}

@media only screen and (max-width: 767px) {
  .about-section-5__box {
    margin-left: 0;
    margin-top: 50px;
  }
}

.about-section-5__box .content {
  background: #F4FAFF;
  border-radius: 0px 0px 10px 10px;
  text-align: center;
  position: relative;
  padding: 29px 20px 30px 20px;
}

.dark .about-section-5__box .content {
  background: #131416;
  border-radius: 0px 0px 10px 10px;
}

.about-section-5__box .content .decs {
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  color: rgba(18, 18, 18, 0.7);
  font-family: var(--font_kanit);
  max-width: 288px;
  margin: 0 auto;
}

.dark .about-section-5__box .content .decs {
  color: rgba(255, 255, 255, 0.7);
}

.about-section-5__box .content .icon {
  position: absolute;
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 60px;
  background: #F4FAFF;
  border-radius: 260px 260px 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.dark .about-section-5__box .content .icon {
  background: #131416;
}

.about-section-5__box .content .icon img {
  margin-top: 30px;
}

.dark .about-section-5__box .content .icon img {
  filter: brightness(0) invert(1);
}

.about-section-5__inner {
  margin-top: 132px;
}

@media only screen and (max-width: 991px) {
  .about-section-5__inner {
    margin-top: 50px;
  }
}

.about-section-5__item-box .step {
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  color: rgba(18, 18, 18, 0.7);
  font-family: var(--font_kanit);
  margin-bottom: 10px;
}

.dark .about-section-5__item-box .step {
  color: rgba(255, 255, 255, 0.7);
}

.about-section-5__item {
  display: flex;
  gap: 24px;
  padding: 24px 0 23px 0;
  border-bottom: 1px solid rgba(18, 18, 18, 0.14);
  border-top: 1px solid rgba(18, 18, 18, 0.14);
}

.dark .about-section-5__item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.about-section-5__item .icon {
  margin-top: 2px;
}

.dark .about-section-5__item .icon img {
  filter: brightness(0) invert(1);
}

.about-section-5__item .content .title {
  font-weight: 500;
  font-size: 24px;
  line-height: 1.1;
  color: var(--secondary-2);
  font-family: var(--font_kanit);
  margin-bottom: 10px;
}

.dark .about-section-5__item .content .title {
  color: var(--white);
}

.about-section-5__item .content .text {
  font-weight: 400;
  font-size: 18px;
  line-height: 26px;
  color: var(--secondary-2);
  opacity: 0.6;
  font-family: var(--font_kanit);
  max-width: 311px;
}

.dark .about-section-5__item .content .text {
  color: var(--white);
}

.about-section-5__btn {
  position: relative;
}

.about-section-5__btn .rr-btn-5 {
  font-weight: 500;
  font-size: 18px;
  line-height: 27px;
  color: var(--secondary-2);
  background: #F4FAFF;
  border-radius: 6px;
  transition: all 0.3s ease-in-out;
  padding: 13.5px 41px;
  box-shadow: inherit;
}

.about-section-5__btn .rr-btn-5 i {
  transform: rotate(-45deg);
  font-size: 17px;
  font-weight: 400;
  margin-left: 8px;
}

.about-section-5__btn .about-line {
  position: absolute;
  height: 1px;
  width: 540px;
  background: rgba(18, 18, 18, 0.12);
  left: 255px;
  top: 50%;
  transform: translateY(-50%);
}

.dark .about-section-5__btn .about-line {
  background: #FFFFFF;
  opacity: 0.14;
}

@media only screen and (max-width: 767px) {
  .about-section-5__btn .about-line {
    width: 200px;
  }
}

@media (max-width: 575px) {
  .about-section-5__btn .about-line {
    display: none;
  }
}

.instagram-5-section {
  margin-bottom: 6px;
}

.instagram-5-section__wrapper {
  padding: 0 10px 0px 10px;
  text-align: center;
}

.instagram-5-section__inner {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
  align-items: center;
}

@media only screen and (max-width: 1199px) {
  .instagram-5-section__inner {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media only screen and (max-width: 991px) {
  .instagram-5-section__inner {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media only screen and (max-width: 767px) {
  .instagram-5-section__inner {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 575px) {
  .instagram-5-section__inner {
    grid-template-columns: repeat(1, 1fr);
  }
}

.instagram-5-section__thumb {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}

@media (max-width: 575px) {
  .instagram-5-section__thumb {
    max-height: 400px;
  }
}

.instagram-5-section__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
}

@media (max-width: 575px) {
  .instagram-5-section__thumb img {
    max-height: 400px;
  }
}

.instagram-5-section__thumb:hover img {
  transform: scale(1.08);
}

.instagram-5-section__thumb:hover::before {
  opacity: 1;
  visibility: visible;
}

.instagram-5-section__thumb:hover .icon {
  opacity: 1;
  visibility: visible;
}

.instagram-5-section__thumb::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(18, 18, 18, 0.2);
  border-radius: 10px;
  left: 0;
  right: 0;
  top: 0;
  transition: all 0.3s ease-in-out;
  opacity: 0;
  visibility: hidden;
}

.instagram-5-section__thumb .icon {
  width: 60px;
  height: 60px;
  min-height: 60px;
  min-width: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #FFFFFF;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.3s ease-in-out;
  opacity: 0;
  visibility: hidden;
}

.instagram-5-section__thumb .icon i {
  font-size: 18px;
  color: var(--secondary-2);
  transition: all 0.3s ease-in-out;
}

.instagram-5-section__thumb .icon:hover {
  background: var(--primary);
}

.instagram-5-section__thumb .icon:hover i {
  color: var(--white);
}

.running-section-5__thumb {
  overflow: hidden;
}

.running-section-5__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.running-section-5__inner {
  background: #CEF028;
  padding: 53px 0;
}

.running-section-5__inner .text__slider .swiper-wrapper {
  display: flex;
  column-gap: 10px;
  align-items: center;
  justify-content: space-between;
  transition-timing-function: linear;
}

.running-section-5__inner .text__slider .swiper-wrapper .swiper-slide {
  width: auto;
}

.running-section-5__list h4 {
  font-weight: 400;
  font-size: 44px;
  line-height: 54px;
  text-transform: capitalize;
  color: var(--secondary-2);
  font-family: var(--font_kanit);
  list-style: none;
  margin-right: 20px;
}

@media only screen and (max-width: 1199px) {
  .running-section-5__list h4 {
    font-size: 30px;
    line-height: 36px;
  }
}

.running-section-5__list h4 img {
  margin-right: 20px;
}

.pricing-section-5__inner {
  background: #F4FAFF;
  border-radius: 10px;
  display: grid;
  grid-template-columns: 240px 1fr 210px;
  padding: 44.5px 60px;
  align-items: center;
  margin-bottom: 30px;
  position: relative;
  overflow: hidden;
}

.dark .pricing-section-5__inner {
  background: #202020;
  border-radius: 10px;
}

.pricing-section-5__inner:last-child {
  margin-bottom: 0;
}

@media only screen and (max-width: 1399px) {
  .pricing-section-5__inner {
    grid-template-columns: 200px 1fr 210px;
    padding: 44.5px 30px;
  }
}

@media only screen and (max-width: 1199px) {
  .pricing-section-5__inner {
    grid-template-columns: 180px 1fr 210px;
    padding: 44.5px 25px;
  }
}

@media only screen and (max-width: 767px) {
  .pricing-section-5__inner {
    grid-template-columns: repeat(2, 1fr);
    padding: 44.5px 20px;
    align-items: start;
    gap: 20px;
  }
}

@media (max-width: 575px) {
  .pricing-section-5__inner {
    grid-template-columns: repeat(1, 1fr);
    padding: 44.5px 20px;
    align-items: start;
    gap: 20px;
  }
}

.pricing-section-5__inner .pricing-5-bg-1 {
  position: absolute;
  width: 875.27px;
  height: 1016.44px;
  left: -500px;
  top: -100px;
  background: #FF7273;
  filter: blur(200px);
  border-radius: 1000px;
  transform: rotate(-20.7deg);
  transition: all 0.3s ease-in-out;
  opacity: 0;
  visibility: hidden;
}

.pricing-section-5__inner .pricing-5-bg-2 {
  position: absolute;
  width: 855px;
  height: 570px;
  left: 240px;
  top: -200px;
  background: #C2FFF3;
  filter: blur(200px);
  border-radius: 1000px;
  transition: all 0.3s ease-in-out;
  opacity: 0;
  visibility: hidden;
}

.pricing-section-5__inner .pricing-5-bg-3 {
  position: absolute;
  width: 693.9px;
  height: 700.47px;
  right: -480px;
  top: -155px;
  background: #FFFA68;
  filter: blur(200px);
  border-radius: 1000px;
  transform: rotate(-20.7deg);
  transition: all 0.3s ease-in-out;
  opacity: 0;
  visibility: hidden;
}

.pricing-section-5__inner:hover .pricing-5-bg-1 {
  opacity: 1;
  visibility: visible;
}

.pricing-section-5__inner:hover .pricing-5-bg-2 {
  opacity: 1;
  visibility: visible;
}

.pricing-section-5__inner:hover .pricing-5-bg-3 {
  opacity: 1;
  visibility: visible;
}

.pricing-section-5__inner:hover .pricing-section-5__price {
  position: relative;
  z-index: 1;
}

.pricing-section-5__inner:hover .pricing-section-5__price .badg {
  color: #FFFFFF;
  font-family: var(--font_kanit);
  background: var(--secondary-2);
}

.pricing-section-5__inner:hover .pricing-section-5__price .price {
  color: var(--secondary-2);
}

.pricing-section-5__inner:hover .pricing-section-5__price .price small {
  color: rgba(18, 18, 18, 0.7);
}

.pricing-section-5__inner:hover .pricing-section-5__list ul li {
  color: rgba(18, 18, 18, 0.8);
}

.pricing-section-5__price {
  position: relative;
  z-index: 1;
}

.pricing-section-5__price .badg {
  font-weight: 500;
  font-size: 16px;
  line-height: 1;
  color: #FFFFFF;
  font-family: var(--font_kanit);
  background: var(--secondary-2);
  border-radius: 4px;
  padding: 3px 14.5px;
  margin-bottom: 15px;
  display: inline-block;
  transition: all 0.3s;
}

.dark .pricing-section-5__price .badg {
  color: var(--white);
  background: inherit;
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.pricing-section-5__price .price {
  font-weight: 500;
  font-size: 44px;
  line-height: 1;
  color: var(--secondary-2);
  font-family: var(--font_kanit);
  transition: all 0.3s;
}

.dark .pricing-section-5__price .price {
  color: var(--white);
}

.pricing-section-5__price .price small {
  font-weight: 400;
  font-size: 18px;
  line-height: 1;
  color: rgba(18, 18, 18, 0.7);
  font-family: var(--font_kanit);
  transition: all 0.3s;
}

.dark .pricing-section-5__price .price small {
  color: rgba(255, 255, 255, 0.7);
}

.pricing-section-5__list-box {
  padding-left: 59px;
  display: grid;
  grid-template-columns: 299px 1fr;
  position: relative;
}

@media only screen and (max-width: 1199px) {
  .pricing-section-5__list-box {
    padding-left: 15px;
    grid-template-columns: 255px 1fr;
  }
}

@media only screen and (max-width: 991px) {
  .pricing-section-5__list-box {
    padding-left: 15px;
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

@media (max-width: 575px) {
  .pricing-section-5__list-box {
    padding-left: 0px;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 20px;
  }
}

.pricing-section-5__list-box::before {
  position: absolute;
  content: "";
  height: 90px;
  left: 0px;
  width: 1px;
  top: -10px;
  background: rgba(18, 18, 18, 0.16);
}

@media only screen and (max-width: 1199px) {
  .pricing-section-5__list-box::before {
    display: none;
  }
}

.pricing-section-5__list-box::after {
  position: absolute;
  content: "";
  height: 90px;
  right: 60px;
  width: 1px;
  top: -10px;
  background: rgba(18, 18, 18, 0.16);
}

@media only screen and (max-width: 1199px) {
  .pricing-section-5__list-box::after {
    display: none;
  }
}

.pricing-section-5__list ul li {
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  color: rgba(18, 18, 18, 0.8);
  font-family: var(--font_kanit);
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 14px;
  transition: all 0.3s;
}

.dark .pricing-section-5__list ul li {
  color: rgba(255, 255, 255, 0.8);
}

.pricing-section-5__list ul li:last-child {
  margin-bottom: 0;
}

.pricing-section-5__list ul .check i {
  color: #FFFFFF;
  background: linear-gradient(326.31deg, #0F9351 26.11%, #44C987 83.89%);
  box-shadow: 0px 1px 6px rgba(15, 147, 81, 0.4);
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 14px;
  font-weight: 400;
}

.pricing-section-5__list ul .error i {
  color: var(--secondary-2);
  background: rgba(18, 18, 18, 0.14);
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 15px;
  font-weight: 400;
}

.dark .pricing-section-5__list ul .error i {
  background: rgba(255, 255, 255, 0.14);
  color: var(--white);
}

.pricing-section-5__btn .rr-btn-5 {
  font-weight: 500;
  font-size: 18px;
  line-height: 27px;
  color: var(--secondary-2);
  background: #FFFFFF;
  box-shadow: 0px 2px 10px rgba(18, 18, 18, 0.14);
  border-radius: 6px;
  transition: all 0.3s ease-in-out;
  padding: 14px 38px;
}

.pricing-section-5__btn .rr-btn-5 i {
  transform: rotate(-45deg);
  font-size: 16px;
  font-weight: 400;
  margin-left: 8px;
}

.pricing-section-5__btn .rr-btn-5:hover {
  background: var(--secondary-2);
  color: #FFFFFF;
}

.project-section-5 {
  overflow: hidden;
}

.project-section-5__wrapper {
  display: flex;
  width: max-content;
}

@media only screen and (max-width: 767px) {
  .project-section-5__wrapper {
    display: block;
    width: inherit;
  }
}

.project-section-5__wrapper .bg-shape-1 {
  position: absolute;
  width: 2164px;
  height: 1000px;
  left: 158px;
  top: -510px;
  background: #C2FFF3;
  filter: blur(200px);
  border-radius: 1000px;
}

.project-section-5__wrapper .bg-shape-2 {
  position: absolute;
  width: 693.9px;
  height: 700.47px;
  left: 686px;
  bottom: -177px;
  background: #FFFA68;
  filter: blur(200px);
  border-radius: 1000px;
  transform: rotate(-20.7deg);
}

.project-section-5__wrapper .bg-shape-3 {
  position: absolute;
  width: 833.56px;
  height: 1234px;
  right: -480px;
  bottom: -700px;
  background: #FF7273;
  filter: blur(200px);
  border-radius: 1000px;
  transform: rotate(-20.7deg);
}

.project-section-5__box {
  background: #F4FAFF;
  display: grid;
  grid-template-columns: 1fr 840px;
  position: relative;
  overflow: hidden;
  gap: 130px;
}

@media only screen and (max-width: 1919px) {
  .project-section-5__box {
    grid-template-columns: 1fr 640px;
  }
}

@media only screen and (max-width: 1399px) {
  .project-section-5__box {
    grid-template-columns: 1fr 640px;
    gap: 40px;
  }
}

@media only screen and (max-width: 1199px) {
  .project-section-5__box {
    grid-template-columns: 1fr 575px;
    gap: 40px;
  }
}

@media only screen and (max-width: 991px) {
  .project-section-5__box {
    grid-template-columns: 1fr 440px;
    gap: 25px;
  }
}

@media only screen and (max-width: 767px) {
  .project-section-5__box {
    display: inherit;
    padding: 0 10px;
  }
}

.project-section-5__item {
  min-width: 100vw;
  flex-shrink: 0;
}

.project-section-5__thumb {
  position: relative;
  position: relative;
  z-index: 1;
}

.project-section-5__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.project-section-5__thumb .meta {
  position: absolute;
  left: 50px;
  top: 50px;
}

@media only screen and (max-width: 767px) {
  .project-section-5__thumb .meta {
    left: 20px;
  }
}

.project-section-5__thumb .meta span {
  font-weight: 400;
  font-size: 18px;
  line-height: 27px;
  color: var(--secondary-2);
  font-family: var(--font_kanit);
  display: inline-block;
  padding: 3.5px 23.5px;
  background: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 6px;
}

.project-section-5__inner {
  padding-top: 190px;
  position: relative;
  z-index: 3;
}

@media only screen and (max-width: 1919px) {
  .project-section-5__inner {
    padding-top: 80px;
  }
}

@media only screen and (max-width: 1399px) {
  .project-section-5__inner {
    padding-top: 50px;
  }
}

@media only screen and (max-width: 767px) {
  .project-section-5__inner {
    padding-top: 40px;
  }
}

.project-section-5__info {
  margin-bottom: 88px;
  margin-top: 62px;
}

@media only screen and (max-width: 1399px) {
  .project-section-5__info {
    margin-bottom: 40px;
    margin-top: 40px;
  }
}

.project-section-5__info .title {
  font-weight: 400;
  font-size: 70px;
  line-height: 80px;
  color: var(--secondary-2);
  font-family: var(--font_kanit);
  margin-bottom: 30px;
}

@media only screen and (max-width: 991px) {
  .project-section-5__info .title {
    font-size: 50px;
    line-height: 53px;
  }
}

@media (max-width: 575px) {
  .project-section-5__info .title {
    font-size: 44px;
    line-height: 47px;
  }
}

.project-section-5__info .decs {
  font-weight: 400;
  font-size: 18px;
  line-height: 26px;
  color: var(--secondary-2);
  opacity: 0.6;
  font-family: var(--font_kanit);
  max-width: 627px;
}

.project-section-5__meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 39px;
}

.project-section-5__meta span {
  display: inline-block;
  padding: 2px 13.5px;
  border: 1px solid rgba(18, 18, 18, 0.12);
  border-radius: 4px;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: rgba(18, 18, 18, 0.7);
}

.project-section-5__item {
  position: relative;
}

.project-section-5__btn .rr-btn-5 {
  font-weight: 500;
  font-size: 18px;
  line-height: 27px;
  color: var(--secondary-2);
  background: #FFFFFF;
  box-shadow: 0px 2px 10px rgba(18, 18, 18, 0.14);
  border-radius: 6px;
  transition: all 0.3s ease-in-out;
  padding: 13.5px 40.5px;
}

.project-section-5__btn .rr-btn-5 i {
  transform: rotate(-45deg);
  font-size: 16px;
  font-weight: 400;
  margin-left: 8px;
}

.project-section-5__btn .rr-btn-5 {
  position: relative;
  padding: 14px 36px;
  font-weight: 500;
  font-size: 18px;
  line-height: 27px;
  color: var(--secondary-2) !important;
  background: #FFFFFF;
  border-radius: 6px;
  transition: all 0.3s ease-in-out;
  text-decoration: none;
  overflow: hidden;
}

.project-section-5__btn .rr-btn-5 i {
  transform: rotate(-45deg);
  font-size: 16px;
  font-weight: 400;
  margin-left: 8px;
  color: var(--secondary-2);
}

.project-section-5__btn .rr-btn-5 span {
  position: absolute;
  transition: 0.5s ease;
  height: 14px;
  width: 14px;
}

.project-section-5__btn .top-arrow {
  top: 0px;
  left: 0px;
  border-right: none;
  border-bottom: none;
  border-radius: 6px 0 0 0;
  border-top: 2px solid var(--secondary-2);
  border-left: 2px solid var(--secondary-2);
}

.project-section-5__btn .right-arrow {
  border-top: 2px solid var(--secondary-2);
  border-right: 2px solid var(--secondary-2);
}

.project-section-5__btn .bottom-arrow {
  border-right: 2px solid var(--secondary-2);
  border-bottom: 2px solid var(--secondary-2);
}

.project-section-5__btn .left-arrow {
  border-left: 2px solid var(--secondary-2);
  border-bottom: 2px solid var(--secondary-2);
}

.project-section-5__content {
  margin-bottom: 90px;
}

.project-section-5 .project-5-pagination__wrapper {
  z-index: 1;
  position: absolute;
  right: 60px;
  top: 47%;
  transform: translateY(-50%);
}

@media only screen and (max-width: 1399px) {
  .project-section-5 .project-5-pagination__wrapper {
    top: 45%;
  }
}

@media (max-width: 575px) {
  .project-section-5 .project-5-pagination__wrapper {
    display: none;
  }
}

.project-section-5 .project-5-pagination {
  display: flex;
  flex-direction: column;
  gap: 0px;
  align-items: end;
}

.project-section-5 .project-5-pagination .swiper-pagination-bullet {
  display: flex;
  align-items: center;
  gap: 14px;
  opacity: 1;
  background: transparent;
  width: auto;
  height: auto;
  cursor: pointer;
}

.project-section-5 .project-5-pagination .line {
  width: 20px;
  height: 2px;
  background: rgba(18, 18, 18, 0.2);
  transition: all 0.3s ease;
  transform-origin: left center;
}

.project-section-5 .project-5-pagination .number {
  font-weight: 500;
  font-size: 18px;
  line-height: 23px;
  color: var(--secondary-2);
  opacity: 0;
  transition: all 0.3s ease;
}

.project-section-5 .project-5-pagination .swiper-pagination-bullet-active .line {
  width: 50px;
  background: var(--secondary-2);
}

.project-section-5 .project-5-pagination .swiper-pagination-bullet-active .number {
  opacity: 1;
}

.our-expertise-5 .our-expertise-inner {
  position: relative;
}

.our-expertise-5 .our-expertise-item {
  display: flex;
  align-items: center;
  gap: 45px;
  padding: 43.5px 54px;
  border: 1px solid rgba(18, 18, 18, 0.12);
  border-radius: 10px;
  margin-bottom: 30px;
  position: relative;
  flex-wrap: wrap;
}

.dark .our-expertise-5 .our-expertise-item {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 10px;
}

@media only screen and (max-width: 991px) {
  .our-expertise-5 .our-expertise-item {
    padding: 31.5px 30px;
    gap: 30px;
  }
}

@media only screen and (max-width: 767px) {
  .our-expertise-5 .our-expertise-item {
    gap: 15px;
  }
}

@media (max-width: 575px) {
  .our-expertise-5 .our-expertise-item {
    padding: 31.5px 15px;
  }
}

.our-expertise-5 .our-expertise-item:last-child {
  margin-bottom: 0;
}

.our-expertise-5 .our-expertise-item span {
  font-weight: 400;
  font-size: 16px;
  line-height: 28px;
  text-transform: capitalize;
  color: #101010;
  font-family: var(--font_kanit);
  display: inline-block;
  border: 1px solid rgba(16, 16, 16, 0.12);
  border-radius: 6px;
  padding: 4px 10px;
  z-index: 1;
  position: relative;
  transition: all 0.3s;
}

.dark .our-expertise-5 .our-expertise-item span {
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--white);
}

.our-expertise-5 .our-expertise-item span i {
  color: #101010;
  font-size: 14px;
  margin-right: 10px;
}

.dark .our-expertise-5 .our-expertise-item span i {
  color: var(--white);
}

.our-expertise-5 .our-expertise-item .title {
  font-weight: 400;
  font-size: 34px;
  line-height: 51px;
  text-transform: capitalize;
  color: var(--secondary-2);
  font-family: var(--font_kanit);
  position: relative;
  z-index: 1;
}

.dark .our-expertise-5 .our-expertise-item .title {
  color: var(--white);
}

@media only screen and (max-width: 991px) {
  .our-expertise-5 .our-expertise-item .title {
    font-size: 27px;
    line-height: 32px;
  }
}

@media (max-width: 575px) {
  .our-expertise-5 .our-expertise-item .title {
    font-size: 25px;
    line-height: 32px;
  }
}

.our-expertise-5 .our-expertise-item .title:hover a {
  color: var(--secondary-2);
}

.our-expertise-5 .our-expertise-item:hover span {
  color: #101010;
}

.our-expertise-5 .our-expertise-item:hover span i {
  color: #101010;
}

.our-expertise-5 .our-expertise-item:hover .title {
  color: var(--secondary-2);
}

.our-expertise-5 .hover-image {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  z-index: 99;
  width: 350px;
  height: 370px;
  overflow: hidden;
  pointer-events: none;
  will-change: transform;
  transform: translate(0%, 0%) scale(0);
}

.our-expertise-5 .hover-image::before {
  position: absolute;
  content: "\f061";
  height: 70px;
  width: 70px;
  border-radius: 50%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background-color: var(--secondary-2);
  font-family: var(--font_awesome);
  font-size: 20px;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
}

.our-expertise-5 .hover-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
  border-radius: 10px;
}

.our-expertise-5 .active-bg {
  left: 0;
  right: 0;
  z-index: 0;
  height: 0;
  opacity: 0;
  position: absolute;
  pointer-events: none;
  background: #FF7273;
  transform: translateY(0);
  transform-origin: top center;
  border-radius: 10px;
  transition: transform 0.4s ease, height 0.4s ease, opacity 0.4s ease;
}

.dark .our-expertise-5 .active-bg {
  background: #FF7273;
}

.our-expertise-5 .our-expertise-item:hover span {
  background: #FFFFFF;
  box-shadow: 0px 2px 10px rgba(18, 18, 18, 0.14);
  border-radius: 6px;
}

.testimonial-5__wrapper {
  background: #F4FAFF;
  overflow: hidden;
  position: relative;
  padding-bottom: 190px;
}

@media only screen and (max-width: 1199px) {
  .testimonial-5__wrapper {
    padding-bottom: 140px;
  }
}

@media only screen and (max-width: 991px) {
  .testimonial-5__wrapper {
    padding-bottom: 110px;
  }
}

@media only screen and (max-width: 767px) {
  .testimonial-5__wrapper {
    padding-bottom: 80px;
  }
}

.testimonial-5__wrapper .testimonial-5-bg-1 {
  position: absolute;
  width: 790.3px;
  height: 797.78px;
  left: -250px;
  top: -85px;
  background: #FFFA68;
  filter: blur(200px);
  border-radius: 1000px;
  transform: rotate(-20.7deg);
  z-index: 1;
}

.testimonial-5__wrapper .testimonial-5-bg-2 {
  position: absolute;
  width: 833.56px;
  height: 1234px;
  left: -272px;
  top: 130px;
  background: #FF7273;
  filter: blur(200px);
  border-radius: 1000px;
  transform: rotate(-20.7deg);
}

.testimonial-5__wrapper .testimonial-5-bg-3 {
  position: absolute;
  width: 2164px;
  height: 1030px;
  left: 389px;
  top: -315px;
  background: #C2FFF3;
  filter: blur(200px);
  border-radius: 1000px;
}

.testimonial-5__info {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 90px;
  position: relative;
  z-index: 2;
  flex-wrap: wrap;
}

@media only screen and (max-width: 1199px) {
  .testimonial-5__info {
    margin-bottom: 50px;
  }
}

.testimonial-5__info .section-title-5__wrapper {
  text-align: center;
  margin-bottom: 70px;
}

@media only screen and (max-width: 991px) {
  .testimonial-5__info .section-title-5__wrapper {
    margin-bottom: 50px;
  }
}

.testimonial-5__info .section-title-5__wrapper .sub-title {
  font-weight: 400;
  font-size: 18px;
  line-height: 27px;
  color: var(--white);
  font-family: var(--font_kanit);
  background: var(--secondary-2);
  border-radius: 6px;
  padding: 4.5px 22.5px;
  display: inline-block;
  margin-bottom: 12px;
}

.testimonial-5__info .section-title-5__wrapper .title {
  font-weight: 400;
  font-size: 70px;
  line-height: 80px;
  color: var(--secondary-2);
  font-family: var(--font_kanit);
}

@media only screen and (max-width: 991px) {
  .testimonial-5__info .section-title-5__wrapper .title {
    font-size: 55px;
    line-height: 60px;
  }
}

@media only screen and (max-width: 767px) {
  .testimonial-5__info .section-title-5__wrapper .title {
    font-size: 48px;
    line-height: 54px;
  }
}

@media (max-width: 575px) {
  .testimonial-5__info .section-title-5__wrapper .title {
    font-size: 30px;
    line-height: 34px;
  }
}

.testimonial-5__info .section-title-5__wrapper {
  text-align: start;
  margin-bottom: 0;
}

.testimonial-5__btn {
  margin-bottom: 30px;
}

.testimonial-5__btn .rr-btn-5 {
  font-weight: 500;
  font-size: 18px;
  line-height: 27px;
  color: var(--secondary-2);
  background: #FFFFFF;
  box-shadow: 0px 2px 10px rgba(18, 18, 18, 0.14);
  border-radius: 6px;
  transition: all 0.3s ease-in-out;
  padding: 13.5px 40.5px;
}

.testimonial-5__btn .rr-btn-5 i {
  transform: rotate(-45deg);
  font-size: 16px;
  font-weight: 400;
  margin-left: 8px;
}

.testimonial-5__content {
  margin-left: 340px;
  position: relative;
  z-index: 2;
}

@media only screen and (max-width: 1199px) {
  .testimonial-5__content {
    margin-left: 250px;
  }
}

@media only screen and (max-width: 991px) {
  .testimonial-5__content {
    margin-left: 110px;
  }
}

@media (max-width: 575px) {
  .testimonial-5__content {
    margin-left: 0;
  }
}

.testimonial-5__content .decs {
  font-weight: 300;
  font-size: 44px;
  line-height: 60px;
  text-transform: capitalize;
  color: var(--secondary-2);
  font-family: var(--font_kanit);
  max-width: 914px;
}

@media only screen and (max-width: 1199px) {
  .testimonial-5__content .decs {
    font-size: 40px;
    line-height: 52px;
  }
}

@media only screen and (max-width: 767px) {
  .testimonial-5__content .decs {
    font-size: 31px;
    line-height: 36px;
  }
}

.testimonial-5__author {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-top: 49px;
  position: relative;
  z-index: 3;
  flex-wrap: wrap;
}

@media only screen and (max-width: 991px) {
  .testimonial-5__author {
    margin-top: 25px;
  }
}

.testimonial-5__author .name {
  font-weight: 500;
  font-size: 22px;
  line-height: 40px;
  color: var(--secondary-2);
  font-family: var(--font_kanit);
}

.testimonial-5__author span {
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  color: var(--secondary-2);
  opacity: 0.6;
  font-family: var(--font_kanit);
}

.testimonial-5__author-box {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-top: 85px;
  position: relative;
  z-index: 3;
}

@media only screen and (max-width: 991px) {
  .testimonial-5__author-box {
    margin-top: 40px;
  }
}

@media only screen and (max-width: 767px) {
  .testimonial-5__author-box {
    flex-wrap: wrap;
    gap: 30px;
  }
}

@media (max-width: 575px) {
  .testimonial-5__icon {
    width: 100px;
  }
}

.testimonial-5__author-thumb {
  display: flex;
  align-items: center;
  gap: 60px;
}

@media only screen and (max-width: 991px) {
  .testimonial-5__author-thumb {
    gap: 20px;
  }
}

@media (max-width: 575px) {
  .testimonial-5__author-thumb {
    flex-wrap: wrap;
  }
}

.testimonial-5__author-thumb img {
  width: 250px;
  height: 250px;
  object-fit: cover;
  border-radius: 10px;
}

.testimonial-5__author-thumb .text {
  font-weight: 400;
  font-size: 40px;
  line-height: 50px;
  text-transform: uppercase;
  color: rgba(18, 18, 18, 0.5);
  font-family: var(--font_kanit);
}

@media only screen and (max-width: 991px) {
  .testimonial-5__author-thumb .text {
    font-size: 30px;
    line-height: 40px;
  }
}

.testimonial-5__inner {
  position: relative;
  z-index: 3;
}

.testimonial-5 .testimonial-5-pagination {
  position: absolute;
  left: 0px;
  top: 0;
  display: flex;
  flex-direction: column;
  gap: 0px;
}

@media (max-width: 575px) {
  .testimonial-5 .testimonial-5-pagination {
    display: none;
  }
}

.testimonial-5 .testimonial-5-pagination .swiper-pagination-bullet {
  display: flex;
  align-items: center;
  gap: 10px;
  opacity: 1;
  background: transparent;
  width: auto;
  height: auto;
  cursor: pointer;
}

.testimonial-5 .testimonial-5-pagination .line {
  width: 20px;
  height: 2px;
  background: rgba(18, 18, 18, 0.2);
  transition: all 0.3s ease;
}

.testimonial-5 .testimonial-5-pagination .number {
  font-weight: 500;
  font-size: 18px;
  line-height: 28px;
  color: var(--secondary-2);
  opacity: 0;
  transition: all 0.3s ease;
}

.testimonial-5 .testimonial-5-pagination .swiper-pagination-bullet-active .line {
  width: 50px;
  background: var(--secondary-2);
}

.testimonial-5 .testimonial-5-pagination .swiper-pagination-bullet-active .number {
  opacity: 1;
}

.team-section-5__info {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 65px;
  position: relative;
  z-index: 2;
  flex-wrap: wrap;
}

@media only screen and (max-width: 991px) {
  .team-section-5__info {
    gap: 40px;
    margin-bottom: 50px;
  }
}

.team-section-5__info .section-title-5__wrapper {
  text-align: start;
  margin-bottom: 0;
}

@media only screen and (max-width: 1199px) {
  .team-section-5__info .section-title-5__wrapper .title {
    font-size: 61px;
    line-height: 67px;
  }
}

@media only screen and (max-width: 767px) {
  .team-section-5__info .section-title-5__wrapper .title {
    font-size: 45px;
    line-height: 57px;
  }
}

@media (max-width: 575px) {
  .team-section-5__info .section-title-5__wrapper .title {
    font-size: 39px;
    line-height: 44px;
  }
}

.team-section-5__btn {
  margin-bottom: 30px;
}

.team-section-5__btn .rr-btn-5 {
  font-weight: 500;
  font-size: 18px;
  line-height: 27px;
  color: var(--secondary-2);
  background: #F4FAFF;
  border-radius: 6px;
  transition: all 0.3s ease-in-out;
  padding: 13.5px 43.5px;
}

.team-section-5__btn .rr-btn-5 i {
  transform: rotate(-45deg);
  font-size: 16px;
  font-weight: 400;
  margin-left: 8px;
}

.team-section-5__inner {
  display: flex;
  gap: 80px;
}

@media only screen and (max-width: 1199px) {
  .team-section-5__inner {
    gap: 60px;
  }
}

@media only screen and (max-width: 991px) {
  .team-section-5__inner {
    gap: 30px;
  }
}

@media only screen and (max-width: 767px) {
  .team-section-5__inner {
    gap: 30px;
    align-items: center;
  }
}

.team-section-5__item img {
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

.team-section-5__wrap {
  max-width: 350px;
}

@media only screen and (max-width: 1199px) {
  .team-section-5__wrap {
    max-width: 260px;
  }
}

@media only screen and (max-width: 991px) {
  .team-section-5__wrap {
    max-width: 200px;
  }
}

@media only screen and (max-width: 767px) {
  .team-section-5__wrap {
    max-width: 350px;
    margin-bottom: 40px;
  }
}

@media (max-width: 575px) {
  .team-section-5__wrap {
    max-width: 100%;
    margin-bottom: 40px;
  }
}

.team-section-5__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  border-top: 1px solid rgba(18, 18, 18, 0.12);
  padding-top: 14px;
  margin-top: 30px;
}

.dark .team-section-5__content {
  border-top: 1px solid rgba(255, 255, 255, 0.3);
}

.team-section-5__content .title {
  font-weight: 500;
  font-size: 20px;
  line-height: 40px;
  color: var(--secondary-2);
  font-family: var(--font_kanit);
}

.dark .team-section-5__content .title {
  color: var(--white);
}

@media only screen and (max-width: 991px) {
  .team-section-5__content .title {
    font-size: 17px;
    line-height: 28px;
  }
}

.team-section-5__content .dces {
  font-weight: 400;
  font-size: 18px;
  line-height: 26px;
  color: var(--secondary-2);
  opacity: 0.6;
  font-family: var(--font_kanit);
}

.dark .team-section-5__content .dces {
  color: var(--white);
}

.team-section-5__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(18, 18, 18, 0.14);
  border-radius: 6px;
}

.dark .team-section-5__icon {
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.team-section-5__icon i {
  font-size: 24px;
  color: var(--secondary-2);
}

.dark .team-section-5__icon i {
  color: var(--white);
}

.team-section-5__box {
  max-width: 750px;
}

.team-section-5 .team-section-5__gallery .swiper-slide {
  cursor: pointer;
}

.team-section-5 .team-section-5__gallery .swiper-slide-thumb-active,
.team-section-5 .team-section-5__gallery .swiper-slide-active {
  opacity: 1;
  transform: scale(1);
}

.team-section-5__nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  margin-top: 135px;
}

@media (max-width: 575px) {
  .team-section-5__nav {
    display: none;
  }
}

@media only screen and (max-width: 1199px) {
  .team-section-5__nav {
    margin-top: 80px;
  }
}

@media only screen and (max-width: 991px) {
  .team-section-5__nav {
    margin-top: 30px;
  }
}

@media only screen and (max-width: 767px) {
  .team-section-5__nav {
    margin-top: 0;
  }
}

.team-section-5__nav .swiper-pagination-total {
  font-weight: 400;
  font-size: 16px;
  line-height: 40px;
  color: rgba(18, 18, 18, 0.7);
}

.dark .team-section-5__nav .swiper-pagination-total {
  color: rgba(255, 255, 255, 0.7);
}

.team-section-5__fraction {
  font-weight: 500;
  font-size: 20px;
  line-height: 40px;
  color: var(--secondary-2);
  font-family: var(--font_kanit);
}

.dark .team-section-5__fraction {
  color: var(--white);
}

.team-section-5__arrows {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.team-section-5__arrows button {
  width: 50px;
  height: 50px;
  border-radius: 6px;
  border: 1px solid rgba(18, 18, 18, 0.12);
  border-radius: 6px;
  cursor: pointer;
  transition: 0.3s;
}

.dark .team-section-5__arrows button {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 6px;
  color: #fff;
}

.team-section-5__arrows button:hover {
  background: var(--secondary-2);
  color: #fff;
}

.dark .team-section-5__arrows button:hover {
  background: var(--white);
  color: var(--secondary-2);
}

.showcase-5 {
  overflow: hidden;
  background: #FDF4F5;
}

.showcase-5__wrapper {
  display: grid;
  grid-template-columns: 1fr 1605px;
  position: relative;
}

@media only screen and (max-width: 1919px) {
  .showcase-5__wrapper {
    grid-template-columns: 1fr 1080px;
  }
}

@media only screen and (max-width: 1399px) {
  .showcase-5__wrapper {
    grid-template-columns: 1fr 975px;
  }
}

@media only screen and (max-width: 1199px) {
  .showcase-5__wrapper {
    display: block;
  }
}

.showcase-5__wrapper .showcase-bg-shape-1 {
  position: absolute;
  width: 570px;
  height: 575.4px;
  left: -220px;
  top: -157px;
  background: #FFFA68;
  filter: blur(200px);
  border-radius: 1000px;
  transform: rotate(-20.7deg);
  z-index: 1;
}

.showcase-5__wrapper .showcase-bg-shape-2 {
  position: absolute;
  width: 833.56px;
  height: 1234px;
  left: -489px;
  top: 10px;
  background: #FF7273;
  filter: blur(200px);
  border-radius: 1000px;
  transform: rotate(-20.7deg);
}

.showcase-5__wrapper .showcase-bg-shape-3 {
  position: absolute;
  width: 2164px;
  height: 1000px;
  left: 33px;
  top: -476px;
  background: #C2FFF3;
  filter: blur(200px);
  border-radius: 1000px;
}

@media only screen and (max-width: 1199px) {
  .showcase-5__wrapper .showcase-pagination {
    display: none;
  }
}

.showcase-5__wrapper .swiper-pagination-bullet:only-child {
  display: inherit !important;
}

.showcase-5__wrapper .swiper-horizontal>.swiper-pagination-bullets,
.showcase-5__wrapper .swiper-pagination-bullets.swiper-pagination-horizontal,
.showcase-5__wrapper .swiper-pagination-custom,
.showcase-5__wrapper .swiper-pagination-fraction {
  bottom: 100px;
  left: 40px;
  position: absolute;
}

.showcase-5__wrapper .swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet,
.showcase-5__wrapper .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 4px);
  width: 44px;
  height: 4px;
  opacity: 1;
  background: rgba(18, 18, 18, 0.14);
  border-radius: 10px;
}

.showcase-5__wrapper .swiper-pagination-bullet-active {
  opacity: var(--swiper-pagination-bullet-opacity, 1);
  background: var(--secondary-2) !important;
  width: 44px !important;
  height: 4px !important;
}

.showcase-5__social {
  position: absolute;
  top: 56px;
  right: 40px;
  z-index: 3;
}

@media only screen and (max-width: 767px) {
  .showcase-5__social {
    display: none;
  }
}

.showcase-5__social ul li {
  list-style: none;
  margin-bottom: 10px;
}

.showcase-5__social ul li:last-child {
  margin-bottom: 0;
}

.showcase-5__social ul li a {
  border: 1px solid rgba(18, 18, 18, 0.12);
  border-radius: 4px;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease-in-out;
}

.showcase-5__social ul li a i {
  color: var(--secondary-2);
  font-size: 16px;
  transition: all 0.3s ease-in-out;
}

.showcase-5__social ul li a:hover {
  background: var(--secondary-2);
}

.showcase-5__social ul li a:hover i {
  color: var(--white);
}

.showcase-5__menu {
  margin-top: 100px;
  position: relative;
  z-index: 2;
}

@media only screen and (max-width: 1199px) {
  .showcase-5__menu {
    display: none;
  }
}

.showcase-5__menu ul li {
  list-style: none;
}

.showcase-5__menu ul li a {
  background: linear-gradient(var(--secondary-2) 0%, var(--secondary-2) 98%);
  background-size: 0 1px;
  background-repeat: no-repeat;
  background-position: left 100%;
  font-weight: 400;
  font-size: 20px;
  line-height: 54px;
  color: rgba(18, 18, 18, 0.7);
  font-family: var(--font_kanit);
  margin-bottom: 2px;
  transition: all 0.3s ease-in-out;
}

.showcase-5__menu ul li a:hover {
  color: var(--secondary-2);
  background-size: 100% 2px;
}

.showcase-5__sidebar {
  padding-left: 40px;
  position: relative;
  z-index: 2;
}

@media only screen and (max-width: 1399px) {
  .showcase-5__sidebar {
    padding-left: 20px;
  }
}

@media only screen and (max-width: 1199px) {
  .showcase-5__sidebar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    padding: 30px 15px;
  }
}

.showcase-5__sidebar .logo {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
}

@media only screen and (max-width: 1199px) {
  .showcase-5__sidebar .logo {
    padding-top: 0;
  }
}

.showcase-5__sidebar .header__navicon {
  display: none;
}

@media only screen and (max-width: 1199px) {
  .showcase-5__sidebar .header__navicon {
    display: inherit;
  }
}

.showcase-5__bg {
  display: grid;
  grid-template-columns: 530px 1fr;
  gap: 80px;
  position: relative;
  z-index: 3;
}

@media only screen and (max-width: 1919px) {
  .showcase-5__bg {
    grid-template-columns: 460px 1fr;
    gap: 30px;
  }
}

@media only screen and (max-width: 991px) {
  .showcase-5__bg {
    grid-template-columns: 350px 1fr;
  }
}

@media only screen and (max-width: 767px) {
  .showcase-5__bg {
    grid-template-columns: 1fr;
  }
}

.showcase-5__thumb {
  height: 100%;
}

@media only screen and (max-width: 767px) {
  .showcase-5__thumb {
    max-height: 450px;
    height: 100%;
    width: 100%;
  }
}

.showcase-5__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media only screen and (max-width: 767px) {
  .showcase-5__thumb img {
    max-height: 450px;
    height: 100%;
  }
}

.showcase-5__content {
  padding-top: 152px;
  padding-bottom: 225px;
}

@media only screen and (max-width: 1919px) {
  .showcase-5__content {
    padding-top: 50px;
    padding-bottom: 100px;
  }
}

@media only screen and (max-width: 767px) {
  .showcase-5__content {
    padding-top: 0px;
    padding-left: 10px;
  }
}

.showcase-5__content .decs {
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  color: rgba(18, 18, 18, 0.7);
  font-family: var(--font_kanit);
  margin-left: 290px;
}

@media only screen and (max-width: 1399px) {
  .showcase-5__content .decs {
    margin-left: 50px;
  }
}

@media only screen and (max-width: 991px) {
  .showcase-5__content .decs {
    margin-left: 0;
  }
}

.showcase-5__content .title {
  font-weight: 400;
  font-size: 110px;
  line-height: 110px;
  color: var(--secondary-2);
  font-family: var(--font_kanit);
  max-width: 874px;
  margin-top: 40px;
}

@media only screen and (max-width: 1919px) {
  .showcase-5__content .title {
    font-size: 68px;
    line-height: 86px;
  }
}

@media only screen and (max-width: 1399px) {
  .showcase-5__content .title {
    font-size: 67px;
    line-height: 74px;
  }
}

@media only screen and (max-width: 1199px) {
  .showcase-5__content .title {
    font-size: 62px;
    line-height: 68px;
  }
}

@media only screen and (max-width: 991px) {
  .showcase-5__content .title {
    font-size: 48px;
    line-height: 58px;
    margin-top: 20px;
  }
}

@media (max-width: 575px) {
  .showcase-5__content .title {
    font-size: 34px;
    line-height: 47px;
  }
}

.showcase-5__content .shape {
  position: absolute;
  top: 179px;
  left: 71%;
  transform: translateX(-50%);
}

@media only screen and (max-width: 1399px) {
  .showcase-5__content .shape {
    top: 40px;
    left: 76%;
  }
}

@media only screen and (max-width: 767px) {
  .showcase-5__content .shape {
    display: none;
  }
}

.showcase-5__btn {
  margin-top: 85px;
}

@media only screen and (max-width: 991px) {
  .showcase-5__btn {
    margin-top: 50px;
  }
}

.showcase-5__btn .rr-btn-5 {
  font-weight: 500;
  font-size: 18px;
  line-height: 27px;
  color: var(--secondary-2);
  background: #FFFFFF;
  box-shadow: 0px 2px 10px rgba(18, 18, 18, 0.14);
  border-radius: 6px;
  transition: all 0.3s ease-in-out;
  padding: 13.5px 43.2px;
}

.showcase-5__btn .rr-btn-5 i {
  transform: rotate(-45deg);
  font-size: 16px;
  font-weight: 400;
  margin-left: 8px;
}

.showcase-5__btn .rr-btn-5 {
  position: relative;
  padding: 14px 36px;
  font-weight: 500;
  font-size: 18px;
  line-height: 27px;
  color: var(--secondary-2) !important;
  background: #FFFFFF;
  border-radius: 6px;
  transition: all 0.3s ease-in-out;
  text-decoration: none;
  overflow: hidden;
}

.showcase-5__btn .rr-btn-5 i {
  transform: rotate(-45deg);
  font-size: 16px;
  font-weight: 400;
  margin-left: 8px;
  color: var(--secondary-2);
}

.showcase-5__btn .rr-btn-5 span {
  position: absolute;
  transition: 0.5s ease;
  height: 14px;
  width: 14px;
}

.showcase-5__btn .top-arrow {
  top: 0px;
  left: 0px;
  border-right: none;
  border-bottom: none;
  border-radius: 6px 0 0 0;
  border-top: 2px solid var(--secondary-2);
  border-left: 2px solid var(--secondary-2);
}

.showcase-5__btn .right-arrow {
  border-top: 2px solid var(--secondary-2);
  border-right: 2px solid var(--secondary-2);
}

.showcase-5__btn .bottom-arrow {
  border-right: 2px solid var(--secondary-2);
  border-bottom: 2px solid var(--secondary-2);
}

.showcase-5__btn .left-arrow {
  border-left: 2px solid var(--secondary-2);
  border-bottom: 2px solid var(--secondary-2);
}

.showcase-5 .portfolio-full {
  width: 100vw;
  height: 100vh;
  overflow: hidden;
}

@media only screen and (max-width: 991px) {
  .showcase-5 .portfolio-full {
    height: auto;
  }
}

.showcase-5 .portfolio-full-main {
  overflow: hidden;
  width: 100vw;
}

.showcase-5 .portfolio-full .text {
  gap: 10px;
  display: flex;
  padding-top: 20px;
  padding-bottom: 20px;
  flex-direction: column;
  border-right: 1px solid var(--border);
}

@media only screen and (max-width: 991px) {
  .showcase-5 .portfolio-full .text {
    border-right: none;
    padding-bottom: 0;
  }
}

.showcase-5 .portfolio-full .text span {
  color: var(--primary);
}

.showcase-5 .portfolio-full .text .sub-title {
  font-size: 14px;
  font-weight: 400;
  margin-top: auto;
  line-height: 14px;
  color: var(--primary);
  display: inline-block;
  letter-spacing: -0.7px;
  text-transform: uppercase;
  font-family: var(--font_bdogrotesk);
}

@media only screen and (max-width: 991px) {
  .showcase-5 .portfolio-full .text .sub-title {
    transform: translate(0, 0px);
  }
}

.showcase-5 .portfolio-full .media-wrapper {
  display: flex;
  margin-top: 20px;
  height: 1000px;
}

@media only screen and (max-width: 991px) {
  .showcase-5 .portfolio-full .media-wrapper {
    height: 500px;
    order: 2;
  }
}

@media (max-width: 575px) {
  .showcase-5 .portfolio-full .media-wrapper {
    height: 300px;
  }
}

.showcase-5 .portfolio-full .content {
  padding-top: 10px;
  border-left: 1px solid var(--border);
  position: relative;
}

@media only screen and (max-width: 991px) {
  .showcase-5 .portfolio-full .content {
    order: 1;
    border-left: none;
  }
}

.showcase-5 .portfolio-full .slider .swiper-slide {
  height: 100%;
  display: flex;
  overflow: hidden;
  justify-content: center;
  position: relative;
}

.showcase-5 .portfolio-full .slider .swiper-slide .slide-inner {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  bottom: 0;
}

.showcase-5__box {
  max-width: 530px;
  height: 100%;
}

@media only screen and (max-width: 767px) {
  .showcase-5__box {
    max-width: 100%;
  }
}

.showcase-5__box .media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media only screen and (max-width: 767px) {
  .showcase-5__box .media img {
    max-width: 100%;
    height: 450px;
  }
}

.portfolio-full .swiper-container {
  max-width: 530px;
  height: 100%;
  overflow: hidden;
}

@media only screen and (max-width: 1919px) {
  .portfolio-full .swiper-container {
    max-width: 460px;
    height: 100vh;
  }
}

@media only screen and (max-width: 991px) {
  .portfolio-full .swiper-container {
    max-width: 350px;
  }
}

@media only screen and (max-width: 767px) {
  .portfolio-full .swiper-container {
    max-width: 100%;
    height: 450px;
  }
}

.portfolio-full .swiper-slide {
  overflow: hidden;
}

.portfolio-full .slide-inner {
  will-change: transform;
}

.interactive {
  width: 100vw;
  height: 100vh;
}

.interactive__item {
  width: 100vw;
  height: 100vh;
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: 0.8s cubic-bezier(0.37, 0.23, 0, 0.96);
}

.interactive__item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(4, 3, 10, 0.26);
  backdrop-filter: blur(1.5px);
}

.interactive__content {
  z-index: 9;
  right: 160px;
  bottom: 80px;
  position: absolute;
  transform: translateY(-130px);
  opacity: 0;
}

@media only screen and (max-width: 991px) {
  .interactive__content {
    left: 10px;
    top: 300px;
    right: inherit;
  }
}

.interactive__content .sub-title {
  font-size: 26px;
  line-height: 48px;
  font-weight: 709;
  margin-bottom: 10px;
  color: var(--white);
  letter-spacing: -0.04em;
  text-transform: uppercase;
}

.interactive__content p {
  font-weight: 400;
  font-size: 18px;
  line-height: 26px;
  max-width: 353px;
  margin-bottom: 45px;
  color: rgba(255, 255, 255, 0.6);
}

@media only screen and (max-width: 991px) {
  .interactive__content p {
    margin-bottom: 20px;
  }
}

.interactive__content .btn-primary span {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.14);
}

.interactive__content .btn-primary>*:nth-child(1)::before {
  left: 0;
  width: 0;
}

.interactive__content .btn-primary>*:nth-child(2) {
  color: var(--black);
}

.interactive__content .btn-primary>*:nth-child(2)::before {
  background: var(--white);
}

.interactive__content .btn-primary:hover>*:nth-child(1) {
  color: var(--secondary-2);
}

.interactive__content .btn-primary:hover>*:nth-child(1)::before {
  width: 100%;
}

.interactive__content .btn-primary:hover>*:nth-child(3) {
  color: var(--secondary-2);
}

.interactive__content .btn-primary:hover>*:nth-child(3)::before {
  width: 100%;
}

.interactive__text {
  transform: translateY(-130px);
  opacity: 0;
  position: absolute;
  top: 350px;
  left: 100px;
  z-index: 9;
}

@media only screen and (max-width: 1919px) {
  .interactive__text {
    left: 50px;
  }
}

@media only screen and (max-width: 1199px) {
  .interactive__text {
    left: 10px;
  }
}

@media only screen and (max-width: 991px) {
  .interactive__text {
    top: 180px;
  }
}

.interactive__text span {
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  color: var(--white);
}

.interactive__text-title {
  font-weight: 500;
  font-size: 120px;
  line-height: 120px;
  color: var(--white);
  font-family: var(--font_kanit);
}

@media only screen and (max-width: 991px) {
  .interactive__text-title {
    font-size: 60px;
    line-height: 70px;
  }
}

@media (max-width: 575px) {
  .interactive__text-title {
    font-size: 40px;
    line-height: 40px;
  }
}

.interactive .swiper-slide {
  overflow: hidden;
}

.interactive-activ {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}

.interactive .slide-inner {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  background-size: cover;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: left;
}

.interactive .swiper-slide-active .interactive__item {
  animation-name: qodef-animate-slide-out;
  animation-duration: 1.3s;
  animation-fill-mode: forwards;
}

.interactive .swiper-slide-active .interactive__text {
  opacity: 1;
  transform: translatey(0px);
  transition: all 2200ms ease;
}

.interactive .swiper-slide-active .interactive__content {
  opacity: 1;
  transform: translatey(0px);
  transition: all 2200ms ease;
}

.interactive .interactive-pagination {
  position: absolute;
  bottom: 80px;
  left: 100px;
  z-index: 999;
  display: flex;
  gap: 15px;
  align-items: center;
}

@media only screen and (max-width: 1919px) {
  .interactive .interactive-pagination {
    left: 50px;
  }
}

@media only screen and (max-width: 1199px) {
  .interactive .interactive-pagination {
    left: 10px;
  }
}

@media only screen and (max-width: 991px) {
  .interactive .interactive-pagination {
    bottom: 200px;
  }
}

.interactive .swiper-pagination-bullet {
  width: 120px;
  height: 80px;
  display: block;
  margin: 0;
  position: relative;
  border-radius: 10px;
  padding: 0;
  border: 1px solid transparent;
  cursor: pointer;
  background: transparent;
  opacity: 1;
  overflow: hidden;
  transition: 0.3s ease;
}

.interactive .swiper-pagination-bullet img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 10px;
  transition: 0.3s;
  position: relative;
  z-index: 1;
}

.interactive .swiper-pagination-bullet::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  border-radius: 10px;
  z-index: 2;
  transition: 0.3s ease;
}

.interactive .swiper-pagination-bullet.swiper-pagination-bullet-active {
  border: 1px solid #fff;
}

.interactive .swiper-pagination-bullet.swiper-pagination-bullet-active::after {
  opacity: 0;
  visibility: hidden;
}

.rr-portfolio-area-2 {
  position: relative;
  width: 100vh;
}

.rr-snap-slide-2 {
  width: 100vw;
  height: 100vh;
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.rr-snap-slide-2 .img-mask-2 {
  width: 100%;
  height: 100%;
  display: block;
  position: relative;
  top: 0;
  left: 0;
  opacity: 1;
}

.rr-snap-slide-2 .img-mask-2::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(18, 18, 18, 0.24);
}

.rr-snap-slide-2 .img-mask-2 .section-image {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.rr-snap-slide-2 .img-mask-2 .section-image img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.rr-snap-slide-2 .content {
  position: absolute;
  bottom: 185px;
  left: 160px;
}

@media only screen and (max-width: 1399px) {
  .rr-snap-slide-2 .content {
    left: 15px;
  }
}

.rr-snap-slide-2 .content .title {
  font-weight: 400;
  font-size: 110px;
  line-height: 110px;
  color: var(--white);
  font-family: var(--font_kanit);
}

@media only screen and (max-width: 1199px) {
  .rr-snap-slide-2 .content .title {
    font-size: 90px;
    line-height: 80px;
  }
}

@media only screen and (max-width: 991px) {
  .rr-snap-slide-2 .content .title {
    font-size: 70px;
    line-height: 70px;
  }
}

@media only screen and (max-width: 767px) {
  .rr-snap-slide-2 .content .title {
    font-size: 50px;
    line-height: 50px;
  }
}

.rr-snap-slide-2 .content ul {
  gap: 22px;
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  align-items: center;
  margin-top: 30px;
}

.rr-snap-slide-2 .content ul li {
  border-radius: 6px;
  font-weight: 400;
  font-size: 15px;
  line-height: 22px;
  text-align: center;
  padding: 10px 25px;
  font-family: var(--font_kanit);
  color: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.rr-snap-slide-2 .text-wrapper {
  position: absolute;
  bottom: 100px;
  right: 160px;
  width: 320px;
  height: 200px;
  display: flex;
  justify-content: center;
  text-align: center;
  color: var(--primary);
  z-index: 10;
  background: rgba(18, 18, 18, 0.2);
  backdrop-filter: blur(5px);
  border-radius: 14px;
}

@media only screen and (max-width: 1199px) {
  .rr-snap-slide-2 .text-wrapper {
    right: 15px;
  }
}

@media only screen and (max-width: 767px) {
  .rr-snap-slide-2 .text-wrapper {
    display: none;
  }
}

@media only screen and (max-width: 767px) {
  .rr-snap-slide-2 .text-wrapper {
    width: 300px;
    padding: 20px 0;
    height: 350px;
  }
}

.rr-snap-slide-2 .text-wrapper .sub-title {
  width: 40px;
  height: 24px;
  rotate: 90deg;
  font-size: 18px;
  margin-top: 32px;
  font-weight: 400;
  line-height: 27px;
  color: var(--white);
  white-space: nowrap;
  font-family: var(--font_kanit);
}

.rr-snap-slide-2 .text-wrapper img {
  width: 280px;
  height: 200px;
  object-fit: cover;
  border-radius: 14px;
}

@media only screen and (max-width: 767px) {
  .rr-snap-slide-2 .text-wrapper img {
    width: 200px;
  }
}

.rr-portfolio-area .rr-snap-pagination {
  position: fixed;
  bottom: 100px;
  left: 160px;
  z-index: 9;
  display: inline-block;
}

@media only screen and (max-width: 1399px) {
  .rr-portfolio-area .rr-snap-pagination {
    left: 15px;
  }
}

@media (max-width: 575px) {
  .rr-portfolio-area .rr-snap-pagination {
    left: 30px;
  }
}

.rr-portfolio-area .swiper-pagination-bullet {
  width: 150px;
  height: 5px;
  display: inline-block;
  margin: 0 5px;
  overflow: hidden;
  transition: 0.4s;
  position: relative;
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.3);
}

@media only screen and (max-width: 1199px) {
  .rr-portfolio-area .swiper-pagination-bullet {
    width: 120px;
  }
}

@media only screen and (max-width: 991px) {
  .rr-portfolio-area .swiper-pagination-bullet {
    width: 90px;
  }
}

@media only screen and (max-width: 767px) {
  .rr-portfolio-area .swiper-pagination-bullet {
    width: 70px;
    bottom: 45px;
  }
}

@media (max-width: 575px) {
  .rr-portfolio-area .swiper-pagination-bullet {
    width: 40px;
  }
}

.rr-portfolio-area .swiper-pagination-bullet::before {
  content: "";
  width: 150px;
  height: 100%;
  position: absolute;
  transition: 0.6s;
  z-index: 9;
  left: 0;
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.3);
}

.rr-portfolio-area .swiper-pagination-bullet::after {
  content: "";
  width: 0;
  height: 100%;
  position: absolute;
  transition: 0.6s;
  z-index: 8;
  left: 0;
  background-color: white;
}

.rr-portfolio-area .swiper-pagination-bullet-active::after {
  opacity: 1;
  width: 100%;
}

.parallax-slider-wrapper {
  width: 100%;
  height: 100vh;
  display: flex;
  overflow: hidden;
  margin-left: 10px;
  position: relative;
  align-items: center;
  justify-content: flex-start;
}

.parallax-slider-inner {
  gap: 10px;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-top: 90px;
  padding-bottom: 80px;
}

.parallax-slider-item {
  width: 500px;
  height: 100%;
  overflow: hidden;
  border-radius: 10px;
  position: relative;
  background-size: cover;
}

.parallax-slider-item img {
  height: 100%;
  min-width: 750px;
  object-fit: cover;
  margin-left: -50px;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  background-size: cover;
  background-position: center;
}

.parallax-slider-item .title {
  font-style: italic;
  font-weight: 400;
  font-size: 70px;
  line-height: 80px;
  color: #C4F012;
  position: absolute;
  top: 50%;
  left: 0;
  z-index: 1;
  opacity: 0;
  transform: translateY(0%);
  z-index: 2;
  transition: all 0.3s;
  font-family: var(--font_serif);
}

@media only screen and (max-width: 991px) {
  .parallax-slider-item .title {
    font-size: 50px;
    line-height: 50px;
  }
}

@media (max-width: 575px) {
  .parallax-slider-item .title {
    font-size: 40px;
    line-height: 40px;
  }
}

.parallax-slider-item:hover .title {
  opacity: 1;
  transform: translateY(-50%);
}

.slicer-slider .swiper-container {
  height: 100vh;
}

.slicer-slider__item {
  position: relative;
  height: 100vh;
}

.slicer-slider__item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(4, 3, 10, 0.34);
  backdrop-filter: blur(1px);
}

.slicer-slider__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slicer-slider__content {
  position: absolute;
  z-index: 2;
  bottom: 100px;
  left: 160px;
}

@media only screen and (max-width: 1919px) {
  .slicer-slider__content {
    left: 15px;
  }
}

@media only screen and (max-width: 991px) {
  .slicer-slider__content {
    bottom: 50px;
  }
}

.slicer-slider__content .sub-title {
  font-weight: 400;
  font-size: 44px;
  line-height: 54px;
  margin-bottom: 24px;
  color: var(--white);
  font-family: var(--font_kanit);
  transform: translateY(-130px);
  opacity: 0;
}

@media only screen and (max-width: 767px) {
  .slicer-slider__content .sub-title {
    margin-bottom: 20px;
  }
}

@media (max-width: 575px) {
  .slicer-slider__content .sub-title {
    font-size: 30px;
    line-height: 30px;
  }
}

.slicer-slider__content .title {
  font-weight: 711;
  font-size: 184px;
  line-height: 162px;
  color: var(--white);
  letter-spacing: -7.36px;
  text-transform: uppercase;
  padding-top: 60px;
  font-family: var(--font_cooper);
  position: relative;
  transform: translateY(-130px);
  opacity: 0;
}

@media only screen and (max-width: 1919px) {
  .slicer-slider__content .title {
    font-size: 165px;
    line-height: 150px;
  }
}

@media only screen and (max-width: 1399px) {
  .slicer-slider__content .title {
    font-size: 145px;
    padding-top: 40px;
    line-height: 150px;
  }
}

@media only screen and (max-width: 1199px) {
  .slicer-slider__content .title {
    font-size: 100px;
    letter-spacing: -3px;
    line-height: 100px;
  }
}

@media only screen and (max-width: 991px) {
  .slicer-slider__content .title {
    font-size: 80px;
    letter-spacing: 0px;
    line-height: 80px;
  }
}

@media only screen and (max-width: 767px) {
  .slicer-slider__content .title {
    font-size: 60px;
    line-height: 60px;
    padding-top: 20px;
  }
}

@media (max-width: 575px) {
  .slicer-slider__content .title {
    font-size: 40px;
    line-height: 40px;
  }
}

.slicer-slider__content .title::before {
  content: "";
  position: absolute;
  top: 0;
  left: -50%;
  width: 300%;
  height: 1px;
  background: #E0EEEE;
  opacity: 0.3;
}

.slicer-slider__social {
  position: absolute;
  right: 160px;
  top: 280px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 22px;
  list-style: none;
}

@media only screen and (max-width: 1919px) {
  .slicer-slider__social {
    right: 15px;
  }
}

.slicer-slider__social li a {
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  font-family: var(--font_kanit);
  color: rgba(255, 255, 255, 0.7);
  transform: rotate(-90deg);
  display: inline-block;
}

.slicer-slider .swiper-slide-active .slicer-slider__content .title {
  opacity: 1;
  transform: translatey(0px);
  transition: all 2500ms ease;
}

.slicer-slider .swiper-slide-active .slicer-slider__content .sub-title {
  opacity: 1;
  transform: translatey(0px);
  transition: all 2200ms ease;
}

.portfolio-showcase__inner {
  gap: 30px;
  display: grid;
  margin: 0 auto;
  padding-top: 90px;
  padding-bottom: 40px;
  max-width: 1870px;
  grid-template-columns: 570px 1fr;
}

@media only screen and (max-width: 1919px) {
  .portfolio-showcase__inner {
    grid-template-columns: 500px 1fr;
  }
}

@media only screen and (max-width: 991px) {
  .portfolio-showcase__inner {
    display: block;
  }
}

.portfolio-showcase__wrapper {
  padding: 20px;
  background: #F5F5F5;
  border-radius: 14px;
  display: grid;
  grid-template-columns: repeat(2, auto);
  gap: 20px;
}

.dark .portfolio-showcase__wrapper {
  background: #131416;
}

@media only screen and (max-width: 1199px) {
  .portfolio-showcase__wrapper {
    grid-template-columns: repeat(1, auto);
  }
}

@media only screen and (max-width: 991px) {
  .portfolio-showcase__wrapper {
    grid-template-columns: repeat(2, auto);
    margin-top: 30px;
  }
}

@media (max-width: 575px) {
  .portfolio-showcase__wrapper {
    grid-template-columns: 1fr;
  }
}

.portfolio-showcase__wrapper>* {
  height: 440px;
}

@media only screen and (max-width: 1919px) {
  .portfolio-showcase__wrapper>* {
    width: 100% !important;
    margin-left: 0 !important;
    grid-column: auto !important;
    grid-row: auto !important;
  }
}

@media (max-width: 575px) {
  .portfolio-showcase__wrapper>* {
    height: 100%;
  }
}

.portfolio-showcase__wrapper>*:nth-child(3) {
  width: 770px;
  margin-left: -330px;
  grid-column-start: 2;
}

@media only screen and (max-width: 1919px) {
  .portfolio-showcase__wrapper>*:nth-child(3) {
    width: 440px;
    margin-left: 0;
  }
}

.portfolio-showcase__wrapper>*:nth-child(4) {
  width: 440px;
  height: 440px;
}

.portfolio-showcase__wrapper>*:nth-child(5) {
  grid-column-start: 1;
}

.portfolio-showcase__wrapper>*:nth-child(7) {
  grid-column-start: 2;
  height: 440px;
}

.portfolio-showcase__wrapper>*:nth-child(9) {
  grid-column-start: 1;
  height: 440px;
  width: 440px;
}

.portfolio-showcase__wrapper>*:nth-child(10) {
  margin-left: -330px;
}

@media only screen and (max-width: 1919px) {
  .portfolio-showcase__wrapper>*:nth-child(10) {
    width: 440px;
    margin-left: 0;
  }
}

.portfolio-showcase__wrapper>*:nth-child(12) {
  grid-column-start: 2;
  grid-row-start: 9;
}

.portfolio-showcase__wrapper>*:nth-child(13) {
  width: 440px;
  grid-row-start: 10;
}

.portfolio-showcase__wrapper>*:nth-child(14) {
  width: 770px;
  grid-row-start: 10;
  margin-left: -330px;
}

@media only screen and (max-width: 1919px) {
  .portfolio-showcase__wrapper>*:nth-child(14) {
    width: 440px;
    margin-left: 0;
  }
}

.portfolio-showcase__wrapper>*:nth-child(15) {
  grid-row-start: 11;
  grid-column-start: 2;
}

.portfolio-showcase__wrapper>*:nth-child(16) {
  grid-row-start: 12;
}

.portfolio-showcase__wrapper>*:nth-child(17) {
  grid-row-start: 13;
  grid-column-start: 1;
  width: 440px;
}

.portfolio-showcase__wrapper>*:nth-child(18) {
  grid-row-start: 13;
  width: 770px;
  margin-left: -330px;
}

@media only screen and (max-width: 1919px) {
  .portfolio-showcase__wrapper>*:nth-child(18) {
    width: 440px;
    margin-left: 0;
  }
}

.portfolio-showcase__item {
  height: 100%;
  position: relative;
}

.portfolio-showcase__item.span {
  width: 770px;
}

@media only screen and (max-width: 1919px) {
  .portfolio-showcase__item.span {
    width: 100%;
  }
}

.portfolio-showcase__item:hover::before {
  height: 100%;
}

.portfolio-showcase__item:hover .shape-1 {
  opacity: 1;
  transform: translateX(0px);
}

.portfolio-showcase__item:hover .shape-2 {
  opacity: 1;
  transform: translateX(0px);
}

.portfolio-showcase__item:hover .shape-3 {
  opacity: 1;
  transform: translateX(0px);
}

.portfolio-showcase__item:hover .shape-4 {
  opacity: 1;
  transform: translateX(0px);
}

.portfolio-showcase__item:hover .portfolio-showcase__item__content .title {
  opacity: 1;
  transform: translateY(0px);
}

.portfolio-showcase__item:hover .portfolio-showcase__item__content .view {
  opacity: 1;
  transform: translateY(0px);
}

.portfolio-showcase__item:hover .portfolio-showcase__item__content .arrow {
  opacity: 1;
}

.portfolio-showcase__item::before {
  left: 0;
  bottom: 0;
  content: "";
  width: 100%;
  height: 0%;
  position: absolute;
  border-radius: 10px;
  transition: all 0.5s;
  backdrop-filter: blur(3px);
  background: rgba(4, 3, 10, 0.5);
}

.portfolio-showcase__item .media {
  border-radius: 10px;
  overflow: hidden;
  height: 100%;
}

.portfolio-showcase__item .media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.portfolio-showcase__item__content .title {
  font-weight: 500;
  font-size: 24px;
  line-height: 40px;
  color: var(--white);
  position: absolute;
  top: 44px;
  z-index: 2;
  left: 44px;
  opacity: 0;
  transition: all 0.3s;
  font-family: var(--font_kanit);
  transform: translateY(-30px);
}

.portfolio-showcase__item__content .view {
  font-weight: 400;
  font-size: 18px;
  line-height: 24px;
  color: var(--white);
  position: absolute;
  bottom: 44px;
  left: 44px;
  z-index: 2;
  opacity: 0;
  transition: all 0.3s;
  font-family: var(--font_kanit);
  transform: translateY(30px);
}

.portfolio-showcase__item__content .arrow {
  color: var(--white);
  position: absolute;
  bottom: 44px;
  right: 44px;
  z-index: 2;
  opacity: 0;
  rotate: -45deg;
}

.portfolio-showcase__item .shape-1 {
  left: 20px;
  z-index: 2;
  opacity: 0;
  top: 15px;
  rotate: 40deg;
  color: var(--white);
  position: absolute;
  transition: all 0.3s;
  transform: translateX(-30px);
}

.portfolio-showcase__item .shape-2 {
  right: 20px;
  z-index: 2;
  opacity: 0;
  top: 15px;
  rotate: -40deg;
  position: absolute;
  color: var(--white);
  transition: all 0.3s;
  transform: translateX(30px);
}

.portfolio-showcase__item .shape-3 {
  left: 20px;
  z-index: 2;
  opacity: 0;
  bottom: 15px;
  rotate: -40deg;
  color: var(--white);
  position: absolute;
  transition: all 0.3s;
  transform: translateX(-30px);
}

.portfolio-showcase__item .shape-4 {
  z-index: 2;
  right: 20px;
  opacity: 0;
  bottom: 15px;
  rotate: 40deg;
  position: absolute;
  color: var(--white);
  transition: all 0.3s;
  transform: translateX(30px);
}

.portfolio-showcase__author {
  padding: 30px;
  background: #F5F5F5;
  border-radius: 14px;
}

.dark .portfolio-showcase__author {
  background: #131416;
}

.portfolio-showcase__author__wrap {
  display: flex;
  gap: 24px;
}

@media (max-width: 575px) {
  .portfolio-showcase__author__wrap {
    flex-wrap: wrap;
  }
}

.portfolio-showcase__author__wrap .media {
  width: 200px;
  height: 220px;
  min-width: 200px;
  overflow: hidden;
  border-radius: 10px;
}

.portfolio-showcase__author__wrap .media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.portfolio-showcase__author__wrap .text .name {
  font-weight: 500;
  font-size: 24px;
  line-height: 40px;
  margin-bottom: 10px;
  color: var(--secondary-2);
  font-family: var(--font_kanit);
}

.dark .portfolio-showcase__author__wrap .text .name {
  color: var(--white);
}

.portfolio-showcase__author__wrap .text span {
  font-weight: 400;
  font-size: 18px;
  line-height: 24px;
  color: #04030A;
  opacity: 0.7;
  font-family: var(--font_kanit);
}

.dark .portfolio-showcase__author__wrap .text span {
  color: var(--white);
  opacity: 0.7;
}

.portfolio-showcase__author__wrap .text .social-link {
  gap: 10px;
  display: flex;
  list-style: none;
  margin-top: 40px;
  align-items: center;
}

.portfolio-showcase__author__wrap .text .social-link li a {
  width: 46px;
  height: 46px;
  display: flex;
  border-radius: 6px;
  align-items: center;
  transition: all 0.3s;
  justify-content: center;
  color: var(--secondary-2);
  border: 1px solid rgba(4, 3, 10, 0.14);
}

.dark .portfolio-showcase__author__wrap .text .social-link li a {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.14);
}

.portfolio-showcase__author__wrap .text .social-link li a:hover {
  color: var(--white);
  background: var(--secondary-2);
}

.dark .portfolio-showcase__author__wrap .text .social-link li a:hover {
  background: var(--white);
  color: var(--secondary-2);
}

.portfolio-showcase__author p {
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  color: #04030A;
  opacity: 0.7;
  margin-top: 40px;
}

.dark .portfolio-showcase__author p {
  color: var(--white);
  opacity: 0.7;
}

.portfolio-showcase__brand {
  margin-top: 20px;
  background: #F5F5F5;
  border-radius: 10px;
  padding: 18px 8px;
}

.dark .portfolio-showcase__brand {
  background: #131416;
}

.portfolio-showcase__brand .portfolio-show-active .swiper-slide {
  width: auto;
}

.dark .portfolio-showcase__brand .portfolio-show-active .swiper-slide img.light {
  display: none;
}

.portfolio-showcase__brand .portfolio-show-active .swiper-slide img.dark {
  display: none;
}

.dark .portfolio-showcase__brand .portfolio-show-active .swiper-slide img.dark {
  display: block;
}

.portfolio-showcase__brand .swiper-wrapper {
  transition-timing-function: linear !important;
}

.portfolio-showcase__info {
  padding: 40px;
  margin-top: 20px;
  background: #F5F5F5;
  border-radius: 14px;
}

.dark .portfolio-showcase__info {
  background: #131416;
}

.portfolio-showcase__info__item {
  display: flex;
  align-items: center;
  gap: 22px;
}

.portfolio-showcase__info__item:not(:last-child) {
  margin-bottom: 20px;
}

.portfolio-showcase__info__item span {
  width: 50px;
  height: 50px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary-2);
  background: var(--white);
}

.dark .portfolio-showcase__info__item a {
  color: var(--white);
  opacity: 0.7;
}

.portfolio-showcase__info__item a:hover {
  color: var(--primary);
  opacity: 1;
}

.page-title-2__area {
  padding-top: 130px;
  padding-bottom: 100px;
  border-bottom: 1px solid rgba(4, 3, 10, 0.14);
}

.dark .page-title-2__area {
  border-bottom-color: rgba(255, 255, 255, 0.14);
}

@media only screen and (max-width: 1199px) {
  .page-title-2__area {
    padding-top: 100px;
  }
}

@media only screen and (max-width: 767px) {
  .page-title-2__area {
    padding-bottom: 60px;
  }
}

.page-title-2__area .page-title-2 {
  font-weight: 400;
  font-size: 44px;
  line-height: 54px;
  max-width: 574px;
  margin-bottom: 34px;
  font-family: var(--font_kanit);
}

@media only screen and (max-width: 767px) {
  .page-title-2__area .page-title-2 {
    font-size: 35px;
    line-height: 40px;
  }
}

@media (max-width: 575px) {
  .page-title-2__area .page-title-2 {
    font-size: 30px;
    line-height: 35px;
  }
}

.dark .page-title-2__area .page-title-2 {
  color: white;
}

.page-title-2__area .page-title-2 span {
  font-style: Italic;
  font-family: var(--font_serif);
  color: #FF5E14;
}

.page-title-2__inner {
  gap: 10px;
  display: flex;
  align-items: start;
  justify-content: space-between;
}

@media (max-width: 575px) {
  .page-title-2__inner {
    flex-wrap: wrap-reverse;
  }
}

.page-title-2__inner .text-wrapper {
  position: relative;
  display: inline-block;
  margin-right: 30px;
  margin-top: 30px;
}

@media only screen and (max-width: 1399px) {
  .page-title-2__inner .text-wrapper {
    margin-right: 15px;
  }
}

@media (max-width: 575px) {
  .page-title-2__inner .text-wrapper {
    margin-bottom: 20px;
    margin-left: 10px;
    margin-right: 0;
  }
}

.page-title-2__inner .text-wrapper::before {
  top: 50%;
  left: 50%;
  content: "";
  width: 160px;
  height: 160px;
  position: absolute;
  border-radius: 500px;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(4, 3, 10, 0.2);
}

.dark .page-title-2__inner .text-wrapper::before {
  border-color: rgba(255, 255, 255, 0.14);
}

@media only screen and (max-width: 991px) {
  .page-title-2__inner .text-wrapper::before {
    width: 140px;
    height: 140px;
  }
}

@media (max-width: 575px) {
  .page-title-2__inner .text-wrapper::before {
    width: 100px;
    height: 100px;
  }
}

.page-title-2__inner .text-wrapper .rotate {
  max-width: 130px;
}

@media only screen and (max-width: 991px) {
  .page-title-2__inner .text-wrapper .rotate {
    max-width: 100px;
  }
}

@media (max-width: 575px) {
  .page-title-2__inner .text-wrapper .rotate {
    max-width: 70px;
  }
}

.dark .page-title-2__inner .text-wrapper .rotate.light {
  display: none;
}

.page-title-2__inner .text-wrapper .rotate.dark {
  display: none;
}

.dark .page-title-2__inner .text-wrapper .rotate.dark {
  display: block;
}

.page-title-2__inner .text-wrapper .arrow {
  top: 50%;
  left: 50%;
  position: absolute;
  transform: translate(-50%, -50%);
}

@media only screen and (max-width: 991px) {
  .page-title-2__inner .text-wrapper .arrow {
    max-width: 25px;
  }
}

@media (max-width: 575px) {
  .page-title-2__inner .text-wrapper .arrow {
    max-width: 15px;
  }
}

.dark .page-title-2__inner .text-wrapper .arrow.light {
  display: none;
}

.page-title-2__inner .text-wrapper .arrow.dark {
  display: none;
}

.dark .page-title-2__inner .text-wrapper .arrow.dark {
  display: block;
}

.page-title-2__wrapper {
  display: grid;
  align-items: center;
  position: relative;
  grid-template-columns: 405px 1fr;
}

@media only screen and (max-width: 991px) {
  .page-title-2__wrapper {
    grid-template-columns: 280px 1fr;
  }
}

@media only screen and (max-width: 767px) {
  .page-title-2__wrapper {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.page-title-2__wrapper .shape {
  position: absolute;
  top: 0;
  left: 0;
}

@media only screen and (max-width: 767px) {
  .page-title-2__wrapper .shape {
    display: none;
  }
}

.page-title-2__team-info .author {
  list-style: none;
  display: flex;
  margin-bottom: 10px;
  padding-top: 20px;
  align-items: center;
}

@media only screen and (max-width: 991px) {
  .page-title-2__team-info .author {
    padding-top: 0;
  }
}

.page-title-2__team-info .author li {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  border-radius: 500px;
  overflow: hidden;
  border: 2px solid var(--white);
}

.page-title-2__team-info .author li:not(:first-child) {
  margin-left: -20px;
}

.page-title-2__team-info .author li img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-title-2__team-info p {
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  max-width: 216px;
  color: rgba(4, 3, 10, 0.6);
  font-family: var(--font_kanit);
}

.dark .page-title-2__team-info p {
  color: rgba(255, 255, 255, 0.6);
}

.page-title-2__content p {
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  margin-top: 105px;
  max-width: 458px;
  color: rgba(4, 3, 10, 0.7);
  font-family: var(--font_kanit);
}

@media only screen and (max-width: 767px) {
  .page-title-2__content p {
    margin-top: 0;
  }
}

.dark .page-title-2__content p {
  color: rgba(255, 255, 255, 0.6);
}

.portfolio-showcase-2__wrap {
  display: grid;
  row-gap: 100px;
  justify-content: space-between;
  grid-template-columns: repeat(12, 1fr);
}

@media only screen and (max-width: 991px) {
  .portfolio-showcase-2__wrap {
    row-gap: 50px;
  }
}

@media only screen and (max-width: 767px) {
  .portfolio-showcase-2__wrap {
    row-gap: 30px;
    grid-template-columns: repeat(1, 1fr);
  }
}

.portfolio-showcase-2__title {
  font-size: 18px;
  line-height: 1;
  font-weight: 400;
  margin-top: 15px;
  text-transform: capitalize;
  font-family: var(--font_kanit);
}

.dark .portfolio-showcase-2__title {
  color: var(--white);
}

.portfolio-showcase-2__item {
  overflow: hidden;
  border-radius: 10px;
}

.portfolio-showcase-2__item-box {
  gap: 20px;
  display: grid;
  grid-column: 5 span;
  justify-content: space-between;
  grid-template-columns: repeat(5, 1fr);
}

@media only screen and (max-width: 767px) {
  .portfolio-showcase-2__item-box {
    grid-column: 1 span;
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 575px) {
  .portfolio-showcase-2__item-box {
    grid-template-columns: repeat(1, 1fr);
  }
}

.portfolio-showcase-2__item-box:nth-child(2) {
  grid-column: 8/13;
}

@media only screen and (max-width: 767px) {
  .portfolio-showcase-2__item-box:nth-child(2) {
    grid-column: 1 span;
  }
}

.portfolio-showcase-2__item-box:nth-child(3) {
  grid-column: 3/8;
}

@media only screen and (max-width: 767px) {
  .portfolio-showcase-2__item-box:nth-child(3) {
    grid-column: 1 span;
  }
}

.portfolio-showcase-2__item-box:nth-child(4) {
  grid-column: 5/13;
  grid-template-columns: repeat(7, 1fr);
}

@media only screen and (max-width: 767px) {
  .portfolio-showcase-2__item-box:nth-child(4) {
    grid-column: 1 span;
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 575px) {
  .portfolio-showcase-2__item-box:nth-child(4) {
    grid-template-columns: repeat(1, 1fr);
  }
}

.portfolio-showcase-2__item-box:nth-child(5) {
  grid-column: 1/8;
  grid-template-columns: repeat(7, 1fr);
}

@media only screen and (max-width: 767px) {
  .portfolio-showcase-2__item-box:nth-child(5) {
    grid-column: 1 span;
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 575px) {
  .portfolio-showcase-2__item-box:nth-child(5) {
    grid-template-columns: repeat(1, 1fr);
  }
}

.portfolio-showcase-2__item-box:nth-child(6) {
  grid-column: 1/6;
}

@media only screen and (max-width: 767px) {
  .portfolio-showcase-2__item-box:nth-child(6) {
    grid-column: 1 span;
  }
}

.portfolio-showcase-2__item-box:nth-child(7) {
  grid-column: 11/13;
  grid-template-columns: repeat(2, 1fr);
}

@media only screen and (max-width: 767px) {
  .portfolio-showcase-2__item-box:nth-child(7) {
    grid-column: 1 span;
  }
}

@media (max-width: 575px) {
  .portfolio-showcase-2__item-box:nth-child(7) {
    grid-template-columns: repeat(1, 1fr);
  }
}

.portfolio-showcase-2__item-box:nth-child(8) {
  grid-column: 3/8;
}

@media only screen and (max-width: 767px) {
  .portfolio-showcase-2__item-box:nth-child(8) {
    grid-column: 1 span;
  }
}

.portfolio-showcase-2__item-box:nth-child(9) {
  grid-column: 1/5;
  grid-template-columns: repeat(4, 1fr);
}

@media only screen and (max-width: 767px) {
  .portfolio-showcase-2__item-box:nth-child(9) {
    grid-column: 1 span;
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 575px) {
  .portfolio-showcase-2__item-box:nth-child(9) {
    grid-template-columns: repeat(1, 1fr);
  }
}

.portfolio-showcase-2__item-box:nth-child(10) {
  grid-column: 8/13;
}

@media only screen and (max-width: 767px) {
  .portfolio-showcase-2__item-box:nth-child(10) {
    grid-column: 1 span;
  }
}

.portfolio-showcase-2__item-box:nth-child(11) {
  grid-column: 4/10;
  grid-template-columns: repeat(6, 1fr);
}

@media only screen and (max-width: 767px) {
  .portfolio-showcase-2__item-box:nth-child(11) {
    grid-column: 1 span;
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 575px) {
  .portfolio-showcase-2__item-box:nth-child(11) {
    grid-template-columns: repeat(1, 1fr);
  }
}

.portfolio-showcase-2__item-box:nth-child(12) {
  grid-column: 1/6;
}

@media only screen and (max-width: 767px) {
  .portfolio-showcase-2__item-box:nth-child(12) {
    grid-column: 1 span;
  }
}

.portfolio-showcase-2__item-box:nth-child(13) {
  grid-column: 7/13;
  grid-template-columns: repeat(6, 1fr);
}

@media only screen and (max-width: 767px) {
  .portfolio-showcase-2__item-box:nth-child(13) {
    grid-column: 1 span;
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 575px) {
  .portfolio-showcase-2__item-box:nth-child(13) {
    grid-template-columns: repeat(1, 1fr);
  }
}

.portfolio-showcase-2__item {
  grid-column: 3 span;
  margin-bottom: 32px;
}

@media only screen and (max-width: 767px) {
  .portfolio-showcase-2__item {
    grid-column: 1 span;
  }
}

@media (max-width: 575px) {
  .portfolio-showcase-2__item {
    margin-bottom: 0;
  }
}

.portfolio-showcase-2__item.single-item {
  grid-column: 2 span;
}

@media only screen and (max-width: 767px) {
  .portfolio-showcase-2__item.single-item {
    grid-column: 1 span;
  }
}

.portfolio-showcase-2__thumb {
  height: 100%;
}

@media (max-width: 575px) {
  .portfolio-showcase-2__thumb {
    height: auto;
  }
}

.portfolio-showcase-2__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

.portfolio-showcase-2__copyright .copyright-5__wrap {
  gap: 15px;
  display: flex;
  flex-wrap: wrap;
  padding-bottom: 58px;
  align-items: center;
  justify-content: space-between;
}

@media only screen and (max-width: 991px) {
  .portfolio-showcase-2__copyright .copyright-5__wrap {
    padding-bottom: 40px;
  }
}

@media only screen and (max-width: 767px) {
  .portfolio-showcase-2__copyright .copyright-5__wrap {
    padding-bottom: 30px;
  }
}

@media (max-width: 575px) {
  .portfolio-showcase-2__copyright .copyright-5__wrap {
    justify-content: center;
  }
}

.portfolio-showcase-2__copyright .copyright-5__menu,
.portfolio-showcase-2__copyright .copyright-5__dec {
  font-weight: 400;
  font-size: 18px;
  line-height: 1;
  color: rgba(4, 3, 10, 0.7);
}

.dark .portfolio-showcase-2__copyright .copyright-5__menu,
.dark .portfolio-showcase-2__copyright .copyright-5__dec {
  color: white;
}

.portfolio-showcase-2__copyright .copyright-5__menu a:hover,
.portfolio-showcase-2__copyright .copyright-5__dec a:hover {
  color: var(--secondary);
}

.dark .portfolio-showcase-2__copyright .copyright-5__menu a:hover,
.dark .portfolio-showcase-2__copyright .copyright-5__dec a:hover {
  color: white;
}

.hero-5__inner {
  padding-top: 120px;
  padding-bottom: 130px;
}

@media only screen and (max-width: 1199px) {
  .hero-5__inner {
    padding-top: 60px;
    padding-bottom: 100px;
  }
}

@media only screen and (max-width: 991px) {
  .hero-5__inner {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}

.hero-5__wrapper {
  display: grid;
  justify-content: space-between;
  grid-template-columns: 1152px 1fr;
}

@media only screen and (max-width: 1399px) {
  .hero-5__wrapper {
    grid-template-columns: 950px 1fr;
  }
}

@media only screen and (max-width: 1199px) {
  .hero-5__wrapper {
    grid-template-columns: 800px 1fr;
  }
}

@media only screen and (max-width: 991px) {
  .hero-5__wrapper {
    grid-template-columns: 650px 1fr;
  }
}

@media only screen and (max-width: 767px) {
  .hero-5__wrapper {
    grid-template-columns: 1fr;
  }
}

.hero-5__wrapper .text .title {
  max-width: 1152px;
  font-family: var(--font_kanit);
  font-weight: 400;
  font-size: 80px;
  line-height: 90px;
  text-transform: uppercase;
  color: #04030A;
}

.dark .hero-5__wrapper .text .title {
  color: var(--white);
}

@media only screen and (max-width: 1199px) {
  .hero-5__wrapper .text .title {
    font-size: 65px;
    line-height: 70px;
  }
}

@media only screen and (max-width: 991px) {
  .hero-5__wrapper .text .title {
    font-size: 50px;
    line-height: 55px;
  }
}

@media only screen and (max-width: 767px) {
  .hero-5__wrapper .text .title {
    max-width: 100%;
    font-size: 45px;
    line-height: 50px;
  }
}

@media (max-width: 575px) {
  .hero-5__wrapper .text .title {
    font-size: 30px;
    line-height: 35px;
  }
}

.hero-5__wrapper .text .title span {
  color: #FF5E14;
  font-family: var(--font_serif);
  font-style: italic;
}

.hero-5__wrapper ul {
  list-style: none;
  margin-left: auto;
}

@media only screen and (max-width: 767px) {
  .hero-5__wrapper ul {
    margin-left: inherit;
    margin-top: 20px;
  }
}

.hero-5__wrapper ul li:not(:last-child) {
  margin-bottom: 30px;
}

.hero-5__wrapper ul li a {
  font-weight: 400;
  font-size: 18px;
  line-height: 1;
  color: rgba(4, 3, 10, 0.6);
}

.dark .hero-5__wrapper ul li a {
  color: rgba(255, 255, 255, 0.6);
}

.hero-5__wrapper ul li a:hover {
  color: var(--secondary);
}

.dark .hero-5__wrapper ul li a:hover {
  color: var(--white);
}

.hero-5 .shape-wrap {
  gap: 40px;
  display: flex;
  margin-left: auto;
  align-items: flex-end;
}

.hero-5 .shape-wrap p {
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  color: #04030A;
  opacity: 0.6;
  max-width: 458px;
  transform: translateY(50%);
}

@media only screen and (max-width: 767px) {
  .hero-5 .shape-wrap p {
    transform: translateY(0%);
    margin-top: 20px;
  }
}

.dark .hero-5 .shape-wrap p {
  color: rgba(255, 255, 255, 0.6);
}

.hero-5 .light-shape {
  margin-left: auto;
}

@media only screen and (max-width: 767px) {
  .hero-5 .light-shape {
    display: none;
  }
}

.dark .hero-5 .light-shape {
  display: none;
}

.hero-5 .dark-shape {
  display: none;
  margin-left: auto;
}

.dark .hero-5 .dark-shape {
  display: block;
}

@media only screen and (max-width: 767px) {
  .dark .hero-5 .dark-shape {
    display: none;
  }
}

.protfolio-pinterest__wrapper {
  display: grid;
  gap: 120px 50px;
  grid-template-columns: repeat(2, auto);
  border-top: 1px solid rgba(4, 3, 10, 0.14);
}

.dark .protfolio-pinterest__wrapper {
  border-color: rgba(255, 255, 255, 0.14);
}

@media only screen and (max-width: 1199px) {
  .protfolio-pinterest__wrapper {
    gap: 50px 50px;
  }
}

@media only screen and (max-width: 767px) {
  .protfolio-pinterest__wrapper {
    gap: 30px;
  }
}

@media (max-width: 575px) {
  .protfolio-pinterest__wrapper>* {
    grid-column: 1/-1;
  }
}

.protfolio-pinterest__wrapper>*:nth-child(1) {
  grid-column: 1/-1;
  margin: 0 auto;
}

.protfolio-pinterest__wrapper>*:nth-child(2) {
  grid-column: 1/-1;
  margin-left: auto;
}

.protfolio-pinterest__wrapper>*:nth-child(3) {
  margin-left: 160px;
}

@media only screen and (max-width: 991px) {
  .protfolio-pinterest__wrapper>*:nth-child(3) {
    margin-left: 0;
  }
}

.protfolio-pinterest__wrapper>*:nth-child(3) .protfolio-pinterest__media {
  width: 450px;
}

@media only screen and (max-width: 1399px) {
  .protfolio-pinterest__wrapper>*:nth-child(3) .protfolio-pinterest__media {
    width: 100%;
  }
}

.protfolio-pinterest__wrapper>*:nth-child(4) {
  margin-right: 160px;
  margin-left: auto;
}

@media only screen and (max-width: 991px) {
  .protfolio-pinterest__wrapper>*:nth-child(4) {
    margin-right: 0;
  }
}

.protfolio-pinterest__wrapper>*:nth-child(5) {
  grid-column: 1/-1;
  margin: 0 auto;
}

.protfolio-pinterest__wrapper>*:nth-child(6) {
  grid-column: 1/-1;
  margin-left: auto;
}

.protfolio-pinterest__wrapper>*:nth-child(7) {
  margin-left: 160px;
}

@media only screen and (max-width: 991px) {
  .protfolio-pinterest__wrapper>*:nth-child(7) {
    margin-left: 0;
  }
}

.protfolio-pinterest__wrapper>*:nth-child(7) .protfolio-pinterest__media {
  width: 450px;
}

@media only screen and (max-width: 1399px) {
  .protfolio-pinterest__wrapper>*:nth-child(7) .protfolio-pinterest__media {
    width: 100%;
  }
}

.protfolio-pinterest__wrapper>*:nth-child(8) {
  margin-right: 160px;
  margin-left: auto;
}

@media only screen and (max-width: 991px) {
  .protfolio-pinterest__wrapper>*:nth-child(8) {
    margin-right: 0;
  }
}

.protfolio-pinterest__wrapper>*:nth-child(9) {
  grid-column: 1/-1;
  margin: 0 auto;
}

.protfolio-pinterest__media {
  overflow: hidden;
  border-radius: 14px;
  position: relative;
}

@media only screen and (max-width: 991px) {
  .protfolio-pinterest__media {
    width: 100%;
    height: 100%;
  }
}

.protfolio-pinterest__media img {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
}

@media only screen and (max-width: 991px) {
  .protfolio-pinterest__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

.protfolio-pinterest__media img::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: #04030A;
  opacity: 0.2;
}

.protfolio-pinterest__media:hover .protfolio-pinterest__hover {
  opacity: 1;
  visibility: visible;
}

.protfolio-pinterest__hover {
  top: 40px;
  right: 40px;
  left: 40px;
  z-index: 1;
  opacity: 0;
  will-change: transform;
  visibility: hidden;
  position: absolute;
  text-align: center;
}

.protfolio-pinterest__subtitle {
  font-weight: 500;
  font-size: 30px;
  line-height: 1;
  margin-bottom: 14px;
  color: var(--white);
  font-family: var(--font_kanit);
}

@media only screen and (max-width: 991px) {
  .protfolio-pinterest__subtitle {
    font-size: 25px;
    margin-bottom: 10px;
  }
}

.protfolio-pinterest__title {
  font-weight: 500;
  font-size: 34px;
  line-height: 1;
  color: var(--white);
  font-family: var(--font_kanit);
}

@media only screen and (max-width: 991px) {
  .protfolio-pinterest__title {
    font-size: 28px;
  }
}

.protfolio-pinterest__border {
  width: 100%;
  height: 26px;
  display: inline-block;
  border-radius: 10px 10px 0 0;
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.protfolio-pinterest__border.top {
  border-bottom: none;
}

.protfolio-pinterest__border.bottom {
  top: auto;
  bottom: 0;
  border-top: none;
  border-radius: 0 0 10px 10px;
}

.page-title__area {
  padding-top: 130px;
  padding-bottom: 100px;
  border-bottom: 1px solid rgba(4, 3, 10, 0.14);
}

@media only screen and (max-width: 1199px) {
  .page-title__area {
    padding-top: 100px;
  }
}

@media only screen and (max-width: 767px) {
  .page-title__area {
    padding-bottom: 60px;
  }
}

.page-title__area .page-title {
  font-weight: 711;
  font-size: 260px;
  line-height: 237px;
  letter-spacing: -10px;
  text-transform: uppercase;
  color: var(--secondary);
  margin-bottom: 50px;
}

@media only screen and (max-width: 1919px) {
  .page-title__area .page-title {
    font-size: 235px;
  }
}

@media only screen and (max-width: 1399px) {
  .page-title__area .page-title {
    font-size: 200px;
    line-height: 200px;
  }
}

@media only screen and (max-width: 1199px) {
  .page-title__area .page-title {
    font-size: 155px;
    line-height: 150px;
    margin-bottom: 40px;
    letter-spacing: -3px;
  }
}

@media only screen and (max-width: 991px) {
  .page-title__area .page-title {
    font-size: 110px;
    line-height: 100px;
    margin-bottom: 25px;
    letter-spacing: 0px;
  }
}

@media only screen and (max-width: 767px) {
  .page-title__area .page-title {
    font-size: 75px;
    line-height: 75px;
  }
}

@media (max-width: 575px) {
  .page-title__area .page-title {
    font-size: 40px;
    line-height: 40px;
  }
}

.page-title__wrapper {
  display: grid;
  align-items: center;
  grid-template-columns: 704px 1fr;
}

@media only screen and (max-width: 1399px) {
  .page-title__wrapper {
    grid-template-columns: 504px 1fr;
  }
}

@media only screen and (max-width: 1199px) {
  .page-title__wrapper {
    grid-template-columns: 350px 1fr;
  }
}

@media only screen and (max-width: 991px) {
  .page-title__wrapper {
    grid-template-columns: 246px 1fr;
    align-items: start;
  }
}

@media only screen and (max-width: 767px) {
  .page-title__wrapper {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.page-title__team-info .author {
  list-style: none;
  display: flex;
  margin-bottom: 10px;
  align-items: center;
}

.page-title__team-info .author li {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  border-radius: 500px;
  overflow: hidden;
  border: 2px solid var(--white);
}

.page-title__team-info .author li:not(:first-child) {
  margin-left: -20px;
}

.page-title__team-info .author li img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-title__team-info p {
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  max-width: 216px;
  color: rgba(4, 3, 10, 0.6);
  font-family: var(--font_kanit);
}

.page-title__content p {
  font-weight: 400;
  font-size: 26px;
  max-width: 746px;
  line-height: 36px;
  margin-bottom: 60px;
  color: rgba(4, 3, 10, 0.7);
  font-family: var(--font_kanit);
}

@media only screen and (max-width: 991px) {
  .page-title__content p {
    font-size: 22px;
    line-height: 32px;
    margin-bottom: 40px;
  }
}

.page-title__content .social-list {
  gap: 10px;
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  align-items: center;
}

.page-title__content .social-list li a {
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
  border-radius: 6px;
  padding: 5px 25px;
  transition: all 0.3s;
  display: inline-block;
  color: var(--secondary);
  font-family: var(--font_kanit);
  border: 1px solid rgba(4, 3, 10, 0.14);
}

.page-title__content .social-list li a:hover {
  background: #F5F5F5;
  border-color: transparent;
}

.project-details-slider__wrapper {
  margin-left: -195px;
  margin-right: -195px;
}

.project-details-slider__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

.project-details-slider .project-details-pagination {
  text-align: center;
  margin-top: 50px;
}

.project-details-slider .project-details-pagination .swiper-pagination-bullet {
  width: 6px;
  height: 6px;
  background: rgba(4, 3, 10, 0.16);
  margin: 0 4px;
  border-radius: 50%;
  opacity: 1;
  transition: all 0.3s ease;
}

.project-details-slider .project-details-pagination .swiper-pagination-bullet-active {
  width: 24px;
  height: 6px;
  background: #04030A;
  border-radius: 3px;
}

.project-details-slider .project-details-pagination .swiper-pagination-bullet-active-prev,
.project-details-slider .project-details-pagination .swiper-pagination-bullet-active-next {
  transform: scale(0.8);
  opacity: 0.6;
}

.project-details-image .img-1 {
  margin-right: -37px;
}

@media (max-width: 575px) {
  .project-details-image .img-1 {
    margin-right: 0;
  }
}

.project-details-image .img-2 {
  margin-left: 37px;
}

@media (max-width: 575px) {
  .project-details-image .img-2 {
    margin-left: 0;
  }
}

.project-details-image__thumb {
  overflow: hidden;
  border-radius: 14px;
}

.project-details-image__thumb img {
  width: 100%;
  overflow: hidden;
  height: 100%;
  object-fit: cover;
  border-radius: 14px;
}

.project-details-result__info {
  margin-bottom: 50px;
}

.project-details-result__info .title {
  font-weight: 400;
  font-size: 44px;
  line-height: 54px;
  text-transform: capitalize;
  color: #04030A;
  font-family: var(--font_kanit);
  margin-bottom: 20px;
}

@media (max-width: 575px) {
  .project-details-result__info .title {
    font-size: 35px;
    line-height: 51px;
  }
}

.project-details-result__info .decs {
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  text-transform: capitalize;
  color: #04030A;
  opacity: 0.6;
  font-family: var(--font_kanit);
}

.project-details-result__inner {
  border-top: 1px solid rgba(4, 3, 10, 0.14);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
}

@media only screen and (max-width: 991px) {
  .project-details-result__inner {
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    padding-top: 50px;
  }
}

@media only screen and (max-width: 767px) {
  .project-details-result__inner {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}

@media (max-width: 575px) {
  .project-details-result__inner {
    grid-template-columns: repeat(1, 1fr);
    gap: 30px;
  }
}

.project-details-result__item {
  padding-left: 90px;
  padding-top: 35px;
  border-left: 1px solid rgba(4, 3, 10, 0.14);
  padding-bottom: 35px;
}

@media only screen and (max-width: 1399px) {
  .project-details-result__item {
    padding-left: 40px;
  }
}

@media only screen and (max-width: 1199px) {
  .project-details-result__item {
    padding-left: 10px;
  }
}

@media only screen and (max-width: 991px) {
  .project-details-result__item {
    border: none;
    padding: 0;
  }
}

.project-details-result__item:first-child {
  border: none;
}

.project-details-result__item .title {
  font-weight: 400;
  font-size: 44px;
  line-height: 54px;
  text-transform: capitalize;
  color: #04030A;
  font-family: var(--font_kanit);
  margin-bottom: 10px;
}

.project-details-result__item .text {
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  text-transform: capitalize;
  color: #04030A;
  opacity: 0.6;
  font-family: var(--font_kanit);
  max-width: 217px;
}

.project-details-what__info .sub-title {
  font-weight: 400;
  font-size: 18px;
  line-height: 26px;
  color: #04030A;
  opacity: 0.7;
  font-family: var(--font_kanit);
}

.project-details-what__inner {
  margin-left: 65px;
}

@media only screen and (max-width: 767px) {
  .project-details-what__inner {
    margin-left: 0;
  }
}

.project-details-what__content .text {
  font-weight: 400;
  font-size: 26px;
  line-height: 36px;
  text-transform: capitalize;
  color: #04030A;
  opacity: 0.7;
  font-family: var(--font_kanit);
}

.project-details-what__wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 48px;
}

@media (max-width: 575px) {
  .project-details-what__wrap {
    grid-template-columns: repeat(1, 1fr);
  }
}

.project-details-what__item {
  border-bottom: 1px dashed rgba(4, 3, 10, 0.14);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 15px;
}

.project-details-what__item .title {
  font-weight: 400;
  font-size: 18px;
  line-height: 26px;
  color: #04030A;
  font-family: var(--font_kanit);
}

.project-details-what__item a {
  color: #101010;
}

.breadcrumb-6 .breadcrumb-5__wrapper {
  border-bottom: none;
  position: relative;
}

.breadcrumb-6 .breadcrumb-5__wrapper .shape-2 {
  position: absolute;
  left: -80px;
  bottom: 0;
}

@media only screen and (max-width: 1199px) {
  .breadcrumb-6 .breadcrumb-5__wrapper .shape-2 {
    display: none;
  }
}

.breadcrumb-6 .breadcrumb-5__wrapper .shape-3 {
  position: absolute;
  right: -80px;
  bottom: 186px;
}

@media only screen and (max-width: 1199px) {
  .breadcrumb-6 .breadcrumb-5__wrapper .shape-3 {
    display: none;
  }
}

.breadcrumb-6 .breadcrumb-5__content .sub-title {
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  color: #04030A;
  font-family: var(--font_kanit);
}

.breadcrumb-6 .breadcrumb-5__content .title {
  margin-top: 14px;
  position: relative;
  display: inline-block;
}

.breadcrumb-6 .breadcrumb-5__content .title .shape-1 {
  position: absolute;
  right: -181px;
  top: 34px;
}

@media only screen and (max-width: 1199px) {
  .breadcrumb-6 .breadcrumb-5__content .title .shape-1 {
    display: none;
  }
}

.fun-fact-2__wrapper {
  display: flex;
  align-items: center;
}

@media only screen and (max-width: 991px) {
  .fun-fact-2__wrapper {
    display: grid;
    grid-template-columns: auto auto;
    gap: 5px;
  }
}

@media only screen and (max-width: 767px) {
  .fun-fact-2__wrapper {
    grid-template-columns: auto;
  }
}

.fun-fact-2__item {
  gap: 22px;
  width: 100%;
  display: flex;
  padding: 35px;
  align-items: center;
  border-radius: 10px;
  justify-content: center;
  border: 1px solid rgba(4, 3, 10, 0.12);
}

@media only screen and (max-width: 1919px) {
  .fun-fact-2__item {
    padding: 35px 20px;
  }
}

@media only screen and (max-width: 1399px) {
  .fun-fact-2__item {
    padding: 35px 10px;
    gap: 10px;
  }
}

@media only screen and (max-width: 1199px) {
  .fun-fact-2__item {
    flex-wrap: wrap;
    text-align: center;
  }
}

.fun-fact-2__item .title {
  font-weight: 500;
  font-size: 60px;
  letter-spacing: 1px;
  color: var(--secondary);
  text-transform: uppercase;
  font-family: var(--font_kanit);
}

@media only screen and (max-width: 1399px) {
  .fun-fact-2__item .title {
    font-size: 50px;
  }
}

.fun-fact-2__item .odometer.odometer-auto-theme,
.fun-fact-2__item .odometer.odometer-theme-default {
  line-height: 1;
  font-family: var(--font_kanit);
}

.fun-fact-2__item p {
  line-height: 28px;
  max-width: 160px;
  color: rgba(4, 3, 10, 0.6);
}

.service-details__top {
  display: grid;
  gap: 20px 160px;
  grid-template-columns: 799px auto auto;
}

@media only screen and (max-width: 1399px) {
  .service-details__top {
    grid-template-columns: 500px auto auto;
    gap: 20px 60px;
  }
}

@media only screen and (max-width: 1199px) {
  .service-details__top {
    grid-template-columns: 415px auto auto;
    gap: 20px 20px;
  }
}

@media only screen and (max-width: 991px) {
  .service-details__top {
    grid-template-columns: auto;
    gap: 20px 20px;
  }
}

.service-details__top .title {
  font-size: 60px;
  font-weight: 500;
  line-height: 70px;
  color: var(--secondary);
  font-family: var(--font_kanit);
}

@media only screen and (max-width: 1199px) {
  .service-details__top .title {
    font-size: 50px;
    line-height: 50px;
  }
}

@media (max-width: 575px) {
  .service-details__top .title {
    font-size: 35px;
    line-height: 35px;
  }
}

.service-details__top ul {
  list-style: none;
}

.service-details__top ul li {
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
  position: relative;
  padding-left: 19px;
  color: rgba(4, 3, 10, 0.6);
  font-family: var(--font_kanit);
}

.service-details__top ul li::before {
  content: "";
  left: 0;
  top: 50%;
  width: 7px;
  height: 7px;
  border-radius: 500px;
  position: absolute;
  transform: translateY(-50%);
  background: var(--secondary);
}

.service-details__top ul li:not(:last-child) {
  margin-bottom: 10px;
}

@media only screen and (max-width: 991px) {
  .service-details__top ul li:not(:last-child) {
    margin-bottom: 0;
  }
}

.service-details__content {
  margin-top: 110px;
}

@media only screen and (max-width: 1399px) {
  .service-details__content {
    margin-top: 80px;
  }
}

@media only screen and (max-width: 991px) {
  .service-details__content {
    margin-top: 30px;
  }
}

.service-details__content p {
  line-height: 28px;
  color: rgba(4, 3, 10, 0.6);
  font-family: var(--font_kanit);
}

.service-details__content p:not(:last-child) {
  margin-bottom: 30px;
}

.cta-3__wrapper {
  display: grid;
  grid-template-columns: 1fr 820px;
}

@media only screen and (max-width: 1399px) {
  .cta-3__wrapper {
    grid-template-columns: 1fr 650px;
  }
}

@media only screen and (max-width: 1199px) {
  .cta-3__wrapper {
    grid-template-columns: 1fr 530px;
  }
}

@media only screen and (max-width: 991px) {
  .cta-3__wrapper {
    grid-template-columns: 1fr 420px;
  }
}

@media only screen and (max-width: 767px) {
  .cta-3__wrapper {
    grid-template-columns: 1fr;
  }
}

.cta-3 .media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cta-3__content {
  padding: 60px;
  padding-right: 10px;
  position: relative;
}

@media only screen and (max-width: 1199px) {
  .cta-3__content {
    padding: 20px;
  }
}

.cta-3__content::before {
  content: "";
  width: 100%;
  height: 100%;
  background: rgba(4, 3, 10, 0.5);
  position: absolute;
  top: 0;
  left: 0;
}

.cta-3__content .title {
  z-index: 2;
  font-weight: 500;
  font-size: 60px;
  max-width: 540px;
  line-height: 70px;
  position: relative;
  color: var(--white);
  margin-bottom: 55px;
  font-family: var(--font_kanit);
}

@media only screen and (max-width: 1199px) {
  .cta-3__content .title {
    font-size: 50px;
    line-height: 50px;
    margin-bottom: 30px;
  }
}

@media only screen and (max-width: 991px) {
  .cta-3__content .title {
    font-size: 40px;
    line-height: 40px;
  }
}

@media (max-width: 575px) {
  .cta-3__content .title {
    font-size: 25px;
    line-height: 30px;
  }
}

.cta-3__content p {
  max-width: 517px;
  margin-bottom: 60px;
  position: relative;
  color: rgba(255, 255, 255, 0.7);
}

@media only screen and (max-width: 1199px) {
  .cta-3__content p {
    margin-bottom: 30px;
  }
}

.cta-3__content .btn-primary span {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.14);
}

.cta-3__content .btn-primary span:nth-child(2) {
  color: var(--secondary);
}

.cta-3__content .btn-primary:hover>*:nth-child(1) {
  color: var(--secondary);
}

.cta-3__content .btn-primary:hover>*:nth-child(2) {
  color: var(--white);
}

.cta-3__content .btn-primary:hover>*:nth-child(3) {
  color: var(--secondary);
}

.process-2__line {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(4, 3, 10, 0.14);
}

.process-2__line span {
  width: 9px;
  height: 9px;
  display: flex;
  transform: translateY(-50%);
  border-radius: 500px;
  background: var(--secondary);
}

.process-2__wrapper {
  display: grid;
  gap: 10px 80px;
  grid-template-columns: repeat(4, 1fr);
}

@media only screen and (max-width: 1399px) {
  .process-2__wrapper {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media only screen and (max-width: 1199px) {
  .process-2__wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 575px) {
  .process-2__wrapper {
    grid-template-columns: repeat(1, 1fr);
  }
}

.process-2__content {
  margin-top: 32px;
}

@media (max-width: 575px) {
  .process-2__content {
    margin-top: 20px;
  }
}

.process-2__content .title {
  font-size: 24px;
  font-weight: 500;
  line-height: 34px;
  margin-bottom: 19px;
  color: var(--font_kanit);
  font-family: var(--font_kanit);
  color: var(--secondary) !important;
}

@media only screen and (max-width: 1399px) {
  .process-2__content .title {
    margin-bottom: 10px;
  }

  .process-2__content .title br {
    display: none;
  }
}

.process-2__content p {
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
  color: rgba(4, 3, 10, 0.6);
  font-family: var(--font_kanit);
}

.process-2__bottom {
  gap: 30px;
  display: flex;
  flex-wrap: wrap;
  margin-top: 100px;
  align-items: center;
  justify-content: space-between;
}

@media only screen and (max-width: 991px) {
  .process-2__bottom {
    margin-top: 50px;
  }
}

.process-2__bottom__item {
  width: 100%;
  max-width: 513px;
  overflow: hidden;
  border-radius: 10px;
}

.process-2__bottom__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.problem .section-title__wrapper {
  margin-bottom: 60px;
}

@media only screen and (max-width: 767px) {
  .problem .section-title__wrapper {
    margin-bottom: 30px;
  }
}

.problem .section-title__wrapper .title {
  font-size: 60px;
  font-weight: 500;
  line-height: 70px;
  margin-bottom: 18px;
  color: var(--secondary);
  font-family: var(--font_kanit);
}

@media only screen and (max-width: 767px) {
  .problem .section-title__wrapper .title {
    font-size: 50px;
    line-height: 50px;
  }
}

@media (max-width: 575px) {
  .problem .section-title__wrapper .title {
    font-size: 35px;
    line-height: 35px;
  }
}

.problem .section-title__wrapper p {
  max-width: 1020px;
  color: rgba(4, 3, 10, 0.6);
  font-family: var(--font_kanit);
}

.problem__wrapper {
  border-top: 1px solid rgba(4, 3, 10, 0.14);
}

.problem__item {
  gap: 20px;
  display: flex;
  padding: 35px 0px 36px;
  justify-content: space-between;
  border-bottom: 1px solid rgba(4, 3, 10, 0.14);
}

@media only screen and (max-width: 767px) {
  .problem__item {
    flex-wrap: wrap;
  }
}

.problem__item .title {
  font-size: 24px;
  font-weight: 400;
  line-height: 34px;
  position: relative;
  padding-left: 22px;
  display: inline-block;
  color: var(--secondary);
  font-family: var(--font_kanit);
}

.problem__item .title::before {
  left: 0;
  top: 50%;
  width: 6px;
  content: "";
  height: 6px;
  position: absolute;
  border-radius: 500px;
  transform: translateY(-50%);
  background: rgba(4, 3, 10, 0.4);
}

@media only screen and (max-width: 767px) {
  .problem__item ul {
    margin-left: 20px;
  }
}

.problem__item ul li {
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
  color: rgba(4, 3, 10, 0.6);
  font-family: var(--font_kanit);
}

.problem__item ul li:not(:last-child) {
  margin-bottom: 12px;
}

.contact-us-3__inner {
  padding: 140px 0;
  position: relative;
  background-size: cover;
  background-repeat: no-repeat;
}

@media only screen and (max-width: 1199px) {
  .contact-us-3__inner {
    padding: 100px 0;
  }
}

@media only screen and (max-width: 991px) {
  .contact-us-3__inner {
    padding: 60px 0;
  }
}

.contact-us-3__inner::before {
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  background: rgba(4, 3, 10, 0.7);
}

.contact-us-3__inner .title {
  z-index: 2;
  font-size: 60px;
  font-weight: 709;
  line-height: 70px;
  position: relative;
  color: var(--white);
  letter-spacing: -0.04em;
  text-transform: uppercase;
  font-family: var(--font_cooper);
}

@media only screen and (max-width: 1199px) {
  .contact-us-3__inner .title {
    font-size: 50px;
    line-height: 50px;
  }
}

@media only screen and (max-width: 991px) {
  .contact-us-3__inner .title {
    font-size: 38px;
    line-height: 40px;
    letter-spacing: 0;
  }
}

@media (max-width: 575px) {
  .contact-us-3__inner .title {
    font-size: 30px;
  }
}

.contact-us-3__wrapper {
  z-index: 2;
  display: grid;
  margin-top: 106px;
  position: relative;
  grid-template-columns: 900px 1fr;
}

@media only screen and (max-width: 1399px) {
  .contact-us-3__wrapper {
    grid-template-columns: 650px 1fr;
  }
}

@media only screen and (max-width: 1199px) {
  .contact-us-3__wrapper {
    grid-template-columns: 1fr 1fr;
    margin-top: 80px;
  }
}

@media only screen and (max-width: 991px) {
  .contact-us-3__wrapper {
    gap: 30px;
    margin-top: 30px;
    grid-template-columns: 1fr;
  }
}

.contact-us-3__author p {
  max-width: 673px;
  line-height: 26px;
  margin-bottom: 50px;
  font-family: var(--font_kanit);
  color: rgba(255, 255, 255, 0.7);
}

@media only screen and (max-width: 991px) {
  .contact-us-3__author p {
    margin-bottom: 30px;
  }
}

.contact-us-3__author-wrap {
  gap: 18px;
  display: flex;
  align-items: center;
}

.contact-us-3__author-wrap .media {
  width: 80px;
  height: 80px;
  display: flex;
  overflow: hidden;
  align-items: center;
  border-radius: 500px;
  justify-content: center;
}

.contact-us-3__author-wrap .media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-us-3__author-wrap .text .name {
  font-size: 20px;
  font-weight: 500;
  line-height: 28px;
  color: var(--white);
  font-family: var(--font_kanit);
}

.contact-us-3__author-wrap .text span {
  font-weight: 400;
  font-size: 16px;
  line-height: 28px;
  font-family: var(--font_kanit);
  color: rgba(255, 255, 255, 0.6);
}

.contact-us-3__from .form-group:not(:last-child) {
  margin-bottom: 36px;
}

.contact-us-3__from .form-group input,
.contact-us-3__from .form-group textarea {
  width: 100%;
  border: none;
  outline: none;
  font-size: 16px;
  line-height: 16px;
  padding-bottom: 10px;
  background: transparent;
  color: rgba(255, 255, 255, 0.6);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.contact-us-3__from .form-group input::placeholder,
.contact-us-3__from .form-group textarea::placeholder {
  font-size: 16px;
  line-height: 16px;
  color: rgba(255, 255, 255, 0.6);
}

.contact-us-3__from .form-group textarea {
  height: 27px;
}

.contact-us-3__from .rr-btn-4 {
  padding: 4px 36px 4px 5px;
}

.error__content {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.error__content .media {
  margin-bottom: 44px;
}

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

@media only screen and (max-width: 767px) {
  .error__content .media {
    max-width: 400px;
  }
}

@media (max-width: 575px) {
  .error__content .media {
    max-width: 250px;
  }
}

.error__content .title {
  font-size: 44px;
  font-weight: 400;
  line-height: 44px;
  text-align: center;
  margin-bottom: 60px;
  color: var(--secondary);
  font-family: var(--font_kanit);
}

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

@media (max-width: 575px) {
  .error__content .title {
    font-size: 30px;
    line-height: 35px;
  }
}

.error__content .rr-btn-4 {
  color: var(--white);
  padding: 4px 32.2px 4px 5px;
  background: var(--secondary);
}

.error__content .rr-btn-4 i {
  background: var(--white);
  color: var(--secondary);
  margin-right: 34px;
}

.has--about-me .section-title-3__wrapper .sub-title {
  color: var(--secondary-2);
}

.has--about-me .section-title-3__wrapper .sub-title .text {
  border-color: var(--secondary-2);
  text-transform: capitalize;
}

.has--about-me .section-title-3__wrapper .title {
  color: var(--secondary-2);
}

.has--about-me .awards-3-inner {
  border-color: rgba(18, 18, 18, 0.14);
}

.has--about-me .awards-3-item {
  border-color: rgba(18, 18, 18, 0.14);
}

.has--about-me .awards-3-item span {
  color: var(--secondary-2);
}

.has--about-me .awards-3-item .title {
  color: var(--secondary-2);
}

.has--about-me .awards-3-item p {
  color: var(--secondary-2);
}

.has--about-me .awards-3-item .arrow {
  color: var(--secondary-2);
}

.has--about-me .active-bg {
  background-color: rgba(18, 18, 18, 0.1);
}

.breadcrumb-2__inner {
  padding-top: 211px;
  position: relative;
  padding-bottom: 80px;
  background-size: cover;
  background-repeat: no-repeat;
}

@media only screen and (max-width: 1199px) {
  .breadcrumb-2__inner {
    padding-top: 150px;
  }
}

@media only screen and (max-width: 767px) {
  .breadcrumb-2__inner {
    padding-bottom: 60px;
  }
}

@media (max-width: 575px) {
  .breadcrumb-2__inner {
    padding-bottom: 60px;
    padding-top: 120px;
  }
}

.breadcrumb-2__inner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(4, 3, 10, 0.4);
}

.breadcrumb-2__content {
  position: relative;
  z-index: 2;
}

.breadcrumb-2__content ul {
  gap: 18px;
  display: flex;
  list-style: none;
  align-items: center;
  margin-bottom: 34px;
}

@media only screen and (max-width: 1199px) {
  .breadcrumb-2__content ul {
    margin-bottom: 20px;
  }
}

.breadcrumb-2__content ul li {
  font-size: 18px;
  line-height: 18px;
  color: var(--white);
  position: relative;
}

.breadcrumb-2__content ul li:not(:last-child)::before {
  top: 50%;
  right: -15px;
  content: "/";
  position: absolute;
  transform: translateY(-50%);
  color: rgba(255, 255, 255, 0.7);
}

.breadcrumb-2__content ul li a {
  gap: 12px;
  display: flex;
  color: rgba(255, 255, 255, 0.7);
}

.breadcrumb-2__content ul li a:hover {
  color: var(--white);
}

.breadcrumb-2__content .title {
  font-weight: 500;
  font-size: 70px;
  line-height: 80px;
  color: var(--white);
  margin-bottom: 10px;
  text-transform: uppercase;
  font-family: var(--font_kanit);
}

@media (max-width: 575px) {
  .breadcrumb-2__content .title {
    font-size: 40px;
    line-height: 50px;
  }
}

.breadcrumb-2__content .decs {
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
  margin-left: auto;
  max-width: 384px;
  color: rgba(255, 255, 255, 0.6);
  font-family: var(--font_kanit);
}

@media only screen and (max-width: 1199px) {
  .breadcrumb-2__content .decs {
    margin-left: inherit;
  }
}

.fun-fact-slider__inner {
  padding: 302px 0;
  position: relative;
  height: 100vh;
  overflow: hidden;
  /* left lines */
}

.fun-fact-slider__inner .progress-wrapper {
  position: absolute;
  left: 160px;
  top: 50%;
  transform: translateY(-50%);
}

@media only screen and (max-width: 1199px) {
  .fun-fact-slider__inner .progress-wrapper {
    left: 100px;
  }
}

@media only screen and (max-width: 767px) {
  .fun-fact-slider__inner .progress-wrapper {
    left: 10px;
  }
}

@media (max-width: 575px) {
  .fun-fact-slider__inner .progress-wrapper {
    display: none;
  }
}

.fun-fact-slider__inner .progress-bar {
  width: 2px;
  height: 100px;
  background: rgba(255, 255, 255, 0.14);
  margin-bottom: 15px;
  position: relative;
  overflow: hidden;
}

.fun-fact-slider__inner .progress-bar span {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0%;
  background: var(--white);
}

.fun-fact-slider__content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  opacity: 0;
}

.fun-fact-slider__content:first-child {
  opacity: 1;
}

.fun-fact-slider__content .title {
  font-weight: 709;
  font-size: 120px;
  color: #E0EEEE;
  line-height: 126px;
  letter-spacing: -4.8px;
  text-transform: uppercase;
  font-family: var(--font_cooper);
}

@media only screen and (max-width: 1399px) {
  .fun-fact-slider__content .title {
    font-size: 100px;
    line-height: 110px;
  }
}

@media only screen and (max-width: 1199px) {
  .fun-fact-slider__content .title {
    font-size: 80px;
    line-height: 90px;
  }
}

@media only screen and (max-width: 991px) {
  .fun-fact-slider__content .title {
    font-size: 60px;
    line-height: 70px;
    letter-spacing: -2.8px;
  }
}

@media only screen and (max-width: 767px) {
  .fun-fact-slider__content .title {
    font-size: 40px;
    line-height: 50px;
    letter-spacing: 0;
  }
}

.fun-fact-slider__content .title strong {
  font-weight: 709;
  transform: translateX(420px);
  display: inline-block;
}

@media only screen and (max-width: 1919px) {
  .fun-fact-slider__content .title strong {
    transform: translateX(220px);
  }
}

@media only screen and (max-width: 1199px) {
  .fun-fact-slider__content .title strong {
    transform: translateX(120px);
  }
}

@media (max-width: 575px) {
  .fun-fact-slider__content .title strong {
    transform: translateX(0px);
  }
}

.fun-fact-slider__content .title span {
  color: #FF5E14;
  font-style: italic;
  font-weight: 400;
  font-family: var(--font_serif);
}

.author-info__wrapper {
  display: grid;
  gap: 110px;
  margin-top: 90px;
  grid-template-columns: 670px 1fr;
}

@media only screen and (max-width: 1399px) {
  .author-info__wrapper {
    gap: 50px;
    grid-template-columns: 560px 1fr;
  }
}

@media only screen and (max-width: 1199px) {
  .author-info__wrapper {
    grid-template-columns: 400px 1fr;
  }
}

@media only screen and (max-width: 991px) {
  .author-info__wrapper {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

.author-info__media {
  position: relative;
  max-width: 500px;
}

@media only screen and (max-width: 767px) {
  .author-info__media {
    max-width: 300px;
  }
}

.author-info__media::before {
  left: 0;
  bottom: 0;
  z-index: -1;
  content: "";
  width: 335px;
  position: absolute;
  border-radius: 20px;
  background: #FF5E14;
  height: calc(100% + 60px);
}

@media only screen and (max-width: 767px) {
  .author-info__media::before {
    width: 290px;
  }
}

@media (max-width: 575px) {
  .author-info__media::before {
    width: 100%;
  }
}

.author-info__media img {
  margin-left: 150px;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media only screen and (max-width: 1399px) {
  .author-info__media img {
    margin-left: 50px;
  }
}

@media (max-width: 575px) {
  .author-info__media img {
    margin-left: 0;
  }
}

.author-info__content .title {
  font-size: 60px;
  font-weight: 709;
  color: #04030A;
  line-height: 80px;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  font-family: var(--font_cooper);
}

@media only screen and (max-width: 1399px) {
  .author-info__content .title {
    font-size: 50px;
    line-height: 60px;
  }
}

@media only screen and (max-width: 1199px) {
  .author-info__content .title {
    font-size: 40px;
    line-height: 50px;
  }
}

@media (max-width: 575px) {
  .author-info__content .title {
    font-size: 25px;
    line-height: 35px;
    letter-spacing: 0;
  }

  .author-info__content .title br {
    display: none;
  }
}

.author-info__content .title span {
  color: #FF5E14;
  font-style: italic;
  font-weight: 400;
  font-family: var(--font_serif);
}

.author-info__content .text {
  margin-left: 180px;
  margin-top: 280px;
}

@media only screen and (max-width: 1399px) {
  .author-info__content .text {
    margin-left: 0px;
    margin-top: 30px;
  }
}

.author-info__content .text .sub-title {
  font-family: var(--font_kanit);
  font-weight: 500;
  font-size: 24px;
  line-height: 40px;
  color: #04030A;
  margin-bottom: 16px;
}

.author-info__content .text p {
  line-height: 28px;
  color: rgba(4, 3, 10, 0.7);
  max-width: 525px;
}

/* client area style  */
.experience__inner {
  display: grid;
  gap: 30px 170px;
  grid-template-columns: repeat(2, 1fr);
}

@media only screen and (max-width: 1399px) {
  .experience__inner {
    gap: 30px 100px;
  }
}

@media only screen and (max-width: 1199px) {
  .experience__inner {
    grid-template-columns: 1fr;
  }
}

.experience__content .title {
  font-size: 44px;
  font-weight: 500;
  line-height: 64px;
  margin-bottom: 36px;
  color: var(--secondary);
  font-family: var(--font_kanit);
}

.experience__item {
  gap: 120px;
  display: flex;
  padding: 25px 0px;
  align-items: center;
  border-bottom: 1px solid #D9D9D9;
}

@media only screen and (max-width: 1919px) {
  .experience__item {
    padding: 23px 0px;
  }
}

@media (max-width: 575px) {
  .experience__item {
    flex-wrap: wrap;
    gap: 10px;
  }
}

.experience__item:first-child {
  border-top: 1px solid #D9D9D9;
}

.experience__item span {
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
  color: rgba(4, 3, 10, 0.7);
  font-family: var(--font_kanit);
}

.experience__item .text .title {
  font-weight: 400;
  font-size: 26px;
  line-height: 26px;
  margin-bottom: 7px;
  color: var(--secondary);
  font-family: var(--font_kanit);
}

.experience__item .text .sub-title {
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
  color: rgba(4, 3, 10, 0.7);
  font-family: var(--font_kanit);
}

.experience .experience-capsule-wrapper {
  position: relative;
  overflow: hidden;
  pointer-events: none;
  height: 547px;
  border-bottom: 1px solid #D9D9D9;
}

@media only screen and (max-width: 1919px) {
  .experience .experience-capsule-wrapper {
    height: 533px;
  }
}

@media only screen and (max-width: 1199px) {
  .experience .experience-capsule-wrapper {
    height: 429px;
    margin-top: inherit;
    margin-top: 0;
  }
}

@media only screen and (max-width: 991px) {
  .experience .experience-capsule-wrapper {
    height: 380px;
  }
}

@media only screen and (max-width: 767px) {
  .experience .experience-capsule-wrapper {
    margin-top: 0;
  }
}

.experience .experience-capsule-wrapper>* {
  position: absolute;
  display: inline-block;
  margin-bottom: 0;
  left: 0;
  top: 0;
  user-select: none;
  pointer-events: auto;
  transition: none;
}

@media only screen and (max-width: 1399px) {
  .experience .experience-capsule-wrapper>* {
    width: 120px;
  }
}

.experience .experience-box {
  width: 120px;
  height: 120px;
  display: flex;
  font-size: 15px;
  text-align: center;
  color: var(--white);
  align-items: center;
  border-radius: 500px;
  justify-content: center;
  background: var(--secondary);
  font-family: var(--font_kanit);
}

@media only screen and (max-width: 767px) {
  .experience .experience-box {
    width: 100px;
    height: 100px;
  }
}

.experience .experience-box.rr-bg-black {
  background: #393939;
}

.experience .experience-box.bg-orange {
  background: #FF5E14;
}

.experience .experience-box.bg-gray {
  background: rgba(4, 3, 10, 0.06);
  color: var(--secondary);
}

.experience .experience-box.rr-bg-primary {
  background: #C4F012;
  color: var(--secondary);
}

.experience .experience-box img {
  pointer-events: none;
  max-width: 100%;
  max-height: 100%;
}

/* faq page css */
.faq-area-faq-page .section-title__wrapper .title {
  font-weight: 709;
  font-size: 60px;
  line-height: 70px;
  text-align: center;
  margin-bottom: 65px;
  letter-spacing: -2.4px;
  text-transform: uppercase;
  font-family: var(--font_cooper);
}

@media only screen and (max-width: 1199px) {
  .faq-area-faq-page .section-title__wrapper .title {
    font-size: 50px;
    line-height: 60px;
  }
}

@media only screen and (max-width: 991px) {
  .faq-area-faq-page .section-title__wrapper .title {
    font-size: 40px;
    line-height: 50px;
    margin-bottom: 30px;
    letter-spacing: 0;
  }
}

@media (max-width: 575px) {
  .faq-area-faq-page .section-title__wrapper .title {
    font-size: 30px;
    line-height: 40px;
  }
}

.faq-area-faq-page .accordion-button {
  outline: 0;
  font-size: 24px;
  box-shadow: none;
  font-weight: 400;
  line-height: 24px;
  padding: 27px 36px;
  border-radius: 500px;
  transition: all 0.5s;
  display: flex;
  gap: 10px;
  color: var(--secondary);
  background-color: transparent;
  font-family: var(--font_kanit);
  border: 1px solid rgba(4, 3, 10, 0.06);
}

@media (max-width: 575px) {
  .faq-area-faq-page .accordion-button {
    font-size: 17px;
    line-height: 24px;
    padding: 20px 15px;
  }
}

.faq-area-faq-page .accordion-button::after {
  content: "+";
  font-family: var(--font_awesome);
  background-image: none;
  width: auto;
  height: auto;
}

.faq-area-faq-page .accordion-button:not(.collapsed) {
  border-color: transparent;
  background: rgba(4, 3, 10, 0.06);
}

.faq-area-faq-page .accordion-button:not(.collapsed)::after {
  content: "-";
}

.faq-area-faq-page .accordion-item {
  background-color: transparent;
  border: none;
  position: relative;
  transition: all 0.5s;
}

.faq-area-faq-page .accordion-item:not(:last-child) {
  margin-bottom: 24px;
}

.faq-area-faq-page .accordion-item:first-of-type .accordion-button {
  border-radius: 500px;
}

.faq-area-faq-page .accordion-item:last-of-type .accordion-button.collapsed {
  border-radius: 500px;
}

.faq-area-faq-page .accordion-body {
  border: none;
  font-size: 18px;
  line-height: 32px;
  color: rgba(4, 3, 10, 0.7);
  font-family: var(--font_kanit);
  padding: 33px 86px 0 36px;
}

@media (max-width: 575px) {
  .faq-area-faq-page .accordion-body {
    font-size: 16px;
    padding: 20px 0px 0 0px;
  }
}

.breadcrumb-5__wrapper {
  padding-top: 266px;
  padding-bottom: 95px;
  border-bottom: 1px solid rgba(16, 16, 16, 0.12);
}

@media only screen and (max-width: 1399px) {
  .breadcrumb-5__wrapper {
    padding-top: 210px;
    padding-bottom: 95px;
  }
}

@media only screen and (max-width: 991px) {
  .breadcrumb-5__wrapper {
    padding-top: 149px;
    padding-bottom: 50px;
  }
}

@media (max-width: 575px) {
  .breadcrumb-5__wrapper {
    padding-top: 110px;
    padding-bottom: 40px;
  }
}

.breadcrumb-5__meta {
  display: flex;
  align-items: center;
  gap: 11px;
}

.breadcrumb-5__meta li {
  list-style: none;
}

.breadcrumb-5__meta li i {
  color: #101010;
  font-size: 20px;
}

.breadcrumb-5__meta .decs {
  font-weight: 400;
  font-size: 18px;
  line-height: 27px;
  color: #04030A;
  font-family: var(--font_kanit);
}

.breadcrumb-5__content .title {
  font-weight: 400;
  font-size: 60px;
  line-height: 64px;
  text-transform: capitalize;
  color: var(--secondary);
  font-family: var(--font_kanit);
  margin-top: 26px;
  margin-bottom: 62px;
}

@media only screen and (max-width: 1199px) {
  .breadcrumb-5__content .title br {
    display: none;
  }
}

@media only screen and (max-width: 991px) {
  .breadcrumb-5__content .title {
    font-size: 50px;
    line-height: 60px;
    margin-bottom: 30px;
  }
}

@media (max-width: 575px) {
  .breadcrumb-5__content .title {
    font-size: 30px;
    line-height: 35px;
    margin-bottom: 20px;
  }
}

.breadcrumb-5__content .title span {
  color: #FF5E14;
  font-family: var(--font_serif);
  font-style: italic;
}

.breadcrumb-5__content .text {
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  text-transform: capitalize;
  color: #04030A;
  opacity: 0.6;
  font-family: var(--font_kanit);
  max-width: 742px;
  margin: 0 0 0 auto;
  margin-right: 40px;
}

@media (max-width: 575px) {
  .breadcrumb-5__content .text {
    margin-right: 0;
    max-width: 100%;
  }
}

.breadcrumb-3__wrapper {
  padding-top: 195px;
  padding-bottom: 100px;
  border-bottom: 1px solid #D9D9D9;
}

@media only screen and (max-width: 991px) {
  .breadcrumb-3__wrapper {
    padding-top: 150px;
    padding-bottom: 60px;
  }
}

@media (max-width: 575px) {
  .breadcrumb-3__wrapper {
    padding-top: 100px;
    padding-bottom: 60px;
  }
}

.breadcrumb-3__inner .title {
  font-weight: 700;
  font-size: 60px;
  line-height: 80px;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  color: #04030A;
  font-family: var(--font_cooper);
}

@media only screen and (max-width: 1199px) {
  .breadcrumb-3__inner .title {
    font-size: 40px;
    line-height: 75px;
  }
}

@media (max-width: 575px) {
  .breadcrumb-3__inner .title {
    font-size: 38px;
    line-height: 68px;
  }
}

.breadcrumb-3__inner .title img {
  margin-left: 20px;
}

@media only screen and (max-width: 1199px) {
  .breadcrumb-3__inner .title img {
    margin-left: 10px;
  }
}

.breadcrumb-3__content {
  margin-top: 250px;
}

@media only screen and (max-width: 1399px) {
  .breadcrumb-3__content {
    margin-top: 185px;
  }
}

@media only screen and (max-width: 1199px) {
  .breadcrumb-3__content {
    margin-top: 130px;
  }
}

@media only screen and (max-width: 991px) {
  .breadcrumb-3__content {
    margin-top: 106px;
  }
}

@media only screen and (max-width: 767px) {
  .breadcrumb-3__content {
    margin-top: 0px;
  }
}

.breadcrumb-3__content .title {
  font-weight: 400;
  font-size: 44px;
  line-height: 54px;
  text-transform: capitalize;
  color: #04030A;
  font-family: var(--font_kanit);
  max-width: 574px;
}

@media only screen and (max-width: 1399px) {
  .breadcrumb-3__content .title {
    font-size: 40px;
    line-height: 54px;
  }
}

@media only screen and (max-width: 1199px) {
  .breadcrumb-3__content .title {
    font-size: 35px;
    line-height: 44px;
  }
}

@media only screen and (max-width: 991px) {
  .breadcrumb-3__content .title {
    max-width: 100%;
  }
}

@media (max-width: 575px) {
  .breadcrumb-3__content .title {
    font-size: 29px;
    line-height: 36px;
  }
}

.breadcrumb-3__content .title span {
  font-style: italic;
  color: #FF5E14;
  font-family: var(--font_serif);
}

.breadcrumb-3__thumb {
  margin-top: 100px;
}

@media only screen and (max-width: 1199px) {
  .breadcrumb-3__thumb {
    margin-top: 70px;
  }
}

@media only screen and (max-width: 991px) {
  .breadcrumb-3__thumb {
    margin-top: 40px;
  }
}

.breadcrumb-3__thumb img {
  border-radius: 10px;
  object-fit: cover;
}

@media only screen and (max-width: 767px) {
  .breadcrumb-3__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

.breadcrumb-3__client {
  margin-left: 18px;
}

@media only screen and (max-width: 1399px) {
  .breadcrumb-3__client {
    margin-left: 0;
  }
}

.breadcrumb-3__client .media {
  display: flex;
  margin-bottom: 14px;
  flex-wrap: wrap;
}

.breadcrumb-3__client .media img {
  border: 2px solid var(--white);
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 500px;
}

.breadcrumb-3__client .media img:not(:first-child) {
  margin-left: -15px;
}

.breadcrumb-3__text h2 {
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  text-transform: capitalize;
  color: #04030A;
  opacity: 0.6;
  font-family: var(--font_kanit);
}

.breadcrumb-section {
  padding-top: 90px;
}

.breadcrumb-section__inner {
  border-left: 1px solid rgba(4, 3, 10, 0.14);
  border-right: 1px solid rgba(4, 3, 10, 0.14);
  padding-top: 130px;
  padding-bottom: 160px;
}

@media only screen and (max-width: 1199px) {
  .breadcrumb-section__inner {
    padding-top: 70px;
    padding-bottom: 110px;
  }
}

@media only screen and (max-width: 991px) {
  .breadcrumb-section__inner {
    border: none;
  }
}

@media (max-width: 575px) {
  .breadcrumb-section__inner {
    padding-top: 30px;
    padding-bottom: 80px;
  }
}

.breadcrumb-section__info {
  margin-left: 60px;
  margin-top: 10px;
}

@media only screen and (max-width: 1919px) {
  .breadcrumb-section__info {
    margin-left: 20px;
  }
}

@media only screen and (max-width: 1399px) {
  .breadcrumb-section__info {
    margin-left: 10px;
    margin-top: 0;
  }
}

@media only screen and (max-width: 991px) {
  .breadcrumb-section__info {
    margin-left: 0;
  }
}

.breadcrumb-section__info .sub-title {
  display: flex;
  align-items: center;
  gap: 32px;
}

@media only screen and (max-width: 1399px) {
  .breadcrumb-section__info .sub-title {
    flex-wrap: wrap;
    gap: 15px;
  }
}

.breadcrumb-section__info .sub-title span {
  display: inline-block;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: var(--secondary);
  font-family: var(--font_kanit);
  border: 1px solid rgba(4, 3, 10, 0.14);
  border-radius: 6px;
  padding: 5px 26px;
}

.breadcrumb-section__wrap {
  margin-left: 50px;
}

@media only screen and (max-width: 1399px) {
  .breadcrumb-section__wrap {
    margin-left: 0;
  }
}

.breadcrumb-section__wrap .title {
  font-weight: 700;
  font-size: 60px;
  line-height: 80px;
  letter-spacing: -0.05em;
  text-transform: uppercase;
  color: var(--secondary);
  font-family: var(--font_cooper);
  max-width: 950px;
}

@media only screen and (max-width: 1199px) {
  .breadcrumb-section__wrap .title {
    font-size: 42px;
    line-height: 55px;
  }
}

@media only screen and (max-width: 991px) {
  .breadcrumb-section__wrap .title {
    max-width: 100%;
  }
}

@media only screen and (max-width: 767px) {
  .breadcrumb-section__wrap .title {
    font-size: 35px;
    line-height: 46px;
  }
}

@media (max-width: 575px) {
  .breadcrumb-section__wrap .title {
    font-size: 26px;
    line-height: 36px;
    letter-spacing: 0;
  }
}

.breadcrumb-section__content {
  display: flex;
  align-items: center;
  gap: 34px;
  margin-top: 45px;
}

@media only screen and (max-width: 767px) {
  .breadcrumb-section__content {
    margin-top: 30px;
  }
}

@media (max-width: 575px) {
  .breadcrumb-section__content {
    flex-wrap: wrap;
    gap: 20px;
  }
}

.breadcrumb-section__content .icon {
  border: 1px solid rgba(4, 3, 10, 0.14);
  border-radius: 35px;
  height: 90px;
  width: 50px;
  min-width: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.breadcrumb-section__content .decs {
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  text-transform: capitalize;
  color: #04030A;
  opacity: 0.6;
  font-family: var(--font_kanit);
  max-width: 627px;
}

@media (max-width: 575px) {
  .breadcrumb-section__content .decs {
    max-width: 100%;
  }
}

.breadcrumb-11__wrapper {
  padding-top: 91px;
}

@media only screen and (max-width: 1399px) {
  .breadcrumb-11__wrapper {
    padding-top: 95px;
  }
}

@media only screen and (max-width: 991px) {
  .breadcrumb-11__wrapper {
    padding-top: 91px;
  }
}

.breadcrumb-11__inner {
  border-left: 1px solid rgba(4, 3, 10, 0.14);
  border-right: 1px solid rgba(4, 3, 10, 0.14);
  padding-bottom: 92px;
}

@media (max-width: 575px) {
  .breadcrumb-11__inner {
    border: 0;
    padding-bottom: 70px;
  }
}

.breadcrumb-11__box {
  display: grid;
  grid-template-columns: 412px 1fr;
  border-bottom: 1px solid rgba(4, 3, 10, 0.14);
}

@media only screen and (max-width: 767px) {
  .breadcrumb-11__box {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 575px) {
  .breadcrumb-11__box {
    grid-template-columns: 1fr;
    padding-top: 30px;
    gap: 30px;
    margin-bottom: 30px;
    border: none;
  }
}

.breadcrumb-11__item {
  border-left: 1px solid rgba(4, 3, 10, 0.14);
  padding: 54px 0 54px 60px;
}

@media (max-width: 575px) {
  .breadcrumb-11__item {
    border: 0;
    padding: 0;
  }
}

.breadcrumb-11__item:first-child {
  border: none;
}

.breadcrumb-11__item .name {
  font-weight: 400;
  font-size: 18px;
  line-height: 26px;
  color: #04030A;
  opacity: 0.7;
  font-family: var(--font_kanit);
  display: block;
  margin-bottom: 8px;
}

.breadcrumb-11__item .text {
  font-weight: 400;
  font-size: 22px;
  line-height: 26px;
  color: #04030A;
  font-family: var(--font_kanit);
}

.breadcrumb-11__wrap {
  margin-left: 60px;
  display: flex;
  gap: 315px;
  margin-top: 72px;
}

@media only screen and (max-width: 1399px) {
  .breadcrumb-11__wrap {
    gap: 50px;
  }
}

@media only screen and (max-width: 1199px) {
  .breadcrumb-11__wrap {
    gap: 30px;
    flex-wrap: wrap;
  }
}

@media only screen and (max-width: 991px) {
  .breadcrumb-11__wrap {
    margin-left: 10px;
    margin-right: 10px;
    margin-top: 50px;
  }
}

@media (max-width: 575px) {
  .breadcrumb-11__wrap {
    margin-left: 0px;
    margin-right: 0px;
    margin-top: 50px;
  }
}

.breadcrumb-11__wrap .sub-title {
  font-weight: 400;
  font-size: 18px;
  line-height: 26px;
  color: #04030A;
  opacity: 0.7;
  display: block;
  font-family: var(--font_kanit);
}

.breadcrumb-11__wrap .decs {
  font-weight: 400;
  font-size: 26px;
  line-height: 36px;
  text-transform: capitalize;
  color: rgba(4, 3, 10, 0.7);
  font-family: var(--font_kanit);
  max-width: 1006px;
}

.breadcrumb-11__wrap .decs span {
  position: relative;
  color: #04030A;
}

.breadcrumb-11__wrap .decs span::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 100%;
  height: 10px;
  background-image: radial-gradient(circle, #f25c2a 2px, transparent 3px);
  background-size: 9px 7px;
  background-repeat: repeat-x;
}

@media only screen and (max-width: 1399px) {
  .breadcrumb-11__wrap .decs {
    max-width: 900px;
  }
}

@media only screen and (max-width: 1199px) {
  .breadcrumb-11__wrap .decs {
    max-width: 100%;
  }
}

@media (max-width: 575px) {
  .breadcrumb-11__wrap .decs {
    font-size: 22px;
    line-height: 36px;
  }
}

.breadcrumb-14__wrapper {
  padding-top: 430px;
  padding-bottom: 100px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}

@media only screen and (max-width: 1199px) {
  .breadcrumb-14__wrapper {
    padding-top: 280px;
    padding-bottom: 100px;
  }
}

@media only screen and (max-width: 991px) {
  .breadcrumb-14__wrapper {
    padding-top: 180px;
    padding-bottom: 90px;
  }
}

@media (max-width: 575px) {
  .breadcrumb-14__wrapper {
    padding-top: 140px;
    padding-bottom: 80px;
  }
}

.breadcrumb-14__wrapper::before {
  position: absolute;
  content: "";
  left: 0;
  height: 100%;
  top: 0;
  width: 100%;
  background: rgba(4, 3, 10, 0.3);
}

.breadcrumb-14__inner {
  position: relative;
  z-index: 2;
}

.breadcrumb-14__content .sub-title {
  font-weight: 400;
  font-size: 18px;
  line-height: 27px;
  color: #FFFFFF;
  font-family: var(--font_kanit);
  padding-left: 20px;
  position: relative;
}

.breadcrumb-14__content .sub-title::before {
  position: absolute;
  content: "";
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background: #C4F012;
  height: 8px;
  width: 8px;
  border-radius: 50%;
}

.breadcrumb-14__content .title {
  font-weight: 500;
  font-size: 60px;
  line-height: 64px;
  text-transform: capitalize;
  color: #FFFFFF;
  font-family: var(--font_kanit);
  max-width: 1025px;
  margin-top: 10px;
}

@media only screen and (max-width: 991px) {
  .breadcrumb-14__content .title {
    font-size: 44px;
    line-height: 53px;
  }
}

@media only screen and (max-width: 767px) {
  .breadcrumb-14__content .title {
    font-size: 40px;
    line-height: 49px;
  }
}

@media (max-width: 575px) {
  .breadcrumb-14__content .title {
    font-size: 25px;
    line-height: 32px;
  }
}

.breadcrumb-14__list {
  display: flex;
  align-items: center;
  gap: 61px;
  margin-top: 30px;
}

@media (max-width: 575px) {
  .breadcrumb-14__list {
    flex-wrap: wrap;
    gap: 15px;
  }
}

.breadcrumb-14__list li {
  font-weight: 400;
  font-size: 18px;
  line-height: 27px;
  color: #FFFFFF;
  font-family: var(--font_kanit);
  list-style: none;
  position: relative;
}

.breadcrumb-14__list li::before {
  position: absolute;
  content: "";
  right: -30px;
  top: 50%;
  transform: translateY(-50%);
  height: 20px;
  width: 1px;
  background: rgba(255, 255, 255, 0.2);
}

@media (max-width: 575px) {
  .breadcrumb-14__list li::before {
    display: none;
  }
}

.breadcrumb-14__list li:last-child::before {
  display: none;
}

.banner-bg {
  margin-top: 100px;
}

.banner-bg__thumb {
  overflow: hidden;
  border-radius: 14px;
}

.banner-bg__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 14px;
  overflow: hidden;
}

.running-section__inner {
  padding-top: 40px;
  background: transparent;
}

.running-section__inner .text__slider .swiper-wrapper {
  display: flex;
  column-gap: 10px;
  align-items: center;
  justify-content: space-between;
  transition-timing-function: linear;
}

.running-section__inner .text__slider .swiper-wrapper .swiper-slide {
  width: auto;
}

.running-section__list h2 {
  font-family: "Cooper Hewitt";
  font-style: normal;
  font-weight: 709;
  font-size: 160px;
  line-height: 160px;
  letter-spacing: -0.05em;
  text-transform: uppercase;
  background: linear-gradient(90deg, #04030A 0%, #CDCDCE 70.24%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  list-style: none;
}

@media only screen and (max-width: 1199px) {
  .running-section__list h2 {
    font-size: 115px;
    line-height: 143px;
  }
}

@media only screen and (max-width: 767px) {
  .running-section__list h2 {
    font-size: 78px;
    line-height: 80px;
  }
}

@media (max-width: 575px) {
  .running-section__list h2 {
    font-size: 47px;
    line-height: 62px;
  }
}

.blog-list-page .bottom-button {
  margin-top: 60px;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

@media only screen and (max-width: 767px) {
  .blog-list-page .bottom-button {
    margin-top: 40px;
  }
}

.blog-list-page .bottom-button a {
  border: 1px solid rgba(4, 3, 10, 0.12);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  text-transform: uppercase;
  color: #04030A;
  transition: all 0.3s ease-in-out;
}

.blog-list-page .bottom-button a i {
  font-size: 14px;
}

.blog-list-page .bottom-button a:hover {
  background: var(--primary);
}

.blog-page .blog-2__thumb {
  background: #F5F5F5;
  border-radius: 14px;
}

.blog-page .blog-2__thumb img {
  width: 100%;
  border-radius: 14px;
  height: 100%;
  object-fit: cover;
}

.blog-page .blog-2__item {
  max-width: 100%;
}

.blog-page .blog-2__item:hover .blog-2__thumb img {
  transform: scale(1);
}

.blog-page .blog-2__item:hover .blog-2__meta ul li {
  color: var(--white);
}

.blog-page .blog-2__item:hover .blog-2__meta ul li a::before {
  background-color: var(--white);
}

.blog-page .blog-2__wrapper .bottom-button {
  margin-top: 90px;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}

@media only screen and (max-width: 767px) {
  .blog-page .blog-2__wrapper .bottom-button {
    margin-top: 40px;
  }
}

.blog-page .blog-2__wrapper .bottom-button a {
  border: 1px solid rgba(4, 3, 10, 0.12);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  text-transform: uppercase;
  color: #04030A;
  transition: all 0.3s ease-in-out;
}

.blog-page .blog-2__wrapper .bottom-button a i {
  font-size: 14px;
}

.blog-page .blog-2__wrapper .bottom-button a:hover {
  background: var(--primary);
}

.blog-details__author-box {
  max-width: 420px;
}

@media only screen and (max-width: 991px) {
  .blog-details__author-box {
    max-width: 100%;
  }
}

.blog-details__item {
  display: grid;
  grid-template-columns: 188px 1fr;
  align-items: center;
  padding: 22px 0;
  border-bottom: 1px solid rgba(4, 3, 10, 0.14);
}

@media only screen and (max-width: 1399px) {
  .blog-details__item {
    grid-template-columns: 125px 1fr;
  }
}

.blog-details__item:first-child {
  border-top: 1px solid rgba(4, 3, 10, 0.14);
}

.blog-details__item .title {
  font-weight: 400;
  font-size: 18px;
  line-height: 27px;
  color: #04030A;
  font-family: var(--font_kanit);
}

.blog-details__item .author {
  display: flex;
  align-items: center;
  gap: 22px;
  font-weight: 400;
  font-size: 18px;
  line-height: 27px;
  color: #04030A;
  font-family: var(--font_kanit);
}

.blog-details__content .decs {
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  text-transform: capitalize;
  color: #04030A;
  opacity: 0.6;
  font-family: var(--font_kanit);
  margin-bottom: 30px;
}

.blog-details__testiml-box {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 40px;
  margin: 70px 0;
  background: #04030A;
  border-radius: 14px;
  padding: 43px 60px 40px 40px;
  position: relative;
}

@media only screen and (max-width: 1199px) {
  .blog-details__testiml-box {
    padding: 32px 30px 35px 30px;
  }
}

@media only screen and (max-width: 991px) {
  .blog-details__testiml-box {
    padding: 30px 53px 30px 15px;
    gap: 20px;
    margin: 40px 0;
  }
}

@media (max-width: 575px) {
  .blog-details__testiml-box {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 575px) {
  .blog-details__testiml-box {
    gap: 20px;
    padding: 20px 7px;
    flex-wrap: wrap;
  }
}

.blog-details__testiml-box .content {
  z-index: 1;
  position: relative;
}

.blog-details__testiml-box .content .desc {
  font-weight: 700;
  font-size: 26px;
  line-height: 36px;
  color: #FFFFFF;
  margin-bottom: 25px;
  font-family: "CooperHewitt-Semibold";
}

@media only screen and (max-width: 1199px) {
  .blog-details__testiml-box .content .desc {
    font-size: 16px;
  }
}

@media (max-width: 575px) {
  .blog-details__testiml-box .content .desc {
    line-height: 27px;
  }
}

.blog-details__testiml-box .content .name {
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  text-transform: capitalize;
  color: #FFFFFF;
  margin-left: 143px;
  vertical-align: middle;
  font-family: var(--font_kanit);
}

.blog-details__testiml-box .content .name::before {
  content: "";
  left: 0;
  z-index: 2;
  width: 120px;
  height: 1px;
  bottom: 11px;
  display: block;
  position: absolute;
  background: rgba(255, 255, 255, 0.2);
}

.blog-details__strategy .title {
  font-weight: 400;
  font-size: 44px;
  line-height: 54px;
  text-transform: capitalize;
  color: #04030A;
  font-family: var(--font_kanit);
  margin-bottom: 15px;
}

@media (max-width: 575px) {
  .blog-details__strategy .title {
    font-size: 32px;
    line-height: 41px;
  }
}

.blog-details__strategy .decs {
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  text-transform: capitalize;
  opacity: 0.6;
  color: #04030A;
  font-family: var(--font_kanit);
}

.blog-details__thumb {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 54px;
}

@media (max-width: 575px) {
  .blog-details__thumb {
    grid-template-columns: 1fr;
  }
}

.blog-details__thumb .image {
  overflow: hidden;
  border-radius: 10px;
}

.blog-details__thumb .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
  overflow: hidden;
}

.blog-details__category {
  gap: 30px;
  display: flex;
  align-items: center;
  margin: 40px 0 75px 0;
  justify-content: space-between;
  flex-wrap: wrap;
}

@media only screen and (max-width: 1199px) {
  .blog-details__category {
    flex-wrap: wrap;
    margin: 40px 0 40px 0;
  }
}

.blog-details__tag {
  gap: 10px;
  display: flex;
  align-items: center;
}

.blog-details__tag .title {
  font-weight: 600;
  font-size: 26px;
  line-height: 36px;
  color: #04030A;
  font-family: "CooperHewitt-Semibold";
  margin-right: 12px;
}

@media (max-width: 575px) {
  .blog-details__tag {
    flex-wrap: wrap;
  }
}

.blog-details__tag li {
  text-align: start;
  list-style: none;
}

@media (max-width: 575px) {
  .blog-details__tag li {
    margin-bottom: 10px;
  }
}

.blog-details__tag li a {
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  text-transform: capitalize;
  color: #04030A;
  font-family: var(--font_kanit);
  padding: 3.5px 25.2px;
  border: 1px solid rgba(4, 3, 10, 0.14);
  border-radius: 6px;
  transition: all 0.3s ease-in-out;
}

.blog-details__tag li a:hover {
  color: var(--white);
  background: var(--primary);
}

.blog-details__share {
  gap: 15px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.blog-details__share-2 {
  display: block;
  margin-top: 30px;
}

.blog-details__share-2 .share {
  font-weight: 400;
  font-size: 18px;
  line-height: 27px;
  color: #04030A;
  display: block;
  font-family: var(--font_kanit);
  border-bottom: 1px dashed rgba(4, 3, 10, 0.14);
  margin-bottom: 30px;
  padding-bottom: 21px;
}

.blog-details__share .title {
  font-weight: 600;
  font-size: 26px;
  line-height: 36px;
  color: #04030A;
  font-family: "CooperHewitt-Semibold";
  margin-right: 12px;
}

.blog-details__share ul {
  gap: 10px;
  display: flex;
  align-items: center;
}

.blog-details__share ul li a {
  width: 46px;
  height: 46px;
  display: flex;
  border-radius: 100%;
  align-items: center;
  justify-content: center;
  background: #1877F2;
  border-radius: 6px;
  transition: all 0.3s ease-in-out;
}

.blog-details__share ul li a i {
  font-size: 16px;
  font-weight: 400;
  line-height: 100%;
  color: var(--white);
  transition: all 0.3s ease-in-out;
}

.blog-details__share ul li {
  list-style: none;
}

.blog-details__share ul li:nth-child(2) a {
  background: #101010;
}

.blog-details__share ul li:nth-child(3) a {
  background: #CB2027;
}

.blog-details__author {
  display: flex;
  gap: 32px;
  border: 1px solid rgba(4, 3, 10, 0.14);
  border-radius: 14px;
  padding: 44px 50px 40px 50px;
}

@media only screen and (max-width: 1199px) {
  .blog-details__author {
    padding: 25px 20px 25px 20px;
  }
}

@media only screen and (max-width: 767px) {
  .blog-details__author {
    flex-wrap: wrap;
    padding: 25px 20px 25px 20px;
  }
}

.blog-details__author .author-thumb {
  min-width: 140px;
  width: 140px;
  min-height: 140px;
  height: 140px;
  object-fit: cover;
}

.blog-details__author .author-content .decs {
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  text-transform: capitalize;
  color: #04030A;
  opacity: 0.6;
  font-family: var(--font_kanit);
}

.blog-details__author .author-content .name {
  font-weight: 600;
  font-size: 26px;
  line-height: 36px;
  color: #04030A;
  font-family: var(--font_cooper);
  margin-top: 20px;
}

.blog-details__author .author-content .text {
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  text-transform: capitalize;
  color: #04030A;
  opacity: 0.6;
  font-family: var(--font_kanit);
  margin-bottom: 34px;
}

.blog-details__framework {
  margin-top: 65px;
  margin-bottom: 60px;
}

@media only screen and (max-width: 767px) {
  .blog-details__framework {
    margin-top: 30px;
    margin-bottom: 30px;
  }
}

.blog-details__framework .title {
  font-weight: 400;
  font-size: 44px;
  line-height: 54px;
  text-transform: capitalize;
  color: #04030A;
  font-family: var(--font_kanit);
  margin-bottom: 15px;
}

.blog-details__framework .decs {
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  text-transform: capitalize;
  color: #04030A;
  opacity: 0.6;
  font-family: var(--font_kanit);
  max-width: 982px;
}

.blog-details__framework .text {
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  text-transform: capitalize;
  color: #04030A;
  opacity: 0.6;
}

.blog-details__framework ul {
  padding-left: 15px;
  margin-top: 25px;
  margin-bottom: 25px;
}

.blog-details__framework ul li {
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  text-transform: capitalize;
  color: #04030A;
  font-family: var(--font_kanit);
  margin-bottom: 5px;
}

.blog-details__framework ul li:last-child {
  margin-bottom: 0;
}

.blog-details .comment-wrap {
  margin-bottom: 55px;
}

.blog-details .comment-wrap .comment-title {
  font-weight: 400;
  font-size: 44px;
  line-height: 54px;
  text-transform: capitalize;
  color: #04030A;
  font-family: var(--font_kanit);
  margin-bottom: 50px;
}

.blog-details .comment-wrap .comment-item {
  padding-bottom: 22px;
  margin-top: 22px;
  display: flex;
  gap: 30px;
}

@media (max-width: 575px) {
  .blog-details .comment-wrap .comment-item {
    flex-wrap: wrap;
  }
}

.blog-details .comment-wrap .comment-item:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.blog-details .comment-wrap .comment-item .thumb {
  min-width: 80px;
  min-height: 80px;
}

.blog-details .comment-wrap .comment-item .thumb img {
  width: 100%;
  object-fit: cover;
  border-radius: 6px;
}

.blog-details .comment-wrap .comment-item .content .title-wrap {
  row-gap: 10px;
  margin-bottom: 12px;
}

.blog-details .comment-wrap .comment-item .content .title-wrap .details {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 15px;
}

.blog-details .comment-wrap .comment-item .content .title-wrap .details span {
  font-weight: 400;
  font-size: 16px;
  line-height: 28px;
  text-transform: capitalize;
  color: #04030A;
  opacity: 0.6;
  font-family: var(--font_kanit);
}

.blog-details .comment-wrap .comment-item .content .title-wrap .details .name {
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  text-transform: capitalize;
  color: #04030A;
  font-family: var(--font_kanit);
}

.blog-details .comment-wrap .comment-item .content .reply {
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  text-transform: capitalize;
  color: #343434;
  font-family: var(--font_kanit);
  margin-top: 30px;
}

.blog-details .comment-wrap .comment-item .content .reply i {
  color: #343434;
  padding-left: 5px;
}

.blog-details .comment-wrap .comment-item .content p {
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  text-transform: capitalize;
  color: #04030A;
  opacity: 0.6;
  font-family: var(--font_kanit);
  margin-bottom: 0;
  max-width: 912px;
}

.blog-details .comment-wrap .comment-item-2 {
  padding-left: 100px;
}

@media only screen and (max-width: 991px) {
  .blog-details .comment-wrap .comment-item-2 {
    padding-left: 0;
  }
}

.blog-details__form-title {
  display: block;
  margin-bottom: 37px;
  font-weight: 400;
  font-size: 44px;
  line-height: 54px;
  text-transform: capitalize;
  color: #04030A;
  font-family: var(--font_kanit);
}

@media (max-width: 575px) {
  .blog-details__form-title {
    font-size: 30px;
  }
}

.blog-details__form-group {
  margin-top: 26px;
  position: relative;
}

.blog-details__form-group .form-input {
  gap: 30px;
  display: flex;
  position: relative;
  align-items: center;
}

@media (max-width: 575px) {
  .blog-details__form-group .form-input {
    gap: 0;
    flex-wrap: wrap;
  }
}

.blog-details__form-group .form-input input {
  outline: 0;
  width: 100%;
  border: none;
  margin-bottom: 30px;
  background: var(--white);
  border: 1px solid rgba(15, 14, 14, 0.1);
  border-radius: 6px;
  padding: 19px 40px 19px 30px;
  transition: all 0.3s ease-in-out;
  color: rgba(4, 3, 10, 0.7);
}

.blog-details__form-group .form-input input:focus {
  border: 1px solid rgba(15, 14, 14, 0.1);
}

.blog-details__form-group .form-input input::placeholder {
  font-weight: 400;
  font-size: 16px;
  line-height: 28px;
  text-transform: capitalize;
  color: rgba(4, 3, 10, 0.7);
  font-family: var(--font_kanit);
}

.blog-details__form-group .form-selector .custom-select {
  width: 100%;
  border: none;
  height: 60px;
  display: flex;
  font-weight: 400;
  font-size: 16px;
  line-height: 28px;
  text-transform: capitalize;
  color: rgba(4, 3, 10, 0.7);
  font-family: var(--font_kanit);
  margin-bottom: 30px;
  letter-spacing: 0px;
  padding-left: 26px;
  align-items: center;
  vertical-align: middle;
  background: var(--white);
  border: 1px solid rgba(15, 14, 14, 0.1);
  border-radius: 6px;
}

.blog-details__form-group .form-selector .custom-select:focus {
  border: 1px solid rgba(15, 14, 14, 0.1);
}

.blog-details__form-group .form-selector .custom-select::after {
  display: none;
}

.blog-details__form-group .form-selector .custom-select .list {
  width: 100%;
}

.blog-details__form-group .form-comment {
  margin-bottom: 24px;
}

.blog-details__form-group .form-comment textarea {
  outline: 0;
  width: 100%;
  height: 220px;
  border: none;
  background: var(--white);
  padding: 23px 30px 23px 30px;
  transition: all 0.3s ease-in-out;
  border: 1px solid rgba(15, 14, 14, 0.1);
  border-radius: 6px;
}

.blog-details__form-group .form-comment textarea:focus {
  border: 1px solid rgba(15, 14, 14, 0.1);
}

.blog-details__form-group .form-comment textarea::placeholder {
  font-weight: 400;
  font-size: 16px;
  line-height: 28px;
  text-transform: capitalize;
  color: rgba(4, 3, 10, 0.7);
  font-family: var(--font_kanit);
}

.blog-details__form-group .btn-primary {
  margin-top: 60px;
}

.contact-us-page {
  padding-top: 116px;
}

@media only screen and (max-width: 991px) {
  .contact-us-page {
    padding-top: 35px;
  }
}

@media only screen and (max-width: 991px) {
  .contact-us-page__wrap {
    margin-bottom: 40px;
  }
}

.contact-us-page__content .text {
  font-weight: 400;
  font-size: 26px;
  line-height: 36px;
  text-transform: capitalize;
  color: #04030A;
  opacity: 0.7;
  font-family: var(--font_kanit);
  max-width: 525px;
  margin-bottom: 45px;
}

@media only screen and (max-width: 991px) {
  .contact-us-page__content .text {
    max-width: 100%;
  }
}

@media (max-width: 575px) {
  .contact-us-page__content .text {
    font-size: 22px;
    line-height: 33px;
    margin-bottom: 30px;
  }
}

.contact-us-page__meta {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.contact-us-page__meta li {
  display: flex;
  align-items: center;
  gap: 13px;
  border: 1px solid rgba(4, 3, 10, 0.14);
  border-radius: 6px;
  padding: 8px 26px;
}

.contact-us-page__meta li a {
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  color: #04030A;
  opacity: 0.7;
  font-family: var(--font_kanit);
}

.contact-us-page__meta li i {
  font-size: 18px;
  color: #04030A;
}

.contact-us-page__form-title {
  display: block;
  margin-bottom: 37px;
  font-weight: 400;
  font-size: 44px;
  line-height: 54px;
  text-transform: capitalize;
  color: #04030A;
  font-family: var(--font_kanit);
}

@media (max-width: 575px) {
  .contact-us-page__form-title {
    font-size: 30px;
  }
}

.contact-us-page__form-group {
  position: relative;
}

.contact-us-page__form-group .form-input {
  gap: 30px;
  display: flex;
  position: relative;
  align-items: center;
}

@media (max-width: 575px) {
  .contact-us-page__form-group .form-input {
    gap: 0;
    flex-wrap: wrap;
  }
}

.contact-us-page__form-group .form-input input {
  outline: 0;
  width: 100%;
  border: none;
  margin-bottom: 30px;
  border-radius: 100px;
  background: var(--white);
  border: 1px solid rgba(15, 14, 14, 0.1);
  border-radius: 10px;
  padding: 19px 40px 19px 30px;
  transition: all 0.3s ease-in-out;
  color: rgba(4, 3, 10, 0.7);
}

.contact-us-page__form-group .form-input input:focus {
  border: 1px solid rgba(15, 14, 14, 0.1);
}

.contact-us-page__form-group .form-input input::placeholder {
  font-weight: 400;
  font-size: 16px;
  line-height: 28px;
  text-transform: capitalize;
  color: rgba(4, 3, 10, 0.7);
  font-family: var(--font_kanit);
}

.contact-us-page__form-group .form-selector .custom-select {
  width: 100%;
  border: none;
  height: 60px;
  display: flex;
  font-weight: 400;
  font-size: 16px;
  line-height: 28px;
  text-transform: capitalize;
  color: rgba(4, 3, 10, 0.7);
  font-family: var(--font_kanit);
  margin-bottom: 30px;
  letter-spacing: 0px;
  padding-left: 26px;
  align-items: center;
  vertical-align: middle;
  background: var(--white);
  border: 1px solid rgba(15, 14, 14, 0.1);
  border-radius: 10px;
}

.contact-us-page__form-group .form-selector .custom-select:focus {
  border: 1px solid rgba(15, 14, 14, 0.1);
}

.contact-us-page__form-group .form-selector .custom-select::after {
  display: none;
}

.contact-us-page__form-group .form-selector .custom-select .list {
  width: 100%;
}

.contact-us-page__form-group .form-comment {
  margin-bottom: 18px;
}

.contact-us-page__form-group .form-comment textarea {
  outline: 0;
  width: 100%;
  height: 200px;
  border: none;
  border-radius: 10px;
  background: var(--white);
  padding: 23px 30px 23px 30px;
  transition: all 0.3s ease-in-out;
  border: 1px solid rgba(15, 14, 14, 0.1);
  border-radius: 10px;
}

.contact-us-page__form-group .form-comment textarea:focus {
  border: 1px solid rgba(15, 14, 14, 0.1);
}

.contact-us-page__form-group .form-comment textarea::placeholder {
  font-weight: 400;
  font-size: 16px;
  line-height: 28px;
  text-transform: capitalize;
  color: rgba(4, 3, 10, 0.7);
  font-family: var(--font_kanit);
}

.contact-us-page__form-group .btn-primary {
  margin-top: 52px;
}

.contact-us-page__select {
  position: relative;
  margin-bottom: 20px;
}

@media only screen and (max-width: 991px) {
  .contact-us-page__select {
    margin-bottom: 20px;
  }
}

.contact-us-page__select i {
  top: 20px;
  left: 20px;
  display: block;
  position: absolute;
  color: var(--primary);
}

.contact-us-page__select .nice-select {
  float: inherit;
  height: 60px;
  border: none;
  position: relative;
  background-color: transparent;
  transition: all 0.3s ease-in-out;
  border: 1px solid rgba(15, 14, 14, 0.1);
  border-radius: 10px;
  padding: 0;
}

@media only screen and (max-width: 767px) {
  .contact-us-page__select .nice-select {
    width: 100%;
  }
}

.contact-us-page__select .nice-select .icon {
  position: absolute;
  top: 3%;
  right: 60px;
  font-size: 20px;
  transform: translateY(-50%);
  transition: transform 0.3s ease;
}

.contact-us-page__select .nice-select .icon i {
  font-weight: 500;
  font-size: 18px;
  line-height: 16px;
  color: #04030A;
}

.contact-us-page__select .nice-select.open {
  background-color: transparent;
  border: 1px solid rgba(15, 14, 14, 0.1);
  border-radius: 10px;
}

.contact-us-page__select .nice-select.open .icon i {
  transform: rotate(180deg);
}

.contact-us-page__select .nice-select::after {
  display: none;
}

.contact-us-page__select .nice-select .current {
  display: flex;
  align-items: center;
  padding: 15px 30px 15px 30px;
  font-family: var(--font_inter);
  border: none;
  border-radius: 5px;
  font-weight: 400;
  font-size: 16px;
  line-height: 28px;
  text-transform: capitalize;
  color: rgba(4, 3, 10, 0.7);
  font-family: var(--font_kanit);
}

.contact-us-page__select .nice-select:focus {
  outline: none;
}

.contact-us-page__select .nice-select .list {
  width: 100%;
}

.contact-us-page__select {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-bottom: 30px;
}

@media only screen and (max-width: 767px) {
  .contact-us-page__select {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}

.contact-us-page__select .nice-select {
  flex: 1;
  height: 60px;
  display: flex;
  align-items: center;
  border-radius: 10px;
}

.contact-us-page__select .business-label {
  font-weight: 400;
  font-size: 16px;
  line-height: 28px;
  text-transform: capitalize;
  color: #04030A;
  font-family: var(--font_kanit);
}

.contact-page__map .maps {
  height: 750px;
  width: 100%;
}

@media only screen and (max-width: 991px) {
  .contact-page__map .maps {
    height: 650px;
  }
}

@media only screen and (max-width: 767px) {
  .contact-page__map .maps {
    height: 400px;
  }
}

.contact-page__item {
  border: 1px solid rgba(4, 3, 10, 0.14);
  border-radius: 14px;
  transition: all 0.3s ease-in-out;
}

.contact-page__item:hover {
  background: #F5F5F5;
  border: 1px solid transparent;
}

.contact-page__thumb {
  padding: 24px;
}

@media only screen and (max-width: 767px) {
  .contact-page__thumb {
    padding: 15px;
  }
}

.contact-page__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 14px;
}

.contact-page__info {
  text-align: center;
  padding: 0 40px 34px 40px;
}

@media only screen and (max-width: 767px) {
  .contact-page__info {
    padding: 0 15px 34px 15px;
  }
}

.contact-page__content {
  margin-bottom: 40px;
}

@media only screen and (max-width: 767px) {
  .contact-page__content {
    margin-bottom: 20px;
  }
}

.contact-page__content .title {
  font-weight: 400;
  font-size: 30px;
  line-height: 45px;
  text-transform: capitalize;
  color: #04030A;
  font-family: var(--font_kanit);
  margin-bottom: 23px;
  margin-top: 4px;
}

@media only screen and (max-width: 767px) {
  .contact-page__content .title {
    margin-bottom: 15px;
  }
}

.contact-page__content span {
  display: block;
  font-weight: 400;
  font-size: 18px;
  line-height: 32px;
  color: #04030A;
  opacity: 0.7;
  font-family: var(--font_kanit);
}

.contact-page__btn .btn_primary-2 span {
  border: 1px solid rgba(4, 3, 10, 0.14);
  border-radius: 10px;
  font-weight: 400;
  font-size: 18px;
  line-height: 24px;
  color: #04030A;
  font-family: var(--font_kanit);
  display: inline-block;
  width: 100%;
  padding: 12px 30px;
  transition: all 0.3s ease-in-out;
  background: transparent;
}

.contact-page__btn .btn_primary-2 span::before {
  background: #C4F012;
}

.contact-us-info .contact-us-wrapper {
  padding: 120px 0;
  text-align: center;
}

@media only screen and (max-width: 991px) {
  .contact-us-info .contact-us-wrapper {
    padding: 90px 0;
  }
}

@media only screen and (max-width: 767px) {
  .contact-us-info .contact-us-wrapper {
    padding: 60px 0;
  }
}

.contact-us-info .contact-us-wrapper .title {
  font-weight: 400;
  font-size: 44px;
  line-height: 54px;
  text-transform: capitalize;
  color: #04030A;
  font-family: var(--font_kanit);
  max-width: 662px;
  margin: 0 auto;
}

@media only screen and (max-width: 767px) {
  .contact-us-info .contact-us-wrapper .title {
    max-width: 100%;
    font-size: 37px;
    line-height: 51px;
  }
}

@media (max-width: 575px) {
  .contact-us-info .contact-us-wrapper .title {
    font-size: 30px;
    line-height: 39px;
  }
}

.contact-me__wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  padding: 102px 50px 0 50px;
}

@media only screen and (max-width: 1919px) {
  .contact-me__wrapper {
    padding: 102px 10px 0 10px;
  }
}

@media only screen and (max-width: 991px) {
  .contact-me__wrapper {
    grid-template-columns: repeat(1, 1fr);
    gap: 30px;
  }
}

.contact-me__inner {
  background: #04030A;
  border-radius: 20px 0px 0px 20px;
}

@media only screen and (max-width: 991px) {
  .contact-me__inner {
    border-radius: 20px;
  }
}

.contact-me__info {
  max-width: 430px;
  margin: 0 auto;
}

.contact-me__info .title {
  font-style: italic;
  font-weight: 500;
  font-size: 80px;
  line-height: 80px;
  text-transform: uppercase;
  color: #FFFFFF;
  font-family: var(--font_kanit);
  margin-bottom: 34px;
}

@media only screen and (max-width: 1199px) {
  .contact-me__info .title {
    font-size: 69px;
    line-height: 65px;
  }
}

@media (max-width: 575px) {
  .contact-me__info .title {
    font-size: 52px;
    line-height: 55px;
  }
}

.contact-me__info .title span {
  color: #FF5E14;
  font-family: var(--font_serif);
  margin-left: 170px;
}

@media (max-width: 575px) {
  .contact-me__info .title span {
    margin-left: 80px;
  }
}

.contact-me__comment-form {
  padding: 52px 60px 60px 60px;
}

@media only screen and (max-width: 1399px) {
  .contact-me__comment-form {
    padding: 52px 20px 60px 20px;
  }
}

.contact-me__form-title {
  display: block;
  margin-bottom: 37px;
  font-weight: 400;
  font-size: 44px;
  line-height: 54px;
  text-transform: capitalize;
  color: #04030A;
  font-family: var(--font_kanit);
}

@media (max-width: 575px) {
  .contact-me__form-title {
    font-size: 30px;
  }
}

.contact-me__form-group {
  position: relative;
}

.contact-me__form-group .conditions label {
  font-weight: 400;
  font-size: 16px;
  line-height: 28px;
  text-transform: capitalize;
  color: rgba(255, 255, 255, 0.7);
  margin-left: 10px;
}

.contact-me__form-group .form-input {
  gap: 30px;
  display: flex;
  position: relative;
  align-items: center;
}

@media (max-width: 575px) {
  .contact-me__form-group .form-input {
    gap: 0;
    flex-wrap: wrap;
  }
}

.contact-me__form-group .form-input input {
  outline: 0;
  width: 100%;
  border: none;
  margin-bottom: 30px;
  border-radius: 100px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 6px;
  padding: 17px 30px 17px 30px;
  transition: all 0.3s ease-in-out;
  color: rgba(4, 3, 10, 0.7);
}

.contact-me__form-group .form-input input:focus {
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.contact-me__form-group .form-input input::placeholder {
  font-weight: 400;
  font-size: 16px;
  line-height: 28px;
  text-transform: capitalize;
  color: rgba(255, 255, 255, 0.7);
  font-family: var(--font_kanit);
}

.contact-me__form-group .form-comment {
  margin-bottom: 12px;
}

.contact-me__form-group .form-comment textarea {
  outline: 0;
  width: 100%;
  height: 190px;
  border: none;
  border-radius: 10px;
  background: transparent;
  padding: 23px 30px 23px 30px;
  transition: all 0.3s ease-in-out;
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.contact-me__form-group .form-comment textarea:focus {
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.contact-me__form-group .form-comment textarea::placeholder {
  font-weight: 400;
  font-size: 16px;
  line-height: 28px;
  text-transform: capitalize;
  color: rgba(255, 255, 255, 0.7);
  font-family: var(--font_kanit);
}

.contact-me__form-group .btn-primary {
  margin-top: 40px;
}

.contact-me__wrap {
  background: #F5F5F5;
  border-radius: 0px 20px 20px 0px;
  position: relative;
}

@media only screen and (max-width: 991px) {
  .contact-me__wrap {
    border-radius: 20px;
  }
}

@media (max-width: 575px) {
  .contact-me__wrap {
    border-radius: 20px;
    padding: 60px 25px 30px 25px;
  }
}

.contact-me__wrap::before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  bottom: 0;
  height: 100%;
  width: 250px;
  background: #04030A;
  opacity: 0.06;
  border-radius: 0px 20px 20px 0px;
}

@media only screen and (max-width: 991px) {
  .contact-me__wrap::before {
    border-radius: 20px;
  }
}

.contact-me__wrap .close-icon {
  position: absolute;
  right: 36px;
  top: -13px;
}

.contact-me__wrap .close-icon a {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #04030A;
  border-radius: 50%;
  transition: all 0.3s ease-in-out;
}

.contact-me__wrap .close-icon a i {
  font-size: 28px;
  color: var(--white);
  font-weight: 300;
}

.contact-me__wrap .close-icon a:hover {
  background: var(--primary);
}

.contact-me__socail {
  position: absolute;
  right: 40px;
  bottom: 130px;
  text-align: right;
  z-index: 1;
}

@media only screen and (max-width: 1399px) {
  .contact-me__socail {
    bottom: 312px;
  }
}

@media only screen and (max-width: 1199px) {
  .contact-me__socail {
    top: 300px;
    right: 10px;
  }
}

@media only screen and (max-width: 991px) {
  .contact-me__socail {
    top: inherit;
    bottom: 50px;
  }
}

@media only screen and (max-width: 991px) {
  .contact-me__socail {
    top: inherit;
    bottom: 50px;
  }
}

@media (max-width: 575px) {
  .contact-me__socail {
    position: inherit;
    margin-top: 80px;
    text-align: start;
  }
}

.contact-me__socail .text {
  font-weight: 400;
  font-size: 18px;
  line-height: 26px;
  color: #04030A;
  opacity: 0.6;
  font-family: var(--font_kanit);
}

@media only screen and (max-width: 767px) {
  .contact-me__socail .text {
    max-width: 233px;
  }
}

.contact-me__socail .socail-icons {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: end;
  margin-bottom: 30px;
}

@media (max-width: 575px) {
  .contact-me__socail .socail-icons {
    justify-content: start;
  }
}

.contact-me__socail .socail-icons li {
  list-style: none;
}

.contact-me__socail .socail-icons li a {
  background: rgba(4, 3, 10, 0.06);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 46px;
  width: 46px;
  transition: all 0.3s ease-in-out;
}

.contact-me__socail .socail-icons li a:hover {
  background: #C4F012;
}

.contact-me__socail .socail-icons li a:hover i {
  color: var(--white);
}

.contact-me__socail .socail-icons li a i {
  color: #04030A;
  font-size: 16px;
  transition: all 0.3s ease-in-out;
}

.contact-me__thumb {
  margin-left: 79px;
  margin-top: 200px;
  position: relative;
  z-index: 1;
}

@media only screen and (max-width: 1919px) {
  .contact-me__thumb {
    margin-left: 20px;
  }
}

@media only screen and (max-width: 1399px) {
  .contact-me__thumb {
    margin-top: 130px;
  }
}

@media only screen and (max-width: 991px) {
  .contact-me__thumb {
    margin-top: 50px;
  }
}

@media only screen and (max-width: 767px) {
  .contact-me__thumb {
    margin-top: 50px;
    width: 50%;
  }
}

@media (max-width: 575px) {
  .contact-me__thumb {
    display: none;
  }
}

.contact-me__btn {
  margin-top: 50px;
}

.contact-me__btn .rr-btn {
  align-items: center;
  font-weight: 400;
  font-size: 18px;
  line-height: 24px;
  color: #04030A;
  border-radius: 24px;
  background: var(--white);
  font-family: var(--font_kanit);
  padding: 4px 36.2px 4px 5px;
  transition: all 0.3s ease-in-out;
  border: 1px solid rgba(16, 16, 16, 0.14);
}

.contact-me__btn .rr-btn:hover {
  color: #04030A;
  background: var(--primary);
}

.contact-me__btn .rr-btn:hover i {
  color: #04030A;
  background: var(--white);
}

.contact-me__btn .rr-btn i {
  margin-right: 30px;
  padding: 9px 10.5px;
  border-radius: 100px;
  color: var(--white);
  background: #101010;
  transition: all 0.3s ease-in-out;
}

.service-3 .section-title-3__wrapper .text {
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  text-transform: capitalize;
  color: #04030A;
  opacity: 0.6;
  font-family: var(--font_kanit);
  max-width: 394px;
}

@media only screen and (max-width: 991px) {
  .service-3 .section-title-3__wrapper .text {
    max-width: 100%;
  }
}

.service-page-contact__info .sub-title {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #04030A;
  font-family: var(--font_kanit);
  border: 1px solid rgba(4, 3, 10, 0.14);
  border-radius: 6px;
  padding: 5px 26px;
  display: inline-block;
}

.service-page-contact__info .title {
  font-weight: 700;
  font-size: 60px;
  line-height: 78px;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  color: #04030A;
  font-family: var(--font_cooper);
  margin-top: 25px;
  margin-bottom: 21px;
}

@media only screen and (max-width: 991px) {
  .service-page-contact__info .title {
    font-size: 41px;
    line-height: 60px;
  }
}

.service-page-contact__info .text {
  font-weight: 400;
  font-size: 18px;
  line-height: 26px;
  color: #04030A;
  opacity: 0.7;
  font-family: var(--font_kanit);
  max-width: 397px;
}

@media only screen and (max-width: 767px) {
  .service-page-contact__info .text {
    max-width: 100%;
  }
}

.service-page-contact__inner {
  margin-left: 50px;
}

@media only screen and (max-width: 1199px) {
  .service-page-contact__inner {
    margin-left: 0;
  }
}

.service-page-contact__form-group {
  position: relative;
}

.service-page-contact__form-group .form-input {
  gap: 30px;
  display: flex;
  position: relative;
  align-items: center;
}

@media (max-width: 575px) {
  .service-page-contact__form-group .form-input {
    gap: 0;
    flex-wrap: wrap;
  }
}

.service-page-contact__form-group .form-input input {
  outline: 0;
  width: 100%;
  border: none;
  margin-bottom: 70px;
  border-radius: 0px;
  background: var(--white);
  border-bottom: 1px solid rgba(4, 3, 10, 0.14);
  padding: 0px 40px 19px 0px;
  transition: all 0.3s ease-in-out;
  color: rgba(4, 3, 10, 0.7);
}

@media (max-width: 575px) {
  .service-page-contact__form-group .form-input input {
    margin-bottom: 40px;
  }
}

.service-page-contact__form-group .form-input input:focus {
  border-bottom: 1px solid rgba(4, 3, 10, 0.14);
}

.service-page-contact__form-group .form-input input::placeholder {
  font-weight: 400;
  font-size: 16px;
  line-height: 28px;
  text-transform: capitalize;
  color: rgba(4, 3, 10, 0.7);
  font-family: var(--font_kanit);
}

.our-process__info {
  text-align: center;
  margin-bottom: 95px;
}

@media only screen and (max-width: 991px) {
  .our-process__info {
    margin-bottom: 40px;
  }
}

.our-process__info .title {
  font-weight: 500;
  font-size: 70px;
  line-height: 64px;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: #04030A;
  font-family: var(--font_kanit);
}

@media only screen and (max-width: 991px) {
  .our-process__info .title {
    font-size: 50px;
    line-height: 57px;
  }
}

@media (max-width: 575px) {
  .our-process__info .title {
    font-size: 32px;
    line-height: 38px;
  }
}

.our-process__item {
  background: #FFFFFF;
  border-width: 0px 1px;
  border-style: solid;
  border-color: rgba(4, 3, 10, 0.08);
  border-radius: 10px;
  padding: 40px 40px 44px 40px;
  transition: all 0.6s ease-in-out;
  display: flex;
  flex-direction: column;
  gap: 140px;
}

@media only screen and (max-width: 991px) {
  .our-process__item {
    padding: 40px 15px 44px 15px;
    gap: 70px;
  }
}

.our-process__item:hover {
  flex-direction: column-reverse;
  background: #F5F5F5;
  border-radius: 10px;
  border-color: transparent;
}

.our-process__item:hover .our-process__content {
  transform: scale(1);
  visibility: visible;
}

.our-process__item:hover .our-process__thumb {
  visibility: visible;
  transform: scale(1);
}

.our-process__thumb {
  transform: scale(0);
  visibility: hidden;
  transition: all 0.3s ease-in-out;
}

.our-process__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

.our-process__content {
  transition: all 0.6s ease-in-out;
}

.our-process__content .step {
  font-weight: 400;
  font-size: 18px;
  line-height: 26px;
  color: #04030A;
  opacity: 0.6;
  font-family: var(--font_kanit);
  display: block;
  margin-bottom: 12px;
}

.our-process__content .title {
  font-weight: 400;
  font-size: 24px;
  line-height: 30px;
  color: #04030A;
  font-family: var(--font_kanit);
}

@media only screen and (max-width: 991px) {
  .our-process__content .title {
    font-size: 22px;
    line-height: 30px;
  }
}

.team-slider {
  padding-top: 240px;
  padding-bottom: 33px;
}

@media only screen and (max-width: 1199px) {
  .team-slider {
    padding-top: 170px;
    padding-bottom: 33px;
  }
}

@media only screen and (max-width: 767px) {
  .team-slider {
    padding-top: 130px;
    padding-bottom: 33px;
  }
}

@media (max-width: 575px) {
  .team-slider {
    padding-top: 100px;
    padding-bottom: 33px;
  }
}

.team-slider__inner {
  background: transparent;
}

.team-slider__inner .team-active__slider .swiper-wrapper {
  display: flex;
  column-gap: 10px;
  align-items: center;
  justify-content: space-between;
  transition-timing-function: linear;
}

.team-slider__inner .team-active__slider .swiper-wrapper .swiper-slide {
  width: auto;
}

.team-slider__list h2 {
  font-family: var(--font_cooper);
  font-weight: 700;
  font-size: 80px;
  line-height: 80px;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  color: #04030A;
  list-style: none;
}

@media only screen and (max-width: 991px) {
  .team-slider__list h2 {
    font-size: 50px;
    line-height: 70px;
  }
}

@media only screen and (max-width: 767px) {
  .team-slider__list h2 {
    font-size: 37px;
    line-height: 65px;
  }
}

.team-slider__list h2 img {
  margin-right: 57px;
}

@media only screen and (max-width: 991px) {
  .team-slider__list h2 img {
    margin-right: 30px;
  }
}

.team-page .team-2__item {
  background: #F5F5F5;
  border-radius: 14px;
}

.team-page .team-2__share .icon {
  background: var(--white);
}

.team-page-banner {
  overflow: hidden;
}

.team-page-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-page__item {
  display: grid;
  grid-template-columns: 612px 1fr 40px;
  align-items: center;
  border-width: 1px 0px;
  border-bottom: 1px solid rgba(4, 3, 10, 0.14);
  border-radius: 10px;
  padding: 19px 0;
  transition: all 0.3s ease-in-out;
}

.team-page__item:first-child {
  border-top: 1px solid rgba(4, 3, 10, 0.14);
}

@media only screen and (max-width: 1199px) {
  .team-page__item {
    grid-template-columns: 510px 1fr 40px;
  }
}

@media only screen and (max-width: 991px) {
  .team-page__item {
    grid-template-columns: 390px 1fr 40px;
  }
}

@media only screen and (max-width: 767px) {
  .team-page__item {
    grid-template-columns: 1fr 150px;
    gap: 30px;
  }
}

@media (max-width: 575px) {
  .team-page__item {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.team-page__item:hover {
  background: #F5F5F5;
  border-radius: 10px;
  padding: 19px 23px 19px 22px;
}

.team-page__item:hover .team-page__icon i {
  transform: rotate(0deg);
}

.team-page__inner {
  display: flex;
  align-items: center;
  gap: 40px;
}

@media only screen and (max-width: 991px) {
  .team-page__inner {
    gap: 20px;
  }
}

@media (max-width: 575px) {
  .team-page__inner {
    flex-wrap: wrap;
  }
}

.team-page__inner .author {
  min-width: 100px;
  min-height: 100px;
  width: 100px;
  height: 100px;
  border-radius: 50%;
}

.team-page__inner .author img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.team-page__inner .title {
  font-family: var(--font_cooper);
  font-weight: 700;
  font-size: 26px;
  line-height: 48px;
  color: #343434;
}

.team-page__content .decs {
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  text-transform: capitalize;
  color: #343434;
  opacity: 0.7;
  font-family: var(--font_kanit);
}

.team-page__icon i {
  color: #343434;
  transform: rotate(-45deg);
  font-size: 36px;
  transition: all 0.3s ease-in-out;
}

.team-details__wrapper {
  padding-top: 230px;
}

@media only screen and (max-width: 1199px) {
  .team-details__wrapper {
    padding-top: 160px;
  }
}

@media (max-width: 575px) {
  .team-details__wrapper {
    padding-top: 110px;
  }
}

.team-details__inner {
  display: grid;
  grid-template-columns: 1fr 550px;
  gap: 100px;
  margin-bottom: 70px;
}

@media only screen and (max-width: 1399px) {
  .team-details__inner {
    gap: 75px;
  }
}

@media only screen and (max-width: 1199px) {
  .team-details__inner {
    gap: 35px;
    grid-template-columns: 1fr 460px;
    margin-bottom: 65px;
  }
}

@media only screen and (max-width: 991px) {
  .team-details__inner {
    gap: 15px;
    grid-template-columns: 1fr 350px;
  }
}

@media only screen and (max-width: 767px) {
  .team-details__inner {
    gap: 40px;
    grid-template-columns: 1fr;
    margin-bottom: 60px;
  }
}

.team-details__content .details {
  margin-bottom: 37px;
}

@media only screen and (max-width: 1199px) {
  .team-details__content .details {
    margin-bottom: 15px;
  }
}

.team-details__content .details .name {
  font-weight: 400;
  font-size: 60px;
  line-height: 64px;
  text-transform: capitalize;
  color: #04030A;
  font-family: var(--font_kanit);
  margin-bottom: 8px;
}

@media only screen and (max-width: 1199px) {
  .team-details__content .details .name {
    font-size: 46px;
    line-height: 57px;
  }
}

@media only screen and (max-width: 991px) {
  .team-details__content .details .name {
    font-size: 40px;
    line-height: 50px;
  }
}

@media only screen and (max-width: 767px) {
  .team-details__content .details .name {
    font-size: 55px;
    line-height: 55px;
  }
}

@media (max-width: 575px) {
  .team-details__content .details .name {
    font-size: 32px;
    line-height: 36px;
  }
}

.team-details__content .details .meta {
  font-weight: 700;
  font-size: 26px;
  line-height: 48px;
  color: #343434;
  opacity: 0.7;
  font-family: var(--font_cooper);
}

.team-details__content .text {
  margin-bottom: 25px;
}

.team-details__content p {
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  text-transform: capitalize;
  color: #04030A;
  opacity: 0.6;
  font-family: var(--font_kanit);
}

.team-details__social {
  margin-top: 53px;
}

@media only screen and (max-width: 1199px) {
  .team-details__social {
    margin-top: 35px;
  }
}

.team-details__social ul:first-child {
  border-top: 1px dashed rgba(4, 3, 10, 0.14);
}

.team-details__social ul li {
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  text-transform: capitalize;
  color: #04030A;
  font-family: var(--font_kanit);
  list-style: none;
  border-bottom: 1px dashed rgba(4, 3, 10, 0.14);
  padding: 11.5px 0;
  transition: all 0.3s ease-in-out;
}

.team-details__social ul li i {
  font-weight: 400;
  font-size: 16px;
  transition: all 0.3s ease-in-out;
  color: #04030A;
  margin-right: 15px;
}

.team-details__social ul li:hover {
  background: #F5F5F5;
}

.team-details__social ul li:hover i {
  margin-left: 20px;
}

@media only screen and (max-width: 991px) {
  .team-details__thumb {
    max-height: 600px;
  }
}

@media (max-width: 575px) {
  .team-details__thumb {
    max-height: 100%;
  }
}

.team-details__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-details__wrap {
  max-width: 640px;
}

.team-details__experience .title {
  font-weight: 400;
  font-size: 44px;
  line-height: 54px;
  text-transform: capitalize;
  color: #04030A;
  font-family: var(--font_kanit);
  margin-bottom: 27px;
}

.team-details__experience ul li {
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  text-transform: capitalize;
  color: #04030A;
  opacity: 0.6;
  font-family: var(--font_kanit);
  list-style: none;
  margin-bottom: 10px;
}

.team-details__experience ul li:last-child {
  margin-bottom: 0;
}

.team-details__progress {
  margin-top: 55px;
  margin-bottom: 60px;
}

@media only screen and (max-width: 991px) {
  .team-details__progress {
    margin: 40px 0;
  }
}

.team-details__progress .title {
  font-weight: 400;
  font-size: 44px;
  line-height: 54px;
  text-transform: capitalize;
  color: #04030A;
  font-family: var(--font_kanit);
  margin-bottom: 25px;
}

.team-details__progress__wrap {
  width: 100%;
}

.team-details__progress__wrap label {
  margin-bottom: 13px;
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  text-transform: capitalize;
  color: #04030A;
  opacity: 0.6;
  font-family: var(--font_kanit);
}

@media (max-width: 575px) {
  .team-details__progress__wrap label {
    font-size: 14px;
    line-height: 26px;
  }
}

.team-details__progress__wrap .progress-outer {
  position: relative;
}

.team-details__progress__wrap .progress-outer .progress-num {
  top: -42px;
  display: flex;
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  text-transform: capitalize;
  color: #04030A;
  opacity: 0.6;
  position: absolute;
  align-items: center;
  justify-content: end;
  font-family: var(--font_kanit);
  position: absolute;
  transform: translateX(-50%);
}

.team-details__progress__wrap .progress-outer .progress {
  background: rgba(15, 14, 14, 0.12);
  border-radius: 6px;
  height: 4px;
}

.team-details__progress__wrap .progress-outer .progress .progress-bar {
  color: var(--white);
  background: #FF5E14;
  border-radius: 6px;
}

.team-details__progress .progress {
  width: 100%;
  height: 10px;
  background: red;
  border-radius: 50px;
  overflow: hidden;
}

.team-details__progress .progress .progress-bar {
  height: 100%;
  width: 0%;
  background: var(red);
  border-radius: 50px;
  transition: width 1.3s ease;
}

.team-details__progress__item {
  padding: 5px 0;
  border-radius: 5px;
  margin-bottom: 15px;
}

@media (max-width: 575px) {
  .team-details__progress__item {
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 25px;
  }
}

.team-details__progress__item:last-child {
  margin-bottom: 0;
}

.team-details__progress__item .icon {
  display: flex;
  padding: 18px 18px;
  border-radius: 5px;
  align-items: center;
  background: var(--white);
  justify-content: center;
}

@media (max-width: 575px) {
  .team-details__progress__item .icon {
    padding: 12px 12px;
  }
}

.team-details__form-title {
  display: block;
  margin-bottom: 37px;
  font-weight: 400;
  font-size: 44px;
  line-height: 54px;
  text-transform: capitalize;
  color: #04030A;
  font-family: var(--font_kanit);
}

@media (max-width: 575px) {
  .team-details__form-title {
    font-size: 30px;
  }
}

.team-details__form-group {
  margin-top: 26px;
  position: relative;
}

.team-details__form-group .form-input {
  gap: 30px;
  display: flex;
  position: relative;
  align-items: center;
}

@media (max-width: 575px) {
  .team-details__form-group .form-input {
    gap: 0;
    flex-wrap: wrap;
  }
}

.team-details__form-group .form-input input {
  outline: 0;
  width: 100%;
  border: none;
  margin-bottom: 30px;
  border-radius: 100px;
  background: var(--white);
  border: 1px solid rgba(15, 14, 14, 0.1);
  border-radius: 10px;
  padding: 19px 40px 19px 30px;
  transition: all 0.3s ease-in-out;
  color: rgba(4, 3, 10, 0.7);
}

.team-details__form-group .form-input input:focus {
  border: 1px solid rgba(15, 14, 14, 0.1);
}

.team-details__form-group .form-input input::placeholder {
  font-weight: 400;
  font-size: 16px;
  line-height: 28px;
  text-transform: capitalize;
  color: rgba(4, 3, 10, 0.7);
  font-family: var(--font_kanit);
}

.team-details__form-group .form-selector .custom-select {
  width: 100%;
  border: none;
  height: 60px;
  display: flex;
  font-weight: 400;
  font-size: 16px;
  line-height: 28px;
  text-transform: capitalize;
  color: rgba(4, 3, 10, 0.7);
  font-family: var(--font_kanit);
  margin-bottom: 30px;
  letter-spacing: 0px;
  padding-left: 26px;
  align-items: center;
  vertical-align: middle;
  background: var(--white);
  border: 1px solid rgba(15, 14, 14, 0.1);
  border-radius: 10px;
}

.team-details__form-group .form-selector .custom-select:focus {
  border: 1px solid rgba(15, 14, 14, 0.1);
}

.team-details__form-group .form-selector .custom-select::after {
  display: none;
}

.team-details__form-group .form-selector .custom-select .list {
  width: 100%;
}

.team-details__form-group .form-comment {
  margin-bottom: 44px;
}

.team-details__form-group .form-comment textarea {
  outline: 0;
  width: 100%;
  height: 200px;
  border: none;
  border-radius: 10px;
  background: var(--white);
  padding: 23px 30px 23px 30px;
  transition: all 0.3s ease-in-out;
  border: 1px solid rgba(15, 14, 14, 0.1);
  border-radius: 10px;
}

.team-details__form-group .form-comment textarea:focus {
  border: 1px solid rgba(15, 14, 14, 0.1);
}

.team-details__form-group .form-comment textarea::placeholder {
  font-weight: 400;
  font-size: 16px;
  line-height: 28px;
  text-transform: capitalize;
  color: rgba(4, 3, 10, 0.7);
  font-family: var(--font_kanit);
}

.fun-fact__wrapper {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  justify-content: center;
}

@media only screen and (max-width: 991px) {
  .fun-fact__wrapper {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media only screen and (max-width: 767px) {
  .fun-fact__wrapper {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 575px) {
  .fun-fact__wrapper {
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
  }
}

.fun-fact__item {
  width: 370px;
  height: 370px;
  border: 1px solid rgba(4, 3, 10, 0.14);
  border-radius: 50%;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: -62px;
  transition: all 0.3s ease-in-out;
}

.fun-fact__item:first-child {
  margin-left: 0;
}

@media only screen and (max-width: 1399px) {
  .fun-fact__item {
    width: 335px;
    height: 335px;
  }
}

@media only screen and (max-width: 1199px) {
  .fun-fact__item {
    width: 285px;
    height: 285px;
  }
}

@media only screen and (max-width: 991px) {
  .fun-fact__item {
    width: 285px;
    height: 285px;
  }

  .fun-fact__item:last-child {
    margin-left: 0;
  }
}

@media only screen and (max-width: 767px) {
  .fun-fact__item {
    margin-left: 0;
    width: 260px;
    height: 260px;
  }
}

@media only screen and (max-width: 767px) {
  .fun-fact__item {
    margin: 0 auto;
  }

  .fun-fact__item:first-child {
    margin: 0 auto;
  }

  .fun-fact__item:last-child {
    margin: 0 auto;
  }
}

.fun-fact__item:hover {
  background: #F5F5F5;
  border: none;
}

.fun-fact__content h2 {
  font-weight: 700;
  font-size: 70px;
  line-height: 1;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  color: #04030A;
  font-family: var(--font_cooper);
  display: flex;
  align-items: center;
  justify-content: center;
}

@media only screen and (max-width: 767px) {
  .fun-fact__content h2 {
    font-size: 50px;
    line-height: 1;
  }
}

.fun-fact__content h2 span {
  font-weight: 700;
  font-size: 70px;
  line-height: 1;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  color: #04030A;
  font-family: var(--font_cooper);
}

@media only screen and (max-width: 767px) {
  .fun-fact__content h2 span {
    font-size: 50px;
    line-height: 1;
  }
}

.fun-fact__content .decs {
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  color: #04030A;
  opacity: 0.6;
  font-family: var(--font_kanit);
}

.fun-fact__icon {
  margin-top: 30px;
}

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