@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

:root {
  /* -- Colors -- */
  --primary: #0e0e0e;
  --secondary: #555555;
  --black: #000000;
  --red: #f14f44;
  --green: #fcf300;
  --lime-green: #90ee02;
  --orange: #FF5914;
  --yellow: #fcf300;
  --white: #ffffff;
  --gray: #999;
  --gray-two: #555555;
  --border-color: #262626;
  
  --font-heading: "Helvetica Neue", Helvetica, Arial, sans-serif;
  --font-body: "Inter", sans-serif;

  --font_instr: var(--font-body);
  --font_kanit: var(--font-heading);
  --font_monoton: var(--font-heading);
}

@font-face {
  font-family: "Thunder";
  src: url("../fonts/Thunder-BoldLC.ttf");
  font-weight: 700;
  font-display: swap;
}

* {
  margin: 0;
  padding: 0;
}

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

html {
  scroll-behavior: smooth;
}

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

ul {
  padding: 0;
  margin: 0;
}

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

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

p {
  padding: 0;
  margin: 0;
}

strong {
  font-weight: 500;
}


img {
  margin: 0;
  padding: 0;
  width: 100% !important; 
  height: auto !important; 
}


.bold {
  font-weight: 700;
}

main {
  display: block;
  width: 100%;
  overflow: hidden;
}

h1 {
  font-size: 48px;
}

h2 {
  font-size: 36px;
}

h3 {
  font-size: 32px;
}

h4 {
  font-size: 24px;
}

h5 {
  font-size: 20px;
}

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

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}


::-webkit-scrollbar {
  width: 5px;
}

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

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

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

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

.th-container-1800 {
  max-width: 1800px;
}

.th-container-1600 {
  max-width: 1650px;
}

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

.section-top6 {
  margin-bottom: 50px;
}
@media only screen and (max-width: 1199px) {
  .section-top6 {
    margin-bottom: 20px;
  }
}
.section-top6__title {
  color: #000;
  text-align: center;
  justify-content: center;
  font-family: var(--font_instr);
  font-size: 50px;
  font-style: normal;
  font-weight: 600;
  line-height: 120%;
  margin-bottom: 120px;
}
@media only screen and (max-width: 1919px) {
  .section-top6__title {
    font-size: 44px;
  }
}
@media only screen and (max-width: 1399px) {
  .section-top6__title {
    font-size: 44px;
  }
}
@media only screen and (max-width: 1199px) {
  .section-top6__title {
    font-size: 35px;
  }
}
@media only screen and (max-width: 767px) {
  .section-top6__title {
    font-size: 18px;
  }
}

.section-spacing {
  padding-bottom: 120px;
  padding-top: 120px;
}
@media only screen and (max-width: 1919px) {
  .section-spacing {
    padding-bottom: 90px;
    padding-top: 90px;
  }
  #projects {
    padding-top: 150px;
  }
}
@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;
  }
}

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


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

.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;
}
.side-info-close:hover {
  transform: rotate(90deg);
}

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

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

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

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

.mobile-menu {
  margin-top: 40px;

}

.mean-container .mean-bar {
  background: transparent !important;
  padding: 0 !important;
  min-height: 0 !important;
  margin-bottom: 20px;
}

.mean-container .mean-nav {
  background: transparent !important;
  margin-top: 0 !important;
}

.mean-container .mean-nav ul {
  display: block !important;
}

.mean-container .mean-bar:nth-child(2) {
  display: none !important;
}

.mean-container .mean-nav ul li a {
  color: #0e0e0e !important;
  background: transparent !important;
  border-top: 1px solid #e0e0e0 !important;
  font-size: 16px !important;
  font-weight: 500 !important;
  padding: 15px 5% !important;
  text-transform: uppercase;
}

.mean-container .mean-nav ul li a:hover {
  background: #f5f5f5 !important;
  color: var(--green) !important;
}

.mean-container .mean-nav ul li a.mean-expand {
  background: transparent !important;
  border: none !important;
  color: #0e0e0e !important;
}

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

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

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

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

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


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

section {
  margin-bottom: -1px;
}

.loader-wrap {
  position: fixed;
  height: 100vh;
  width: 100vw;
  z-index: 99999999999999 !important;
  left: 0;
  top: 0;
  right: 0;
  display: flex;
  overflow: hidden;
  align-items: center;
  justify-content: center;
}

.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: 200;
}
@media only screen and (max-width: 767px) {
  .loader-wrap .loader-wrap-heading .load-text {
    font-size: 50px;
  }
}

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

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

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

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

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

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

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

.load-text span:nth-child(7) {
  animation-delay: 0.6s;
}
@keyframes loading {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

.th-btn-green {
  z-index: 5;
  font-size: 18px;
  overflow: hidden;
  font-weight: 500;
  line-height: 28px;
  position: relative;
  padding: 18px 31px;
  align-items: center;
  display: inline-flex;
  border-radius: 500px;
  letter-spacing: -0.48px;
  justify-content: center;
  text-transform: uppercase;
  font-family: var(--font_bai);
  background-color: var(--lime-green);
}

.th-btn-green .btn-wrap {
  z-index: 1;
  float: left;
  overflow: hidden;
  position: relative;
  display: inline-block;
  border: none;
}
.th-btn-green .btn-wrap .text-one,
.th-btn-green .btn-wrap .text-two {
  gap: 6px;
  display: flex;
  align-items: center;
}
.th-btn-green .btn-wrap .text-one {
  position: relative;
  color: var(--primary);
  transition: all 0.5s;
}
.th-btn-green .btn-wrap .text-two {
  top: 100%;
  position: absolute;
  color: var(--white);
  transition: all 0.5s;
}
.th-btn-green.green-2 {
  font-size: 16px;
  line-height: 20px;
  padding: 12px 28px;
  border-radius: 2px;
  background: var(--green);
}

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

.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 li {
  position: relative;
  list-style: none;
}
.main-menu li a {
  display: flex;
  align-items: center;
  font-weight: 400;
  font-size: 18px;
  line-height: 1;
  color: var(--primary);
  padding: 37px 15px;
  text-transform: capitalize;
}

.header-area {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
.header-area__inner {
  gap: 30px;
  display: flex;
  padding: 0px 35px;
  align-items: center;
  border-radius: 20px;
  background: var(--white);
  justify-content: space-between;
  margin-top: 30px;
}
@media only screen and (max-width: 1199px) {
  .header-area__inner {
    padding: 10px 20px;
  }
}
@media (max-width: 575px) {
  .header-area .header__logo {
    max-width: 100px;
  }
}
.header-area .header-right {
  gap: 10px;
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 1199px) {
  .header-area .header-right .th-btn-green {
    display: none;
  }
}
.header-area .header-right .side-toggle .bar-icon {
  width: 30px;
  height: 7px;
}
.header-area .header-right .side-toggle .bar-icon span {
  height: 1px;
  background: var(--primary);
}
.header-area .sticky {
  background-color: #ffffff;
}
.header-area .main-menu > ul {
  display: flex;
}
.header-area .main-menu > ul > li:hover > a {
  color: var(--red);
}
.header-area .main-menu li a {
  font-size: 16px;
  font-weight: 400;
  padding: 42px 14px;
  color: var(--primary);
  text-transform: uppercase;
}
@media only screen and (max-width: 1399px) {
  .header-area .main-menu li a {
    padding: 29px 10px;
  }
}
.header-area .main-menu li a:hover {
  color: var(--primary);
}
.header-area .header__navicon {
  margin-left: auto;
}
.header-area .header__navicon i {
  font-size: 22px;
  color: var(--white);
}

.header-area-2 .header-area__inner {
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.04);
  -webkit-backdrop-filter: blur(10.25px);
          backdrop-filter: blur(10.25px);
}
.header-area-2 .main-menu > ul {
  display: flex;
}
.header-area-2 .main-menu > ul > li:hover > a {
  color: var(--green);
}
.header-area-2 .main-menu li a {
  font-size: 16px;
  font-weight: 400;
  padding: 42px 14px;
  color: var(--white);
  text-transform: uppercase;
}
@media only screen and (max-width: 1399px) {
  .header-area-2 .main-menu li a {
    padding: 29px 10px;
  }
}
.header-area-2 .main-menu li a:hover {
  color: var(--green);
}

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

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

.footer-section-3__wrapper {
  padding-top: 130px;
  padding-bottom: 90px;
}
@media only screen and (max-width: 767px) {
  .footer-section-3__wrapper {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}
.footer-section-3__top {
  gap: 20px;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  position: relative;
  align-items: center;
  justify-content: space-between;
}
.footer-section-3__copyright p {
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
  color: var(--white);
  font-family: var(--font_kanit);
}
.footer-section-3__copyright p a {
  transition: all 0.3s ease-in-out;
}
.footer-section-3__copyright p a:hover {
  color: var(--lime-green);
}
.footer-section-3__social ul {
  gap: 11px;
  display: flex;
  list-style: none;
  align-items: center;
}
.footer-section-3__social ul li a {
  display: flex;
  width: 48px;
  height: 48px;
  align-items: center;
  border-radius: 500px;
  justify-content: center;
  border: 1px solid var(--white);
  transition: all 0.3s ease-in-out;
}



.footer-section-3__social ul li a i {
  font-size: 20px;
  color: var(--white);
  transition: all 0.3s ease-in-out;
}
.footer-section-3__social ul li a:hover {
  border-color:  var(--green) ;
  background-color: var(--green);
}
.footer-section-3__social ul li a:hover i {
  color: var(--black);
}
.footer-section-3__menu ul {
  gap: 30px;
  display: flex;
  list-style: none;
  align-items: center;
}
@media (max-width: 575px) {
  .footer-section-3__menu ul {
    flex-wrap: wrap;
    gap: 10px;
  }
  .footer-section-3__social ul li a {
    width: 38px;
    height: 38px; 
  }

}
.footer-section-3__menu ul li a {
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
  color: var(--white);
  font-family: var(--font_kanit);
  transition: all 0.3s ease-in-out;
}
.footer-section-3__menu ul li a:hover {
  color: var(--lime-green);
}
.footer-section-3__title {
  font-weight: 700;
  font-size: 310px;
  line-height: 0.75;
  text-align: center;
  color: var(--white);
  margin-top: 90px;
  text-transform: uppercase;
  font-family: var(--font_instr);
}
@media only screen and (max-width: 1919px) {
  .footer-section-3__title {
    font-size: 316px;
  }
}
@media only screen and (max-width: 1399px) {
  .footer-section-3__title {
    font-size: 345px;
  }
}
@media only screen and (max-width: 1199px) {
  .footer-section-3__title {
    font-size: 280px;
  }
}
@media only screen and (max-width: 991px) {
  .footer-section-3__title {
    font-size: 215px;
  }
}
@media only screen and (max-width: 767px) {
  .footer-section-3__title {
    font-size: 165px;
  }
}
@media (max-width: 575px) {
  .footer-section-3__title {
    font-size: 60px;
    margin-top: 60px; }
}

.footer-section-2__title {
  font-weight: 700;
  font-size: 133px;
  line-height: 0.75;
  text-align: center;
  color: var(--white);
  margin-top: 90px;
  text-transform: uppercase;
  font-family: var(--font_instr);
}
@media only screen and (max-width: 1919px) {
  .footer-section-2__title {
    font-size: 133px;
  }
}
@media only screen and (max-width: 1399px) {
  .footer-section-2__title {
    font-size: 100px;
  }
}
@media only screen and (max-width: 1199px) {
  .footer-section-2__title {
    font-size: 80px;
  }
}
@media only screen and (max-width: 991px) {
  .footer-section-2__title {
    font-size: 60px;
  }
}
@media only screen and (max-width: 767px) {
  .footer-section-2__title {
    font-size: 50px;
  }
}
@media (max-width: 575px) {
  .footer-section-2__title {
    font-size: 26px;
    margin-top: 40px; }
}


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


@media only screen and (max-width: 767px) {
  .recent-work-2__box {
    display: flex;
  }
}
.recent-work-2__box span {
  display: block;
  font-size: 20px;
  font-weight: 600;
  text-align: right;
  line-height: 30px;
  color: var(--primary);
  text-transform: uppercase;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .recent-work-2__box span {
    text-align: center;
    margin: 0 auto;
    margin-top: 20px;
  }
}
.recent-work-2__box span::before {
  content: "";
  position: absolute;
  top: 0;
  width: 130px;
  height: 1px;
  right: 0;
  background: var(--primary);
}
@media only screen and (max-width: 767px) {
  .recent-work-2__box span::before {
    left: 50%;
    transform: translate(-50%, 0px);
  }
}

.projects-section-inner {
  display: grid;
  justify-content: space-between;
  grid-template-columns: 225px auto 225px;
}
@media only screen and (max-width: 1919px) {
  .projects-section-inner {
    grid-template-columns: 200px auto 200px;
  }
}
@media only screen and (max-width: 1399px) {
  .projects-section-inner {
    grid-template-columns: 160px auto 160px;
  }
}
@media only screen and (max-width: 767px) {
  .projects-section-inner {
    grid-template-columns: 1fr;
  }
}
.projects-section-inner .Projects__content ul {
  gap: 15px;
  padding: 25px;
  list-style: none;
  align-items: center;
  display: inline-flex;
  border-radius: 90px;
  flex-direction: column;
  border: 1px solid var(--primary);
}
@media only screen and (max-width: 767px) {
  .projects-section-inner .Projects__content ul {
    padding: 10px 30px;
    margin: 0 auto;
    flex-direction: row;
    margin-bottom: 20px;
  }
}
.projects-section-inner .Projects__content ul li {
  font-size: 20px;
  font-weight: 600;
  line-height: 30px;
  color: var(--primary);
  text-transform: uppercase;
}
.projects-section-inner .recent-work-2__box {
  position: relative;
  z-index: 10;
}
@media only screen and (max-width: 767px) {
  .projects-section-inner .recent-work-2__box {
    display: flex;
  }
}
.projects-section-inner .recent-work-2__box span {
  display: block;
  font-size: 20px;
  font-weight: 600;
  text-align: right;
  line-height: 30px;
  color: var(--primary);
  text-transform: uppercase;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .projects-section-inner .recent-work-2__box span {
    text-align: center;
    margin: 0 auto;
    margin-top: 20px;
  }
}
.projects-section-inner .recent-work-2__box span::before {
  content: "";
  position: absolute;
  top: 0;
  width: 130px;
  height: 1px;
  right: 0;
  background: var(--primary);
}
@media only screen and (max-width: 767px) {
  .projects-section-inner .recent-work-2__box span::before {
    left: 50%;
    transform: translate(-50%, 0px);
  }
}
.projects-section-inner .Projects__item {
  position: relative;
  margin-bottom: 30px;
}
.projects-section-inner .Projects__item .z-0 {
  z-index: 0;
}
.projects-section-inner .Projects__item .z-1 {
  z-index: 1;
}
.projects-section-inner .Projects__item .z-2 {
  z-index: 2;
}
.projects-section-inner .Projects__item .media {
  border-radius: 10px;
  overflow: hidden;
}
.projects-section-inner .Projects__item .media img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.projects-section-inner .Projects__item .title {
  left: 50%;
  bottom: 60px;
  font-size: 72px;
  font-weight: 700;
  line-height: 72px;
  color: var(--white);
  position: absolute;
  display: inline-block;
  white-space: nowrap;
  font-family: var(--font_thunder);
}
@media only screen and (max-width: 1399px) {
  .projects-section-inner .Projects__item .title {
    bottom: 50px;
    font-size: 60px;
  }
}
@media only screen and (max-width: 1199px) {
  .projects-section-inner .Projects__item .title {
    bottom: 20px;
  }
}
@media only screen and (max-width: 991px) {
  .projects-section-inner .Projects__item .title {
    font-size: 45px;
    line-height: 55px;
  }
}
@media (max-width: 575px) {
  .projects-section-inner .Projects__item .title {
    position: inherit;
    left: initial;
    color: var(--primary);
    transform: inherit;
    bottom: inherit;
    margin-top: 20px;
  }
}
.projects-section-inner .Projects__item .title:hover a {
  color: var(--green);
}

@keyframes loop {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@keyframes load1 {
  0% {
    width: 0;
  }
  100% {
    width: 93%;
  }
}
@keyframes load3 {
  0% {
    width: 0;
  }
  100% {
    width: 90%;
  }
}
@keyframes load4 {
  0% {
    width: 0;
  }
  100% {
    width: 87%;
  }
}
@keyframes load5 {
  0% {
    width: 0;
  }
  100% {
    width: 60%;
  }
}

.text-slider-1 {
  height: 100px;
  color: #febc00;
  font-family: "Instrument Sans";
  font-size: 90px;
  font-style: normal;
  text-align: center;
  font-weight: 700;
  line-height: 111.111%;
  text-transform: uppercase;
}
@media only screen and (max-width: 1919px) {
  .text-slider-1 {
    font-size: 60px;
  }
}
@media only screen and (max-width: 1399px) {
  .text-slider-1 {
    font-size: 50px;
  }
}
.text-slider-1:not(:last-child) {
  margin-right: 30px;
}
.text-slider-1 img {
  margin-bottom: 10px;
  margin-right: -20px;
}

.marquee-inner {
  position: absolute;
  display: inline-flex;
  width: 200%;
}

.marquee-item {
  float: left;
  transition: animation 0.2s ease-out;
}

.marquee-inner.to-left {
  animation: marqueeLeft 25s linear infinite;
}

@keyframes marqueeLeft {
  0% {
    left: 0;
  }
  100% {
    left: -100%;
  }
}

@keyframes marqueeRight {
  0% {
    right: 0;
  }
  100% {
    right: -100%;
  }
}

.footer-area4-widget__title {
  color: #fff;
  font-family: "Instrument Sans";
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 141.667%;
  margin-bottom: 30px;
}
@media only screen and (max-width: 1399px) {
  .footer-area4-widget__title {
    margin-bottom: 20px;
  }
}
@media only screen and (max-width: 1199px) {
  .footer-area4-widget__title {
    font-size: 20px;
  }
}
.footer-area4-widget__nav-link {
  display: block;
  color: rgba(255, 255, 255, 0.8);
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 250%;
  transition: all 0.4s ease-in-out;
}
@media only screen and (max-width: 1199px) {
  .footer-area4-widget__nav-link {
    font-size: 14px;
  }
}
.footer-area4-widget__nav-link:hover {
  color: #ff6e00;
}
.footer-area4-bottom__wrapper {
  padding: 60px 0 35px;
}
@media only screen and (max-width: 1919px) {
  .footer-area4-bottom__wrapper {
    padding: 30px 0 25px;
  }
}
@media only screen and (max-width: 1399px) {
  .footer-area4-bottom__wrapper {
    padding: 20px 0 20px;
  }
}
.footer-area4-bottom__copyright {
  text-align: center;
  color: #fff;
  font-family: Kanit;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 155.556%;
}
@media only screen and (max-width: 1199px) {
  .footer-area4-bottom__copyright {
    font-size: 16px;
  }
}


.th-title-anim-2 {
  display: inline-block;
}
.journey-section__wrapper .accordion-item {
  gap: 300px;
  border: none;
  display: grid;
  margin-bottom: 50px;
  background: inherit;
  grid-template-columns: repeat(2, 300px 1250px);
}
.journey-section__wrapper .accordion-item:has(.accordion-collapse.show) .accordion-number {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}
@media only screen and (max-width: 1399px) {
  .journey-section__wrapper .accordion-item {
    gap: 30px;
    grid-template-columns: repeat(2, 280px 1000px);
  }
}
@media only screen and (max-width: 1199px) {
  .journey-section__wrapper .accordion-item {
    grid-template-columns: repeat(2, 280px 750px);
  }
}
@media only screen and (max-width: 991px) {
  .journey-section__wrapper .accordion-item {
    grid-template-columns: repeat(2, 200px 580px);
  }
}
@media only screen and (max-width: 767px) {
  .journey-section__wrapper .accordion-item {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 575px) {
  .journey-section__wrapper .accordion-item {
    margin-bottom: 50px;
  }
}
.journey-section__wrapper .accordion-content {
  width: 95%;
}
@media only screen and (max-width: 1399px) {
  .journey-section__wrapper .accordion-content {
    width: 90%;
  }
}
@media only screen and (max-width: 767px) {
  .journey-section__wrapper .accordion-content {
    width: 100%;
  }
}
.journey-section__wrapper .accordion-number {
  opacity: 0;
  font-size: 50px;
  font-weight: 500;
  letter-spacing: 0;
  visibility: hidden;
  line-height: 1.2;
  white-space: nowrap;
  color: var(--yellow);
  font-family: var(--font_instr);
  transform: translateY(20px);
  transition: all 0.5s ease;
  pointer-events: none;
}
@media only screen and (max-width: 1399px) {
  .journey-section__wrapper .accordion-number {
    font-size: 45px;
    line-height: 1.2;
  }
}
@media only screen and (max-width: 767px) {
  .journey-section__wrapper .accordion-number {
    font-size: 35px;
    line-height: 1.2;
  }
}
@media (max-width: 575px) {
  .journey-section__wrapper .accordion-number {
    font-size: 28px;
    line-height: 1.2;
  }
}
.journey-section__wrapper .accordion-button {
  outline: 0;
  font-size: 36px;
  font-weight: 700;
  line-height: 46px;
  letter-spacing: 0;
  box-shadow: none;
  color: var(--white);
  padding-left: 0;
  padding-right: 0;
  padding-top: 0;
  padding-bottom: 50px;
  background: transparent;
  font-family: var(--font_instr);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.4s ease-in-out;
}
@media only screen and (max-width: 1199px) {
  .journey-section__wrapper .accordion-button {
    font-size: 30px;
  }
}
@media only screen and (max-width: 991px) {
  .journey-section__wrapper .accordion-button {
    line-height: 22px;
  }
}
@media only screen and (max-width: 767px) {
  .journey-section__wrapper .accordion-button {
    line-height: 17px;
  }
}
@media (max-width: 575px) {
  .journey-section__wrapper .accordion-button {
    font-size: 17px;
    padding-bottom: 10px;
  }
}
.journey-section__wrapper .accordion-button span {
  font-size: 36px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 46px;
  color: var(--white);
  padding-left: 5px;
  font-family: var(--font_instr);
}
@media only screen and (max-width: 767px) {
  .journey-section__wrapper .accordion-button span {
    font-size: 18px;
  }
}
.journey-section__wrapper .accordion-button::after {
  content: "+";
  font-size: 26px;
  font-weight: 400;
  margin-left: auto;
  transform: inherit;
  color: var(--yellow);
  display: inline-block;
  transition: all 0.3s ease;
  background-image: none !important;
}
.journey-section__wrapper .accordion-button:not(.collapsed)::after {
  content: "-";
  color: var(--yellow);
}
.journey-section__wrapper .accordion-button:not(.collapsed) {
  outline: 0;
  box-shadow: inherit;
  border-bottom: none;
  padding-bottom: 0;
  color: var(--yellow);
  background-color: transparent;
}
.journey-section__wrapper .accordion-button:not(.collapsed) span {
  color: var(--yellow);
}
.journey-section__wrapper .accordion-button button:focus:not(:focus-visible) {
  outline: inherit;
  border-color: none;
}
.journey-section__wrapper .accordion-button.accordion-button:focus {
  z-index: 3;
  border-color: inherit;
  outline: 0;
  box-shadow: inherit;
}
.journey-section__wrapper .accordion-collapse.show {
  border-bottom: 1px solid var(--yellow);
}
.journey-section__wrapper .accordion-body {
  font-size: 18px;
  font-weight: 400;
  color: #999999;
  line-height: 28px;
  letter-spacing: 0;
  max-width: 537px;
  padding: 29px 0 22px 0;
  font-family: var(--font_kanit);
}
@media only screen and (max-width: 1399px) {
  .journey-section__wrapper .accordion-body {
    padding: 20px 0 22px 0;
  }
}
@media (max-width: 575px) {
  .journey-section__wrapper .accordion-body {
    font-size: 16px;
    line-height: 24px;
  }
}

@keyframes loop {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.marque-section6 {
  padding: 100px 0px 90px;
  background: var(--black);
  position: relative;
  white-space: nowrap;
  z-index: 9;
}
@media only screen and (max-width: 1919px) {
  .marque-section6 {
    padding: 80px 0px 80px;
  }
}
@media only screen and (max-width: 1399px) {
  .marque-section6 {
    padding: 50px 0px 50px;
  }
}

.text-slider-3 {
  height: 100px;
  color: #fff;
  font-family: "Instrument Sans";
  font-size: 180px;
  font-style: normal;
  text-align: center;
  font-weight: 700;
  line-height: 180px;
  text-transform: lowercase;
}
.text-slider-3:not(:last-child) {
  margin-right: 30px;
}
@media only screen and (max-width: 1919px) {
  .text-slider-3 {
    font-size: 150px;
  }
}
@media only screen and (max-width: 1399px) {
  .text-slider-3 {
    font-size: 100px;
  }
}
@media only screen and (max-width: 1199px) {
  .text-slider-3 {
    font-size: 80px;
  }
}
@media only screen and (max-width: 991px) {
  .text-slider-3 {
    font-size: 50px;
  }
}

.text-slider-4 {
  height: 100px;
  text-align: center;
  color: rgba(255, 255, 255, 0);
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: #fff;
  font-family: "Instrument Sans";
  font-size: 180px;
  font-style: normal;
  font-weight: 700;
  line-height: 180px;
  text-transform: lowercase;
}
@media only screen and (max-width: 1919px) {
  .text-slider-4 {
    font-size: 150px;
  }
}
@media only screen and (max-width: 1399px) {
  .text-slider-4 {
    font-size: 100px;
  }
}
@media only screen and (max-width: 1199px) {
  .text-slider-4 {
    font-size: 80px;
  }
}
@media only screen and (max-width: 991px) {
  .text-slider-4 {
    font-size: 50px;
  }
}

.marquee-inner {
  position: absolute;
  display: inline-flex;
  width: 200%;
}

.marquee-item {
  float: left;
  transition: animation 0.2s ease-out;
}

.marquee-inner.to-left {
  animation: marqueeLeft 25s linear infinite;
}

@keyframes marqueeLeft {
  0% {
    left: 0;
  }
  100% {
    left: -100%;
  }
}

@keyframes marqueeRight {
  0% {
    right: 0;
  }
  100% {
    right: -100%;
  }
}

.footer-area6 {
  background: var(--black);
}
.footer-area6__top {
  padding: 120px 0px;
  text-align: center;
  align-items: center;
}
@media only screen and (max-width: 1399px) {
  .footer-area6__top {
    padding: 90px 0px;
  }
}
.footer-area6__top-title {
  color: #fff;
  text-align: center;
  font-family: "Instrument Sans";
  font-size: 50px;
  font-style: normal;
  font-weight: 600;
  line-height: 120%;
  margin-bottom: 40px;
}
@media only screen and (max-width: 1919px) {
  .footer-area6__top-title {
    font-size: 40px;
    margin-bottom: 30px;
  }
}
@media only screen and (max-width: 1399px) {
  .footer-area6__top-title {
    font-size: 38px;
  }
}
@media only screen and (max-width: 1199px) {
  .footer-area6__top-title {
    font-size: 33px;
  }
}
@media only screen and (max-width: 767px) {
  .footer-area6__top-title {
    font-size: 22px;
  }
}
.footer-area6-main {
  padding: 70px 70px 0px;
  border-radius: 20px 20px 0 0;
  background: #101010;
}
@media only screen and (max-width: 1199px) {
  .footer-area6-main {
    padding: 25px;
  }
}

.intro-section {
  background: #0b0b0b;
  color: #ffffff;
  padding: 230px 0 120px;
  position: relative;
}
@media only screen and (max-width: 1919px) {
  .intro-section {
    padding: 180px 0 120px;
  }
}
@media only screen and (max-width: 1919px) {
  .contact-area{
    padding: 220px 0 100px;
  }
}
.intro-section__content {
  text-align: left;
  padding-right: clamp(10px, 4vw, 40px);
}
.intro-section__title {
  color: #fff;
  font-family: var(--font_kanit);
  font-size: 72px;
  font-style: normal;
  font-weight: 600;
  line-height: 80px;
  text-transform: uppercase;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
}

@media only screen and (max-width: 767px) {
  .intro-section__title {
    font-size: 46px;
    line-height: 1.1;
  }
}
.intro-section__images {
  display: flex;
  justify-content: center;
}
.intro-section__image-stack {
  position: relative;
  display: flex;
  align-items: stretch;
  width: 100%;
}
.intro-section__image-stack .intro-section__image {
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.35);
  transition: transform 0.4s ease, opacity 0.4s ease;
  width: 100%;
}
.intro-section__image--main {
  width: 100%;
  z-index: 2;
}
.intro-section__image-stack:hover .intro-section__image--main {
  transform: translateX(-10px);
}
@media (max-width: 991.98px) {
  .intro-section__content {
    text-align: center;
    padding-right: 0;
  }
  .intro-section__title {
    justify-content: center;
    margin-top: 50px;
  }
  .intro-section__image-stack {
    justify-content: center;
  }
  .intro-section__image-stack .intro-section__image--main {
    max-width: 100%;
  }
}
.services__cards {
  row-gap: 24px;
}
.services__card {
  background: #121212;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 60px 35px;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: transform 0.35s ease, box-shadow 0.35s ease, background 0.35s ease;
}
.services__card-title {
  color: #fff;
  font-family: var(--font_instr);
  font-size: 36px;
  font-style: normal;
  font-weight: 600;
  line-height: 46px;
  text-decoration-line: underline;
  text-decoration-style: solid;
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
  text-decoration: underline;
  margin-bottom: 35px;
}

.services__icon {
  width: 40px !important;
  height: 40px !important;
}
@media only screen and (max-width: 1919px) {
  .services__card-title {
    font-size: 25px;
    line-height: 1.1;
  }
}
.services__card-text {
  color: var(--gray);
  font-family: var(--font_kanit);
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  margin-bottom: 35px;
}
@media (max-width: 991.98px) {
  .services__card {
    text-align: left;
  }
}
@media (max-width: 575.98px) {
  .services__card {
    padding: 22px 18px;
  }
}

.bg-img {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.bg-img {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}


.portfolio-details {
  padding: 200px 0px 120px;
}
@media only screen and (max-width: 1399px) {
  .portfolio-details {
    padding: 130px 0px 100px;
  }
}
@media only screen and (max-width: 1199px) {
  .portfolio-details {
    padding: 130px 0px 100px;
  }
}
@media only screen and (max-width: 575px) {
  .portfolio-details {
    padding: 120px 0px 90px;
  }
}
.portfolio-details__top {
  color: #fff;
  font-weight: 600;
  font-style: SemiBold;
  font-size: 72px;
  line-height: 48px;
  letter-spacing: 0%;
  text-align: center;
  margin-bottom: 40px;
}
@media only screen and (max-width: 1919px) {
  .portfolio-details__top {
    font-size: 60px;
  }
}
@media only screen and (max-width: 1399px) {
  .portfolio-details__top {
    font-size: 50px;
  }
}
@media only screen and (max-width: 1199px) {
  .portfolio-details__top {
    font-size: 40px;
  }
}
@media only screen and (max-width: 991px) {
  .portfolio-details__top {
    font-size: 30px;
  }
}
@media only screen and (max-width: 575px) {
  .portfolio-details__top {
    font-size: 27px;
  }
}
.portfolio-details__items {
  display: flex;
  justify-content: space-between;
  margin-bottom: 60px;
}
@media only screen and (max-width: 1199px) {
  .portfolio-details__items {
    flex-wrap: wrap;
    gap: 30px;
  }
}
.portfolio-details__items-content {
  border-top: 1px dashed;
  border-left: 1px dashed;
  padding: 15px 15px;
}
.portfolio-details__items-content-subtitle {
  color: #e0e0e0;
  font-weight: 400;
  font-size: 20px;
  display: block;
  line-height: 30px;
  letter-spacing: 0%;
  margin-bottom: 16px;
}
@media only screen and (max-width: 1399px) {
  .portfolio-details__items-content-subtitle {
    margin-bottom: 10px;
    font-size: 18px;
  }
}
@media only screen and (max-width: 1199px) {
  .portfolio-details__items-content-subtitle {
    margin-bottom: 10px;
    font-size: 16px;
  }
}
.portfolio-details__items-content-title {
  color: #fff;
  font-weight: 600;
  font-size: 24px;
  line-height: 34px;
}
@media only screen and (max-width: 1399px) {
  .portfolio-details__items-content-title {
    margin-bottom: 10px;
    font-size: 20px;
  }
}
.portfolio-details__thumb img {
  max-width: 100%;
}
.portfolio-details__info {
  padding: 80px 0px;
}
@media only screen and (max-width: 1399px) {
  .portfolio-details__info {
    padding: 60px 0px;
  }
}
.portfolio-details__info-left {
  position: relative;
  font-weight: 500;
  font-style: Medium;
  font-size: 18px;
  color: #fff;
  line-height: 28px;
}
@media only screen and (max-width: 1399px) {
  .portfolio-details__info-left {
    font-size: 16px;
  }
}
.portfolio-details__info-left::before {
  position: absolute;
  content: "";
  width: 10px;
  height: 10px;
  top: 8px;
  left: -20px;
  background-color: #121212;
}
@media only screen and (max-width: 1919px) {
  .portfolio-details__info-left::before {
    display: none;
  }
}
.portfolio-details__info-right-title {
  font-weight: 700;
  font-size: 36px;
  line-height: 46px;
  color: #fff;
  margin-bottom: 30px;
}
@media only screen and (max-width: 1399px) {
  .portfolio-details__info-right-title {
    margin-bottom: 20px;
    font-size: 30px;
  }
}
.portfolio-details__info-right-subtitle1 {
  color: #e0e0e0;
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  margin-bottom: 30px;
}
.portfolio-details__info-right-subtitle2 {
  color: #e0e0e0;
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  margin-bottom: 30px;
}
.portfolio-details__info-right .accordion2 .global-accordion-item2 {
  padding: 20px 0px;
  background: transparent;
  overflow: hidden;
}
.portfolio-details__info-right .accordion2 .global-accordion-item2 .global-accordion-header {
  margin: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}
.portfolio-details__info-right .accordion2 .global-accordion-item2 .global-accordion-button {
  position: relative;
  font-weight: 500;
  font-size: 20px;
  font-size: 20px;
  line-height: 30px;
  letter-spacing: 0%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: transparent;
}
@media only screen and (max-width: 1919px) {
  .portfolio-details__info-right .accordion2 .global-accordion-item2 .global-accordion-button {
    font-size: 22px;
  }
}
@media only screen and (max-width: 1399px) {
  .portfolio-details__info-right .accordion2 .global-accordion-item2 .global-accordion-button {
    font-size: 20px;
  }
}
@media only screen and (max-width: 1199px) {
  .portfolio-details__info-right .accordion2 .global-accordion-item2 .global-accordion-button {
    font-size: 18px;
  }
}
@media only screen and (max-width: 991px) {
  .portfolio-details__info-right .accordion2 .global-accordion-item2 .global-accordion-button {
    font-size: 17px;
  }
}
.portfolio-details__info-right .accordion2 .global-accordion-item2 .global-accordion-button::after {
  content: "+";
  background: transparent;
  font-weight: 500;
  transition: all 0.3s ease-in-out !important;
  border: none;
  background: transparent;
  width: 12px;
  height: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--black);
  border-radius: 50%;
  transition: all 0.3s;
}
.portfolio-details__info-right .accordion2 .global-accordion-item2 .global-accordion-button:not(.collapsed)::after {
  content: "-";
  background: transparent;
  font-weight: 500;
  transition: all 0.3s ease-in-out !important;
  border: none;
  background: transparent;
  width: 12px;
  height: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: var(--black);
  transition: all 0.3s;
}
.portfolio-details__info-right .accordion2 .global-accordion-item2 .global-accordion-button.collapsed {
  color: #fff;
  font-weight: 500;
  font-size: 20px;
  line-height: 30px;
}
@media only screen and (max-width: 1919px) {
  .portfolio-details__info-right .accordion2 .global-accordion-item2 .global-accordion-button.collapsed {
    font-size: 22px;
  }
}
@media only screen and (max-width: 1399px) {
  .portfolio-details__info-right .accordion2 .global-accordion-item2 .global-accordion-button.collapsed {
    font-size: 20px;
  }
}
@media only screen and (max-width: 1199px) {
  .portfolio-details__info-right .accordion2 .global-accordion-item2 .global-accordion-button.collapsed {
    font-size: 18px;
  }
}
@media only screen and (max-width: 991px) {
  .portfolio-details__info-right .accordion2 .global-accordion-item2 .global-accordion-button.collapsed {
    font-size: 17px;
  }
}
.portfolio-details__info-right .accordion2 .global-accordion-item2 .global-accordion-body {
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
  padding-top: 15px;
  padding-bottom: 20px;
}
.portfolio-details__info-right .accordion2 .global-accordion-item2 .global-accordion-body p {
  color: #e0e0e0;
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
}
@media only screen and (max-width: 1399px) {
  .portfolio-details__info-right .accordion2 .global-accordion-item2 .global-accordion-body p {
    font-size: 17px;
  }
}
@media only screen and (max-width: 1199px) {
  .portfolio-details__info-right .accordion2 .global-accordion-item2 .global-accordion-body p {
    font-size: 16px;
  }
}
.portfolio-details__info-right .accordion2 .global-accordion-item2 .global-accordion-collapse.show {
  border-radius: 4px;
}
.portfolio-details__thumb2 {
  height: 100%;
}
.portfolio-details__thumb2 img {
  max-width: 100%;
  height: 100%;
  border-radius: 20px;
}
.portfolio-details-wrapper {
  padding: 60px 0px;
}
@media only screen and (max-width: 1399px) {
  .portfolio-details-wrapper {
    padding: 40px 0px;
  }
}
.portfolio-details-wrapper__title {
  position: relative;
  color: #fff;
  font-weight: 500;
  font-size: 18px;
  line-height: 28px;
  letter-spacing: 0%;
  text-transform: uppercase;
}
@media only screen and (max-width: 1399px) {
  .portfolio-details-wrapper__title {
    font-size: 16px;
  }
}
.portfolio-details-wrapper__title::before {
  position: absolute;
  content: "";
  width: 10px;
  height: 10px;
  top: 10px;
  left: -20px;
  background-color: #fff;
}
@media only screen and (max-width: 1919px) {
  .portfolio-details-wrapper__title::before {
    display: none;
  }
}
.portfolio-details-info2 {
  padding: 0px 0px 60px;
}
@media only screen and (max-width: 1399px) {
  .portfolio-details-info2 {
    padding: 0px 0px 40px;
  }
}
.portfolio-details__content-title {
  color: #fff;
  font-weight: 700;
  font-size: 36px;
  line-height: 46px;
  margin-bottom: 20px;
}
@media only screen and (max-width: 1919px) {
  .portfolio-details__content-title {
    font-size: 30px;
    margin-bottom: 15px;
  }
}
@media only screen and (max-width: 1399px) {
  .portfolio-details__content-title {
    font-size: 25px;
    margin-bottom: 15px;
  }
}
@media only screen and (max-width: 1199px) {
  .portfolio-details__content-title {
    font-size: 20px;
    margin-bottom: 15px;
  }
}
.portfolio-details__content-subtitle1 {
  color: #e0e0e0;
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  letter-spacing: 0%;
  margin-bottom: 20px;
}
@media only screen and (max-width: 1199px) {
  .portfolio-details__content-subtitle1 {
    font-size: 16px;
    margin-bottom: 10px;
  }
}
.portfolio-details__content-subtitle2 {
  color: #e0e0e0;
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
}
@media only screen and (max-width: 1199px) {
  .portfolio-details__content-subtitle2 {
    font-size: 16px;
    margin-bottom: 10px;
  }
}
.portfolio-details__thumb3 {
  margin-bottom: 30px;
}
@media only screen and (max-width: 1399px) {
  .portfolio-details__thumb3 {
    margin-bottom: 25px;
  }
}
@media only screen and (max-width: 1199px) {
  .portfolio-details__thumb3 {
    margin-bottom: 20px;
  }
}
.portfolio-details__thumb3 img {
  border-radius: 20px;
  max-width: 100%;
}
.portfolio-details__link {
  display: flex;
  gap: 20px;
  justify-content: center;
  text-align: center;
}
.portfolio-details__link-items {
  display: block;
  display: flex;
  align-items: center;
  justify-content: center;
  justify-items: center;
  border-radius: 101px;
  border: 1px solid #fff;
  width: 200px;
  height: 200px;
  top: 4872px;
  left: 750px;
  border-width: 1px;
}
@media only screen and (max-width: 1919px) {
  .portfolio-details__link-items {
    width: 150px;
    height: 150px;
  }
}
@media only screen and (max-width: 1399px) {
  .portfolio-details__link-items {
    width: 100px;
    height: 100px;
  }
}
.portfolio-details__link-items:hover {
  background-color: #fcf300;
  border: none;
}
.portfolio-details__link-items .button {
  color: #fff;
  font-weight: 500;
  font-size: 18px;
  line-height: 28px;
  letter-spacing: 0%;
}
@media only screen and (max-width: 1399px) {
  .portfolio-details__link-items .button {
    font-size: 16px;
  }
}
@media only screen and (max-width: 1199px) {
  .portfolio-details__link-items .button {
    font-size: 14px;
  }
}
.portfolio-details__link-items .icon {
  margin-top: 15px;
}
.portfolio-details__link-items .icon svg {
  display: flex;
  text-align: center;
  justify-items: center;
  margin: 0 auto;
}

.error {
  background-color: #000;
  padding-top: 250px;
}

.project {
  background-color: #F0F2F4;
}

.contact-area {
  position: relative;
  overflow: hidden;
}
.contact-area__heading {
  position: relative;
  z-index: 3;
  text-align: center;
  font-size: 36px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 0.4px;
  font-family: var(--font_instr);
  font-weight: 600;
  font-size: 72px;
  line-height: 82px;
  text-align: center;
  margin-bottom: 120px;
}
.contact-area .contact-form-card {
  padding: 90px 60px;
  border-radius: 10px;
  position: relative;
  z-index: 4;
  margin-top: 8px;
  border-radius: 8px;
  background: #121212;
  border: 1px solid rgba(255, 255, 255, 0.06);
}
.contact-area .contact-form {
  position: relative;
  color: var(--white);
}
.contact-area .contact-form__top {
  margin-bottom: 18px;
}
.contact-area .contact-form__top .contact-form__input {
  width: 100%;
  padding: 12px 14px;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--white);
  outline: none;
  font-size: 14px;
}
.contact-area .contact-form__top .contact-form__input::-moz-placeholder {
  color: rgba(255, 255, 255, 0.55);
}
.contact-area .contact-form__top .contact-form__input::placeholder {
  color: rgba(255, 255, 255, 0.55);
}
.contact-area .contact-form__top .contact-form__input:focus {
  border-bottom-color: rgba(255, 255, 255, 0.22);
}
.contact-area .contact-form__middle {
  margin: 22px 0;
}
.contact-area .contact-form__middle .contact-form__textarea {
  width: 100%;
  min-height: 120px;
  padding: 18px 14px;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--white);
  outline: none;
  font-size: 14px;
  resize: vertical;
}
.contact-area .contact-form__middle .contact-form__textarea::-moz-placeholder {
  color: rgba(255, 255, 255, 0.55);
}
.contact-area .contact-form__middle .contact-form__textarea::placeholder {
  color: rgba(255, 255, 255, 0.55);
}
.contact-area .contact-form__middle .contact-form__textarea:focus {
  border-bottom-color: rgba(255, 255, 255, 0.22);
}
.contact-area .contact-form__footer {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 60px;
  position: relative;
}
@media only screen and (max-width: 1199px) {
  .contact-area {
    padding: 40px 0 72px;
  }
  .contact-area__heading {
    font-size: 32px;
  }
}
@media only screen and (max-width: 991px) {
  .contact-area {
    padding: 28px 0 56px;
  }
  .contact-area__heading {
    font-size: 28px;
    margin-bottom: 18px;
  }
  .contact-area .contact-form-card {
    padding: 22px;
  }
  .contact-area .contact-form__top {
    margin-bottom: 12px;
  }
  .contact-area .contact-form__middle {
    margin: 16px 0;
  }
}
@media only screen and (max-width: 767px) {
  .contact-area {
    padding: 20px 0 48px;
  }
  .contact-area__heading {
    font-size: 22px;
    margin: 12px 0 14px;
    color: var(--primary);
  }
  .contact-area .contact-form-card {
    padding: 18px;
    border-radius: 10px;
  }
  .contact-area .contact-form__top .contact-form__input {
    padding: 10px 12px;
    font-size: 13px;
  }
  .contact-area .contact-form__middle .contact-form__textarea {
    padding: 12px;
    min-height: 90px;
    font-size: 13px;
  }
}
@media only screen and (max-width: 575px) {
  .contact-area {
    padding: 16px 0 40px;
  }
  .contact-area .contact-form__input,
  .contact-area .contact-form__textarea {
    font-size: 13px;
  }
  .contact-area__heading {
    font-size: 20px;
  }
}

    /*----------------------------------------------
      Start Skills Marquee Styles 
    -------------------------------------------------- */
    .carouselTicker {
      overflow: hidden;
      width: 100%;
      margin-top: 50px !important;
      position: relative;
    }

    .carouselTicker__list {
      display: flex;
      list-style: none;
      padding: 0;
      margin: 0;
      gap: 20px;
      will-change: transform;
    }

    .carouselTicker__item {
      flex-shrink: 0;
    }

    .carouselTicker__item .brand-logo {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 80px;
      height: 80px;
      background: rgba(255, 255, 255, 0.02);
      -webkit-backdrop-filter: blur(10.25px);
      backdrop-filter: blur(10.25px);
      border: 1px solid rgba(255, 255, 255, 0.099);
      text-decoration: none;
    }

    .carouselTicker__item .brand-logo img {
      width: 50px !important;
      height: 50px !important;
      object-fit: contain;
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
      .carouselTicker__item .brand-logo {
        width: 60px;
        height: 60px;
      }

      .carouselTicker__item .brand-logo img {
        width: 36px !important;
        height: 36px !important;
      }

      .carouselTicker__list {
        gap: 15px;
      }

      .carouselTicker {
        margin-bottom: 50px;
      }
    }
    /*----------------------------------------------
      End Skills Marquee Styles 
    -------------------------------------------------- */

    /*----------------------------------------------
      Start about Me
    -------------------------------------------------- */
    .about-wrap h2 {
      color: #fff !important;
      font-size: 38px !important;
      text-transform: uppercase !important;
      font-weight: 800 !important;
    }
    .about-wrap h2 span {
      color: #fcf300;
    }
    .exp-wrap .exp-number {
      color: #fff !important;
      font-size: 160px !important;
      font-weight: 900 !important;
    }

    .exp-wrap .exp-title {
      font-size: 16px !important;
      font-weight: 500 !important;
      color: #000 !important;
      padding: 7px 14px;
      background-color: #fcf300;
      border-radius: 3px;
    }
    /*----------------------------------------------
      End about Me
    -------------------------------------------------- */
    .Projects__item .th-btn-green {
      position: absolute;
      left: 50%;
      bottom: 60px;
      transform: translate(-50%, 0px);
    }

    /* Responsive */
    @media only screen and (max-width: 767px) {
      .recent-work-2__box,
      .Projects__content {
        display: none;
      }
      .exp-wrap {
        margin-bottom: 50px;
      }
      .about-title {
        text-align: center;
      }
      .vertical-projects-text {
        display: none;
      }
      .Projects__item .th-btn-green {
        bottom: 15px;
        font-size: 10px;
        padding: 6px 10px;
      }
    }

/* BTN STYLE */
.btn_one {
  font-size: 16px;
  line-height: 20px;
  padding: 12px 28px;
  border-radius: 2px;
  background: var(--green);
}

.header-area.header-area-2 {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 99;
    transition: all 0.3s ease;
}

.accordion-body a {
  color: #fcf300 !important;
  text-decoration: underline !important;
}

/* GPU acceleration for pinned/animated sections */
.Projects__content,
.recent-work-2__box,
.section-item,
.carouselTicker__list {
  will-change: transform;
}

/* Content visibility for long sections (reduces initial paint) */
.about-section,
.journey-section__wrapper,
.contact-area {
  content-visibility: auto;
  contain-intrinsic-size: auto 800px;
}

/* Hide header social icons on mobile screens */
@media (max-width: 1199px) {
  .header-social-icons  {
    display: none !important;
  }
}

.header-social-icons-mm a{
  color: #0e0e0e;
  font-size: 16px;
  margin-left: 10px;
}


/* Show social icons in mobile menu */
.side-info .offset-header .header-social-icons {
  display: flex !important;
  gap: 15px;
  margin-top: 20px;
  justify-content: center;
}

/* Force GPU layer on header for smoother backdrop-filter */
.header-area {
  transform: translateZ(0);
}