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


  /* Color styles */
  :root {
      --secondary-100: #212529;
      --secondary-90: #373B3E;
      --secondary-80: #4D5154;
      --secondary-70: #646669;
      --secondary-60: #7A7C7F;
      --secondary-50: #909294;
      --secondary-40: #A6A8A9;
      --secondary-30: #BCBEBF;
      --secondary-20: #D3D3D4;
      --secondary-10: #F6F6F7;

      --primary-100: #18260D;
      --primary-90: #243A14;
      --primary-80: #304D1B;
      --primary-70: #477328;
      --primary-60: #5F9A36;
      --primary-50: #77C043;
      --primary-40: #99D072;
      --primary-30: #BBDFA1;
      --primary-20: #DDEFD0;
      --primary-10: #F1F9EC;

      --danger: #C04343;
      --warning: #C0B443;
      --informative: #439BC0;
      --white: #FDFEFE;
  }

  ::selection {
      background-color: var(--primary-50);
      color: var(--white);
  }

  html {
      overflow-x: hidden;
      scroll-behavior: smooth;
  }

  /* End of Color styles --- */

  /* Typography styles */

  h1.semibold {
      font-family: 'Lexend Deca';
      font-style: normal;
      font-weight: 600;
      font-size: 56px;
      line-height: 56px;
      text-transform: uppercase;
  }

  h1.light {
      font-family: 'Lexend Deca';
      font-style: normal;
      font-weight: 300;
      font-size: 56px;
      line-height: 56px;
      text-transform: uppercase;
  }

  h2 {
      font-family: 'Lexend Deca';
      font-style: normal;
      font-weight: 500;
      font-size: 32px;
      line-height: 40px;
  }

  p.light {
      font-family: 'Lexend Deca';
      font-style: normal;
      font-weight: 300;
      font-size: 16px;
      line-height: 20px;
  }

  p.regular {
      font-family: 'Lexend Deca';
      font-style: normal;
      font-weight: 400;
      font-size: 16px;
      line-height: 24px;
  }

  p.medium {
      font-family: 'Lexend Deca';
      font-style: normal;
      font-weight: 500;
      font-size: 16px;
      line-height: 24px;
  }

  p.semibold,
  .my-navbar ul li a {
      font-family: 'Lexend Deca';
      font-style: normal;
      font-weight: 600;
      font-size: 16px;
      line-height: 24px;
  }

  p.large {
      font-family: 'Lexend Deca';
      font-style: normal;
      font-weight: 600;
      font-size: 20px;
      line-height: 25px;
  }

  p.small {
      font-family: 'Lexend Deca';
      font-style: normal;
      font-weight: 300;
      font-size: 10px;
      line-height: 12px;
      text-transform: uppercase;
  }

  span.subheadline {
      font-family: 'Lexend Deca';
      font-style: normal;
      font-weight: 500;
      font-size: 24px;
      line-height: 32px;
      text-transform: uppercase;
  }

  @media (min-width: 426px) {
      h1.semibold {
          font-size: 64px;
          line-height: 80px;
      }

      h1.light {
          font-size: 64px;
          line-height: 80px;
      }

      h2 {
          font-size: 32px;
          line-height: 40px;
      }

      p.light {
          font-size: 16px;
          line-height: 24px;
      }

      p.regular {
          font-size: 18px;
          line-height: 24px;
      }

      p.medium {
          font-size: 18px;
          line-height: 24px;
      }

      p.semibold,
      .my-navbar ul li a {
          font-size: 16px;
          line-height: 20px;
      }

      p.large {
          font-size: 20px;
          line-height: 25px;
      }

      p.small {
          font-size: 10px;
          line-height: 12px;
      }

      span.subheadline {
          font-size: 36px;
          line-height: 56px;
      }
  }

  /* End of Typography styles --- */

  /* Button styles */

  button.btn-primary,
  a.btn-primary {
      display: flex;
      flex-direction: row;
      justify-content: center;
      align-items: center;
      padding: 10px 24px;
      background: var(--primary-50);
      border-radius: 12px 4px;
      font-family: 'Lexend Deca';
      font-style: normal;
      font-weight: 600;
      font-size: 16px;
      line-height: 20px;
      color: var(--white);
      text-decoration: none;
      transition: .5s ease-in-out;
  }

  button.btn-primary:hover,
  a.btn-primary:hover {
      background: var(--primary-70);
      color: var(--white);
  }

  button.btn-secondary,
  a.btn-secondary {
      display: flex;
      flex-direction: row;
      justify-content: center;
      align-items: center;
      padding: 10px 24px;
      background: var(--white);
      border: 2px solid var(--primary-50);
      border-radius: 12px 4px;
      font-family: 'Lexend Deca';
      font-style: normal;
      font-weight: 600;
      font-size: 16px;
      line-height: 20px;
      color: var(--primary-50);
      text-decoration: none;
  }

  button.btn-secondary:hover,
  a.btn-secondary:hover {
      background: var(--primary-50);
      color: var(--white);
  }

  /* End of Button styles --- */

  /* Navigation */

  .my-navbar.navbar {
      background-color: var(--secondary-10);
      padding: 12px 16px;
  }

  .my-navbar.navbar ul {
      align-items: center;
  }

  .my-navbar a img {
      height: 48px;
  }

  .my-navbar ul li.nav-item a.nav-link {
      color: var(--secondary-100);
      margin: 0 12px;
      transition: .4s;
  }

  .my-navbar ul li.nav-item a.nav-link:hover {
      color: var(--primary-50);
  }

  .my-navbar ul li.nav-item a.btn-primary {
      margin: 0 12px;
  }

  .my-navbar ul li.nav-item a.active.nav-link {
      color: var(--primary-50);
  }

  @media (min-width: 426px) {
      .my-navbar.navbar {
          padding: 12px 64px;
      }
  }

  /* End of Navigation --- */

  /* Above The Fold */

  section.aboveTheFold {
      padding: 128px 32px 64px 32px;
      width: 100vw;
      background-image: url('../images/aboveTheFold.png');
      background-position: center;
      background-repeat: no-repeat;
      animation: bgrAnimateMobile infinite 10000ms;

  }

  section.aboveTheFold h1.semibold {
      color: var(--white);
      margin-bottom: 8px;
  }

  section.aboveTheFold .subheadline {
      color: var(--secondary-30);
      margin-left: 4px;
  }

  section.aboveTheFold .line {
      width: 80%;
      height: 3px;
      background-color: var(--primary-50);
      margin-top: 32px;
      border-radius: 100000px;
  }

  section.aboveTheFold .text-content {
      width: fit-content;
  }

  section.aboveTheFold .icons {
      margin-top: 44px;
  }

  section.aboveTheFold .icons .col-md-3 {
      display: flex;
      align-items: center;
      gap: 16px;
      margin-top: 24px;
  }

  section.aboveTheFold .icons .col-md-3 p.medium {
      margin-bottom: 0;
      color: var(--white);
  }

  @keyframes bgrAnimateTablet {
      0% {
          background-size: 200%;
      }

      75% {
          background-size: 250%;
      }

      100% {
          background-size: 200%;
      }
  }

  @keyframes bgrAnimateDesktop {
      0% {
          background-size: 100%;
      }

      75% {
          background-size: 110%;
      }

      100% {
          background-size: 100%;
      }
  }

  @keyframes bgrAnimateMobile {
      0% {
          background-size: 300%;
      }

      75% {
          background-size: 350%;
      }

      100% {
          background-size: 300%;
      }
  }

  @media (min-width: 1024px) {
      section.aboveTheFold {
          padding: 400px 128px 128px 128px;
          animation: bgrAnimateDesktop infinite 10000ms;
      }

      section.aboveTheFold .icons {
          width: 80%;
      }
  }

  @media (min-width: 426px) {
      section.aboveTheFold {
          animation: bgrAnimateTablet infinite 10000ms;
      }
  }

  /* End of Above The Fold --- */

  /* Offer */

  section.offer {
      margin-top: 64px;
      margin-bottom: 64px;
  }

  section.offer .row {
      --bs-gutter-x: 0;
      --bs-gutter-y: 0;
  }

  section.offer .row .col-md-6 {
      height: 300px;
      background-size: cover;
      background-repeat: no-repeat;
      background-position: center;
      position: relative;
      margin-top: 16px;
  }

  section.offer .text-content {
      width: 100%;
      padding: 32px;
      position: absolute;
      bottom: 0;
  }

  section.offer .text-content p.small {
      color: var(--primary-40);
      margin-bottom: 2px;
  }

  section.offer .text-content p.regular {
      color: var(--white);
      margin-bottom: 0;
  }

  section.offer .text-content p.regular,
  section.offer .text-content h2 {
      color: var(--white);
      margin-bottom: 8px;
  }

  section.offer .container>h2 {
      margin-bottom: 16px;
  }

  @media (min-width: 426px) {
      section.offer .row .col-md-6 {
          height: 400px;
          margin-top: 0;
      }

      section.offer {
          margin-top: 128px;
          margin-bottom: 64px;
      }
  }

  /* End of Offer --- */

  /* About Us */

  section.aboutUs {
      margin-bottom: 64px;
      margin-top: 64px;
  }

  section.aboutUs .container {
      padding: 64px;
      background-color: var(--secondary-10);
      border-radius: 12px;
      position: relative;
  }

  section.aboutUs h2 {
      margin-bottom: 8px;
      color: var(--secondary-100);
  }

  section.aboutUs img {
      position: absolute;
      opacity: 30%;
      right: 16px;
      bottom: 16px;
      height: 64px;
  }

  section.aboutUs p {
      color: var(--secondary-90);
  }

  @media (min-width: 1024px) {
      section.aboutUs p {
          width: 50%;
      }

      section.aboutUs img {
          height: 160px;
          right: 0;
          bottom: 0;
      }

  }

  /* End of About Us --- */

  /* Technology */

  section.technology {
      margin-top: 64px;
      margin-bottom: 64px;
  }

  section.technology h2 {
      margin-bottom: 16px;
      color: var(--secondary-100);
  }

  section.technology p.small {
      margin-bottom: 2px;
      color: var(--secondary-70);
  }

  section.technology p.large {
      margin-bottom: 8px;
      color: var(--secondary-100);
  }

  section.technology p.light {
      color: var(--secondary-90);
  }

  section.technology .row {
      --bs-gutter-x: 32px;
  }

  section.technology .row .col-md-6 .card-my {
      background-color: var(--secondary-10);
      border-bottom: 3px solid var(--primary-50);
      padding-bottom: 24px;
      height: 420px;
      margin-bottom: 32px;
      overflow: hidden;
      position: relative;
  }

  section.technology .row .col-md-6 img {
      height: 200px;
      object-fit: cover;
      width: 100%;
  }

  section.technology .row .col-md-6 .card-text-content {
      padding: 12px 24px;
      margin-top: 24px;
  }

  section.technology .col-md-6 img.bgr-overlay {
      position: absolute;
      bottom: -64px;
      right: -64px;
      height: auto;
      width: auto;
  }

  @media (min-width: 1024px) {
      section.technology .row .col-md-6 .card-my {
          padding-bottom: 24px;
          height: 550px;
          margin-bottom: 0;
      }

      section.technology .row {
          --bs-gutter-x: 16px;
      }
  }

  @media (min-width: 1200px) {
      section.technology .row .col-md-6 .card-my {
          height: 460px;
      }

      section.technology .row {
          --bs-gutter-x: 32px;
      }
  }

  /* End of Technology --- */

  /* Contact Us */

  section.contactUs {
      margin-bottom: 0;
      margin-top: 64px;
      background-color: var(--secondary-10);
      padding: 32px 0;
  }

  section.contactUs h2 {
      color: var(--secondary-100);
      margin-bottom: 24px;
      width: 100%
  }

  section.contactUs .row a.col-md-6 {
      gap: 12px;
      text-decoration: none;
      margin-bottom: 24px;
      align-items: center;
  }

  section.contactUs .row .col-md-6 p.light,
  section.contactUs .row .col-md-6 p.semibold {
      color: var(--secondary-100);
      margin-bottom: 0;
  }

  section.contactUs .row img {
      height: 36px;
  }

  @media (min-width: 1024px) {
      section.contactUs .row a.col-md-6 {
          margin-bottom: 0;
      }

      section.contactUs {
          padding: 64px 0;
      }
  }

  /* End of Contact Us --- */

  /* Footer */

  section.footer {
      margin: 0;
      width: 100vw;
      background-color: var(--primary-50);
  }

  section.footer footer p a {
    color: var(--primary-20);
    text-decoration: none;
  }

  section.footer footer {
      padding: 12px 0;
      display: flex;
      align-items: center;
      justify-content: space-between;
  }

  section.footer footer p {
      margin-bottom: 0;
      color: var(--primary-20);
  }