/*-----------------------------------*\
 * #CUSTOM PROPERTY
\*-----------------------------------*/

:root {

    /* colors*/
  
    --logo-orange: hsl(20, 100%, 50%);
    --middle-blue-green: hsl(176, 35%, 63%);
    --sonic-silver: hsl(0, 0%, 44%);
    --eerie-black: hsl(0, 0%, 9%);
    --ocean-green: hsl(148, 45%, 58%);
    --candy-pink: hsl(356, 65%, 63%);
    --cultured: hsl(0, 0%, 96%);
    --white: hsl(0, 0%, 100%);
    --black: hsl(0, 0%, 0%);
  
    /* typography*/
  
    --ff-pop: "poppins", sans-serif;
  
    --fs-1: 2.5rem;
    --fs-1-1: 1.875rem;
    --fs-2: 1.75rem;
    --fs-3: 1.625rem;
    --fs-4: 1.5rem;
    --fs-5: 1.375rem;
    --fs-6: 1.25rem;
    --fs-7: 1.125rem;
    --fs-8: 0.938rem;
    --fs-9: 0.875rem;
    --fs-10: 0.813rem;
  
    --fw-500: 500;
    --fw-400: 400;
  
    /**
     * transition
     */
  
    --transition-1: 0.25s ease;
    --transition-2: 0.75s ease;
    --cubic-out: cubic-bezier(0.51, 0.03, 0.64, 0.28);
    --cubic-in: cubic-bezier(0.33, 0.85, 0.56, 1.02);
  
    /**
     * spacing
     */
  
    --section-padding: 60px;
  
  }
  
  
  
  
  
  /*-----------------------------------*\
   * #RESET
  \*-----------------------------------*/
  
  *, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  li { list-style: none; }
  
  a { text-decoration: none; }
  
  a,
  img,
  span,
  input,
  button,
  ion-icon { display: block; }
  
  input,
  button {
    background: none;
    border: none;
    font: inherit;
  }
  
  button {
    text-align: left;
    cursor: pointer;
  }
  
  input {
    width: 100%;
    outline-color: var(--middle-blue-green);
  }
  
  img { 
    height: auto;
  }
  
  ion-icon { pointer-events: none; }
  
  html {
    font-family: var(--ff-pop);
    color: var(--sonic-silver);
    scroll-behavior: smooth;
    /* background-color: #BAE5F4; */
  }
  
  body {
    /* background: var(--white); */
    background: #BAE5F4;
    padding-block: 70px;
  }
  
  
  
  
  
  /*----------------
  OVERALL STYLE
  ------------------*/
  
  .container { padding-inline: 15px; }
  
  a,
  button { transition: var(--transition-1); }
  
  h3 > a { color: inherit; }
  
  .h1,
  .h2,
  .h3,
  .h4 {
    color: var(--eerie-black);
    font-weight: var(--fw-400);
  }
  
  .h1 {
    font-size: var(--fs-1);
    line-height: 1;
  }
  
  .h2 { font-size: var(--fs-2); }
  
  .h3 { font-size: var(--fs-6); }
  
  .h4 {
    font-size: var(--fs-7);
    font-weight: var(--fw-500);
  }
  
  .btn {
    background: var(--background, var(--logo-orange));
    color: var(--color, var(--white));
    font-weight: var(--fw-600);
    height: var(--height, 60px);
    padding-inline: 50px;
    /* border: 1px solid var(--border-color, var(--white)); */
    border-radius: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .btn-primary:is(:hover, :focus) {
    --background: var(--white);
    --color: var(--eerie-black);
    --border-color: var(--eerie-black);
  }
  
  .btn-secondary {
    --height: 50px;
    --background: var(--white);
    --color: var(--eerie-black);
    --border-color: var(--white);
  }
  
  .btn-secondary:is(:hover, :focus) {
    --background: var(--eerie-black);
    --color: var(--white);
    --border-color: var(--eerie-black);
  }
  
  .btn-outline {
    --height: 50px;
    --background: var(--white);
    --color: var(--eerie-black);
    --border-color: var(--eerie-black);
    padding-inline: 40px;
  }
  
  .btn-outline:is(:hover, :focus) {
    --background: var(--eerie-black);
    --color: var(--white);
    --border-color: var(--eerie-black);
  }
  
  .section { padding-block: var(--section-padding); }
  
  .w-100 { width: 100%; }
  
  .section-title {
    text-align: center;
    margin-bottom: 60px;
  }


  .btn {
    background: var(--background, var(--logo-orange));
    color: var(--color, var(--white));
    font-weight: var(--fw-600);
    height: var(--height, 60px);
    /* padding-inline: 30px; */
    /* padding: 0 25px; test */
    padding-left: 30px;
    padding-right: 5px;
    /* border: 1px solid var(--border-color, var(--white)); */
    border-radius: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .btn:hover .arrow-icon{
    transform: rotate(45deg);
    transition: 0.5s ease;
  }

  .btn .arrow-icon {
    margin-left: 20px;
  }

  .btn .arrow-icon {
    transition: transform 0.5s ease; /* Apply transition property to the SVG icon */
  }

  .btn:hover .arrow-icon {
    transform: rotate(45deg);
  }

  
  .btn-primary:is(:hover, :focus) {
    --background: var(--white);
    --color: var(--eerie-black);
    --border-color: var(--eerie-black);
  }
  
  .btn-secondary {
    --height: 50px;
    --background: var(--white);
    --color: var(--eerie-black);
    --border-color: var(--white);
  }
  
  .btn-secondary:is(:hover, :focus) {
    --background: var(--eerie-black);
    --color: var(--white);
    --border-color: var(--eerie-black);
  }
  
  .btn-outline {
    --height: 50px;
    --background: var(--white);
    --color: var(--eerie-black);
    --border-color: var(--eerie-black);
    padding-inline: 40px;
  }
  
  .btn-outline:is(:hover, :focus) {
    --background: var(--eerie-black);
    --color: var(--white);
    --border-color: var(--eerie-black);
  }
  
  
  
  
  
  
  /*-----------------------------------*\
   * #HEADER
  \*-----------------------------------*/
  
  .header-search { display: none; }
  
  .header {
    position: absolute;
    top: 0;
    left: 0;
    background: var(--white);
    width: 100%;
    padding-block: 20px;
    z-index: 4;
    transition: var(--transition-1);
  }
  
  .header.active {
    position: fixed;
    box-shadow: 0 2px 20px hsla(0, 0%, 0%, 0.1);
  }
  
  .header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .nav-open-btn {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 8px;
  }
  
  .nav-open-btn span {
    width: 20px;
    height: 2px;
    background: var(--black);
    transition: var(--transition-1);
  }
  
  .nav-open-btn span:nth-child(2) {
    transform: scaleX(0.5);
    transform-origin: right;
  }
  
  .nav-open-btn:is(:hover, :focus) span:nth-child(2) { transform: scaleX(1); }
  
  
  .nav-item{
    font-size: 20px;
  }

  .header-actions {
    background: var(--white);
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    gap: 5px;
    /* test */
    /* margin-left: 580px; */
    padding-block: 16px 10px;
    box-shadow: 0 -2px 20px hsla(0, 0%, 0%, 0.1);
    z-index: 1;
  }
  
  .header-action-btn {
    position: relative;
    width: 50px;
    text-align: center;
  }
  
  .header-action-btn ion-icon {
    margin-inline: auto;
    font-size: 22px;
    margin-bottom: 3px;
  }
  
  .header-action-label {
    color: var(--sonic-silver);
    font-size: var(--fs-10);
    transition: var(--transition-1);
  }
  
  .header-action-btn:is(:hover, :focus) .header-action-label { color: var(--eerie-black); }
  
  .header-action-btn .btn-badge {
    position: absolute;
    top: -5px;
    right: 0;
    background: var(--background, var(--eerie-black));
    width: 20px;
    height: 20px;
    display: grid;
    place-items: center;
    line-height: 0;
    font-size: 13px;
    color: var(--white);
    border-radius: 50%;
  }
  
  .header-action-btn .btn-badge.green { --background: var(--middle-blue-green); }
  
  .navbar {
    background: var(--white);
    position: fixed;
    top: 0;
    right: -300px;
    max-width: 300px;
    width: 100%;
    height: 100%;
    padding: 30px 25px;
    z-index: 3;
    visibility: hidden;
    transition: 0.25s var(--cubic-out);
  }
  
  .navbar.active {
    visibility: visible;
    transform: translateX(-300px);
    transition: 0.5s var(--cubic-in);
  }
  
  .navbar-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 60px;
  }
  
  .nav-close-btn ion-icon { font-size: 23px; }
  
  .navbar-link {
    padding-block: 10px;
    color: var(--eerie-black);
  }
  
  .navbar-list > li:not(:last-child) { border-bottom: 1px solid var(--cultured); }
  
  .overlay {
    position: fixed;
    inset: 0;
    background: var(--black);
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-1);
    z-index: 2;
  }
  
  .overlay.active {
    opacity: 0.7;
    pointer-events: all;
  }
  
  .logo img{
    width: 60px;
  }
  
  
  
  
  /*-----------------------------------*\
   * #HERO
  \*-----------------------------------*/
  
  .hero {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: left;
    width: 100%;
    min-height: 80vh;
    padding-block: var(--section-padding);
    display: flex;
    align-items: center;
  }
  
  .hero .container { 
    width: 100%; 
    height: 500px;
  }
  
  .hero-subtitle {
    color: var(--eerie-black);
    font-size: var(--fs-4);
    font-weight: var(--fw-600);
    margin-bottom: 20px;
  }
  
  .hero-title {
    margin-bottom: 35px;
    /* max-width: 12ch; */
  }

  .sub-title{
    position: absolute;
    top: 1150px;
    left: 1000px;
    color: #fff;
  }

  .btn-primary{
    font-size: 20px;
    position: absolute;
    left: 300px;
    top: 940px;
  }

  /* .hero-square:nth-child(2) {
    margin-right: 550px;
  } */
  
  /* img{
    margin-right: 250px;
  } */


  /*-----------------------------------*\
   * #1st section
  \*-----------------------------------*/
  .centered-div-1 {
    position: absolute;
    top: 1000px;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%; /* Adjust as needed for responsiveness */
    max-width: 1692px; /* Maximum width */
    height: 90vh; /* Adjust as needed for responsiveness */
    max-height: 1018px; /* Maximum height */
    background-color: #0D221B;
    border-radius: 45px;
    z-index: -1;

    display: flex; /* Use flexbox */
    /* justify-content: space-between; */
    padding: 20px;
  }

  @media (max-width: 600px) {
      .centered-div {
          width: 95%;
          height: 70vh;
      }
  }

  .get-start{
    margin-top: 500px;
    margin-left: 20px;
  }

  .hero-para{
    color: #fff;
    font-size: var(--fs-1-1);
    position: absolute;
    top: 110px;
    margin-left: 68px;
    font-weight: 400;
    width: 781px;
  }

  .hero-image-1{
    max-width: 600px;
    max-height: 600px;
    position: absolute;
    top: -130px;
    left: 1017px;
  }

  .hero-image-2{
    max-width: 600px;
    max-height: 600px;
    position: absolute;
    top: 1130px;
    left: 180px;
  }

  /*-----------------------------------*\
   * #2nd section
  \*-----------------------------------*/


  .about-section{
    font-size: var(--fs-1);
    font-family: var(--ff-pop);
    /* color: #000; */
    color: #000;
    /* color: var(--logo-orange); */
    margin-left: 68px;
    position: relative;
    top: -250px;
  }

  .centered-div-2 {
    position: absolute;
    top: calc(2000px + 500px);
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%; /* Adjust as needed for responsiveness */
    max-width: 1692px; /* Maximum width */
    height: 90vh; /* Adjust as needed for responsiveness */
    max-height: 1018px; /* Maximum height */
    background-color: #0D221B;
    border-radius: 45px;
    z-index: -1;
  }

  .about{
    position: absolute;
    top: 275vh;
    color: #fff;
    font-size: 3.5rem;
    margin-left: 170px;
  }

  .about-2{
    position: absolute;
    top: 275vh;
    color: #fff;
    font-size: 3.5rem;
    margin-top: 65px;
    margin-left: 350px;
  }
  
  .underline{
    background-color: #000000;
    background-color: var(--logo-orange);
    height: 10px;
    width: 450px;
    position: relative;
    bottom: 295px;
    z-index: -1;
    border-radius: 15px;
  }

  @media (max-width: 600px) {
      .centered-div {
          width: 95%;
          height: 70vh;
      }
  }
  


  /*-----------------------------------*\
   * #3rd section
  \*-----------------------------------*/

  .business-section{
    font-size: var(--fs-1);
    font-family: var(--ff-pop);
    color: #000;
    margin-left: 68px;
    position: relative;
    top: -250px;
  }
  
  .centered-div-3 {
    position: absolute;
    top: calc(3500px + 300px);
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%; /* Adjust as needed for responsiveness */
    max-width: 1692px; /* Maximum width */
    height: 90vh; /* Adjust as needed for responsiveness */
    max-height: 1018px; /* Maximum height */
    background-color: #0D221B;
    border-radius: 45px;
    z-index: -1;
  }

  .underline-2{
    background-color: #000000;
    background-color: var(--logo-orange);
    height: 10px;
    width: 950px;
    position: relative;
    bottom: 295px;
    z-index: -1;
    border-radius: 15px;
  }

  .business{
    position: absolute;
    top: 400vh;
    color: #ffffff;
    font-size: 3.5rem;
    margin-left: 170px;
  }

  .business-2{
    position: absolute;
    top: 400vh;
    color: #ffffff;
    font-size: 3.5rem;
    margin-top: 65px;
    margin-left: 350px;
  }

  @media (max-width: 600px) {
      .centered-div {
          width: 95%;
          height: 70vh;
      }
  }



  /*-----------------------------------*\
   * #4th section
  \*-----------------------------------*/

  .centered-div-4 {
    position: absolute;
    top: calc(5000px + 200px);
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%; /* Adjust as needed for responsiveness */
    max-width: 1692px; /* Maximum width */
    height: 90vh; /* Adjust as needed for responsiveness */
    max-height: 1018px; /* Maximum height */
    background-color: #0D221B;
    border-radius: 45px;
    z-index: -1;
  }

  .hero-image-3{
    max-width: 600px;
    max-height: 600px;
    position: absolute;
    top: -250px;
    left: 130px;
    border-radius: 300px;
  }

  .hero-para-me{
    color: #fff;
    font-size: var(--fs-1);
    position: absolute;
    top: 30px;
    margin-left: 800px;
    font-weight: 400;
    width: 781px;
  }

  .hero-para-me-2{
    color: #fff;
    font-size: var(--fs-1-1);
    position: absolute;
    top: 180px;
    margin-left: 800px;
    font-weight: 400;
    width: 781px;
  }

  .hero-para-me-3{
    color: #fff;
    font-size: var(--fs-1-1);
    position: absolute;
    top: 750px;
    margin-left: 280px;
    font-weight: 400;
    width: 781px;
  }

  .profile{
    position: absolute;
    top: 530vh;
    color: #ffffff;
    margin-top: 120px;
    font-size: 3.5rem;
    margin-left: 170px;
  }

  .profile-2{
    position: absolute;
    top: 530vh;
    color: #ffffff;
    font-size: 3.5rem;
    margin-top: 240px;
    margin-left: 450px;
  }


  .social-icons {
    display: flex;
    position: absolute;
    top: 746px;
    margin-left: 880px;
  }

  .social-icons a {
    margin-right: 30px;
  }

  .social-icons img {
    width: 50px;
    height: 50px;
    height: auto;
  }

  @media (max-width: 600px) {
    .centered-div {
        width: 95%;
        height: 70vh;
    }
  }
  
  /*-----------------------------------*\
   * #PRODUCT
  \*-----------------------------------*/
  
  
  
  /* Get started button */
  .get-started-btn-black {
    /* top: 3.5px; */
    /* bottom: 32px; */
    /* left: 0px; */
    border-radius: 25px;
    background-color: #FCCDCD;
    width: 190px;
    height: 53px;
    position: absolute;
    z-index: 9999;
    color: #000;
    text-align: center;
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center;
  }
  
  a .get-started-btn-black {
    padding-left: 8px;
  }
  
  .get-started-btn-black:hover{
    color: #fff;
  }
  
  svg{
    width: 40px;
    height: 40px;
    margin-left: 10px;
  }
  
  .get-started-btn-black:hover svg {
    transform: rotate(45deg);
    transition: 0.3s ease 200ms;
  }
  
  .get-started-btn-black svg {
    transition: transform 0.3s ease;
  }

  /* black box tomato */
  .centered-div {
    position: absolute;
    top: 1000px;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%; /* Adjust as needed for responsiveness */
    max-width: 1692px; /* Maximum width */
    height: 90vh; /* Adjust as needed for responsiveness */
    max-height: 1018px; /* Maximum height */
    background-color: #0D221B;
    border-radius: 45px;
    z-index: -1;
  }

  @media (max-width: 600px) {
      .centered-div {
          width: 95%;
          height: 70vh;
      }
  }
  
  
  
  
  /*-----------------------------------*\
   * #MEDIA QUARIES
  \*-----------------------------------*/
  
  /**
   * responsive for larger than 480px screen
   */
  
  @media (min-width: 480px) {
  
    /**
     * CUSTOM PROPERTY
     */
  
    :root {
  
      /**
       * typography
       */
  
      --fs-1: 3rem;
      --fs-2: 2rem;
  
    }
  
  
  
    /**
     * CATEGORY
     */
  
    .category-list > li { width: calc(50% - 15px); }

    /**
     * body
     */
     /* .hero-image-1{
      max-width: 250px;
      max-height: 250px;
      position: absolute;
      top: -130px;
      left: 120px;
    }

    .hero-para{
      color: #fff;
      font-size: var(--fs-4);
      position: absolute;
      top: 140px;
      margin-left: 25px;
      font-weight: 400;
      width: 400px;
    }

    .btn-primary{
      font-size: 20px;
      position: absolute;
      left: 200px;
      top: 980px;
    }

    .hero-image-2{
      max-width: 350px;
      max-height: 350px;
      position: absolute;
      top: 1130px;
      left: 90px;
    } */

  
  
    /**
     * PRODUCT
     */
  
    .product-list > li { width: calc(50% - 12.5px); }
  
  
  
    /**
     * FOOTER
     */
  
    .footer-brand { width: 100%; }
  
    .footer-text { max-width: 470px; }
  
    .footer-list { width: calc(50% - 20px); }
  
  }
  
  
  
  
  
  /**
   * responsive for larger than 580px screen
   */
  
  @media (min-width: 580px) {
  
    /**
     * CUSTOM PROPERTY
     */
  
    :root {
  
      /**
       * typography
       */
  
      --fs-1: 3.75rem;
      --fs-2: 2.375rem;
      --fs-3: 2.25rem;
  
    }
  
  
  
    /**
     * REUSED STYLE
     */
  
    .container {
      max-width: 550px;
      margin-inline: auto;
    }
  
  }
  
  
  
  
  
  /**
   * responsive for larger than 768px screen
   */
  
  @media (min-width: 768px) {
  
    /**
     * REUSED STYLE
     */
  
    .container { max-width: 700px; }
  
  
  
    /**
     * HERO
     */
  
    .hero {
      background-position: center;
      min-height: 800px;
    }
  
  
  
    /**
     * BLOG
     */
  
    .blog-list > li { width: calc(50% - 15px); }
  
  
  
    /**
     * NEWSLETTER
     */
  
    .newsletter-card > * {
      max-width: 480px;
      margin-inline: auto;
    }
  
    .newsletter-card .card-form { position: relative; }
  
    .newsletter-card .input-wrapper { margin-bottom: 0; }
  
    .newsletter-card .btn {
      position: absolute;
      top: 0;
      right: 0;
      bottom: 0;
      width: max-content;
      padding-inline: 35px;
      border-radius: 0 6px 6px 0;
    }
  
  
  
    /**
     * FOOTER
     */
  
    .footer-list { width: calc(33.33% - 26.66px); }
  
    .copyright,
    .footer-bottom-list { margin-bottom: 0; }
  
    .footer-bottom .container {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      align-items: center;
      gap: 25px 50px;
    }
  
  }
  
  
  
  
  
  /**
   * responsive for larger than 992px screen
   */
  
  @media (min-width: 992px) {
  
    /**
     * CUSTOM PROPERTY
     */
  
    :root {
  
      /**
       * typography
       */
  
      --fs-1: 5rem;
  
    }
  
  
  
    /**
     * RESET
     */
  
    body { padding-block: 0; }
  
  
  
    /**
     * REUSED STYLE
     */
  
    .container { max-width: 950px; }
  
  
  
    /**
     * HEADER
     */
  
    .header {
      position: relative;
      padding-block: 15px;
      border-bottom: 1px solid hsla(0, 0%, 0%, 0.1);
      margin-bottom: 67px;
    }
  
    .header.active {
      position: relative;
      box-shadow: none;
    }
  
    .header .container {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      align-items: center;
    }
  
    .header-search {
      display: block;
      position: relative;
      width: max-content;
    }
  
    .header-search .input-field {
      border: 1px solid hsla(0, 0%, 0%, 0.1);
      width: 280px;
      padding: 12px 30px;
      border-radius: 6px;
      transition: var(--transition-1);
    }
  
    .header-search .input-field:focus { outline: 1px solid var(--eerie-black); }
  
    .header-search .search-btn {
      position: absolute;
      top: 50%;
      right: 15px;
      transform: translateY(-50%);
      font-size: 20px;
      color: var(--eerie-black);
    }
  
    .header-search .search-btn ion-icon { --ionicon-stroke-width: 30px; }
  
  
    .nav-open-btn,
    .header-action-btn:nth-child(2),
    .navbar-top,
    .overlay { display: none; }
  
    .header-actions {
      all: unset;
      display: flex;
      justify-content: flex-end;
      align-items: center;
      gap: 15px;
    }
  
    .navbar {
      all: unset;
      position: absolute;
      top: calc(100% + 1px);
      left: 0;
      width: 100%;
      background: var(--white);
    }
  
    .header.active .navbar {
      position: fixed;
      top: 0;
      box-shadow: 0 2px 20px hsla(0, 0%, 0%, 0.1);
    }
  
    .navbar-list {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 40px;
    }
  
    .navbar-list > li:not(:last-child) { border-bottom: none; }
  
    .navbar-link {
      font-size: var(--fs-7);
      font-weight: var(--fw-500);
      padding-block: 20px;
    }
  
    .navbar-link:is(:hover, :focus) { color: var(--middle-blue-green); }
    

    
  
  
    /**
     * CATEGORY
     */
  
    .category-list > li:not(:first-child, :nth-child(2)) { width: calc(25% - 22.5px); }
  
  
  
    /**
     * PRODUCT
     */
  
    
  
    /**
     * BLOG
     */
  
    
  
  
  
    /**
     * NEWSLETTER
     */
  
    
  
  }
  
  
  
  
  
  /**
   * responsive for larger than 1200px screen
   */
  
  @media (min-width: 1200px) {
  
    /**
     * CUSTOM PROPERTY
     */
  
    :root {
  
      /**
       * typography
       */
  
      --fs-1: 6.25rem;
  
    }
  
  
  
    /**
     * REUSED STYLE
     */
  
    .container { max-width: 1550px; }
  
  
  
    /**
     * HEADER
     */
  
    .header-search .input-field { width: 350px; }
  
  
  
    /**
     * PRODUCT
     */
  
    .product-list > li { width: calc(25% - 18.75px); }
  
  
  
    /**
     * FOOTER
     */
  
    .footer-brand { width: calc(40% - 30px); }
  
    .footer-text { max-width: 340px; }
  
    .footer-list { width: calc(20% - 30px); }
  
    .footer-bottom .container { justify-content: space-between; }
  
  }