header {
  position: relative;
  z-index: 10; }
  header .header-wrp {
    position: relative; }
    header .header-wrp .image {
      margin: 20px;
      border-radius: 32px;
      overflow: hidden;
      position: relative; }
      header .header-wrp .image img {
        display: block;
        width: 100%;
        height: auto;
        border-radius: 16px;
        object-fit: cover; }
        @media only screen and (max-width: 1200px) {
          header .header-wrp .image img {
            height: 794px; } }
      header .header-wrp .image::after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 40%;
        background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
        pointer-events: none; }
    header .header-wrp__nav {
      position: absolute;
      z-index: 99999;
      top: 20px;
      left: 8%;
      right: 8%;
      overflow: visible;
      display: grid;
      grid-template-columns: 1fr auto 1fr;
      align-items: center;
      padding: 4px 30px; }
      header .header-wrp__nav::before {
        content: "";
        position: absolute;
        inset: 0;
        background: rgba(255, 255, 255, 0.15);
        border: 1px solid rgba(255, 255, 255, 0.3);
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
        z-index: -1;
        border-radius: 40px; }
      @media only screen and (max-width: 1300px) {
        header .header-wrp__nav {
          padding: 4px 16px; } }
      @media only screen and (max-width: 900px) {
        header .header-wrp__nav {
          display: flex;
          flex-direction: row;
          justify-content: space-between;
          align-items: center;
          flex-wrap: nowrap;
          padding: 4px 15px; } }
      header .header-wrp__nav nav {
        justify-self: start; }
        header .header-wrp__nav nav ul {
          display: flex;
          flex-direction: row;
          justify-content: flex-start;
          align-items: stretch;
          flex-wrap: nowrap;
          gap: 32px; }
          @media only screen and (max-width: 1300px) {
            header .header-wrp__nav nav ul {
              gap: 16px; } }
          header .header-wrp__nav nav ul li a {
            color: white;
            text-decoration: none;
            font-size: 16px;
            font-weight: 500;
            white-space: nowrap; }
            @media only screen and (max-width: 1300px) {
              header .header-wrp__nav nav ul li a {
                font-size: 14px; } }
            header .header-wrp__nav nav ul li a:hover {
              color: #3d4957; }
        @media only screen and (max-width: 900px) {
          header .header-wrp__nav nav {
            display: none; } }
      header .header-wrp__nav .logo {
        justify-self: center;
        font-size: 24px;
        font-weight: bold;
        color: white; }
        header .header-wrp__nav .logo svg {
          width: 105px;
          height: auto; }
          @media only screen and (max-width: 1300px) {
            header .header-wrp__nav .logo svg {
              width: 72px; } }
      header .header-wrp__nav .language-switcher {
        display: flex;
        flex-direction: row;
        justify-content: end;
        align-items: center;
        flex-wrap: nowrap;
        position: relative;
        gap: 6px; }
        @media only screen and (max-width: 900px) {
          header .header-wrp__nav .language-switcher {
            display: none; } }
        header .header-wrp__nav .language-switcher__icon {
          cursor: pointer;
          display: flex;
          flex-direction: row;
          justify-content: center;
          align-items: center;
          flex-wrap: nowrap;
          gap: 6px; }
        header .header-wrp__nav .language-switcher span {
          color: white;
          font-size: 16px;
          font-weight: 300; }
        header .header-wrp__nav .language-switcher .language-dropdown {
          position: absolute;
          top: 100%;
          right: 0;
          margin-top: 18px;
          padding: 12px 16px;
          display: none;
          background: rgba(255, 255, 255, 0.15);
          backdrop-filter: blur(10px);
          -webkit-backdrop-filter: blur(10px);
          border-radius: 0 0 40px 40px;
          border: 1px solid rgba(255, 255, 255, 0.3);
          flex-direction: column;
          gap: 10px;
          z-index: 9999;
          overflow: hidden; }
          header .header-wrp__nav .language-switcher .language-dropdown::before {
            content: "";
            position: absolute;
            inset: 0;
            background: rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.3);
            z-index: -1; }
          header .header-wrp__nav .language-switcher .language-dropdown .lang-option {
            display: flex;
            flex-direction: row;
            justify-content: center;
            align-items: center;
            flex-wrap: nowrap;
            gap: 8px;
            cursor: pointer; }
            header .header-wrp__nav .language-switcher .language-dropdown .lang-option img {
              width: 24px;
              height: 24px;
              border-radius: 50%; }
            header .header-wrp__nav .language-switcher .language-dropdown .lang-option span {
              color: white;
              font-size: 16px;
              font-weight: 300; }
            header .header-wrp__nav .language-switcher .language-dropdown .lang-option:hover {
              opacity: 0.8; }
        header .header-wrp__nav .language-switcher.open .language-dropdown {
          display: flex;
          flex-direction: column;
          justify-content: flex-start;
          align-items: stretch;
          flex-wrap: nowrap;
          animation: fadeIn 0.3s ease; }

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px); }
  to {
    opacity: 1;
    transform: translateY(0); } }
    header .header-wrp__content {
      position: absolute;
      top: 20%;
      left: 8%;
      right: 8%;
      z-index: 2; }
      header .header-wrp__content h1 {
        font-size: 60px;
        line-height: 70px;
        font-weight: 600;
        color: white; }
        @media only screen and (max-width: 1300px) {
          header .header-wrp__content h1 {
            font-size: 40px;
            line-height: 40px; } }
      header .header-wrp__content p {
        margin-top: 40px;
        font-size: 18px;
        line-height: 24px;
        font-weight: 500;
        color: white;
        width: 40%; }
        @media only screen and (max-width: 1300px) {
          header .header-wrp__content p {
            font-size: 16px;
            line-height: auto;
            width: 60%; } }
        @media only screen and (max-width: 900px) {
          header .header-wrp__content p {
            width: 80%;
            font-size: 14px; } }
    header .header-wrp__explore {
      display: flex;
      flex-direction: row;
      justify-content: space-between;
      align-items: center;
      flex-wrap: nowrap;
      position: absolute;
      bottom: 8%;
      left: 8%;
      right: 8%;
      z-index: 2;
      color: white; }
      @media only screen and (max-width: 900px) {
        header .header-wrp__explore {
          display: flex;
          flex-direction: row;
          justify-content: flex-end;
          align-items: center;
          flex-wrap: nowrap; } }
      header .header-wrp__explore__left {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        flex-wrap: nowrap;
        gap: 10px;
        cursor: pointer; }
        header .header-wrp__explore__left .circle {
          width: 70px;
          height: 70px;
          border: 1px solid;
          border-radius: 100px;
          background: rgba(255, 255, 255, 0.15);
          backdrop-filter: blur(10px);
          -webkit-backdrop-filter: blur(10px);
          border: 1px solid rgba(255, 255, 255, 0.3); }
        header .header-wrp__explore__left p {
          font-weight: 200; }
        @media only screen and (max-width: 900px) {
          header .header-wrp__explore__left {
            display: none; } }
      header .header-wrp__explore__right p {
        font-weight: 200;
        text-align: right; }
        @media only screen and (max-width: 900px) {
          header .header-wrp__explore__right p {
            font-size: 14px; } }
  header .header-wrp-other__nav {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    margin: 40px 8%;
    border: 1px solid #d4d6d9;
    border-radius: 40px;
    padding: 4px 30px; }
    @media only screen and (max-width: 1300px) {
      header .header-wrp-other__nav {
        margin: 40px 6%;
        padding: 4px 16px; } }
    @media only screen and (max-width: 900px) {
      header .header-wrp-other__nav {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        flex-wrap: nowrap;
        margin: 40px 16px;
        padding: 4px 15px; } }
    header .header-wrp-other__nav nav ul {
      display: flex;
      flex-direction: row;
      justify-content: flex-start;
      align-items: stretch;
      flex-wrap: nowrap;
      gap: 32px; }
      @media only screen and (max-width: 1300px) {
        header .header-wrp-other__nav nav ul {
          gap: 16px; } }
      header .header-wrp-other__nav nav ul li a {
        color: #3d4957;
        text-decoration: none;
        font-size: 16px;
        font-weight: 500;
        white-space: nowrap; }
        @media only screen and (max-width: 1300px) {
          header .header-wrp-other__nav nav ul li a {
            font-size: 14px; } }
        header .header-wrp-other__nav nav ul li a:hover {
          color: #7d8691; }
    @media only screen and (max-width: 900px) {
      header .header-wrp-other__nav nav {
        display: none; } }
    header .header-wrp-other__nav .logo {
      font-size: 24px;
      font-weight: bold;
      color: #3d4957; }
      header .header-wrp-other__nav .logo svg {
        width: 105px;
        height: auto; }
        @media only screen and (max-width: 1300px) {
          header .header-wrp-other__nav .logo svg {
            width: 72px; } }
    header .header-wrp-other__nav .language-switcher {
      display: flex;
      flex-direction: row;
      justify-content: end;
      align-items: center;
      flex-wrap: nowrap;
      position: relative;
      gap: 6px; }
      @media only screen and (max-width: 900px) {
        header .header-wrp-other__nav .language-switcher {
          display: none; } }
      header .header-wrp-other__nav .language-switcher__icon {
        cursor: pointer;
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        flex-wrap: nowrap;
        gap: 6px; }
      header .header-wrp-other__nav .language-switcher span {
        font-size: 16px;
        font-weight: 300; }
      header .header-wrp-other__nav .language-switcher .language-dropdown {
        position: absolute;
        top: 100%;
        right: 0;
        margin-top: 18px;
        padding: 12px 16px;
        display: none;
        background: rgba(255, 255, 255, 0.15);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        border-radius: 0 0 40px 40px;
        border: 1px solid rgba(162, 162, 162, 0.3);
        flex-direction: column;
        gap: 10px;
        z-index: 100;
        overflow: hidden; }
        header .header-wrp-other__nav .language-switcher .language-dropdown::before {
          content: "";
          position: absolute;
          inset: 0;
          background: rgba(255, 255, 255, 0.15);
          backdrop-filter: blur(10px);
          -webkit-backdrop-filter: blur(10px);
          border: 1px solid rgba(162, 162, 162, 0.3);
          z-index: -1; }
        header .header-wrp-other__nav .language-switcher .language-dropdown .lang-option {
          display: flex;
          flex-direction: row;
          justify-content: center;
          align-items: center;
          flex-wrap: nowrap;
          gap: 8px;
          cursor: pointer; }
          header .header-wrp-other__nav .language-switcher .language-dropdown .lang-option img {
            width: 24px;
            height: 24px;
            border-radius: 50%; }
          header .header-wrp-other__nav .language-switcher .language-dropdown .lang-option span {
            font-size: 16px;
            font-weight: 300; }
          header .header-wrp-other__nav .language-switcher .language-dropdown .lang-option:hover {
            opacity: 0.8; }
      header .header-wrp-other__nav .language-switcher.open .language-dropdown {
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: stretch;
        flex-wrap: nowrap;
        animation: fadeIn 0.3s ease; }

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px); }
  to {
    opacity: 1;
    transform: translateY(0); } }
  header .header-wrp-other__content {
    position: absolute;
    top: 20%;
    left: 8%;
    right: 8%;
    z-index: 2; }
    header .header-wrp-other__content h1 {
      font-size: 60px;
      line-height: 70px;
      font-weight: 600;
      color: #3d4957; }
    header .header-wrp-other__content p {
      margin-top: 40px;
      font-size: 18px;
      line-height: 24px;
      font-weight: 500;
      color: #3d4957;
      width: 35%; }
  header .header-wrp-other__explore {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
    position: absolute;
    bottom: 8%;
    left: 8%;
    right: 8%;
    z-index: 2;
    color: #3d4957; }
    header .header-wrp-other__explore p {
      font-weight: 300; }
    header .header-wrp-other__explore__left {
      display: flex;
      flex-direction: row;
      justify-content: space-between;
      align-items: center;
      flex-wrap: nowrap;
      gap: 10px;
      cursor: pointer; }
      header .header-wrp-other__explore__left .circle {
        width: 70px;
        height: 70px;
        border: 1px solid;
        border-radius: 100px;
        background: rgba(255, 255, 255, 0.15);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.3); }
    header .header-wrp-other__explore__right p {
      text-align: right; }
  header .portfolio-header-wrp {
    background: url("../../assets/images/portfolio-bg.png") no-repeat;
    background-size: contain;
    padding-top: 40px; }
    header .portfolio-header-wrp__nav {
      position: relative;
      display: grid;
      grid-template-columns: 1fr auto 1fr;
      align-items: center;
      margin: 0 8%;
      border: 1px solid #d4d6d9;
      border-radius: 40px;
      padding: 4px 30px;
      margin-bottom: 40px;
      overflow: visible;
      z-index: 999999; }
      header .portfolio-header-wrp__nav::before {
        content: "";
        position: absolute;
        inset: 0;
        background: rgba(255, 255, 255, 0.15);
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
        border-radius: 40px;
        z-index: -1; }
      @media only screen and (max-width: 1300px) {
        header .portfolio-header-wrp__nav {
          margin: 0 6%;
          padding: 4px 16px; } }
      @media only screen and (max-width: 900px) {
        header .portfolio-header-wrp__nav {
          display: flex;
          flex-direction: row;
          justify-content: space-between;
          align-items: center;
          flex-wrap: nowrap;
          margin: 0 16px;
          padding: 4px 15px; } }
      @media only screen and (max-width: 900px) {
        header .portfolio-header-wrp__nav {
          display: flex;
          flex-direction: row;
          justify-content: space-between;
          align-items: center;
          flex-wrap: nowrap; } }
      header .portfolio-header-wrp__nav .main-nav ul {
        display: flex;
        flex-direction: row;
        justify-content: flex-start;
        align-items: stretch;
        flex-wrap: nowrap;
        gap: 32px; }
        @media only screen and (max-width: 1300px) {
          header .portfolio-header-wrp__nav .main-nav ul {
            gap: 16px; } }
        header .portfolio-header-wrp__nav .main-nav ul li a {
          color: white;
          text-decoration: none;
          font-size: 16px;
          font-weight: 500;
          white-space: nowrap; }
          @media only screen and (max-width: 1300px) {
            header .portfolio-header-wrp__nav .main-nav ul li a {
              font-size: 14px; } }
          header .portfolio-header-wrp__nav .main-nav ul li a:hover {
            color: #3d4957; }
      @media only screen and (max-width: 900px) {
        header .portfolio-header-wrp__nav .main-nav {
          display: none; } }
      header .portfolio-header-wrp__nav .logo {
        font-size: 24px;
        font-weight: bold;
        color: white; }
        header .portfolio-header-wrp__nav .logo svg {
          width: 105px;
          height: auto; }
          @media only screen and (max-width: 1300px) {
            header .portfolio-header-wrp__nav .logo svg {
              width: 72px; } }
      header .portfolio-header-wrp__nav .language-switcher {
        display: flex;
        flex-direction: row;
        justify-content: end;
        align-items: center;
        flex-wrap: nowrap;
        position: relative;
        gap: 6px; }
        @media only screen and (max-width: 900px) {
          header .portfolio-header-wrp__nav .language-switcher {
            display: none; } }
        header .portfolio-header-wrp__nav .language-switcher__icon {
          cursor: pointer;
          display: flex;
          flex-direction: row;
          justify-content: center;
          align-items: center;
          flex-wrap: nowrap;
          gap: 6px; }
        header .portfolio-header-wrp__nav .language-switcher span {
          color: white;
          font-size: 16px;
          font-weight: 300; }
        header .portfolio-header-wrp__nav .language-switcher .language-dropdown {
          position: absolute;
          top: 100%;
          right: 0;
          margin-top: 18px;
          padding: 12px 16px;
          display: none;
          background: rgba(255, 255, 255, 0.15);
          backdrop-filter: blur(10px);
          -webkit-backdrop-filter: blur(10px);
          border-radius: 0 0 40px 40px;
          border: 1px solid rgba(255, 255, 255, 0.3);
          flex-direction: column;
          gap: 10px;
          z-index: 100;
          overflow: hidden; }
          header .portfolio-header-wrp__nav .language-switcher .language-dropdown::before {
            content: "";
            position: absolute;
            inset: 0;
            background: rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.3);
            z-index: -1; }
          header .portfolio-header-wrp__nav .language-switcher .language-dropdown .lang-option {
            display: flex;
            flex-direction: row;
            justify-content: center;
            align-items: center;
            flex-wrap: nowrap;
            gap: 8px;
            cursor: pointer; }
            header .portfolio-header-wrp__nav .language-switcher .language-dropdown .lang-option img {
              width: 24px;
              height: 24px;
              border-radius: 50%; }
            header .portfolio-header-wrp__nav .language-switcher .language-dropdown .lang-option span {
              color: white;
              font-size: 16px;
              font-weight: 300; }
            header .portfolio-header-wrp__nav .language-switcher .language-dropdown .lang-option:hover {
              opacity: 0.8; }
        header .portfolio-header-wrp__nav .language-switcher.open .language-dropdown {
          display: flex;
          flex-direction: column;
          justify-content: flex-start;
          align-items: stretch;
          flex-wrap: nowrap;
          animation: fadeIn 0.3s ease; }

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px); }
  to {
    opacity: 1;
    transform: translateY(0); } }

.contact-wrp {
  margin: 20px;
  border-radius: 32px;
  margin-top: 100px;
  padding: 5% 5% 1%;
  background-color: #f2f3f4;
  position: relative;
  overflow: hidden; }
  @media only screen and (max-width: 768px) {
    .contact-wrp {
      padding: 20% 5%;
      margin-top: 50px;
      margin-right: 0;
      margin-left: 0; } }
  .contact-wrp__left p {
    font-size: 24px;
    margin-bottom: 16px; }
    @media only screen and (max-width: 768px) {
      .contact-wrp__left p {
        font-size: 18px; } }
  .contact-wrp__left span {
    font-size: 18px;
    font-weight: 300; }
    @media only screen and (max-width: 768px) {
      .contact-wrp__left span {
        display: none; } }
  .contact-wrp__left__logo {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap; }
    @media only screen and (max-width: 768px) {
      .contact-wrp__left__logo {
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: stretch;
        flex-wrap: nowrap; } }
    @media only screen and (max-width: 768px) {
      .contact-wrp__left__logo span {
        display: none; } }
  .contact-wrp__left > div:last-child {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
    padding-bottom: 300px;
    gap: 8px; }
    @media only screen and (max-width: 768px) {
      .contact-wrp__left > div:last-child {
        display: block; } }
    .contact-wrp__left > div:last-child h1 {
      color: #b8573b;
      font-size: 56px;
      font-weight: 700;
      text-transform: uppercase;
      white-space: nowrap; }
      @media only screen and (max-width: 768px) {
        .contact-wrp__left > div:last-child h1 {
          margin-top: 24px;
          font-size: 40px; } }
    .contact-wrp__left > div:last-child .contact-wrp__line {
      flex: 1;
      height: 0.5px;
      background-color: #7d8691; }
      @media only screen and (max-width: 768px) {
        .contact-wrp__left > div:last-child .contact-wrp__line {
          display: none; } }
    .contact-wrp__left > div:last-child .contact-name {
      display: none; }
      @media only screen and (max-width: 768px) {
        .contact-wrp__left > div:last-child .contact-name {
          display: block;
          font-weight: 200; } }
    .contact-wrp__left > div:last-child span {
      margin-top: 24px;
      margin-bottom: 40px;
      font-weight: 500; }
  .contact-wrp__bottom {
    position: absolute;
    bottom: 16px;
    left: 0;
    right: 0;
    z-index: 10;
    transition: all 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform-origin: bottom; }
    @media only screen and (max-width: 768px) {
      .contact-wrp__bottom {
        transform: translateY(100%);
        opacity: 0; } }
    .contact-wrp__bottom footer {
      display: flex;
      flex-direction: row;
      justify-content: space-between;
      align-items: center;
      flex-wrap: nowrap;
      margin: 200px auto 0;
      background-color: white;
      padding: 10px 60px;
      border-radius: 24px;
      max-width: 900px;
      width: 100%;
      transition: all 1s ease; }
      @media only screen and (max-width: 768px) {
        .contact-wrp__bottom footer {
          display: none; } }
      .contact-wrp__bottom footer p {
        font-weight: 400;
        margin: 0; }
  .contact-wrp__bottom.expanded {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: white;
    z-index: 1000;
    border-radius: 32px;
    margin: 0;
    padding: 0;
    transform: scale(1); }
    @media only screen and (max-width: 768px) {
      .contact-wrp__bottom.expanded {
        transform: translateY(0);
        opacity: 1;
        transition: transform 0.6s ease, opacity 0.6s ease; } }
    .contact-wrp__bottom.expanded footer {
      display: flex;
      flex-direction: row;
      justify-content: space-between;
      align-items: flex-start;
      flex-wrap: nowrap;
      margin: 0;
      padding: 60px 4%;
      max-width: none;
      background-color: white;
      border-radius: 32px;
      height: 100%;
      opacity: 1;
      transform: translateY(0); }
      @media only screen and (max-width: 768px) {
        .contact-wrp__bottom.expanded footer {
          display: flex;
          flex-direction: column;
          justify-content: center;
          align-items: center;
          flex-wrap: nowrap;
          text-align: center; } }
      .contact-wrp__bottom.expanded footer .logo svg {
        width: 570px;
        height: auto; }
        @media only screen and (max-width: 1300px) {
          .contact-wrp__bottom.expanded footer .logo svg {
            width: 327px; } }
        @media only screen and (max-width: 768px) {
          .contact-wrp__bottom.expanded footer .logo svg {
            width: 197px; } }
      .contact-wrp__bottom.expanded footer nav {
        text-decoration: none;
        margin: 0; }
        @media only screen and (max-width: 768px) {
          .contact-wrp__bottom.expanded footer nav {
            text-align: center;
            margin: 40px 0; } }
        .contact-wrp__bottom.expanded footer nav ul {
          list-style: none;
          padding: 0; }
          .contact-wrp__bottom.expanded footer nav ul li {
            padding: 8px 0; }
            .contact-wrp__bottom.expanded footer nav ul li a {
              font-size: 18px;
              text-decoration: none;
              transition: color 0.3s ease;
              color: #3d4957; }
              .contact-wrp__bottom.expanded footer nav ul li a:hover {
                color: #b8573b; }
      .contact-wrp__bottom.expanded footer .links {
        display: flex;
        flex-direction: row;
        justify-content: flex-start;
        align-items: stretch;
        flex-wrap: nowrap;
        gap: 8px; }
    .contact-wrp__bottom.expanded .page-footer__bottom {
      display: flex;
      flex-direction: row;
      justify-content: center;
      align-items: center;
      flex-wrap: nowrap;
      gap: 20px;
      margin-left: -20px;
      padding-right: 4%;
      position: relative; }
      @media only screen and (max-width: 768px) {
        .contact-wrp__bottom.expanded .page-footer__bottom {
          flex-direction: column;
          padding-right: 0; } }
      .contact-wrp__bottom.expanded .page-footer__bottom::before {
        content: "";
        flex-grow: 1;
        height: 1px;
        background: #3d4957;
        display: block; }
      .contact-wrp__bottom.expanded .page-footer__bottom p {
        margin: 0;
        position: relative;
        color: #3d4957;
        font-weight: 200; }
        @media only screen and (max-width: 768px) {
          .contact-wrp__bottom.expanded .page-footer__bottom p {
            text-align: center; } }

.contact-wrp_bottom.expanded .page-footer_bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px 4%; }

.contact-wrp.footer-expanded .contact-wrp__left {
  opacity: 0;
  pointer-events: none; }

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline; }

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block; }

body {
  line-height: 1; }

ol,
ul {
  list-style: none; }

blockquote,
q {
  quotes: none; }

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none; }

table {
  border-collapse: collapse;
  border-spacing: 0; }

@font-face {
  font-family: 'Poppins';
  src: url("/assets/fonts/Poppins-Bold.woff2") format("woff2");
  font-weight: bold;
  font-style: normal;
  font-display: swap; }

@font-face {
  font-family: 'Poppins';
  src: url("/assets/fonts/Poppins-SemiBold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap; }

@font-face {
  font-family: 'Poppins';
  src: url("/assets/fonts/Poppins-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap; }

@font-face {
  font-family: 'Poppins';
  src: url("/assets/fonts/Poppins-Regular.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
  font-display: swap; }

*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  box-sizing: border-box; }

html {
  scroll-behavior: smooth; }

body {
  font-weight: 500;
  color: #3d4957;
  font-family: 'Poppins'; }

a {
  text-decoration: none;
  transition: all 0.3s; }

.container {
  padding: 0 8%; }
  @media only screen and (max-width: 1300px) {
    .container {
      padding: 0 6%; } }
  @media only screen and (max-width: 768px) {
    .container {
      padding: 0 16px; } }

.title {
  display: inline-block;
  margin-bottom: 20px;
  font-size: 20px;
  font-weight: 400;
  line-height: 20px;
  font-style: italic; }
  @media only screen and (max-width: 1300px) {
    .title {
      font-size: 16px;
      line-height: 16px; } }
  @media only screen and (max-width: 768px) {
    .title {
      font-size: 14px;
      line-height: 14px; } }

.section-desc {
  font-size: 32px;
  line-height: 39px; }
  @media only screen and (max-width: 1300px) {
    .section-desc {
      font-size: 24px;
      line-height: 28px; } }
  @media only screen and (max-width: 768px) {
    .section-desc {
      line-height: 32px; } }

.mobile-menu-trigger {
  cursor: pointer;
  display: none; }
  @media only screen and (max-width: 900px) {
    .mobile-menu-trigger {
      display: block; } }

.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: 100%;
  padding: 56px 36px;
  background-color: white;
  transform: translateX(100%);
  transition: transform 0.3s ease-in-out;
  z-index: 9999999;
  box-shadow: -2px 0 8px rgba(0, 0, 0, 0.2);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch; }
  .mobile-menu.open {
    transform: translateX(0); }
  .mobile-menu .mobile-menu-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
    position: relative; }
    .mobile-menu .mobile-menu-content .close-wrapper {
      position: absolute;
      top: 0;
      right: 0;
      cursor: pointer; }
    .mobile-menu .mobile-menu-content .logo svg {
      width: 105px;
      height: auto; }
    .mobile-menu .mobile-menu-content nav {
      margin-top: 56px;
      display: flex;
      flex-direction: row;
      justify-content: flex-start;
      align-items: stretch;
      flex-wrap: nowrap; }
      .mobile-menu .mobile-menu-content nav ul {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        flex-wrap: nowrap;
        gap: 40px; }
        .mobile-menu .mobile-menu-content nav ul li a {
          color: #3d4957;
          font-size: 16px;
          text-decoration: none;
          padding: 12px 0;
          transition: color 0.3s; }
    .mobile-menu .mobile-menu-content .language-switcher-mobile {
      display: flex;
      flex-direction: row;
      justify-content: end;
      align-items: center;
      flex-wrap: nowrap;
      margin-top: 20%;
      position: relative;
      gap: 6px;
      cursor: pointer; }
      .mobile-menu .mobile-menu-content .language-switcher-mobile span {
        font-size: 16px;
        font-weight: 300; }
      .mobile-menu .mobile-menu-content .language-switcher-mobile .language-dropdown {
        position: absolute;
        top: 100%;
        right: 0;
        margin-top: 18px;
        padding: 12px 0;
        display: none;
        background: rgba(255, 255, 255, 0.15);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        border-radius: 0 0 40px 40px;
        border: 1px solid rgba(255, 255, 255, 0.3);
        flex-direction: column;
        gap: 10px;
        z-index: 100;
        overflow: hidden; }
        .mobile-menu .mobile-menu-content .language-switcher-mobile .language-dropdown::before {
          content: "";
          position: absolute;
          inset: 0;
          background: rgba(255, 255, 255, 0.15);
          backdrop-filter: blur(10px);
          -webkit-backdrop-filter: blur(10px);
          border: 1px solid rgba(255, 255, 255, 0.3);
          z-index: -1; }
        .mobile-menu .mobile-menu-content .language-switcher-mobile .language-dropdown .lang-option {
          display: flex;
          flex-direction: row;
          justify-content: center;
          align-items: center;
          flex-wrap: nowrap;
          gap: 8px;
          cursor: pointer; }
          .mobile-menu .mobile-menu-content .language-switcher-mobile .language-dropdown .lang-option img {
            width: 27px;
            height: 27px;
            border-radius: 50%; }
          .mobile-menu .mobile-menu-content .language-switcher-mobile .language-dropdown .lang-option span {
            font-size: 16px;
            font-weight: 300; }
          .mobile-menu .mobile-menu-content .language-switcher-mobile .language-dropdown .lang-option:hover {
            opacity: 0.8; }
      .mobile-menu .mobile-menu-content .language-switcher-mobile.open .language-dropdown {
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: stretch;
        flex-wrap: nowrap;
        animation: fadeIn 0.3s ease; }

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px); }
  to {
    opacity: 1;
    transform: translateY(0); } }

.about-section {
  padding-top: 100px; }
  @media only screen and (max-width: 768px) {
    .about-section {
      padding-top: 40px; } }
  .about-section .about-wrp {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: space-between;
    flex-wrap: nowrap; }
    @media only screen and (max-width: 768px) {
      .about-section .about-wrp {
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: stretch;
        flex-wrap: nowrap;
        gap: 24px; } }
    .about-section .about-wrp__content {
      flex: 1;
      max-width: 50%;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      align-items: stretch;
      flex-wrap: nowrap; }
      @media only screen and (max-width: 768px) {
        .about-section .about-wrp__content {
          max-width: 100%; } }
      .about-section .about-wrp__content p {
        color: #3d4957;
        font-size: 24px;
        font-weight: 300; }
        @media only screen and (max-width: 768px) {
          .about-section .about-wrp__content p {
            font-size: 18px; } }
      .about-section .about-wrp__content h1 {
        color: #3d4957;
        margin-top: 24px;
        font-size: 40px;
        font-weight: 500; }
        @media only screen and (max-width: 1300px) {
          .about-section .about-wrp__content h1 {
            font-size: 32px; } }
        @media only screen and (max-width: 768px) {
          .about-section .about-wrp__content h1 {
            font-size: 24px; } }
        .about-section .about-wrp__content h1 span {
          color: #b8573b; }
      .about-section .about-wrp__content button {
        cursor: pointer;
        width: 267px;
        height: 56px;
        font-size: 24px;
        border: none;
        border-radius: 33px;
        background-color: #b8573b;
        color: white; }
        @media only screen and (max-width: 768px) {
          .about-section .about-wrp__content button {
            margin-top: 24px;
            align-self: center; } }
    .about-section .about-wrp__info {
      flex: 1;
      max-width: 50%; }
      @media only screen and (max-width: 768px) {
        .about-section .about-wrp__info {
          max-width: 100%; } }
      .about-section .about-wrp__info__images {
        display: flex;
        flex-direction: row;
        justify-content: flex-start;
        align-items: stretch;
        flex-wrap: nowrap;
        gap: 16px; }
        .about-section .about-wrp__info__images .image {
          width: 255px;
          height: 289px; }
          .about-section .about-wrp__info__images .image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 16px; }
        @media only screen and (max-width: 768px) {
          .about-section .about-wrp__info__images .image {
            flex: 1;
            width: 100%;
            height: auto; }
            .about-section .about-wrp__info__images .image img {
              width: 100%;
              height: auto;
              object-fit: cover; } }
      .about-section .about-wrp__info p {
        font-weight: 200;
        font-size: 18px;
        margin-top: 24px;
        line-height: 22px; }
  .about-section .key-facts {
    margin-top: 60px;
    background-color: #f2f3f4;
    padding: 120px 8%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap; }
    @media only screen and (max-width: 1300px) {
      .about-section .key-facts {
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: stretch;
        flex-wrap: nowrap;
        gap: 80px; } }
    @media only screen and (max-width: 768px) {
      .about-section .key-facts {
        padding: 60px 8%;
        margin-top: 30px; } }
    .about-section .key-facts h1 {
      font-size: 40px;
      font-weight: 500;
      color: #3d4957;
      text-transform: uppercase;
      text-align: center; }
      @media only screen and (max-width: 768px) {
        .about-section .key-facts h1 {
          font-size: 32px;
          text-align: center; } }
    .about-section .key-facts__facts {
      display: flex;
      flex-direction: row;
      justify-content: center;
      align-items: center;
      flex-wrap: nowrap;
      color: #3d4957; }
      .about-section .key-facts__facts .fact-item {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        flex-wrap: nowrap; }
      @media only screen and (max-width: 768px) {
        .about-section .key-facts__facts {
          display: flex;
          flex-direction: column;
          justify-content: flex-start;
          align-items: stretch;
          flex-wrap: nowrap;
          gap: 80px; } }
      .about-section .key-facts__facts > div {
        position: relative;
        padding: 0 60px; }
      .about-section .key-facts__facts > div:not(:last-child) {
        border-right: 1px solid #3d4957; }
        @media only screen and (max-width: 768px) {
          .about-section .key-facts__facts > div:not(:last-child) {
            border-right: none; } }
      .about-section .key-facts__facts span {
        font-size: 48px;
        font-weight: 700; }
        @media only screen and (max-width: 1300px) {
          .about-section .key-facts__facts span {
            font-size: 38px; } }
        @media only screen and (max-width: 768px) {
          .about-section .key-facts__facts span {
            font-size: 32px;
            text-align: center; } }
      .about-section .key-facts__facts p {
        margin-top: 24px;
        font-size: 24px;
        font-weight: 500; }
        @media only screen and (max-width: 1300px) {
          .about-section .key-facts__facts p {
            font-size: 18px; } }
        @media only screen and (max-width: 768px) {
          .about-section .key-facts__facts p {
            font-size: 20px;
            text-align: center; } }

.services-section-home {
  margin-top: 100px; }
  @media only screen and (max-width: 768px) {
    .services-section-home {
      margin-top: 60px; } }
  .services-section-home .header {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
    flex-wrap: nowrap; }
    @media only screen and (max-width: 768px) {
      .services-section-home .header {
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: flex-end;
        flex-wrap: nowrap; } }
    .services-section-home .header h1 {
      color: #f2f3f4;
      font-size: 112px;
      font-weight: bolder;
      text-transform: uppercase;
      position: relative; }
      @media only screen and (max-width: 768px) {
        .services-section-home .header h1 {
          font-size: 48px; } }
      .services-section-home .header h1 p {
        position: absolute;
        bottom: 10px;
        left: 10px;
        right: 10px;
        color: #3d4957;
        font-size: 40px;
        font-weight: 600;
        text-transform: none; }
        @media only screen and (max-width: 768px) {
          .services-section-home .header h1 p {
            font-size: 32px;
            bottom: -10px; } }
    .services-section-home .header .all-services {
      display: flex;
      flex-direction: row;
      justify-content: flex-start;
      align-items: flex-end;
      flex-wrap: nowrap;
      gap: 4px;
      cursor: pointer;
      color: black; }
      @media only screen and (max-width: 768px) {
        .services-section-home .header .all-services {
          display: none; } }
  .services-section-home .content-wrapper {
    position: relative; }
    .services-section-home .content-wrapper .content {
      display: flex;
      flex-direction: row;
      justify-content: center;
      align-items: center;
      flex-wrap: nowrap;
      flex-wrap: wrap;
      gap: 40px;
      margin-top: 40px; }
      @media only screen and (max-width: 768px) {
        .services-section-home .content-wrapper .content {
          flex-wrap: nowrap;
          overflow-x: auto;
          scroll-snap-type: x mandatory;
          gap: 20px;
          justify-content: flex-start;
          -ms-overflow-style: none;
          scrollbar-width: none; }
          .services-section-home .content-wrapper .content::-webkit-scrollbar {
            display: none; } }
      .services-section-home .content-wrapper .content .card {
        position: relative;
        border-radius: 0 32px 32px 32px;
        overflow: hidden;
        cursor: pointer;
        width: 243px;
        height: 328px;
        flex: 0 0 auto;
        transition: all 0.3s; }
        @media only screen and (max-width: 768px) {
          .services-section-home .content-wrapper .content .card {
            scroll-snap-align: start; } }
        .services-section-home .content-wrapper .content .card::before {
          content: "";
          position: absolute;
          top: 0;
          left: 0;
          width: 100%;
          height: 50%;
          background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
          pointer-events: none; }
        .services-section-home .content-wrapper .content .card:hover {
          transform: scale(1.05);
          /* img {
          filter: grayscale(100%) brightness(80%);
        } */ }
          .services-section-home .content-wrapper .content .card:hover .text {
            color: #d4d6d9; }
          .services-section-home .content-wrapper .content .card:hover .icon {
            background-color: #7d8691;
            color: white; }
        .services-section-home .content-wrapper .content .card img {
          width: 100%;
          height: 100%;
          object-fit: cover;
          display: block;
          transition: all 0.3s; }
        .services-section-home .content-wrapper .content .card .text {
          position: absolute;
          top: 30px;
          left: 20px;
          color: white;
          font-size: 20px;
          line-height: 24px;
          font-weight: 600;
          transition: all 0.3s; }
        .services-section-home .content-wrapper .content .card .icon {
          display: flex;
          flex-direction: row;
          justify-content: center;
          align-items: center;
          flex-wrap: nowrap;
          position: absolute;
          bottom: 0;
          right: 0;
          background-color: #b8573b;
          color: white;
          width: 62px;
          height: 62px;
          border-radius: 50%;
          font-size: 20px;
          transition: all 0.3s; }
        .services-section-home .content-wrapper .content .card:hover .icon {
          background-color: #d29180; }
    .services-section-home .content-wrapper .dots {
      display: none; }
      @media only screen and (max-width: 768px) {
        .services-section-home .content-wrapper .dots {
          display: flex;
          flex-direction: row;
          justify-content: center;
          align-items: stretch;
          flex-wrap: nowrap;
          gap: 8px;
          margin-top: 20px; } }
      .services-section-home .content-wrapper .dots .dot {
        cursor: pointer; }
        .services-section-home .content-wrapper .dots .dot svg rect {
          fill: #d4d6d9;
          transition: fill 0.3s; }
        .services-section-home .content-wrapper .dots .dot.active svg rect {
          fill: #b8573b; }

.portfolio-section {
  margin-top: 100px; }
  .portfolio-section .portfolio-wrp .header {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
    flex-wrap: nowrap;
    width: 100%; }
    @media only screen and (max-width: 768px) {
      .portfolio-section .portfolio-wrp .header {
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: stretch;
        flex-wrap: nowrap; } }
    .portfolio-section .portfolio-wrp .header > div:first-child {
      text-align: start; }
      @media only screen and (max-width: 768px) {
        .portfolio-section .portfolio-wrp .header > div:first-child {
          text-align: center; } }
    .portfolio-section .portfolio-wrp .header > div:last-child {
      text-align: end; }
      @media only screen and (max-width: 768px) {
        .portfolio-section .portfolio-wrp .header > div:last-child {
          text-align: center; } }
    .portfolio-section .portfolio-wrp .header p {
      color: #3d4957;
      font-size: 24px;
      font-weight: 300; }
    .portfolio-section .portfolio-wrp .header h1 {
      margin-top: 24px;
      color: #3d4957;
      font-size: 40px; }
      @media only screen and (max-width: 1300px) {
        .portfolio-section .portfolio-wrp .header h1 {
          font-size: 32px; } }
      @media only screen and (max-width: 768px) {
        .portfolio-section .portfolio-wrp .header h1 {
          font-size: 24px; } }
    .portfolio-section .portfolio-wrp .header .portfolio-description {
      width: 70%;
      max-width: 600px;
      font-size: 18px;
      line-height: 24px;
      margin-left: auto; }
      @media only screen and (max-width: 1300px) {
        .portfolio-section .portfolio-wrp .header .portfolio-description {
          font-size: 16px; } }
      @media only screen and (max-width: 768px) {
        .portfolio-section .portfolio-wrp .header .portfolio-description {
          width: 100%;
          margin-top: 24px;
          font-size: 14px; } }
  .portfolio-section .portfolio-wrp .content {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    flex-wrap: nowrap;
    margin-top: 40px; }
    @media only screen and (max-width: 768px) {
      .portfolio-section .portfolio-wrp .content {
        /*  @include flex(row, center, center); */
        gap: 20px;
        margin-top: 20px; } }
    .portfolio-section .portfolio-wrp .content .cards {
      display: flex;
      flex-direction: row;
      justify-content: flex-start;
      align-items: stretch;
      flex-wrap: nowrap;
      flex-wrap: wrap;
      gap: 20px; }
      .portfolio-section .portfolio-wrp .content .cards > div {
        position: relative; }
        .portfolio-section .portfolio-wrp .content .cards > div::after {
          content: "";
          position: absolute;
          bottom: 0;
          left: 0;
          width: 100%;
          height: 40%;
          border-radius: 32px;
          background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
          pointer-events: none; }
        .portfolio-section .portfolio-wrp .content .cards > div:nth-child(1), .portfolio-section .portfolio-wrp .content .cards > div:nth-child(6) {
          flex: 0 0 calc(54% - 20px); }
        .portfolio-section .portfolio-wrp .content .cards > div:nth-child(2), .portfolio-section .portfolio-wrp .content .cards > div:nth-child(3), .portfolio-section .portfolio-wrp .content .cards > div:nth-child(4), .portfolio-section .portfolio-wrp .content .cards > div:nth-child(5) {
          flex: 0 0 calc(23% - 20px); }
        @media only screen and (max-width: 768px) {
          .portfolio-section .portfolio-wrp .content .cards > div:first-child, .portfolio-section .portfolio-wrp .content .cards > div:nth-child(2), .portfolio-section .portfolio-wrp .content .cards > div:nth-child(3), .portfolio-section .portfolio-wrp .content .cards > div:nth-child(4), .portfolio-section .portfolio-wrp .content .cards > div:nth-child(5), .portfolio-section .portfolio-wrp .content .cards > div:nth-child(6) {
            flex: 0 0 80%;
            scroll-snap-align: start; } }
        .portfolio-section .portfolio-wrp .content .cards > div img {
          width: 100%;
          height: 430px;
          object-fit: cover;
          border-radius: 32px; }
          @media only screen and (max-width: 1300px) {
            .portfolio-section .portfolio-wrp .content .cards > div img {
              height: 325px; } }
          @media only screen and (max-width: 768px) {
            .portfolio-section .portfolio-wrp .content .cards > div img {
              flex: 0 0 80%;
              scroll-snap-align: start;
              height: 430px; } }
        .portfolio-section .portfolio-wrp .content .cards > div .card-info {
          display: flex;
          flex-direction: row;
          justify-content: center;
          align-items: space-between;
          flex-wrap: nowrap;
          z-index: 2;
          position: absolute;
          bottom: 40px;
          left: 40px;
          font-size: 18px;
          font-weight: bold;
          gap: 10px;
          color: white; }
          .portfolio-section .portfolio-wrp .content .cards > div .card-info div {
            display: flex;
            flex-direction: column;
            justify-content: flex-start;
            align-items: stretch;
            flex-wrap: nowrap; }
            .portfolio-section .portfolio-wrp .content .cards > div .card-info div p {
              font-size: 24px;
              font-weight: 500; }
            .portfolio-section .portfolio-wrp .content .cards > div .card-info div span {
              margin-top: 16px;
              font-size: 18px;
              font-weight: 300; }
          .portfolio-section .portfolio-wrp .content .cards > div .card-info svg {
            flex-shrink: 0;
            margin-left: auto; }
        .portfolio-section .portfolio-wrp .content .cards > div .card-icon {
          z-index: 2;
          position: absolute;
          bottom: 40px;
          right: 40px; }
      @media only screen and (max-width: 768px) {
        .portfolio-section .portfolio-wrp .content .cards {
          flex-wrap: nowrap;
          overflow-x: auto;
          scroll-snap-type: x mandatory;
          gap: 20px;
          -ms-overflow-style: none;
          scrollbar-width: none; }
          .portfolio-section .portfolio-wrp .content .cards::-webkit-scrollbar {
            display: none; } }
    .portfolio-section .portfolio-wrp .content .portfolio-dots {
      display: none; }
      @media only screen and (max-width: 768px) {
        .portfolio-section .portfolio-wrp .content .portfolio-dots {
          display: flex;
          flex-direction: row;
          justify-content: center;
          align-items: stretch;
          flex-wrap: nowrap;
          gap: 8px;
          margin-top: 20px; } }
      .portfolio-section .portfolio-wrp .content .portfolio-dots .dot {
        cursor: pointer; }
        .portfolio-section .portfolio-wrp .content .portfolio-dots .dot svg rect {
          fill: #d4d6d9;
          transition: fill 0.3s; }
        .portfolio-section .portfolio-wrp .content .portfolio-dots .dot.active svg rect {
          fill: #b8573b; }
  .portfolio-section .portfolio-wrp .allProjects {
    margin-top: 40px;
    text-align: center; }
    .portfolio-section .portfolio-wrp .allProjects button {
      border: none;
      border-radius: 32px;
      background: #b8573b;
      color: white;
      font-size: 20px;
      padding: 16px 48px;
      cursor: pointer;
      transition: all 0.3s; }
      .portfolio-section .portfolio-wrp .allProjects button:hover {
        background: #d29180; }
  .portfolio-section .businness-wrp {
    position: relative;
    margin-top: 100px;
    background-color: #f2f3f4;
    border-radius: 32px;
    /* @include flex(row, space-between, flex-start);
    @include mobile() {
      @include flex(column);
    } */ }
    .portfolio-section .businness-wrp__content {
      width: 58%;
      padding: 96px 56px; }
      @media only screen and (max-width: 768px) {
        .portfolio-section .businness-wrp__content {
          text-align: center;
          width: 100%;
          padding: 48px 28px; } }
      .portfolio-section .businness-wrp__content h1 {
        font-size: 56px;
        color: #3d4957; }
        @media only screen and (max-width: 1300px) {
          .portfolio-section .businness-wrp__content h1 {
            font-size: 48px; } }
        @media only screen and (max-width: 768px) {
          .portfolio-section .businness-wrp__content h1 {
            font-size: 24px;
            text-align: center; } }
      .portfolio-section .businness-wrp__content p {
        margin-top: 24px;
        font-size: 20px;
        line-height: 24px;
        font-weight: 300;
        color: #7d8691; }
        @media only screen and (max-width: 1300px) {
          .portfolio-section .businness-wrp__content p {
            font-size: 18px; } }
        @media only screen and (max-width: 768px) {
          .portfolio-section .businness-wrp__content p {
            font-size: 14px;
            text-align: center; } }
      .portfolio-section .businness-wrp__content button {
        cursor: pointer;
        margin-top: 24px;
        background-color: #b8573b;
        color: white;
        border: none;
        padding: 12px 48px;
        border-radius: 32px;
        font-size: 16px; }
    .portfolio-section .businness-wrp__image {
      position: absolute;
      z-index: 2;
      top: 0;
      right: 0;
      width: 70%; }
      @media only screen and (max-width: 768px) {
        .portfolio-section .businness-wrp__image {
          display: none; } }
      .portfolio-section .businness-wrp__image img {
        width: 100%;
        height: 100%;
        object-fit: cover; }

.news-section-home {
  margin-top: 250px; }
  @media only screen and (max-width: 768px) {
    .news-section-home {
      margin-top: 100px; } }
  .news-section-home .news-wrp {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
    gap: 20px;
    margin-bottom: 100px; }
    @media only screen and (max-width: 768px) {
      .news-section-home .news-wrp {
        display: flex;
        flex-direction: column-reverse;
        justify-content: flex-start;
        align-items: stretch;
        flex-wrap: nowrap; } }
    .news-section-home .news-wrp .card {
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: flex-start;
      flex-wrap: nowrap;
      position: relative;
      cursor: pointer;
      width: 100%;
      height: 333px;
      background-color: #f2f3f4;
      border-radius: 32px;
      transition: transform 0.3s;
      overflow: hidden; }
      .news-section-home .news-wrp .card:hover {
        transform: translateY(-10px); }
      .news-section-home .news-wrp .card h1 {
        padding-left: 40px;
        font-size: 56px;
        text-transform: uppercase;
        color: #3d4957; }
        @media only screen and (max-width: 1300px) {
          .news-section-home .news-wrp .card h1 {
            font-size: 40px;
            padding-left: 20px; } }
        @media only screen and (max-width: 768px) {
          .news-section-home .news-wrp .card h1 {
            font-size: 32px; } }
      .news-section-home .news-wrp .card .brown-text {
        margin-top: 16px;
        color: #b8573b; }
      .news-section-home .news-wrp .card p {
        padding-left: 40px;
        font-size: 27px;
        color: #3d4957;
        margin-top: 24px; }
        @media only screen and (max-width: 1300px) {
          .news-section-home .news-wrp .card p {
            padding-left: 20px; } }
        @media only screen and (max-width: 768px) {
          .news-section-home .news-wrp .card p {
            font-size: 27px; } }
      .news-section-home .news-wrp .card .icon {
        position: absolute;
        bottom: 30px;
        right: 30px;
        background-color: #b8573b;
        color: white;
        width: 62px;
        height: 62px;
        border-radius: 50%;
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        flex-wrap: nowrap;
        font-size: 20px;
        transition: all 0.3s; }
      .news-section-home .news-wrp .card .icon-overlay {
        position: absolute;
        bottom: 30px;
        right: 30px;
        color: white;
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        flex-wrap: nowrap;
        font-size: 20px;
        transition: all 0.3s; }
      .news-section-home .news-wrp .card img {
        width: 100%;
        height: 100%;
        object-fit: cover; }
      .news-section-home .news-wrp .card .card-overlay {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        flex-wrap: nowrap;
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 160px;
        background: rgba(184, 87, 59, 0.8);
        clip-path: polygon(0 40%, 80% 20%, 100% 60%, 100% 100%, 0 100%);
        padding-top: 20px;
        color: white;
        font-size: 20px; }
        .news-section-home .news-wrp .card .card-overlay p {
          font-size: 16px;
          color: white;
          width: 70%;
          line-height: 24px;
          font-weight: 400; }
    @media only screen and (max-width: 1300px) {
      .news-section-home .news-wrp .latest {
        width: 50%; } }
    @media only screen and (max-width: 768px) {
      .news-section-home .news-wrp .latest {
        width: 100%; } }
  .news-section-home .partners-wrp {
    position: relative;
    overflow: hidden;
    width: 100%;
    margin-top: 20px; }
    .news-section-home .partners-wrp::before, .news-section-home .partners-wrp::after {
      content: "";
      position: absolute;
      top: 0;
      width: 270px;
      height: 100%;
      pointer-events: none;
      z-index: 10; }
      @media only screen and (max-width: 1300px) {
        .news-section-home .partners-wrp::before, .news-section-home .partners-wrp::after {
          width: 200px; } }
      @media only screen and (max-width: 768px) {
        .news-section-home .partners-wrp::before, .news-section-home .partners-wrp::after {
          width: 100px; } }
    .news-section-home .partners-wrp h1 {
      color: #3d4957;
      font-size: 40px;
      font-weight: 400;
      text-align: center; }
      @media only screen and (max-width: 1300px) {
        .news-section-home .partners-wrp h1 {
          font-size: 32px; } }
      @media only screen and (max-width: 768px) {
        .news-section-home .partners-wrp h1 {
          font-size: 24px; } }
    .news-section-home .partners-wrp .partners {
      display: flex;
      flex-direction: row;
      justify-content: center;
      align-items: center;
      flex-wrap: nowrap;
      width: fit-content;
      animation: scrollLeft 30s linear infinite;
      gap: 40px;
      white-space: nowrap;
      margin-top: 40px; }
      @media only screen and (max-width: 768px) {
        .news-section-home .partners-wrp .partners {
          margin-top: 20px; } }
      .news-section-home .partners-wrp .partners .partner {
        width: 243px;
        height: 48px;
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        flex-wrap: nowrap; }
        .news-section-home .partners-wrp .partners .partner img {
          max-width: 100%;
          max-height: 100%;
          object-fit: contain; }
      .news-section-home .partners-wrp .partners li {
        font-size: 18px;
        font-style: italic; }
      @media only screen and (max-width: 768px) {
        .news-section-home .partners-wrp .partners {
          gap: 40px; } }

@keyframes scrollLeft {
  0% {
    transform: translateX(0%); }
  100% {
    transform: translateX(-33.3333%); } }

.services-section {
  padding-bottom: 100px; }
  .services-section .header {
    text-align: center; }
    .services-section .header h1 {
      color: #f2f3f4;
      font-size: 112px;
      font-weight: bolder;
      text-transform: uppercase;
      position: relative; }
      @media only screen and (max-width: 768px) {
        .services-section .header h1 {
          font-size: 48px; } }
      .services-section .header h1 p {
        position: absolute;
        bottom: 10px;
        left: 10px;
        right: 10px;
        color: #3d4957;
        font-size: 40px;
        font-weight: 600;
        text-transform: none; }
        @media only screen and (max-width: 768px) {
          .services-section .header h1 p {
            font-size: 32px;
            bottom: -10px; } }
  .services-section .content {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 40px; }
    .services-section .content .card {
      position: relative;
      border-radius: 0 32px 32px 32px;
      overflow: hidden;
      cursor: pointer;
      width: 243px;
      height: 328px;
      flex: 0 0 auto;
      transition: all 0.3s; }
      .services-section .content .card::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 50%;
        background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
        pointer-events: none; }
      .services-section .content .card:hover {
        transform: scale(1.05);
        /* img {
          filter: grayscale(100%) brightness(80%);
        } */ }
        .services-section .content .card:hover .text {
          color: #d4d6d9; }
        .services-section .content .card:hover .icon {
          background-color: #7d8691;
          color: white; }
      .services-section .content .card img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        transition: all 0.3s; }
      .services-section .content .card .text {
        position: absolute;
        top: 30px;
        left: 20px;
        color: white;
        font-size: 20px;
        line-height: 24px;
        font-weight: 600;
        transition: all 0.3s; }
      .services-section .content .card .icon {
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        flex-wrap: nowrap;
        position: absolute;
        bottom: 0;
        right: 0;
        background-color: #b8573b;
        color: white;
        width: 62px;
        height: 62px;
        border-radius: 50%;
        font-size: 20px;
        transition: all 0.3s; }
      .services-section .content .card:hover .icon {
        background-color: #d29180; }

.serviceDetails-section {
  position: relative;
  margin-top: -150px;
  padding-top: 150px;
  overflow: hidden;
  z-index: -1; }
  .serviceDetails-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("../../assets/images/sdGroup.png");
    background-size: contain;
    background-position: right top;
    background-repeat: no-repeat;
    z-index: -1; }
    @media only screen and (max-width: 900px) {
      .serviceDetails-section::before {
        background-image: none; } }
  .serviceDetails-section .serviceDetails-wrp {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: nowrap;
    gap: 40px; }
    @media only screen and (max-width: 1200px) {
      .serviceDetails-section .serviceDetails-wrp {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-items: flex-start;
        flex-wrap: nowrap; } }
    @media only screen and (max-width: 768px) {
      .serviceDetails-section .serviceDetails-wrp {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        flex-wrap: nowrap; } }
    .serviceDetails-section .serviceDetails-wrp__header h1 {
      color: #3d4957;
      font-size: 40px;
      font-weight: 600; }
      @media only screen and (max-width: 768px) {
        .serviceDetails-section .serviceDetails-wrp__header h1 {
          font-size: 24px; } }
    .serviceDetails-section .serviceDetails-wrp__header .service-img {
      width: 569px; }
      @media only screen and (max-width: 768px) {
        .serviceDetails-section .serviceDetails-wrp__header .service-img {
          width: 100%; } }
      .serviceDetails-section .serviceDetails-wrp__header .service-img img {
        border-radius: 32px;
        margin-top: 24px;
        width: 100%;
        height: 325px;
        object-fit: cover;
        display: block; }
    .serviceDetails-section .serviceDetails-wrp__content p {
      line-height: 22px;
      font-weight: 200; }
  .serviceDetails-section .serviceDetails-description {
    margin-top: 40px; }
    .serviceDetails-section .serviceDetails-description p {
      line-height: 22px;
      font-weight: 200; }
  .serviceDetails-section .serviceDetails-wraps {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
    gap: 20px;
    margin-top: 60px; }
    @media only screen and (max-width: 768px) {
      .serviceDetails-section .serviceDetails-wraps {
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: stretch;
        flex-wrap: nowrap; } }
    .serviceDetails-section .serviceDetails-wraps .card {
      width: 100%;
      text-align: center; }
      .serviceDetails-section .serviceDetails-wraps .card p {
        font-size: 20px;
        margin-bottom: 8px; }
        @media only screen and (max-width: 1300px) {
          .serviceDetails-section .serviceDetails-wraps .card p {
            font-size: 18px; } }
      .serviceDetails-section .serviceDetails-wraps .card span {
        font-size: 18px;
        font-weight: 200; }
        @media only screen and (max-width: 1300px) {
          .serviceDetails-section .serviceDetails-wraps .card span {
            font-size: 16px; } }

.news-section .header {
  width: 35%; }
  @media only screen and (max-width: 1300px) {
    .news-section .header {
      width: 50%; } }
  @media only screen and (max-width: 768px) {
    .news-section .header {
      width: 100%;
      text-align: center; } }
  .news-section .header h1 {
    font-size: 80px;
    font-weight: 600;
    color: #3d4957; }
    @media only screen and (max-width: 1300px) {
      .news-section .header h1 {
        font-size: 60px; } }
    @media only screen and (max-width: 768px) {
      .news-section .header h1 {
        font-size: 24px; } }
  .news-section .header p {
    margin-top: 16px;
    font-size: 18px;
    font-weight: 200;
    color: #3d4957;
    line-height: 20px; }
    @media only screen and (max-width: 1300px) {
      .news-section .header p {
        font-size: 16px; } }
    @media only screen and (max-width: 768px) {
      .news-section .header p {
        font-size: 14px; } }

.news-section .news-wrp {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 40px; }
  @media only screen and (max-width: 1300px) {
    .news-section .news-wrp {
      gap: 18px; } }
  @media only screen and (max-width: 768px) {
    .news-section .news-wrp {
      gap: 16px; } }
  .news-section .news-wrp .card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: nowrap;
    position: relative;
    cursor: pointer;
    width: calc( ( 100% - 40px ) / 3);
    height: 333px;
    background-color: #f2f3f4;
    border-radius: 32px;
    transition: transform 0.3s;
    overflow: hidden; }
    @media only screen and (max-width: 1300px) {
      .news-section .news-wrp .card {
        height: 295px; } }
    @media only screen and (max-width: 768px) {
      .news-section .news-wrp .card {
        width: 100%;
        height: 333px; } }
    .news-section .news-wrp .card:hover {
      transform: translateY(-10px); }
    .news-section .news-wrp .card h1 {
      padding-left: 40px;
      font-size: 56px;
      text-transform: uppercase;
      color: #3d4957; }
    .news-section .news-wrp .card .brown-text {
      margin-top: 16px;
      color: #b8573b; }
    .news-section .news-wrp .card p {
      padding-left: 40px;
      font-size: 27px;
      color: #3d4957;
      margin-top: 8px; }
    .news-section .news-wrp .card .icon {
      position: absolute;
      bottom: 30px;
      right: 30px;
      background-color: #b8573b;
      color: white;
      width: 62px;
      height: 62px;
      border-radius: 50%;
      display: flex;
      flex-direction: row;
      justify-content: center;
      align-items: center;
      flex-wrap: nowrap;
      font-size: 20px;
      transition: all 0.3s; }
    .news-section .news-wrp .card .icon-overlay {
      position: absolute;
      bottom: 30px;
      right: 30px;
      color: white;
      display: flex;
      flex-direction: row;
      justify-content: center;
      align-items: center;
      flex-wrap: nowrap;
      font-size: 20px;
      transition: all 0.3s; }
    .news-section .news-wrp .card img {
      width: 100%;
      height: 100%;
      object-fit: cover; }
    .news-section .news-wrp .card .card-overlay {
      display: flex;
      flex-direction: row;
      justify-content: space-between;
      align-items: flex-end;
      flex-wrap: nowrap;
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      height: 160px;
      background: rgba(184, 87, 59, 0.8);
      clip-path: polygon(0 40%, 80% 20%, 100% 60%, 100% 100%, 0 100%);
      padding-top: 20px;
      color: white;
      font-size: 20px; }
      .news-section .news-wrp .card .card-overlay p {
        font-size: 16px;
        color: white;
        width: 70%;
        line-height: 24px;
        font-weight: 500; }
        @media only screen and (max-width: 1300px) {
          .news-section .news-wrp .card .card-overlay p {
            font-size: 14px; } }
      .news-section .news-wrp .card .card-overlay .date {
        font-weight: 200; }

.newDetails-section .header {
  width: 60%; }
  @media only screen and (max-width: 768px) {
    .newDetails-section .header {
      width: 100%; } }
  .newDetails-section .header h1 {
    font-size: 40px;
    font-weight: 600;
    color: #3d4957; }
    @media only screen and (max-width: 768px) {
      .newDetails-section .header h1 {
        font-size: 24px;
        text-align: center; } }
  .newDetails-section .header p {
    margin-top: 16px;
    font-size: 18px;
    font-weight: 200;
    color: #3d4957; }
    @media only screen and (max-width: 768px) {
      .newDetails-section .header p {
        display: none;
        font-size: 14px; } }

.newDetails-section .newDetails-wrp {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: nowrap;
  gap: 20px; }
  @media only screen and (max-width: 1200px) {
    .newDetails-section .newDetails-wrp {
      display: flex;
      flex-direction: column;
      justify-content: flex-start;
      align-items: stretch;
      flex-wrap: nowrap; } }
  .newDetails-section .newDetails-wrp__left__text {
    margin-top: 40px;
    font-size: 18px;
    font-weight: 200;
    color: #3d4957;
    line-height: 22px; }
    @media only screen and (max-width: 768px) {
      .newDetails-section .newDetails-wrp__left__text {
        font-size: 14px; } }
  .newDetails-section .newDetails-wrp__left__img {
    margin-top: 40px;
    width: 100%;
    height: auto;
    border-radius: 16px;
    object-fit: cover; }
  .newDetails-section .newDetails-wrp__right {
    flex: 0 0 33.33%;
    max-width: 33.33%; }
    @media only screen and (max-width: 1200px) {
      .newDetails-section .newDetails-wrp__right {
        flex: 1 1 100%;
        max-width: 100%; } }
    .newDetails-section .newDetails-wrp__right p {
      font-size: 24px; }
    .newDetails-section .newDetails-wrp__right .news-wrp .card {
      margin-top: 20px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: flex-start;
      flex-wrap: nowrap;
      position: relative;
      cursor: pointer;
      width: 100%;
      aspect-ratio: 463 / 333;
      height: auto;
      background-color: #f2f3f4;
      border-radius: 32px;
      transition: transform 0.3s;
      overflow: hidden; }
      .newDetails-section .newDetails-wrp__right .news-wrp .card:hover {
        transform: translateY(-10px); }
      .newDetails-section .newDetails-wrp__right .news-wrp .card h1 {
        padding-left: 40px;
        font-size: 56px;
        text-transform: uppercase;
        color: #3d4957; }
      .newDetails-section .newDetails-wrp__right .news-wrp .card .brown-text {
        margin-top: 16px;
        color: #b8573b; }
      .newDetails-section .newDetails-wrp__right .news-wrp .card p {
        padding-left: 40px;
        font-size: 27px;
        color: #3d4957;
        margin-top: 24px; }
      .newDetails-section .newDetails-wrp__right .news-wrp .card .icon {
        position: absolute;
        bottom: 30px;
        right: 30px;
        background-color: #b8573b;
        color: white;
        width: 62px;
        height: 62px;
        border-radius: 50%;
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        flex-wrap: nowrap;
        font-size: 20px;
        transition: all 0.3s; }
      .newDetails-section .newDetails-wrp__right .news-wrp .card .icon-overlay {
        position: absolute;
        bottom: 30px;
        right: 30px;
        color: white;
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        flex-wrap: nowrap;
        font-size: 20px;
        transition: all 0.3s; }
      .newDetails-section .newDetails-wrp__right .news-wrp .card img {
        width: 100%;
        height: 100%;
        object-fit: cover; }
      .newDetails-section .newDetails-wrp__right .news-wrp .card .card-overlay {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        flex-wrap: nowrap;
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 160px;
        background: rgba(184, 87, 59, 0.8);
        clip-path: polygon(0 40%, 80% 20%, 100% 60%, 100% 100%, 0 100%);
        padding-top: 20px;
        color: white;
        font-size: 20px; }
        .newDetails-section .newDetails-wrp__right .news-wrp .card .card-overlay p {
          font-size: 16px;
          color: white;
          width: 70%;
          line-height: 24px;
          font-weight: 400; }

.portfolio-header-wrp__header {
  width: 60%; }
  @media only screen and (max-width: 900px) {
    .portfolio-header-wrp__header {
      width: 100%; } }
  .portfolio-header-wrp__header h1 {
    font-size: 80px;
    font-weight: 600;
    color: white;
    margin-bottom: 24px;
    margin-top: 40px; }
    @media only screen and (max-width: 1300px) {
      .portfolio-header-wrp__header h1 {
        font-size: 60px; } }
    @media only screen and (max-width: 900px) {
      .portfolio-header-wrp__header h1 {
        font-size: 32px;
        color: #3d4957;
        text-align: center; } }
  .portfolio-header-wrp__header p {
    font-size: 18px;
    font-weight: 100;
    color: white;
    line-height: 20px; }
    @media only screen and (max-width: 1300px) {
      .portfolio-header-wrp__header p {
        font-size: 16px; } }
    @media only screen and (max-width: 900px) {
      .portfolio-header-wrp__header p {
        font-size: 14px;
        text-align: center;
        color: #3d4957; } }

.portfolio-header-wrp__content {
  display: flex;
  flex-wrap: wrap;
  margin-top: 100px;
  height: 520px;
  gap: 20px; }
  @media only screen and (max-width: 1300px) {
    .portfolio-header-wrp__content {
      height: 388px; } }
  @media only screen and (max-width: 768px) {
    .portfolio-header-wrp__content {
      height: 513px; } }
  @media only screen and (max-width: 768px) {
    .portfolio-header-wrp__content {
      margin-top: 40px; } }
  .portfolio-header-wrp__content .card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    width: calc((100% - 60px) / 4);
    height: 520px; }
    @media only screen and (max-width: 1300px) {
      .portfolio-header-wrp__content .card {
        height: 388px; } }
    @media only screen and (max-width: 768px) {
      .portfolio-header-wrp__content .card {
        width: 100%;
        height: 513px; } }
    .portfolio-header-wrp__content .card::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 50%;
      background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
      pointer-events: none; }
    .portfolio-header-wrp__content .card:hover {
      transform: scale(1.05); }
    .portfolio-header-wrp__content .card img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block; }
    .portfolio-header-wrp__content .card .text {
      position: absolute;
      bottom: 60px;
      left: 20px;
      color: white;
      font-size: 24px;
      font-weight: 600; }
    .portfolio-header-wrp__content .card .date {
      position: absolute;
      bottom: 20px;
      left: 20px;
      font-size: 18px;
      font-weight: 200;
      color: white; }

.portfolioDetails-section {
  position: relative;
  margin-top: -150px;
  padding-top: 150px;
  overflow: hidden; }
  .portfolioDetails-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("../../assets/images/pGroup.png");
    background-size: contain;
    background-position: right top;
    background-repeat: no-repeat;
    z-index: -1; }
    @media only screen and (max-width: 900px) {
      .portfolioDetails-section::before {
        background-image: none; } }
  .portfolioDetails-section .portfolioDetails-wrp {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: nowrap;
    gap: 40px; }
    @media only screen and (max-width: 768px) {
      .portfolioDetails-section .portfolioDetails-wrp {
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: stretch;
        flex-wrap: nowrap; } }
    .portfolioDetails-section .portfolioDetails-wrp__header {
      flex: 0 0 40%;
      max-width: 40%; }
      @media only screen and (max-width: 768px) {
        .portfolioDetails-section .portfolioDetails-wrp__header {
          flex: 1 1 100%;
          max-width: 100%; } }
      .portfolioDetails-section .portfolioDetails-wrp__header h1 {
        color: #3d4957;
        font-size: 40px;
        font-weight: 600; }
        @media only screen and (max-width: 1300px) {
          .portfolioDetails-section .portfolioDetails-wrp__header h1 {
            font-size: 32px; } }
        @media only screen and (max-width: 768px) {
          .portfolioDetails-section .portfolioDetails-wrp__header h1 {
            font-size: 24px; } }
      .portfolioDetails-section .portfolioDetails-wrp__header p {
        margin-top: 16px;
        font-size: 18px;
        font-weight: 200; }
        @media only screen and (max-width: 1300px) {
          .portfolioDetails-section .portfolioDetails-wrp__header p {
            font-size: 16px; } }
      .portfolioDetails-section .portfolioDetails-wrp__header .portfolio-detail-image {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center; }
        .portfolioDetails-section .portfolioDetails-wrp__header .portfolio-detail-image .portfolio-great-image {
          margin-top: 16px;
          width: 100%;
          height: auto;
          object-fit: contain;
          aspect-ratio: 16 / 9; }
        .portfolioDetails-section .portfolioDetails-wrp__header .portfolio-detail-image .portfolio-slider-container {
          display: flex;
          gap: 16px;
          overflow: hidden;
          flex-wrap: nowrap;
          justify-content: center;
          align-items: center;
          margin-top: 16px; }
          .portfolioDetails-section .portfolioDetails-wrp__header .portfolio-detail-image .portfolio-slider-container .portfolio-slider-image {
            width: 80px;
            height: 80px;
            border-radius: 8px;
            object-fit: cover;
            cursor: pointer;
            opacity: 0.5;
            transition: opacity 0.3s ease, transform 0.3s ease; }
            .portfolioDetails-section .portfolioDetails-wrp__header .portfolio-detail-image .portfolio-slider-container .portfolio-slider-image.active {
              opacity: 1;
              transform: scale(1.05); }
            @media only screen and (max-width: 1300px) {
              .portfolioDetails-section .portfolioDetails-wrp__header .portfolio-detail-image .portfolio-slider-container .portfolio-slider-image {
                width: 66px;
                height: 66px; } }
            @media only screen and (max-width: 768px) {
              .portfolioDetails-section .portfolioDetails-wrp__header .portfolio-detail-image .portfolio-slider-container .portfolio-slider-image {
                width: 51px;
                height: 51px; } }
    .portfolioDetails-section .portfolioDetails-wrp__content {
      flex: 0 0 60%;
      max-width: 60%; }
      @media only screen and (max-width: 768px) {
        .portfolioDetails-section .portfolioDetails-wrp__content {
          flex: 1 1 100%;
          max-width: 100%; } }
      .portfolioDetails-section .portfolioDetails-wrp__content p {
        line-height: 22px;
        font-weight: 200; }
  .portfolioDetails-section .portfolioDetails-description {
    margin-top: 40px; }
    .portfolioDetails-section .portfolioDetails-description p {
      line-height: 22px;
      font-weight: 200; }
  .portfolioDetails-section .portfolioDetails-video {
    margin-top: 40px;
    width: 100%; }
    .portfolioDetails-section .portfolioDetails-video video {
      width: 100%;
      max-height: 682px;
      border-radius: 32px;
      object-fit: cover;
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15); }

.background-image {
  width: 100%;
  min-height: 100vh;
  margin: -40px 0;
  background-image: url("/assets/images/GroupPath.png");
  background-size: auto;
  background-repeat: no-repeat;
  background-position: center; }
  @media only screen and (max-width: 1300px) {
    .background-image {
      background-image: url("/assets/images/GroupPathTablet.png"); } }
  @media only screen and (max-width: 1200px) {
    .background-image {
      background-image: none; } }

.contact-section {
  padding-top: 40px; }
  .contact-section .header h1 {
    color: #3d4957;
    font-size: 80px;
    font-weight: 600; }
    @media only screen and (max-width: 1300px) {
      .contact-section .header h1 {
        font-size: 60px; } }
    @media only screen and (max-width: 1200px) {
      .contact-section .header h1 {
        font-size: 24px;
        text-align: center; } }
  .contact-section .header p {
    margin-top: 16px;
    color: #3d4957;
    font-size: 40px; }
    @media only screen and (max-width: 1300px) {
      .contact-section .header p {
        font-size: 32px; } }
    @media only screen and (max-width: 1200px) {
      .contact-section .header p {
        font-size: 18px; } }
  .contact-section .content {
    width: 80%;
    margin-top: 24px; }
    @media only screen and (max-width: 1300px) {
      .contact-section .content {
        width: 100%; } }
    @media only screen and (max-width: 1200px) {
      .contact-section .content {
        width: 100%; } }
    .contact-section .content__card {
      display: flex;
      flex-direction: row;
      justify-content: space-between;
      align-items: flex-start;
      flex-wrap: nowrap;
      background: linear-gradient(to right, #d29180, #f2f3f4);
      border-radius: 32px;
      padding: 80px 60px;
      transition: all 0.3s; }
      @media only screen and (max-width: 1200px) {
        .contact-section .content__card {
          display: flex;
          flex-direction: column;
          justify-content: flex-start;
          align-items: stretch;
          flex-wrap: nowrap;
          padding: 40px 30px; } }
      .contact-section .content__card__left {
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: stretch;
        flex-wrap: nowrap;
        gap: 40px; }
        .contact-section .content__card__left__list {
          display: flex;
          flex-direction: row;
          justify-content: flex-start;
          align-items: flex-start;
          flex-wrap: nowrap;
          gap: 16px; }
        .contact-section .content__card__left p {
          font-size: 24px;
          margin-bottom: 16px; }
          @media only screen and (max-width: 1200px) {
            .contact-section .content__card__left p {
              font-size: 20px; } }
        .contact-section .content__card__left .mail {
          display: flex;
          flex-direction: column;
          justify-content: flex-start;
          align-items: stretch;
          flex-wrap: nowrap;
          gap: 15px; }
          .contact-section .content__card__left .mail span {
            font-size: 18px;
            font-weight: 200; }
        .contact-section .content__card__left .number {
          display: flex;
          flex-direction: column;
          justify-content: flex-start;
          align-items: stretch;
          flex-wrap: nowrap;
          gap: 15px; }
          .contact-section .content__card__left .number span {
            font-size: 18px;
            font-weight: 200; }
        .contact-section .content__card__left .seeOnMap {
          cursor: pointer;
          font-size: 17px;
          font-weight: 400;
          margin-top: 8px;
          margin-left: 36px; }
      .contact-section .content__card__right h1 {
        font-size: 32px; }
        @media only screen and (max-width: 1200px) {
          .contact-section .content__card__right h1 {
            margin-top: 40px;
            font-size: 24px;
            text-align: center; } }
      .contact-section .content__card__right__line {
        margin-top: 24px;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: stretch;
        flex-wrap: nowrap;
        gap: 24px; }
        .contact-section .content__card__right__line .input-wrapper {
          width: 400px; }
          @media only screen and (max-width: 1200px) {
            .contact-section .content__card__right__line .input-wrapper {
              width: 100%; } }
          .contact-section .content__card__right__line .input-wrapper .error {
            color: red;
            font-size: 12px; }
        .contact-section .content__card__right__line .input-wrapper input {
          width: 100%;
          padding: 8px 0;
          border: none;
          border-bottom: 1px solid #3d4957;
          background: transparent;
          font-size: 16px;
          outline: none;
          transition: border-color 0.3s; }
        .contact-section .content__card__right__line .input-wrapper input.invalid {
          border-bottom: 1px solid #ff4914;
          color: #ff4914; }
      .contact-section .content__card__right button {
        cursor: pointer;
        margin-top: 24px;
        background-color: #b8573b;
        color: white;
        border: none;
        border-radius: 32px;
        width: 100%;
        padding: 12px;
        font-size: 20px;
        font-weight: 300; }

.contactPage-wrp {
  padding-bottom: 16px; }
  .contactPage-wrp__bottom footer {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
    margin: 200px auto 20px;
    background-color: white;
    padding: 10px 60px;
    border-radius: 24px;
    max-width: 900px;
    width: 100%;
    transition: all 1s ease;
    border: 1px solid #f2f3f4; }
    @media only screen and (max-width: 1200px) {
      .contactPage-wrp__bottom footer {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        flex-wrap: nowrap;
        border: none;
        margin: 60px auto 0; } }
    .contactPage-wrp__bottom footer .logo svg {
      width: 105px;
      height: auto; }
      @media only screen and (max-width: 1200px) {
        .contactPage-wrp__bottom footer .logo svg {
          width: 197px; } }
    .contactPage-wrp__bottom footer nav {
      display: none; }
      @media only screen and (max-width: 1200px) {
        .contactPage-wrp__bottom footer nav {
          text-decoration: none;
          display: block;
          margin: 40px 0;
          text-align: center; }
          .contactPage-wrp__bottom footer nav ul li {
            padding: 8px 0; }
            .contactPage-wrp__bottom footer nav ul li a {
              font-size: 18px;
              color: #3d4957; } }
    .contactPage-wrp__bottom footer p {
      font-weight: 400;
      color: #3d4957; }
  .contactPage-wrp__bottom footer.expanded {
    max-width: 100%;
    border-radius: 32px;
    margin-top: 0; }

.aboutUsPage-section .header {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: nowrap; }
  @media only screen and (max-width: 768px) {
    .aboutUsPage-section .header {
      display: flex;
      flex-direction: column;
      justify-content: flex-start;
      align-items: stretch;
      flex-wrap: nowrap;
      gap: 20px; } }
  .aboutUsPage-section .header h1 {
    font-size: 80px;
    color: #3d4957; }
    @media only screen and (max-width: 1300px) {
      .aboutUsPage-section .header h1 {
        font-size: 60px; } }
    @media only screen and (max-width: 768px) {
      .aboutUsPage-section .header h1 {
        font-size: 32px; } }
  .aboutUsPage-section .header p {
    font-size: 18px;
    font-weight: 200;
    max-width: 500px;
    width: 100%;
    line-height: 20px; }
    @media only screen and (max-width: 1300px) {
      .aboutUsPage-section .header p {
        font-size: 16px; } }

.aboutUsPage-section .image {
  margin-top: 80px;
  margin-bottom: 40px;
  width: 100%;
  height: 682px; }
  @media only screen and (max-width: 1300px) {
    .aboutUsPage-section .image {
      height: 505px; } }
  @media only screen and (max-width: 768px) {
    .aboutUsPage-section .image {
      height: 233px;
      margin-top: 40px;
      margin-bottom: 20px; } }
  .aboutUsPage-section .image img {
    width: 100%;
    height: 100%;
    object-fit: cover; }

.aboutUsPage-section .content {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: nowrap;
  gap: 40px; }
  @media only screen and (max-width: 768px) {
    .aboutUsPage-section .content {
      display: flex;
      flex-direction: column;
      justify-content: flex-start;
      align-items: stretch;
      flex-wrap: nowrap; } }
  .aboutUsPage-section .content__left {
    flex: 0 0 55%;
    max-width: 55%; }
    @media only screen and (max-width: 768px) {
      .aboutUsPage-section .content__left {
        flex: 1 1 100%;
        max-width: 100%; } }
    .aboutUsPage-section .content__left__text span {
      font-size: 24px; }
      @media only screen and (max-width: 768px) {
        .aboutUsPage-section .content__left__text span {
          font-size: 18px; } }
    .aboutUsPage-section .content__left__text p {
      font-size: 18px;
      font-weight: 200;
      margin-top: 16px;
      margin-bottom: 40px;
      line-height: 20px; }
      @media only screen and (max-width: 768px) {
        .aboutUsPage-section .content__left__text p {
          font-size: 14px; } }
    .aboutUsPage-section .content__left__image {
      width: 100%;
      height: auto; }
      @media only screen and (max-width: 768px) {
        .aboutUsPage-section .content__left__image {
          width: 100%;
          height: 208px; } }
      .aboutUsPage-section .content__left__image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 32px; }
  .aboutUsPage-section .content__right {
    flex: 0 0 45%;
    max-width: 45%; }
    @media only screen and (max-width: 768px) {
      .aboutUsPage-section .content__right {
        flex: 1 1 100%;
        max-width: 100%; } }
    .aboutUsPage-section .content__right__text span {
      font-size: 24px; }
      @media only screen and (max-width: 768px) {
        .aboutUsPage-section .content__right__text span {
          font-size: 18px; } }
    .aboutUsPage-section .content__right__text p {
      font-size: 18px;
      font-weight: 200;
      margin-top: 16px;
      margin-bottom: 40px;
      line-height: 20px; }
      @media only screen and (max-width: 768px) {
        .aboutUsPage-section .content__right__text p {
          font-size: 14px; } }
    .aboutUsPage-section .content__right__image {
      margin-bottom: 40px;
      width: 100%;
      height: auto; }
      @media only screen and (max-width: 768px) {
        .aboutUsPage-section .content__right__image {
          display: none; } }
      .aboutUsPage-section .content__right__image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 32px; }

.aboutUsPage-section .wraps {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
  gap: 20px;
  margin-top: 60px; }
  @media only screen and (max-width: 768px) {
    .aboutUsPage-section .wraps {
      display: flex;
      flex-direction: column;
      justify-content: flex-start;
      align-items: stretch;
      flex-wrap: nowrap;
      margin-top: 0px; } }
  .aboutUsPage-section .wraps .card {
    width: 100%;
    text-align: center; }
    .aboutUsPage-section .wraps .card p {
      font-size: 20px;
      margin-bottom: 8px; }
      @media only screen and (max-width: 768px) {
        .aboutUsPage-section .wraps .card p {
          font-size: 18px; } }
    .aboutUsPage-section .wraps .card span {
      font-size: 18px;
      font-weight: 200; }
      @media only screen and (max-width: 768px) {
        .aboutUsPage-section .wraps .card span {
          font-size: 16px; } }

.keyfacts-section .key-facts {
  margin-top: 60px;
  background-color: #f2f3f4;
  padding: 120px 8%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap; }
  @media only screen and (max-width: 1300px) {
    .keyfacts-section .key-facts {
      display: flex;
      flex-direction: column;
      justify-content: flex-start;
      align-items: stretch;
      flex-wrap: nowrap;
      gap: 80px; } }
  @media only screen and (max-width: 768px) {
    .keyfacts-section .key-facts {
      padding: 60px 8%;
      margin-top: 30px; } }
  .keyfacts-section .key-facts h1 {
    font-size: 40px;
    font-weight: 500;
    color: #3d4957;
    text-transform: uppercase;
    text-align: center; }
    @media only screen and (max-width: 768px) {
      .keyfacts-section .key-facts h1 {
        font-size: 32px;
        text-align: center; } }
  .keyfacts-section .key-facts__facts {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
    color: #3d4957; }
    .keyfacts-section .key-facts__facts .fact-item {
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      flex-wrap: nowrap; }
    @media only screen and (max-width: 768px) {
      .keyfacts-section .key-facts__facts {
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: stretch;
        flex-wrap: nowrap;
        gap: 80px; } }
    .keyfacts-section .key-facts__facts > div {
      position: relative;
      padding: 0 60px; }
    .keyfacts-section .key-facts__facts > div:not(:last-child) {
      border-right: 1px solid #3d4957; }
      @media only screen and (max-width: 768px) {
        .keyfacts-section .key-facts__facts > div:not(:last-child) {
          border-right: none; } }
    .keyfacts-section .key-facts__facts span {
      font-size: 48px;
      font-weight: 700; }
      @media only screen and (max-width: 1300px) {
        .keyfacts-section .key-facts__facts span {
          font-size: 38px; } }
      @media only screen and (max-width: 768px) {
        .keyfacts-section .key-facts__facts span {
          font-size: 32px;
          text-align: center; } }
    .keyfacts-section .key-facts__facts p {
      margin-top: 24px;
      font-size: 24px;
      font-weight: 500; }
      @media only screen and (max-width: 1300px) {
        .keyfacts-section .key-facts__facts p {
          font-size: 18px; } }
      @media only screen and (max-width: 768px) {
        .keyfacts-section .key-facts__facts p {
          font-size: 20px;
          text-align: center; } }
