@charset "UTF-8";
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes blink {
  0%, 49% {
    border-right-color: rgba(255, 255, 255, 0.8);
  }
  50%, 100% {
    border-right-color: transparent;
  }
}
* {
  font-family: "RB", sans-serif !important;
}

html, body {
  max-width: 100vw;
  padding: 0;
  margin: 0;
  font-size: 18px;
  overflow-x: hidden;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
html.modal-open, body.modal-open {
  padding-right: 0 !important;
}

a {
  text-decoration: none;
}

.primary {
  color: #cefe5e;
}

.secondary {
  color: #2E2935;
}

.marketly-button {
  width: -moz-max-content;
  width: max-content;
  min-width: 250px;
  min-height: 50px;
  background: #664DC1;
  color: #fdf7e8;
  padding: 0.5rem 2.5rem;
  font-size: 20px;
  font-weight: bold;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  z-index: 0;
  transition: color 0.4s ease-in-out;
}
.marketly-button::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #cefe5e;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.4s ease-in-out;
  z-index: -1;
}
.marketly-button:hover::before {
  transform: scaleX(1);
}
.marketly-button:hover {
  color: #2E2935;
}

.splash-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: #2E2935;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  overflow: hidden;
}

.text-splash-screen {
  display: none;
}

.splash-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 1;
}

.splash-loader {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1;
  width: 220px;
  height: 220px;
}

.splash-loader-inner {
  position: relative;
  width: 220px;
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.splash-logo {
  width: 120px;
  height: 120px;
  filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.2));
  animation: spin 3s ease-in-out;
}

.splash-spinner {
  position: absolute;
  width: 180px;
  height: 180px;
  border: 6px solid transparent;
  border-top: 6px solid #ffffff;
  border-right: 6px solid #ffffff;
  border-radius: 50%;
  animation: spin 1.6s linear infinite;
}

.splash-text-wrapper {
  width: 100%;
  height: 200px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.splash-text {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #ffffff !important;
  margin: 0;
  line-height: 1.4;
  letter-spacing: 0.5px;
  padding: 0 20px;
  word-wrap: break-word;
}
.splash-text.typing {
  border-right: 3px solid #ffffff;
  padding-right: 0.1em;
  animation: blink 0.7s infinite;
}

.splash-screen.fade-out {
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.floating-button {
  width: 80px;
  height: 80px;
  background: #2E2935;
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  right: 1.5rem;
  bottom: 1.5rem;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.1s ease-in-out;
  z-index: 99;
}
.floating-button svg path {
  fill: #cefe5e;
}
.floating-button:hover {
  background: #ffffff;
  box-shadow: 0px 0px 30px 0px rgba(102, 77, 193, 0.5019607843);
}
.floating-button:hover svg path {
  fill: #664DC1;
}

nav {
  width: 90%;
  max-width: 1320px;
  background: #2E2935;
  position: absolute;
  left: 50%;
  top: 2rem;
  transform: translateX(-50%);
  padding: 1rem 0.5rem;
  border-radius: 50px;
  z-index: 999;
}
nav .logo {
  width: 80px;
}
nav .nav-content {
  max-width: 80%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
}
nav .nav-content .nav-links, nav .nav-content .actions {
  display: flex;
  justify-content: center;
  align-items: center;
}
nav .nav-content .nav-links {
  flex-grow: 1;
  padding-right: 5rem;
  gap: 2rem;
}
nav .nav-content .nav-links .link {
  color: #fdf7e8;
  transition: all 0.1s ease-in-out;
}
nav .nav-content .nav-links .link.active, nav .nav-content .nav-links .link:hover {
  color: #cefe5e;
  padding-bottom: 0.2rem;
  border-bottom: thin solid #cefe5e;
}
nav .nav-content .actions {
  gap: 1rem;
}
nav .nav-content .actions button {
  background: none;
  color: #fdf7e8;
  padding: 0.5rem 1rem;
  border: 1px solid rgb(25.5, 25.5, 25.5);
  border-radius: 0.25rem;
}
nav .nav-content .actions button.lang {
  color: #cefe5e;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
nav .nav-content .actions button.lang.dropdown-toggle::after {
  display: none;
}
nav .nav-content .actions button.lang[aria-expanded=true] svg:last-child {
  transform: rotate(180deg);
}
nav .nav-content .actions .dropdown .lang-menu {
  width: 100%;
  min-width: unset;
  background: #2E2935;
  border-radius: 0.25rem;
}
nav .nav-content .actions .dropdown .lang-menu .dropdown-item {
  color: #fdf7e8;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 0.5rem;
}
nav .nav-content .actions .dropdown .lang-menu .dropdown-item:hover {
  background: unset;
  color: #cefe5e;
}
nav .nav-content .actions .dropdown .lang-menu .dropdown-item .flag {
  width: 1.25rem;
}
nav .nav-content .menu {
  display: none;
  cursor: pointer;
}

aside {
  height: 100%;
  width: 95%;
  max-width: 280px;
  background: #2E2935;
  position: fixed;
  right: 0;
  top: 0;
  padding: 2rem;
  z-index: 9999;
}
aside .logo {
  width: 100%;
  display: flex;
  justify-content: center;
  padding-bottom: 1rem;
}
aside .logo img {
  width: 150px;
}
aside .links, aside .actions {
  width: 100%;
  display: flex;
  flex-direction: column;
}
aside .links {
  padding-bottom: 2rem;
  gap: 1rem;
}
aside .links .link {
  width: -moz-max-content;
  width: max-content;
  color: #fdf7e8;
  transition: all 0.1s ease-in-out;
}
aside .links .link.active, aside .links .link:hover {
  color: #cefe5e;
}
aside .actions {
  gap: 1rem;
}
aside .actions button {
  width: 100%;
  background: none;
  color: #fdf7e8;
  padding: 0.5rem 1rem;
  border: 1px solid rgb(25.5, 25.5, 25.5);
  border-radius: 0.25rem;
}
aside .actions button.lang {
  color: #cefe5e;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
aside .actions button.lang.dropdown-toggle::after {
  display: none;
}
aside .actions button.lang[aria-expanded=true] svg:last-child {
  transform: rotate(180deg);
}
aside .actions .dropdown .lang-menu {
  width: 100%;
  min-width: unset;
  background: #2E2935;
  border: 1px solid rgb(25.5, 25.5, 25.5);
  border-radius: 0.25rem;
}
aside .actions .dropdown .lang-menu .dropdown-item {
  color: #fdf7e8;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 0.5rem;
}
aside .actions .dropdown .lang-menu .dropdown-item:hover {
  background: unset;
  color: #cefe5e;
}
aside .actions .dropdown .lang-menu .dropdown-item .flag {
  width: 1.25rem;
}

footer {
  background: #FDF7E8;
}
footer .footer-top {
  width: 100%;
  max-width: 2000px;
  margin: 0 auto;
  height: 600px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
footer .footer-content {
  background: #2E2935;
  margin-top: -1rem;
  padding: 5rem 0;
}
footer .footer-content .row {
  padding: 0 2rem;
  justify-content: center;
  align-items: center;
  row-gap: 3rem;
}
footer .footer-content .row .group {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  row-gap: 1rem;
}
footer .footer-content .row .group .title {
  color: #cefe5e;
  padding-bottom: 0.5rem;
  font-weight: bold;
}
footer .footer-content .row .group .item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #fdf7e8;
}
footer .footer-content .row .group .item a {
  direction: ltr;
  color: #fdf7e8;
}
footer .footer-content .row .group a.item {
  transition: all 0.1s ease-in-out;
}
footer .footer-content .row .group a.item:hover {
  color: #cefe5e;
}

.hero {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100vh;
}
.hero video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  right: 0;
}
.hero .content {
  width: 100%;
  height: 100%;
  background: linear-gradient(269.94deg, rgba(29, 28, 31, 0.75) 0.05%, rgba(0, 0, 0, 0) 99.94%);
  position: absolute;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero .content img {
  width: 230px;
}
.hero .content .description {
  max-width: 550px;
  font-size: 24px;
  color: #fdf7e8;
}

.page-header {
  background: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 12rem;
  padding-bottom: 3rem;
}
.page-header.portfolio {
  background: #FDF7E8;
}
.page-header .title {
  color: #664DC1;
  font-size: 50px;
  font-weight: bold;
}
.page-header .description {
  color: #2E2935;
  font-size: 24px;
  font-weight: bold;
}

.about-tabs {
  background: linear-gradient(180deg, #FFFFFF 30.99%, #FDF7E8 86.76%);
}
.about-tabs .tabs {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem 0;
  gap: 5rem;
}
.about-tabs .tabs .tab {
  min-height: 60px;
  color: #D9D9D9;
  font-size: 32px;
  font-weight: bold;
  padding-bottom: 0.2rem;
  cursor: pointer;
  transition: all 0.1s ease-in-out;
}
.about-tabs .tabs .tab.active, .about-tabs .tabs .tab:hover {
  color: #664DC1;
  border-bottom: thin solid #664DC1;
}
.about-tabs .details {
  min-height: 480px;
  justify-content: space-between;
  align-items: center;
  row-gap: 2rem;
  padding: 1rem 0;
}
.about-tabs .details .content {
  font-size: 24px;
  font-weight: bold;
  color: #2E2935;
}
.about-tabs .details img {
  max-width: 100%;
  min-height: 300px;
}

.search {
  background: #FDF7E8;
}
.search .container {
  display: flex;
  justify-content: center;
  gap: 1rem;
  row-gap: 1rem;
}
.search .container .input-wrapper {
  width: 0;
  max-width: 500px;
  position: relative;
  background: #F9F9F9;
  display: flex;
  flex-grow: 1;
  align-items: center;
  gap: 0rem;
  padding-right: 1rem;
  border-radius: 0.25rem;
  box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.1490196078);
}
.search .container .input-wrapper svg {
  min-width: 22px;
}
.search .container .input-wrapper input {
  border: none;
  outline: none;
  background: transparent;
  color: #664DC1;
  padding: 0.5rem 1rem;
  flex-grow: 1;
}
.search .container .input-wrapper input::-moz-placeholder {
  color: #D9D9D9;
}
.search .container .input-wrapper input::placeholder {
  color: #D9D9D9;
}
.search .container .input-wrapper .search-results {
  max-height: 300px;
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: #F9F9F9;
  box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.1490196078);
  border-radius: 0.25rem;
  z-index: 999;
  overflow-y: auto;
  list-style: none;
  padding: 0;
  margin: 0;
}
.search .container .input-wrapper .search-results .item {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: #664DC1;
  padding: 1rem;
  cursor: pointer;
}
.search .container .input-wrapper .search-results .item img {
  width: 40px;
}
.search .container .input-wrapper .search-results .item:hover {
  background: rgba(0, 0, 0, 0.0392156863);
}
.search .container button.category {
  max-width: 200px;
  background: #F9F9F9;
  padding: 0.5rem 1rem;
  border: none;
  border-radius: 0.25rem;
  box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.1490196078);
  color: #664DC1;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.search .container button.category span {
  display: inline-block;
  max-width: 90%;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.search .container button.category.dropdown-toggle::after {
  display: none;
}
.search .container button.category[aria-expanded=true] svg:last-child {
  transform: rotate(180deg);
}
.search .container .dropdown .category-menu {
  width: -moz-max-content;
  width: max-content;
  min-width: unset;
  background: #F9F9F9;
  border: none;
  box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.1490196078);
  border-radius: 0.25rem;
}
.search .container .dropdown .category-menu .dropdown-item {
  color: #664DC1;
  text-align: right;
}
.search .container .dropdown .category-menu .dropdown-item:hover {
  background: rgba(0, 0, 0, 0.0392156863);
}

.identity {
  min-height: 400px;
  background: #ffffff;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.identity .absolute-top, .identity .absolute-bottom {
  position: absolute;
}
.identity .absolute-top {
  top: 0;
  left: 0;
}
.identity .absolute-bottom {
  bottom: 0;
  right: 0;
}
.identity .content {
  text-align: center;
}
.identity .content .title {
  color: #664DC1;
  font-size: 48px;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
.identity .content .description {
  color: #2E2935;
  font-size: 26px;
  font-weight: bold;
}

.projects {
  padding: 6rem 0;
  background: #cefe5e;
}
.projects.portfolio {
  padding: 2rem 0;
  background: #FDF7E8;
}
.projects.more-projects {
  padding: 4rem 0;
  background: #ffffff;
}
.projects .title {
  color: #664DC1;
  font-size: 36px;
  font-weight: bold;
}
.projects .description {
  color: #2E2935;
  font-size: 24px;
  font-weight: bold;
}
.projects .head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.projects .head .right .title {
  color: #664DC1;
  font-size: 32px;
  font-weight: bold;
}
.projects .head .right .description {
  color: #2E2935;
  font-size: 24px;
  font-weight: bold;
}
.projects .head .left a {
  width: 50px;
  height: 50px;
  background: #2E2935;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
}
.projects .head .left a:hover {
  background: #ffffff;
  box-shadow: 0px 0px 30px 0px rgba(102, 77, 193, 0.5019607843);
}
.projects .head .left a:hover svg path {
  fill: #664DC1;
}
.projects .group {
  padding: 2rem 0;
  row-gap: 2rem;
}
.projects .group .img-card {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100%;
  display: inline-block;
}
.projects .group .img-card img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  filter: grayscale(100%);
  transition: 0.4s ease;
}
.projects .group .img-card .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0);
  -webkit-backdrop-filter: blur(0px);
          backdrop-filter: blur(0px);
  transition: 0.4s ease;
  pointer-events: none;
}
.projects .group .img-card .top-content {
  position: absolute;
  top: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  text-align: center;
  color: #fff;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.projects .group .img-card .top-content .date-time, .projects .group .img-card .top-content .category {
  font-size: 16px;
  gap: 0.35rem;
  direction: ltr;
}
.projects .group .img-card .top-content .date-time {
  display: flex;
  align-items: center;
}
.projects .group .img-card .top-content .category {
  background: #2E2935;
  display: flex;
  align-items: center;
  padding: 0.5rem 1rem;
  border-radius: 0.25rem;
  direction: rtl;
}
.projects .group .img-card .top-content .category .dot {
  width: 0.75rem;
  height: 0.75rem;
  background: #ffffff;
  border-radius: 50%;
}
.projects .group .img-card .bottom-content {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 20px;
  font-size: 24px;
  font-weight: bold;
  color: #ffffff;
  opacity: 0;
  transform: translateY(100%);
  transition: 0.4s ease;
  text-align: right;
}
.projects .group .img-card:hover img {
  filter: grayscale(0%);
}
.projects .group .img-card:hover .overlay {
  background: rgba(0, 0, 0, 0.4);
  -webkit-backdrop-filter: blur(1px);
          backdrop-filter: blur(1px);
}
.projects .group .img-card:hover .top-content {
  opacity: 1;
}
.projects .group .img-card:hover .bottom-content {
  opacity: 1;
  transform: translateY(0);
}

.about {
  background: linear-gradient(180deg, #FDF7E8 21.91%, #FFFFFF 48.69%);
  padding: 5rem 0;
}
.about .group {
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
}
.about .group .about-box {
  height: 500px;
  transition: all 0.5s ease-in-out;
}
.about .group .about-box .default, .about .group .about-box .expanded {
  height: 100%;
  position: relative;
  padding: 2rem;
}
.about .group .about-box .default {
  width: 200px;
  background: #664DC1;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 40px;
  font-weight: bold;
  color: #fdf7e8;
}
.about .group .about-box .default .absolute-top, .about .group .about-box .default .absolute-bottom {
  position: absolute;
  opacity: 0.05;
}
.about .group .about-box .default .absolute-top {
  top: 0;
  left: 0;
}
.about .group .about-box .default .absolute-bottom {
  bottom: 0;
  right: 0;
}
.about .group .about-box .expanded {
  background: #2E2935;
  display: none;
  flex-direction: column;
  gap: 1rem;
  color: #fdf7e8;
}
.about .group .about-box .expanded .icon {
  width: 48px;
  height: 48px;
  background: #cefe5e;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}
.about .group .about-box .expanded .title {
  font-size: 40px;
  font-weight: bold;
}
.about .group .about-box .expanded .content {
  max-width: 500px;
  font-size: 24px;
  font-weight: bold;
}
.about .group .about-box .expanded img {
  width: 65%;
  position: absolute;
  left: 0;
  bottom: 2rem;
}
.about .group .about-box:last-child .expanded img {
  width: 30%;
  left: 2rem;
}
.about .group .about-box:hover {
  flex-grow: 1;
}
.about .group .about-box:hover .default {
  display: none;
}
.about .group .about-box:hover .expanded {
  display: flex;
}
.about .group:not(:hover) .about-box:first-child {
  flex-grow: 1;
}
.about .group:not(:hover) .about-box:first-child .default {
  display: none;
}
.about .group:not(:hover) .about-box:first-child .expanded {
  display: flex;
}
.about .group:not(:hover) .about-box:not(:first-child) {
  flex-grow: 0;
}
.about .group:not(:hover) .about-box:not(:first-child) .default {
  display: flex;
}
.about .group:not(:hover) .about-box:not(:first-child) .expanded {
  display: none;
}
.about .group:hover .about-box:not(:hover) {
  flex-grow: 0;
}
.about .group:hover .about-box:not(:hover) .default {
  display: flex;
}
.about .group:hover .about-box:not(:hover) .expanded {
  display: none;
}

.services {
  position: relative;
  background: #ffffff;
  padding-top: 8rem;
  padding-bottom: 3rem;
}
.services .absolute-top, .services .absolute-bottom {
  position: absolute;
}
.services .absolute-top {
  top: 0;
  left: 3rem;
}
.services .absolute-bottom {
  bottom: 0;
  right: 1rem;
}
.services .row {
  row-gap: 2rem;
}
.services .row .title {
  color: #664DC1;
  font-size: 36px;
  font-weight: bold;
}
.services .row .description {
  color: #2E2935;
  font-size: 24px;
  font-weight: bold;
}
.services .row .group {
  display: flex;
  flex-direction: column;
  cursor: default;
  gap: 1rem;
}
.services .row .group .service-box {
  background: #664DC1;
  color: #fdf7e8;
  border-right: 6px solid #2E2935;
  display: flex;
  align-items: start;
  justify-content: space-between;
  font-size: 24px;
  font-weight: bold;
  padding: 2rem;
  transition: background 0.5s ease, border-color 0.5s ease;
  position: relative;
}
.services .row .group .service-box .details-wrapper {
  overflow: hidden;
  width: 100%;
}
.services .row .group .service-box .details {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1rem;
  transition: flex-direction 0.5s ease;
}
.services .row .group .service-box .content {
  width: 0;
  height: 0;
  opacity: 0;
  transform: translate(20px, 20px);
}
.services .row .group .service-box svg {
  opacity: 1;
  transition: opacity 0.5s ease;
  margin-top: 0.5rem;
}
.services .row .group .service-box:hover {
  background: #6462fe;
  border-color: transparent;
}
.services .row .group .service-box:hover .details {
  flex-direction: column;
  align-items: start;
}
.services .row .group .service-box:hover .content {
  width: auto;
  height: auto;
  opacity: 1;
  transform: translate(0, 0);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.services .row .group .service-box:hover svg {
  opacity: 0;
}

.why {
  min-height: 950px;
  padding: 6rem 0;
  position: relative;
  background: linear-gradient(180deg, #FFFFFF 0%, #FDF7E8 45.14%);
}
.why .title {
  color: #664DC1;
  font-size: 36px;
  font-weight: bold;
}
.why .description {
  position: relative;
  max-width: 80%;
  color: #2E2935;
  font-size: 24px;
  font-weight: bold;
  line-height: 2.5rem;
  z-index: 2;
}
.why .description li {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s ease, transform 1s ease;
}
.why .description li.show {
  opacity: 1;
  transform: translateY(0);
}
.why .why-bottom {
  width: 100%;
  max-width: 2000px;
  height: 750px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.approach {
  min-height: 800px;
  padding: 10rem 0;
  position: relative;
  background: #cefe5e;
}
.approach .absolute-top, .approach .absolute-bottom {
  position: absolute;
}
.approach .absolute-top {
  top: 0;
  right: 0;
}
.approach .absolute-bottom {
  bottom: 1rem;
  left: 0;
}
.approach .title {
  color: #664DC1;
  font-size: 36px;
  font-weight: bold;
}
.approach .description {
  color: #2E2935;
  font-size: 24px;
  font-weight: bold;
}
.approach.ab {
  min-height: 700px;
  background: #2E2935;
  padding-top: 4rem;
}
.approach.ab .title {
  color: #cefe5e;
}
.approach.ab .description {
  color: #fdf7e8;
}

.team {
  min-height: 800px;
  padding: 6rem 0;
  position: relative;
  background: #FDF7E8;
}
.team .absolute-top {
  position: absolute;
  top: 0;
  left: 0;
}
.team .title {
  color: #664DC1;
  font-size: 36px;
  font-weight: bold;
}
.team .description {
  color: #2E2935;
  font-size: 24px;
  font-weight: bold;
}
.team .team-bottom {
  width: 100%;
  max-width: 2000px;
  height: 750px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.clients {
  padding: 5rem 0;
  background: #FDF7E8;
}
.clients .title {
  color: #664DC1;
  font-size: 36px;
  font-weight: bold;
}
.clients .description {
  color: #2E2935;
  font-size: 24px;
  font-weight: bold;
}
.clients .group {
  display: flex;
  gap: 5rem;
  margin-top: 2rem;
  overflow: auto;
  padding: 2rem 0;
  scrollbar-color: #664DC1 #fdf7e8;
  scrollbar-width: thin;
}
.clients .group::-webkit-scrollbar {
  height: 8px;
}
.clients .group::-webkit-scrollbar-track {
  background: #fdf7e8;
  border-radius: 10px;
}
.clients .group::-webkit-scrollbar-thumb {
  background: #664DC1;
  border-radius: 10px;
}
.clients .group::-webkit-scrollbar-thumb:hover {
  background: #6462fe;
}
.clients .group img {
  max-height: 100px;
  transition: all 0.2s ease-in-out;
}
.clients .group img:hover {
  scale: 1.35;
}

.contact {
  min-height: 800px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100vh;
}
.contact video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  right: 0;
}
.contact .content {
  width: 100%;
  height: 100%;
  background: linear-gradient(269.94deg, rgba(29, 28, 31, 0.75) 0.05%, rgba(0, 0, 0, 0) 99.94%);
  position: absolute;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.contact .content .row {
  row-gap: 2rem;
}
.contact .content .row .title, .contact .content .row .description {
  color: #fdf7e8;
  font-weight: bold;
}
.contact .content .row .title {
  font-size: 48px;
}
.contact .content .row .description {
  font-size: 24px;
}
.contact .content .row form {
  background: #2E2935;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 2rem;
}
.contact .content .row form .form-group .form-label {
  color: #fdf7e8;
  font-size: 22px;
  font-weight: bold;
  padding-bottom: 0.5rem;
}
.contact .content .row form .form-group .form-control {
  border-radius: unset;
}
.contact .content .row form .form-group .form-control:focus {
  outline: none;
  box-shadow: none;
}
.contact .content .row form .form-group input.form-control {
  min-height: 56px;
}
.contact .content .row form .form-group textarea.form-control {
  min-height: 130px;
  resize: none;
}
.contact .content .row form .submit {
  width: 100%;
  background: #664DC1;
  color: #fdf7e8;
  padding: 0.5rem 2.5rem;
  font-size: 20px;
  font-weight: bold;
  position: relative;
  overflow: hidden;
  border: none;
  z-index: 0;
  transition: color 0.4s ease-in-out;
}
.contact .content .row form .submit::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #cefe5e;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.4s ease-in-out;
  z-index: -1;
}
.contact .content .row form .submit:hover::before {
  transform: scaleX(1);
}
.contact .content .row form .submit:hover {
  color: #2E2935;
}

.project-page .header {
  padding-top: 12rem;
  padding-bottom: 5rem;
}
.project-page .header .tags {
  display: flex;
  justify-content: center;
  gap: 1rem;
  row-gap: 1rem;
  flex-wrap: wrap;
  padding: 2rem 0;
}
.project-page .header .tags .tag {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  border: thin solid #664DC1;
  padding: 0.5rem;
  font-size: 14px;
  border-radius: 0.25rem;
  color: #664DC1;
}
.project-page .header .tags .tag .dot {
  width: 0.6rem;
  height: 0.6rem;
  background: #664DC1;
  border-radius: 50%;
}
.project-page .header .title {
  font-size: 96px;
  font-weight: bold;
  color: #664DC1;
  text-align: center;
}
.project-page .header .overview {
  padding-top: 5rem;
  row-gap: 1rem;
}
.project-page .header .overview .item {
  height: 100%;
  background: #F9F9F9;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  border-radius: 0.25rem;
}
.project-page .header .overview .item .name {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.project-page .header .overview .item .name span {
  font-size: 32px;
  font-weight: bold;
}
.project-page .header .overview .item .value {
  direction: ltr;
  text-align: right;
  font-size: 24px;
}
.project-page .service {
  background: #664DC1;
  padding: 5rem 0;
}
.project-page .service .row {
  align-items: center;
  row-gap: 2rem;
}
.project-page .service .title {
  color: #cefe5e;
  font-size: 32px;
  font-weight: bold;
}
.project-page .service .description {
  color: #ffffff;
  font-size: 20px;
  font-weight: bold;
}
.project-page .shots {
  padding: 5rem 0;
}
.project-page .shots .head-title, .project-page .shots .title {
  font-size: 32px;
  font-weight: bold;
}
.project-page .shots .head-title {
  color: #664DC1;
}
.project-page .shots .tabs {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem 0;
  gap: 5rem;
}
.project-page .shots .tabs .tab {
  min-height: 60px;
  color: #D9D9D9;
  font-size: 32px;
  font-weight: bold;
  padding-bottom: 0.2rem;
  cursor: pointer;
  transition: all 0.1s ease-in-out;
}
.project-page .shots .tabs .tab.active, .project-page .shots .tabs .tab:hover {
  color: #664DC1;
  border-bottom: thin solid #664DC1;
}
.project-page .shots .group {
  padding: 2rem 0;
  row-gap: 2rem;
}
.project-page .shots .group img {
  width: 100%;
  height: 100%;
  max-height: 500px;
  -o-object-fit: cover;
     object-fit: cover;
}

.modal .modal-content {
  border-radius: 0.5rem;
}
.modal .modal-content .btn-close {
  background: none;
  width: 0.5rem;
  height: 0.5rem;
  border: 2px solid #2E2935;
  opacity: 1;
  border-radius: 0.35rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 1rem;
  right: auto;
  top: 1.25rem;
}
.modal .modal-content .btn-close::before {
  content: "×";
  color: #2E2935;
  font-size: 20px;
  font-weight: bold;
}
.modal .modal-content .btn-close:hover {
  background: #2E2935;
}
.modal .modal-content .btn-close:hover::before {
  color: #ffffff;
}
.modal .modal-content .btn-close:focus {
  box-shadow: none !important;
  outline: none !important;
}
.modal .modal-content p {
  font-size: 22px;
}

.swiper-pagination-bullet {
  width: 24px;
  height: 10px;
  border-radius: 0.5rem;
  background: #7a7a7a;
  margin: 0 0.3rem !important;
  transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
  background: #664DC1;
}

@media (max-width: 768px) {
  .splash-logo {
    width: 100px;
    height: 100px;
  }
  .splash-spinner {
    width: 126px;
    height: 126px;
  }
  .splash-text {
    font-size: clamp(1.2rem, 3vw, 1.8rem);
  }
}
@media screen and (max-width: 379.99px) {
  .page-header {
    padding-bottom: 1rem !important;
  }
  .page-header .title {
    font-size: 30px !important;
  }
  .page-header .description {
    font-size: 16px !important;
  }
  .projects {
    padding: 1rem 0 !important;
  }
  .projects .head .right .title {
    font-size: 22px !important;
  }
  .projects .head .right .description {
    font-size: 14px !important;
  }
  .projects .head .left a {
    width: 40px;
    height: 40px;
  }
  .projects .head .left a svg {
    width: 15px;
    height: 15px;
  }
  .projects .group .img-card .top-content .date-time, .projects .group .img-card .top-content .category {
    font-size: 14px !important;
  }
  .projects .group .img-card .top-content .category .dot {
    width: 0.5rem !important;
    height: 0.5rem !important;
  }
  .projects .group .img-card .bottom-content {
    font-size: 22px !important;
  }
  .projects .title {
    font-size: 22px !important;
  }
  .projects .description {
    font-size: 14px !important;
  }
  .hero .content .description {
    font-size: 18px !important;
  }
  .about-tabs .tabs {
    gap: 2rem !important;
  }
  .about-tabs .tabs .tab {
    font-size: 18px !important;
  }
  .about-tabs .details {
    min-height: 450px !important;
  }
  .about-tabs .details .content {
    font-size: 16px !important;
  }
  .about-tabs .details img {
    min-height: 200px !important;
  }
  .search .container {
    flex-direction: column;
  }
  .search .container .input-wrapper {
    width: 100%;
    font-size: 16px;
  }
  .search .container button.category {
    width: 100%;
    max-width: unset;
    justify-content: space-between;
    font-size: 16px;
  }
  .search .container .dropdown .category-menu {
    font-size: 16px;
    width: 100%;
  }
  .identity {
    min-height: 450px !important;
  }
  .identity .content .title {
    font-size: 26px !important;
  }
  .identity .content .description {
    font-size: 16px !important;
  }
  .about {
    padding: 2rem 0 !important;
  }
  .about .group .about-box {
    height: 350px !important;
  }
  .about .group .about-box .expanded {
    padding-top: 3rem !important;
  }
  .about .group .about-box .expanded .title {
    font-size: 22px !important;
  }
  .about .group .about-box .expanded .content {
    font-size: 14px !important;
  }
  .services .row .title {
    font-size: 22px !important;
  }
  .services .row .description {
    font-size: 14px !important;
  }
  .services .row .group .service-box {
    font-size: 14px !important;
  }
  .why {
    min-height: 750px !important;
  }
  .why .title {
    font-size: 22px !important;
  }
  .why .description {
    max-width: 100% !important;
    font-size: 14px !important;
    line-height: 1.8rem !important;
  }
  .approach {
    min-height: 550px !important;
  }
  .approach .title {
    font-size: 22px !important;
  }
  .approach .description {
    font-size: 14px !important;
  }
  .approach.ab {
    min-height: 400px !important;
  }
  .team .title {
    font-size: 22px !important;
  }
  .team .description {
    font-size: 14px !important;
  }
  .clients .title {
    font-size: 22px !important;
  }
  .clients .description {
    font-size: 14px !important;
  }
  .contact {
    min-height: 900px !important;
  }
  .contact .content .row .title {
    font-size: 22px !important;
  }
  .contact .content .row .description {
    font-size: 14px !important;
  }
  .contact .content .row form .form-group .form-label {
    font-size: 14px !important;
  }
  .contact .content .row form .submit {
    font-size: 16px;
  }
  .project-page .header .title {
    font-size: 40px !important;
  }
  .project-page .header .overview .item svg {
    width: 28px !important;
    height: 28px !important;
  }
  .project-page .header .overview .item .name span {
    font-size: 18px !important;
  }
  .project-page .header .overview .item .value {
    font-size: 14px !important;
  }
  .project-page .service .title {
    font-size: 18px !important;
  }
  .project-page .service .description {
    font-size: 14px !important;
  }
  .project-page .shots .head-title, .project-page .shots .title {
    font-size: 22px !important;
  }
  .project-page .shots .tabs {
    gap: 2rem !important;
  }
  .project-page .shots .tabs .tab {
    font-size: 18px !important;
  }
  .project-page .shots .group {
    padding: 1rem 0 !important;
    row-gap: 1rem !important;
  }
  .modal .modal-content p {
    font-size: 16px;
  }
  .floating-button {
    width: 70px;
    height: 70px;
    right: 1rem;
    bottom: 1rem;
  }
}
@media screen and (max-width: 992px) {
  nav .nav-content {
    width: 100%;
    justify-content: space-between;
  }
  nav .nav-content .nav-links, nav .nav-content .actions {
    display: none;
  }
  nav .nav-content .menu {
    display: block;
  }
  .hero .content img {
    width: 200px;
  }
  .about-tabs .tabs {
    gap: 3rem;
  }
  .about-tabs .tabs .tab {
    min-height: 40px;
    font-size: 20px;
  }
  .about-tabs .details {
    min-height: 550px;
  }
  .about-tabs .details .content {
    font-size: 20px;
  }
  .about-tabs .details img {
    min-height: 300px;
  }
  .page-header {
    padding-bottom: 2rem;
  }
  .page-header .title {
    font-size: 36px;
  }
  .page-header .description {
    color: #2E2935;
    font-size: 20px;
  }
  .identity {
    min-height: 500px;
  }
  .identity .content .title {
    font-size: 36px;
  }
  .identity .content .description {
    font-size: 20px;
  }
  .projects {
    padding: 5rem 0;
  }
  .projects.more-projects {
    padding: 2rem 0;
  }
  .projects .head {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
  .projects .head .right .title {
    font-size: 30px;
  }
  .projects .head .right .description {
    font-size: 20px;
  }
  .projects .title {
    font-size: 30px;
  }
  .projects .description {
    font-size: 20px;
  }
  .about {
    padding: 3rem 0;
  }
  .about .group {
    flex-direction: column;
    gap: 2rem;
  }
  .about .group .about-box {
    width: 100%;
    flex-grow: 1 !important;
  }
  .about .group .about-box .default {
    display: none !important;
  }
  .about .group .about-box .expanded {
    display: flex !important;
    padding-top: 4rem;
  }
  .about .group .about-box .expanded .title {
    font-size: 30px;
  }
  .about .group .about-box .expanded .content {
    font-size: 20px;
  }
  .about .group .about-box .expanded img {
    width: 50%;
    bottom: 1rem;
  }
  .about .group .about-box:last-child .expanded img {
    width: 25%;
    left: 1rem;
  }
  .services {
    padding-top: 7rem;
    padding-bottom: 1rem;
  }
  .services .absolute-top {
    top: 0;
    left: 1rem;
  }
  .services .absolute-bottom {
    display: none;
  }
  .services .row .title {
    font-size: 30px;
  }
  .services .row .description {
    font-size: 20px;
  }
  .services .row .group .service-box {
    font-size: 20px;
  }
  .why {
    min-height: 900px;
    padding: 4rem 0;
  }
  .why .title {
    font-size: 30px;
  }
  .why .description {
    max-width: 95%;
    font-size: 20px;
    line-height: 2rem;
  }
  .why .why-bottom {
    height: 500px;
  }
  .approach {
    min-height: 650px;
    padding-top: 11rem;
  }
  .approach .absolute-bottom {
    width: 100%;
    max-width: 550px;
  }
  .approach .title {
    font-size: 30px;
  }
  .approach .description {
    font-size: 20px;
  }
  .approach.ab {
    min-height: 500px;
    padding-top: 2rem;
  }
  .team {
    min-height: 700px;
    padding-top: 8rem;
  }
  .team .title {
    font-size: 30px;
  }
  .team .description {
    font-size: 20px;
  }
  .team .team-bottom {
    height: 550px;
  }
  .clients .title {
    font-size: 30px;
  }
  .clients .description {
    font-size: 20px;
  }
  .clients .group {
    gap: 2rem;
  }
  .clients .group img {
    max-height: 50px;
  }
  .contact {
    min-height: 950px;
  }
  .contact .content .row .title {
    font-size: 30px;
  }
  .contact .content .row .description {
    font-size: 20px;
  }
  .contact .content .row form .form-group .form-label {
    font-size: 20px;
  }
  .contact .content .row form input.form-control {
    min-height: 40px !important;
  }
  .project-page .header {
    padding-top: 8rem;
    padding-bottom: 3rem;
  }
  .project-page .header .title {
    font-size: 50px;
  }
  .project-page .header .overview {
    padding-top: 3rem;
  }
  .project-page .header .overview .item .name span {
    font-size: 30px;
  }
  .project-page .header .overview .item .value {
    font-size: 20px;
  }
  .project-page .service {
    padding: 3rem 0;
  }
  .project-page .service .title {
    font-size: 30px;
  }
  .project-page .service .description {
    font-size: 20px;
  }
  .project-page .shots {
    padding: 3rem 0;
  }
  .project-page .shots .head-title, .project-page .shots .title {
    font-size: 30px;
  }
  .project-page .shots .tabs {
    gap: 3rem;
  }
  .project-page .shots .tabs .tab {
    min-height: 40px;
    font-size: 20px;
  }
  .marketly-button {
    font-size: 16px;
  }
  footer .footer-top {
    height: 300px;
  }
  footer .footer-content .row .group .title {
    font-size: 20px;
  }
  footer .footer-content .row .group .item {
    font-size: 16px;
  }
}
html.en nav .nav-content .nav-links {
  padding-right: unset;
  padding-left: 5rem;
}
html.en nav .nav-content .actions .dropdown .lang-menu .dropdown-item {
  justify-content: flex-start;
}
html.en aside {
  right: unset;
  left: 0;
}
html.en aside .dropdown .lang-menu .dropdown-item {
  justify-content: flex-start;
}
html.en footer .footer-top {
  transform: scaleX(-1);
}
html.en .about-tabs .tabs .tab {
  font-size: 24px;
}
html.en .about-tabs .details img {
  transform: scaleX(-1);
}
html.en .search .container .input-wrapper svg {
  margin-left: 1rem;
  transform: scaleX(-1);
}
html.en .search .container .dropdown .category-menu .dropdown-item {
  text-align: left;
}
html.en .projects .head .left a svg {
  transform: scaleX(-1);
}
html.en .projects .group .top-content .category {
  direction: ltr;
}
html.en .projects .group .bottom-content {
  text-align: left;
}
html.en .about .group .about-box .expanded img {
  transform: scaleX(-1);
  left: unset;
  right: 0;
}
html.en .about .group .about-box:last-child .expanded img {
  left: unset;
  right: 2rem;
}
html.en .services .absolute-top {
  left: unset;
  right: 3rem;
}
html.en .services .absolute-bottom {
  right: unset;
  left: 1rem;
}
html.en .services .row .group .service-box svg {
  transform: scaleX(-1);
}
html.en .why .why-bottom {
  transform: translateX(-50%) scaleX(-1);
}
html.en .approach .absolute-top {
  right: unset;
  left: 0;
  transform: scaleX(-1);
}
html.en .approach .absolute-bottom {
  left: unset;
  right: 0;
}
html.en .team .absolute-top {
  left: unset;
  right: 0;
  transform: scaleX(-1);
}
html.en .project-page .header .overview .value {
  text-align: left;
}/*# sourceMappingURL=app.css.map */