
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

/* Reset some default styles */
body, h1, h2, h3, h4, h5, h6, p, ul {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
/* Basic body styling */
body {
    font-family: "Roboto", sans-serif;
    background-color: #000000; /* Adjust to match the background pattern */
    color: #fff;
    background-image: url(Images/Black\ BG.svg);
    /* max-width: 90rem; */
    max-width: 90rem;
    margin: auto;
    
}

/* Default font sizes */
h1 {
    font-size: 52px;
}

h2 {
    font-size: 44px;
}

h3 {
    font-size: 36px;
}

h4 {
    font-size: 32px;
}

h5 {
    font-size: 28px;
}

h6 {
    font-size: 24px;
}

p {
    font-size: 16px;
}


/* Navbar Styles */
.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    /* background-color: white; */
    background-color: RGBA(255,255,255,0.8);
    backdrop-filter: blur(10px);
    padding: 10px 20px;
    border-radius: 50px;
    max-width: 69rem;
    width: calc(100% - 40px);
    margin: 10px auto;
    position: fixed;
    top: 10px;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 
        0 0 0 2px rgba(248, 160, 63, 0.6) inset,
        0 0 0 2px rgba(255, 248, 237, 1) inset,
        0 0 0 2px rgba(248, 160, 63, 0.6) inset,
        0 0 0 2px rgba(255, 248, 237, 1) inset;
}

/* .navbar-brand {
    color: black;
    text-decoration: none;
    font-size: 24px;
    font-weight: bold;
} */

.navbar-brand img {
    max-width: 44px;
    max-height: 44px ;
    border-radius: 12px;
    margin: auto;
    padding: 5px;
    margin-top: auto;
    margin-bottom: auto;
    margin-left: 8px;
    align-items: center;
}

.navbar-nav {
    list-style: none;
    padding: 0px;
    margin: auto;
    display: flex;
    flex-grow: 1;
    /* justify-content: space-between; */
    justify-content:space-evenly;
    align-items: center; 
}

.navbar-nav .nav-item {
    margin: 0 10px;
}

.navbar-nav .nav-link {
    color: black;
    text-decoration: none;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
    padding: 10px;
    border-radius: 5px;
    transition: background-color 0.3s ease, color 0.3s ease;
    display: flex;
    align-items: center; /* Center items vertically */
}
 
.navbar-nav .nav-link:hover {
    /* background-color: #bebebc; */
    color: #d15710;
}

.navbar-nav .nav-link.active {
    /* background-color: #D15710;
    width: 140px;
    justify-content: center;
    color: white; */
    color: #D15710;
}



.navbar-toggler {
    display: none;
    border: none;
    color: rgb(0, 0, 0);
    padding: 10px;
    font-size: 20px;
    cursor: pointer;
}


.navbar-nav .button {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #D15710;
    color: white;
    /* padding: 10px 20px; */
    text-align: center;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
    width: fit-content;
    box-shadow: 0px -4px 0px 0px #983F14 inset;
    border-radius: 12px;
}

.navbar-nav .button img {
    margin-right: 8px;
}

.navbar-nav .button:hover {
    background-color: rgba(255, 106, 20, 1);
    color: white;
}

.navbar-nav .button:active {
    box-shadow: 0px 0px 0px 0px #983F14 inset;
}

.navbar-nav .button.active {
    box-shadow: 0px 0px 0px 0px #983F14 inset;
    color: white;
}

@media (max-width: 2560px) and (min-width: 1300px){

    .navbar {
        max-width: 80rem;
    }
}

@media (max-width: 1200px) {
    .navbar {
        padding: 5px;
        border-radius: 50px;
        max-width: 58rem;
        background-color: white;
        
    }

    .navbar-nav {
        display: none;
        flex-direction: column;
        width: 100%;
        background-color: white;
        position: absolute;
        top: 80px;
        left: 0;    
        justify-content: flex-start; /* Align items to the start */
        align-items: flex-start; /* Align items to the start */
        box-shadow: 
            0 0 0 0.5px rgba(248, 160, 63, 0.6) inset,
            0 0 0 0.5px rgba(255, 248, 237, 1) inset,
            0 0 0 0.5px rgba(248, 160, 63, 0.6) inset,
            0 0 0 0.5px rgba(255, 248, 237, 1) inset;
        border-radius: 20px;
        padding: 10px 10px; /* Add padding for the menu container */
    }

    .nav-item {
        padding: 10px 0; /* Add padding for top and bottom */
        margin: 5px 0; /* Add some margin between items */
        width: 90%; /* Adjust width to not take full width */
    }

    .nav-link {
        margin: 0px;
        padding: 10px 20px; /* Add padding for left alignment */
        width: 100%; /* Ensure full width within the nav-item */
        text-align: left; /* Align text to the left */
    }

    .navbar-nav.active {
        display: flex;
    }

    .navbar-toggler {
        display: block;
        margin-right: 12px;
        background-color: white;
    }

    .navbar {
        flex-wrap: wrap;
    }
}



/* Hero Section */
.hero {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 100px 64px;
    max-width: 90rem;
    /* background-color: #222; */
    margin-top: 80px; /* Add margin to account for the fixed header */
    /* background: url(Images/Black\ BG.svg) lightgray 10% 10% / 100px 100px repeat, #0D0D0D;  */
}

#hero-content_p {
    display: inline-flex;
    /* align-items: center; */
    justify-content: center;
    font-size: 12px;
    line-height: 150%;
    letter-spacing: 0.08em;
    font-weight:normal;    
    padding: 8px 8px;
    margin-bottom: 12px;
    color: #ffffff;
    background: linear-gradient(180deg, rgba(255, 248, 237, 0.04), rgba(248, 160, 63, 0.12));
    border: 1px solid;
    border: linear-gradient(180deg, rgba(248, 160, 63, 1), rgba(255, 248, 237, 1));
    border-radius: 30px;
    /* box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); */
    /* cursor: pointer; */
    transition: background 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

#hero-content_p img{
    width: 14px;
    height: 14px;
    justify-content: center;
    padding-right: 4px;
}


.hero-content {
    max-width: 600px;
}

.hero-content h1 {
    font-size: 52px;
    font-style: italic;
    font-weight: bolder;
    line-height: 120%;
    color: white;
    margin-bottom: 12px;
}

#hero-content_h1{
    font-weight: normal;
    font-style: normal;
}


.hero-content_p2 {
    font-size: 16px;
    margin: 15px 0;
    line-height: 150%;
    color: rgba(255, 255, 255, 0.72);
    width: 60%;
    margin-bottom: 40px;
    
}

.store-buttons a img{
    display: inline-block;
    width: 204PX;
    padding-right: 16px;
}
.hero-image img {
    /* max-width: 100%; */
    max-width: 500px;
    /* border-radius: 20px; */
}


/* Media Queries for Responsive Design */

/* Tablet View */
@media (max-width: 1200px) and (min-width: 600px) {
    .hero {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 80px 40px;
        max-width: 60rem;
        /* background-color: #222; */
        margin-top: 80px; /* Add margin to account for the fixed header */
        /* background: url(Images/Black\ BG.svg) lightgray 10% 10% / 100px 100px repeat, #0D0D0D;  */
    }
    
    #hero-content_p {
        display: inline-flex;
        /* align-items: center; */
        justify-content: center;
        font-size: 10px;
        line-height: 150%;
        letter-spacing: 0.08em;
        font-weight:normal;    
        padding: 8px 8px;
        margin-bottom: 12px;
        color: #ffffff;
        background: linear-gradient(180deg, rgba(255, 248, 237, 0.04), rgba(248, 160, 63, 0.12));
        border: 1px solid;
        border-radius: 30px;
    }
    
    #hero-content_p img{
        width: 14px;
        height: 14px;
        justify-content: center;
        padding-right: 4px;
    }
    
    
    .hero-content {
        max-width: 600px;
    }
    
    .hero-content h1 {
        font-size: 44px;
        font-style: italic;
        font-weight: bolder;
        line-height: 120%;
        color: white;
        margin-bottom: 12px;
    }
    
    #hero-content_h1{
        font-weight: normal;
        font-style: normal;
    }
    
    
    .hero-content_p2 {
        font-size: 16px;
        margin: 15px 0;
        line-height: 150%;
        color: rgba(255, 255, 255, 0.72);
        width: 60%;
        margin-bottom: 40px;
        
    }
    
    .store-buttons a img{
        display: inline-block;
        width: 132px;
        margin: 0px;
        padding: 0px;
        gap: 8px;
    }
    
    .hero-image img {
        /* max-width: 100%; */
        max-width: 360px;
        /* border-radius: 20px; */
    }
}
  
  /* Mobile View */
  @media (max-width: 600px) {
    .hero {
        padding: 80px 20px;
      flex-direction: column;
      align-items: center;
      max-width: 60rem;
      margin-top: 50px;
    }

    .hero-content {
      max-width: 100%;
      text-align: center;
    }
  
    #hero-content_p {
        font-size: 10px;
        line-height: 150%;
        letter-spacing: 0.08em;
      padding: 8px 8px;
      align-items: center;
    }
  
    #hero-content_p img{
        width: 12px;
        height: 12px;
        justify-content: center;
        padding-right: 4px;
    }
  
    .hero-content h1 {
      font-size: 44px;
      /* display: none; */
    }

    #hero-content_h1{
        display: block;
        font-size: 38px;
    }
  
    .hero-content_p2 {
      font-size: 16px;
      text-align: center ;
      /* padding-left: 12%; */
      margin-bottom: 24px ;
      width: 100%;
    }
  
    .store-buttons a img {
      width: 150px;
      align-items: center;
    }
  
    /* .hero-image {
      margin-top: 20px;
    } */
  
    .hero-image img {
      margin-top: 40px;
      max-width: 322px;
      justify-content: center;
      align-items: center;
    }
  }
  
/* ---------------------------------------------------------------------------------------------------------- */

/* Steps Section */
.steps {
    background-color: rgba(255, 249, 246, 1);
    background-image: url(Images/White\ BG.svg);
    max-width: 90rem;
    padding: 100px 64px;
    text-align: center;
    color: #000;
    overflow: hidden;
}

.stepsHeading{
    padding-bottom: 4%;
}

.stepsHeading p{
    color: #D15710;
    font-size: 14px;
    letter-spacing: 0.1em;
    font-weight: 500;
    /* color: rgba(209, 87, 16, 1); */
    line-height: 150%;
    font-style: normal;
    margin-bottom: 12px;
}

.stepsHeading h2 {
    margin-bottom: 80px;
    font-size: 44px;
    font-weight: normal;
    font-style: normal;
    line-height: 120%;
}

.steps_h2{
    font-weight: 900;
    font-style: italic;
}

.step {
    display: inline-block;
    max-width: 290px;
    padding: 20px;  
    background-color: #ffffff;
    margin: 10px;
    position: relative;
    border-radius: 20px;
    /* Apply gradient to the border using box-shadow */
    box-shadow: 
        0 0 0 0.5px rgba(248, 160, 63, 1) inset, /* Top border */
        0 0 0 0.5px rgba(209, 87, 16, 1) inset, /* Bottom border */
        0 0 0 0.5px rgba(248, 160, 63, 1) inset, /* Left border */
        0 0 0 0.5px rgba(209, 87, 16, 1) inset; /* Right border */
}

/* .step img {
    position: absolute;
    left: 0px;
    top: -90px;
    padding-left: 20px;
} */

.Step_Heading {
    position: absolute;
    left: 10px;
    top: -112px;
    padding-left: 10px;
    font-family: Roboto;
    font-size: 140px;
    font-style: normal;
    font-weight: 700;
    line-height: 130%; /* 208px */
    background: linear-gradient(180deg, #D15710 0%, #0B0B0B 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    /* width: fit-content; */
}


.step h3 {
    margin-bottom: 10px;
    font-size: 26px;
    text-align: center; 
    display: flex;
    align-items: center;
    margin-top: 25%;
}

.step p {
    font-size: 15px;
    color: #000;
    font-weight:400;
    line-height: 150%;
    text-align: start;    
}

/* Media Queries for Responsive Design */

/* Tablet View */
@media (max-width: 1200px) and (min-width: 601px) {
    .steps {
        padding: 80px 40px;
    }
  
    .step {
        display: inline-block;
        max-width: 280px;
        padding: 20px;  
        background-color: #ffffff;
        margin-top: 80px;
    }
  
    /* .step img {
        position: absolute;
        left: 0px;
        top: -55px;
        padding-left: 24px;
        width: 50px;
    } */

    .Step_Heading{
        left: 8px;
        top: -92px;
        font-size: 110px;
    }

    .step h3 {
        margin-bottom: 10px;
        font-size: 26px;
        text-align: center; 
        display: flex;
        align-items: center;
        margin-top: 15%;
    }
    
    .step p {
        font-size: 15px;
        color: #000;
        font-weight:400;
        line-height: 150%;
        text-align: start;    
    }

    .stepsHeading h2 {
        margin-bottom: 0px;
        font-size: 36px;
    }

    .stepsHeading p {
        margin-bottom: 0px;
        font-size: 14px;
      }
    
      .stepsHeading{
        padding-bottom: 4%;
    }
  }
  
  /* Mobile View */
  @media (max-width: 600px) {
    .steps {
        padding: 80px 20px;
    }
  
    .stepsHeading p {
      font-size: 12px;
      margin-bottom: 20px;
    }
  
    .stepsHeading h2 {
      font-size: 30px;
      margin-bottom: 50px;
    }
  
    .step {
      display: inline-block;
      max-width: 290px;
      margin: 50px auto;
      padding: 15px;
      /* margin-top: 80px; */
      border-radius: 20px;
      position: relative;
    }
  
    /* .step img {
      position: absolute;
      left: 0px;
      top: -50px;
      padding-left: 20px;
      max-width: 45px;
        } */
    
        .Step_Heading{
            left: 8px;
            top: -76px;
            font-size: 90px;
        }
  
    .step h3 {
      font-size: 24px;
      text-align: center; 
      display: flex;
      align-items: center;
      margin-top: 12%;
    }
  
    .step p {
      font-size: 14px;
      color: #000;
      font-weight:400;
      line-height: 150%;
      text-align: start; 
    }
  }

/* ---------------------------------------------------------------------------------------------------------- */    

/* Features Section */

/* .features {
    padding: 40px 0;
    background-color: #222;
}

.features h2 {
    text-align: center;
    margin-bottom: 20px;
    font-size: 44px;
}

.feature {
    display: inline-block;
    width: 45%;
    padding: 20px;
    background-color: #333;
    margin: 10px;
    border-radius: 10px;
    text-align: center;
} */

/* Features Section */
.features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 90rem;
    padding: 100px 64px;
    background-size: cover;
}

.features-left {
    position: -webkit-sticky;
    position: sticky;
    top: 198px;
    /* padding-top: 40px; */
    /* padding-top: 100px; /* */
    /* margin-top: 20px; */
    align-self: self-start; /* Aligns the sticky element to the start */
}

.features-left h2 {
    color: #D15710;
    font-size: 14px;
    letter-spacing: 0.1em;
    font-weight: 500;
    /* color: rgba(209, 87, 16, 1); */
    line-height: 150%;
    font-style: normal;
    margin-bottom: 12px;
}

.features-left h1 {
    font-size: 44px;
    font-style: normal;
    font-weight: 700;
    line-height: 120%; /* 52.8px */
    margin-bottom: 16px;
    color: rgba(255, 255, 255, 1);
}

.features-left p {
    font-size: 16px;
    font-style: normal;
    width: 80%;
    font-weight: 400;
    line-height: 150%; /* 27px */
    margin-bottom: 24px;
    color: rgba(255, 255, 255, 0.72);
}

.features-left button img{
    max-width: 24px;
    max-height: 24px;
    margin-right: 4px;
}

.features-left button{
    border: none;
    color: #fff;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 12px;
    background: #D15710; 
    box-shadow: 0px -4px 0px 0px #983F14 inset;
    display: flex;
    align-items: center;
}

.features-left button:hover {
    background-color: rgba(255, 106, 20, 1);
}

.features-left button:active {
    box-shadow: 0px 0px 0px 0px #983F14 inset;
}


.features-right {
    display: flex;
    flex-direction: column;
    gap: 30px;  
    margin-left: auto;
    width: 80%;
}

.feature-card {
    background-color: #22222200;
    padding: 20px;
    border-radius: 8px;
   /* Apply gradient to the border using box-shadow */
   box-shadow: 
   0 0 0 0.5px rgba(248, 160, 63, 0.6) inset, /* Top border */
   0 0 0 0.5px rgba(255, 248, 237, 1) inset, /* Bottom border */
   0 0 0 0.5px rgba(248, 160, 63, 0.6) inset, /* Left border */
   0 0 0 0.5px rgba(255, 248, 237, 1) inset; /* Right border */
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* width: 100%; */
}

.feature-card img {
    max-width: 100%;
    /* height: 350px; */
    border-radius: 8px;
}

.feature-card h2 {
    margin-top: 20px;
    font-size: 36px;
    font-style: normal;
    font-weight: 700;
    line-height: 120%; /* 38.4px */
}

.feature-card p {
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%; /* 24px */
    color: rgba(255, 255, 255, 0.72);
    margin-top: 15px;
}

/* Media Queries for Responsive Design */

/* Tablet View */
@media (max-width: 1200px) and (min-width: 601px) {
    .features {
      grid-template-columns:  1fr;
      padding: 80px 40px;
    }
  
    .features-left {
      padding-top: 0;
      text-align: center;
      position: static;
    }
  
    .features-left h1 {
      font-size: 36px;
    }

    .features-left h2 {
      /* font-size: 36px; */
      margin-bottom: 20px;
    }
  
    .features-left p {
      font-size: 16px;
      text-align: center;
      margin: auto; /* Center horizontally */
      width: 70%;
    }
  
    .features-left button {
      font-size: 14px;
      padding: 8px 16px;
      text-align: center;
      margin: 20px auto; /* Center horizontally */
    }
   
    .features-right {
        display: flex;
        /* align-items: center; */
        gap: 20px;  
        max-width:50%;
        margin: auto;
    }
  
    /* .feature-card {
      padding: 15px;
      display: flex;
      flex-direction: column;
    } */
    /* .feature-card img{
        width: 50%; 
    } */
    
    .feature-card h2 {
      font-size: 28px;
    }
  
    .feature-card p {
      font-size: 12px;
    }
  }
  
  /* Mobile View */
  @media (max-width: 600px) {
    .features {
      grid-template-columns: 1fr;
      padding: 80px 20px;
    }
  
    .features-left {
      padding-top: 0;
      position: relative;
      top: 0;
      text-align: center;
    }
    
    .features-left h1 {
      font-size: 30px;
    }
    .features-left h2 {
      font-size: 12px;
      margin-bottom: 20px;
    }
  
    .features-left p {
      font-size: 14px;
      text-align: center;
      margin: auto; /* Center horizontally */
      width: 100%;
      margin-bottom: 20px;
    }
  
    .features-left button {
      font-size: 16px;
      padding: 8px 14px;
      text-align: center;
      margin: 22px auto; /* Center horizontally */
      margin-bottom: 30px;
    }
  
    .features-right {
      width: 100%;
    }
  
    .feature-card {
      padding: 15px;
      margin-bottom: 20px;
    }
  
    .feature-card h2 {
      font-size: 24px;
    }
  
    .feature-card p {
      font-size: 14px;
    }
  }

/* ---------------------------------------------------------------------------------------------------------- */

/* Full Potential Section */
.full-potential {
    background-color: rgb(255, 249, 246);
    background-image: url(Images/White\ BG.svg);
    max-width: 90rem;
    padding: 100px 64px;
    color: #000;
    text-align: center;
}

.full-potential h3 {
    color: #D15710;
    font-size: 14px;
    letter-spacing: 0.1em;
    font-weight: 500;
    /* color: rgba(209, 87, 16, 1); */
    line-height: 150%;
    font-style: normal;
    margin-bottom: 12px;
}

.full-potential h2 {
    text-align: center;
    font-size: 44px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%; /* 52.8px */
    margin-bottom: 16px;
}

.full-potential p {
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%; /* 27px */
    color: rgba(0, 0, 0, 1);
    padding: 16px 0px;
    margin-bottom: 80px;
}

#full-potential_h2 {
    font-size: 44px;
    font-style: italic;
    font-weight: 700;
    line-height: 120%;
}

/* Contact Sharing Section */
.contact-sharing {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    background-color: #fff;
    border-radius: 12px;
    overflow: hidden;
    margin: 40px 0px;
    /* max-height: fit-content; */
    box-shadow: 
        0 0 0 0.5px rgba(248, 160, 63, 1) inset, /* Top border */
        0 0 0 0.5px rgba(209, 87, 16, 1) inset, /* Bottom border */
        0 0 0 0.5px rgba(248, 160, 63, 1) inset, /* Left border */
        0 0 0 0.5px rgba(209, 87, 16, 1) inset; /* Right border */
}

.left-column {
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start; /* Ensure content is aligned to start */
}

.right-column {
    background-color: rgba(106, 33, 0, 1);
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.left-column h2 {
    font-size: 36px;
    font-style: normal;
    font-weight: 700;
    line-height: 120%; /* 43.2px */
    color: rgba(0, 0, 0, 1);
    margin-bottom: 10px;
    text-align: left;
}

.left-column p {
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%; /* 24px */
    margin-bottom: 10px;
    text-align: left;
}

.left-column button {
    border: none;
    color: #fff;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 12px;
    background: #D15710;
    box-shadow: 0px -4px 0px 0px #983F14 inset;
    display: flex;
    align-items: center;
}

.left-column button:hover {
    background-color: rgba(255, 106, 20, 1);
}

.left-column button:active {
    box-shadow: 0px 0px 0px 0px #983F14 inset;
}

.left-column button img {
    max-width: 24px;
    max-height: 24px;
    margin-right: 4px;
}

.right-column img {
    max-width: 250px;
    border-radius: 8px;
    transform: translate(0%, 30%);
}

/* Tablet view */
@media (max-width: 1200px) and (min-width: 601px) {
    .contact-sharing{
        margin: 20px 0px;
    }

    .full-potential{
        padding: 80px 40px;
    }

    .full-potential h3 {
        font-size: 14px;  
        margin-bottom: 20px;
    }

    .full-potential h2 {
        font-size: 36px;
        margin: 0px;
    }

    .full-potential p {
        font-size: 16px;
        margin-bottom: 40px;
    }

    .contact-sharing {
        /* grid-template-columns: 1fr; */
        gap: 10px;
    }

    .left-column h2 {
        font-size: 28px;
    }

    .left-column p {
        font-size: 14px;
        margin: 0px;
    }

    .left-column button {
        font-size: 14px;
        padding: 10px 14px;
    }

    .right-column {
        transform: translate(0%, 0%);
    }
}

/* Mobile view */
@media (max-width: 600px) {

    .contact-sharing{
        margin: 20px 0px;
    }

    .full-potential  {
        padding:80px 20px;
    }

    .full-potential h2 {
        font-size: 30px;
        margin: auto;
    }

    .full-potential h3{
        font-size: 12px;
        margin-bottom: 20px;
    }

    .full-potential p {
        font-size: 16px;
        margin-bottom: 50px;
    }

    #full-potential_h2 {
        font-size: 36px;
    }

    .contact-sharing {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .left-column {
        margin: 0px 0px;
        align-items: flex-start;
        padding: 15px
    }

    .left-column h2 {
        font-size: 24px;
        /* width: 80%; */
        text-align: start; 
        padding: 0px;
        margin: 0px;
    }

    .left-column p {
        font-size: 14px;
        text-align: start;
        /* width: 80%; */
        margin-bottom: 20px;
    }

    .left-column button {
        font-size: 14px;
        padding: 10px 14px;
    }

    .right-column {
        width: 100%;
        display: flex;
        overflow: hidden;
    }

    .right-column img {
        margin: 0px;
        padding: 0px;
    }

}



/* ---------------------------------------------------------------------------------------------------------- */

/* Testimonials Section */


/* Testimonials Section */
.testimonials {
    /* padding: 40px 0; */
    text-align: center;
}

.testimonials h3 {
    color: #D15710;
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%; 
    letter-spacing: 1.6px;
    margin-bottom: 10px;
}

.testimonials h2 {
    color: #FFF;
    text-align: center;
    font-family: Roboto;
    font-size: 44px;
    font-style: normal;
    font-weight: 700;
    line-height: 120%; 
    margin-bottom: 10px;
}

.testimonials p {
    color: rgba(255, 255, 255, 0.72);
    text-align: center;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%; 
}

/* Container for Testimonials Section */
.container {
    max-width: 90rem;
    padding: 100px 64px;
    margin: 0 auto;
    text-align: center;
}

/* Header for Testimonials Section */
.testimonialHeader {
    margin-bottom: 40px; 
}

.testimonialHeader h2 {
    color: #D15710;
    font-size: 14px;
    letter-spacing: 0.1em;
    font-weight: 500;
    /* color: rgba(209, 87, 16, 1); */
    line-height: 150%;
    font-style: normal;
    margin-bottom: 12px;
}

.testimonialHeader h1 {
    color: #FFF;
    text-align: center;
    font-size: 44px;
    font-style: normal;
    font-weight: 700;
    line-height: 120%; /* 52.8px */
    margin-bottom: 10px;
}

.testimonialHeader p {
    color: rgba(255, 255, 255, 0.72);
    font-size: 18px;
    font-weight: 400;
    line-height: 27px; 
    /* margin-bottom: 40px; */
}

/* Testimonials Grid */
.testimonials {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 20px;
    justify-content: center;
}

/* Individual Testimonial */
.testimonial {
    padding: 20px;
    border-radius: 10px;
    /* background-color: #222;  */
    box-shadow: 
        0 0 0 0.5px rgba(248, 160, 63, 0.6) inset, 
        0 0 0 0.5px rgba(255, 248, 237, 1) inset, 
        0 0 0 0.5px rgba(248, 160, 63, 0.6) inset, 
        0 0 0 0.5px rgba(255, 248, 237, 1) inset;
    text-align: left;
    max-width: 100%;
}

#testimonial1{
    height: fit-content;
}

#testimonial2{
    height: fit-content;
    margin-top: -105px;
}

.testimonial .stars p{
    color: #da7d05;
    font-size: 30px;
    margin-bottom: 32px; 
}

.testimonial p {
    color: rgba(255, 255, 255, 0.84);
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%; /* 27px */  
    text-align: start;
    
}

.testimonial .author {
    display: flex;
    align-items: center;
    margin-top: 20px;
}

.testimonial .author img {
    border-radius: 50%;
    width: 50px;
    height: 50px;
    margin-right: 10px;
}

.testimonial .author .name {
    color: rgba(255, 255, 255, 0.72);
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 150%; /* 24px */
}

.testimonial .author .company {
    color: rgba(255, 255, 255, 0.72);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%; /* 24px */
}

#Testimonials{
    display: none;
}

/* Media Queries for Tablet */
@media (max-width: 1200px) and (min-width: 601px) {
    .container{
        padding: 80px 40px;
    }
    .testimonialHeader h1 {
        font-size: 36px;
    }

    .testimonialHeader h2 {
        margin-bottom: 20px;
    }

    .testimonialHeader p {
        font-size: 16px;
        margin-bottom: 60px;
    }
    .testimonials{
        grid-template-columns: repeat(auto-fit, minmax(100%, 1fr));
    }
    #testimonial1{
        height: auto;
        margin: 0px;
    }
    
    #testimonial2{
        height: auto;
        margin: 0px;
    }
}

/* Media Queries for Mobile */
@media (max-width: 600px) {
    .container {
        padding: 80px 20px;
    }
    .testimonialHeader h1 {
        font-size: 36px;
        margin-bottom: 20px;
    }
    .testimonialHeader h2 {
        font-size: 12px;
        margin-bottom: 20px;
    }
    .testimonialHeader p {
        font-size: 16px;
        margin-bottom: 50px;
    }
    .testimonials{
        grid-template-columns: repeat(auto-fit, minmax(100%, 1fr));
    }
    #testimonial1{
        height: auto;
        margin: 0px;
    }
    
    #testimonial2{
        height: auto;
        margin: 0px;
    }
    .testimonials h2{
        font-size: 36px;
    }
    .testimonials p {
        font-size: 16px;
    }
    .testimonials h3{
        font-size: 14px;
    }
}




/* Container for Testimonials Section */
/* .container {
    max-width: 90rem;
    padding: 100px 64px;
    margin: 0 auto;
    text-align: center;
} */

/* Header for Testimonials Section */
/* .testimonialHeader {
    margin-bottom: 40px; 
}

.testimonialHeader h2 {
    color: #FF9560;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px; 
    letter-spacing: 1.6px;
    margin-bottom: 12px;
}

.testimonialHeader h1 {
    color: #FFF;
    font-size: 44px;
    font-weight: 700;
    line-height: 52.8px; 
    margin-bottom: 16px;
}

.testimonialHeader p {
    color: rgba(255, 255, 255, 0.72);
    font-size: 18px;
    font-weight: 400;
    line-height: 27px; 
    margin-bottom: 80px;
}

.testimonials{
    margin: 0px auto;
    columns: 3;
    column-gap: 10px;
}

.testimonial{
    width: 320px;
    padding: 20px;
    background-color: rgba(255, 255, 255, 0);
    border: 1px solid gray;
    margin-bottom: 15px;
    break-inside: avoid;
    border-radius: 20px;
    text-align: start;
}

.stars{
    width: 20px;
    height: 18.889px;
    margin-bottom: 32px;
    color:#e8953b;
}

.testimonial p{
    color: rgba(255, 255, 255, 0.84);
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    margin-bottom: 32px;
}

.author{
        display: flex;
        margin: 0px;
        padding: 0px;
}

.author img{
    width: 56px;
    height: 56px;
    object-fit: contain;
}

.name{
    color: rgba(255, 255, 255, 0.72);
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 150%; 
}

.company{
    color: rgba(255, 255, 255, 0.72);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
} */

/* Media Queries for Tablet */
/* 
@media (max-width: 1200px) and (min-width: 601px) {

    .container{
        padding: 80px 48px;
    }

    .testimonials{
        columns: 2;
        column-gap: 10px;
        margin-left: auto;
    }

    .testimonial{
        width: 270px;
        padding: 20px;
    }
} */



/* Media Queries for Mobile */
/* @media (max-width: 600px) {

    .container{
        padding: 40px 20px;
    }

    .testimonials{
        columns: 1;
        column-gap: 10px;
        margin: auto;
    }

    .testimonial{
        width: 260px;
        padding: 20px;
    }
} */

/* ---------------------------------------------------------------------------------------------------------- */

/* Enterprise Section */
.enterprise {
    background-color: rgba(255, 249, 246, 1);
    padding: 100px 64px;
    max-width: 90rem;
    background-size: cover;
    background-position: center;
}

.enterprisecontainer {
    display: grid;
    grid-template-columns: 0.8fr 1fr ;
    /* gap: 0px; */
    /* max-width: 90rem; */
    margin: 0 auto;
}   

.text-section h4 {
    text-align: start;
    color: #D15710;
    font-size: 14px;
    letter-spacing: 0.1em;
    font-weight: 500;
    /* color: rgba(209, 87, 16, 1); */
    line-height: 150%;
    font-style: normal;
    margin-bottom: 12px;
}

.text-section h1 {
    color: var(--Text-primary, #000); 
    font-size: 44px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%; /* 52.8px */}

.text-section h1 span {
    color: var(--Text-primary, #000); 
    font-size: 44px;
    font-style: italic;
    font-weight: 900;
    line-height: 120%;
}



.content-section p {
    color: var(--Text-primary, #000); 
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%; /* 27px */
    margin-bottom: 40px;
}

.enterprisefeatures {
    margin-bottom: 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 0px;
    gap: 10px; 
    text-wrap: pretty;
}

.enterprisefeature h3 {
    color: var(--Text-primary, #000); 
    font-size: 36px;
    font-style: normal;
    font-weight: 700;
    line-height: 140%; /* 44.8px */
    /* margin: 0px 24px; */
    margin-bottom: 16px;   
     
}

.enterprisefeature p {
    color: var(--Text-primary, #000); 
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%; /* 24px */
    margin-bottom: 16px  ;
}

.contact-button {
    justify-content: center;
    gap: 4px;
    text-decoration: none;
    font-style: normal;
    font-weight: 700;
    line-height: 24px; /* 150% */
    max-width: fit-content;

    border: none;
    color: #fff;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 12px;
    background: #D15710;
    box-shadow: 0px -4px 0px 0px #983F14 inset;
    display: flex;
    align-items: center;
}

.contact-button:hover {
    background-color: rgba(255, 106, 20, 1);
}

.contact-button:active {
    box-shadow: 0px 0px 0px 0px #983F14 inset;
}

/* Media Queries for Tablet */
@media (max-width: 1200px) and (min-width: 601px) {
    .enterprise {
        padding: 80px 40px;
    }

    .enterprisecontainer{
        grid-template-columns:  1fr ;
    }

    .text-section h1 {
        font-size: 36px;
        margin-bottom: 20px;
    }
    .text-section h1 span{
        font-size: 36px;
    }

    .text-section h4 {
        margin-bottom: 22px;
    }

    .content-section p {
        font-size: 16px;
    }

    .enterprisefeature h3 {
        font-size: 28px;
    }

    .enterprisefeature p {
        font-size: 14px;
        text-wrap:pretty;
    }

    .contact-button {
        font-size: 14px;
        padding: 10px 14px;
    }

}

/* Media Queries for Mobile */
@media (max-width: 600px) {
    .enterprise {
        padding: 80px 20px;
    }

    .enterprisecontainer {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .text-section {
        text-align: center;
    }

    .text-section h1 {
        font-size: 30px;
        text-align: center;
        margin-bottom: 30px;
    }
    .text-section h1 span{
        font-size: 30px;
    }

    .text-section h4 {
        font-size: 12px;
        margin-bottom: 20px;
        text-align: center;
    }

    .content-section p {
        font-size: 16px;
        margin-bottom: 20px;
    }

    .enterprisefeatures {
        grid-template-columns: 1fr;
        /* gap: 20px; */
    }

    .enterprisefeature h3 {
        font-size: 24px;
        padding: 0px 0px;
        margin: 0px;
    }

    .enterprisefeature p {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .contact-button {
        font-size: 12px;
        padding: 8px 12px;
    }
}

/* @media (max-width: 768px) {
    .enterprisecontainer {
        grid-template-columns: 1fr;
    }

    .contact-button {
        margin-top: 20px;
    }
} */


/* ---------------------------------------------------------------------------------------------------------- */


/* Pricing Section */
.pricing-section {
    color: #fff;
    max-width: 90rem;
    padding: 100px 64px;
    text-align: center;
}

.pricing-header h2 {
    text-align: center;
    color: #D15710;
    font-size: 14px;
    letter-spacing: 0.1em;
    font-weight: 500;
    /* color: rgba(209, 87, 16, 1); */
    line-height: 150%;
    font-style: normal;
    margin-bottom: 12px;
}

.pricing-header h1 {
    color: #FFF;
    text-align: center;
    font-size: 44px;
    font-style: normal;
    font-weight: 700;
    line-height: 120%; /* 52.8px */
    margin-bottom: 16px;
}

.pricing-header p {
    color: rgba(255, 255, 255, 0.72);
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%; /* 27px */
    margin-bottom: 48px;
}

.pricing-tiers {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.tier {
    border-radius: 20px;
    box-shadow: 
     0 0 0 0.5px rgba(255, 255, 255, 0.32) inset, /* Top border */
     0 0 0 0.5px rgba(255, 255, 255, 0.32) inset, /* Bottom border */
     0 0 0 0.5px rgba(255, 255, 255, 0.32) inset, /* Left border */
     0 0 0 0.5px rgba(255, 255, 255, 0.32) inset; /* Right border */
    padding: 20px;
    text-align: center;
    height: 600px;
}

#tierCenter {
    /* Apply gradient to the border using box-shadow */
    box-shadow: 
     0 0 0 0.5px rgba(248, 160, 63, 0.6) inset, /* Top border */
     0 0 0 0.5px rgba(255, 248, 237, 1) inset, /* Bottom border */
     0 0 0 0.5px rgba(248, 160, 63, 0.6) inset, /* Left border */
     0 0 0 0.5px rgba(255, 248, 237, 1) inset; /* Right border */
}

.tier ul {
    list-style-type: none;
    padding: 0;
}

.tier ul li {
    color: #FFF;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%; /* 24px */
    margin-bottom: 16px;
    text-align: left;
    display: flex;
    align-items: center;
}

.tier ul li img {
    margin-right: 10px;
}

.tier h3 {
    color: #FFF;
    font-size: 36px;
    font-style: normal;
    font-weight: 700;
    line-height: 140%; /* 33.6px */
    margin-bottom: 4px;
}

.tier p {
    color: rgba(255, 255, 255, 0.72);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%; /* 24px */
    margin-bottom: 20px;
    text-align: left;
    margin-bottom: 32px;
}

.tier hr {
    margin-bottom: 32px;
}

.tier h2 {
    color: #FFF;
    font-size: 32px;
    font-style: normal;
    font-weight: 700;
    line-height: 120%; /* 48px */
    margin-bottom: 20px;
    text-align: left;
    margin-bottom: 32px;
}

.tier h2 span {
    color: rgba(255, 255, 255, 0.72);
    font-size: 32px;
    font-style: normal;
    font-weight: 700;
    line-height: 130%;
    margin-bottom: 20px;
}

.start-button,
.quote-button {
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    font-size: 16px;
    display: flex;
    padding: 12px 16px;
    justify-content: center;
    align-items: center;
    gap: 4px;
    align-self: stretch;
    border-radius: 12px;
    /* background: rgba(254, 240, 214, 1); */
    background: #FFFFFF; 
    color: #D15710; 
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px; /* 150% */
    margin-bottom: 20px;
    text-align: left;
    width: 100%;
    box-shadow: 0px -4px 0px 0px #dcdcdc inset;
}

.start-button:hover{
    background-color: #F2F2F2;     
}

.quote-button:hover{
    background-color: #F2F2F2;  
}

.start-button:active{
    box-shadow: 0px 0px 0px 0px #983F14 inset;     
}

.quote-button:active{
    box-shadow: 0px 0px 0px 0px #983F14 inset;
}

.start-button2 {
    display: flex;
    padding: 12px 16px;
    border: none;
    cursor: pointer;
    font-size: 16px;
    justify-content: center;
    align-items: center;
    gap: 4px;
    align-self: stretch;
    border-radius: 12px;
    background: #D15710;
    box-shadow: 0px -4px 0px 0px #983F14 inset;
    color: #FFF;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px; /* 150% */
    width: 100%;
    margin-bottom: 20px;
}

.tier a{
    text-decoration: none;
}


/* .start-button2 a{
    text-decoration: none;
    color: #FFF; 
} */

.start-button2:hover {
    background-color: rgba(255, 106, 20, 1);
}

.start-button2:active {
    box-shadow: 0px 0px 0px 0px #983F14 inset;
}



.tier ul {
    list-style-type: none;
    padding: 0;
}

.tier ul li {
    color: #FFF;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%; /* 24px */
    margin-bottom: 10px;
    text-align: left;
}

/* Media Queries for Tablet */
@media (max-width: 1200px) and (min-width: 601px) {
    .pricing-section {
        padding: 80px 40px;
    }

    .pricing-header h1 {
        font-size: 36px;
    }

    .pricing-header h2{
        margin-bottom: 20px;
    }

    .pricing-header p {
        font-size: 16px;
        margin-bottom: 50px;
    }

    .pricing-tiers {
        gap: 24px;
    }

    /* #tierfull {
        width: 200%;
    } */

    .tier {
        padding: 20px;
        height: 580px;
    }

    .tier h2 {
        font-size: 20px;
    }

    .tier h2 span {
        font-size: 20px;
    }

    .tier h3 {
        font-size: 28px;
    }

    .tier p {
        font-size: 16px;
        text-align: center;
    }

    .tier ul li {
        font-size: 14px;
    }

    .start-button,
    .start-button2,
    .quote-button {
        font-size: 14px;
        padding: 10px 14px;
    }

}

/* Media Queries for Mobile */
@media (max-width: 600px) {
    .pricing-section {
        padding: 80px 20px;
    }

    .pricing-header h2{
        font-size: 12px;
    }

    .pricing-header h1 {
        font-size: 30px;
    }

    .pricing-header p {
        font-size: 16px;
    }

    .pricing-tiers {
        grid-template-columns: 1fr;
        gap: 20px;
        align-items: center;
        margin-right: auto;
    }


    .tier {
        height: fit-content;
        padding: 15px;
    }

    .tier h2 {
        font-size: 28px;
    }

    .tier h2 span {
        font-size: 28px;
    }

    .tier h3 {
        font-size: 32px;
    }

    .tier p {
        font-size: 16px;
        text-align: center;
    }

    .tier ul li {
        font-size: 14px;
    }

    .start-button,
    .start-button2,
    .quote-button {
        font-size: 12px;
        padding: 8px 12px;
    }
}



/* ---------------------------------------------------------------------------------------------------------- */


/* Call to Action Section */
.cta {
    background-color: rgba(254, 248, 245, 1);
    background-image: url(Images/White\ BG.svg);
    max-width: 90rem;
    padding: 100px 64px;
    text-align: center;
}

.cta h2 {
    margin-bottom: 10px;
    color: var(--Text-primary, #000);
    text-align: center; 
    font-size: 44px;
    font-style: normal;
    font-weight: 700;
    line-height: 120%; /* 57.6px */
}

.cta p {
    margin-bottom: 20px;
    color: var(--Text-primary, #000);
    text-align: center; 
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%; /* 27px */
}

.store-buttons a {
    display: inline-block;
    color: #000;
    border-radius: 5px;
}

.ctaImage{
    justify-content: center;
    margin-top: 50px;
    margin-bottom: -180px;
}
.ctaImage img{
    width: 255px;
    height: 560;  
}

/* Media Queries for Tablet and Mobile */
@media (max-width: 1200px) {
    .cta {
        padding: 80px 40px;
    }

    .cta h2 {
        font-size: 36px;
    }

    .cta p {
        font-size: 16px;
    }

    .store-buttons a {
        margin: 0 5px; /* Adjust margin to space the buttons appropriately */
    }

    .ctaImage img {
        width: 240px;
        height: 450px;
    }
}

@media (max-width: 600px) {
    .cta {
        padding: 80px 20px;
    }

    .cta h2 {
        font-size: 30px;
    }

    .cta p {
        font-size: 16px;
    }

    .store-buttons a {
        margin: 0 3px; /* Adjust margin to space the buttons appropriately */
    }

    .ctaImage img {
        width: 140px;
        height: 320px;
    }
}


/* ---------------------------------------------------------------------------------------------------------- */

    /* Footer  */
    footer {
        /* background: #000; */
        color: #fff;
        /* padding: 20px 0; */ 
        position: relative;
        text-align: center;
        padding: 160px 64px;
        padding-bottom: 0px;
        padding-bottom: 50px;
        max-width: 90rem; 
    }

    .footer-container {
        margin: 0 auto;
        padding: 0 0px;
    }

    .footer-content {
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        margin-bottom: 32px;
    }

    .footer-logo img{
        max-width: 45px;
        border-radius: 20px;
        /* margin-top: 14px; */ 
        margin-top: auto;
        margin-bottom: auto;
    }

    .footer-nav {
        display: flex;
        gap: 20px;
        color: #FFF;
        font-size: 16px;
        font-style: normal;
        font-weight: 600;
        line-height: 150%; /* 24px */
        /* margin-bottom: 32px; */
    }

    .footer-nav a {
        color: #fff;
        text-decoration: none;
        font-size: 16px;
        transition: color 0.3s ease-in-out;
    }

    .footer-nav a:hover {
        color: #D15710; /* Color change on hover */
    }

    .footer-social {
        display: flex;
        gap: 10px;
    }

    .footer-social img {
        width: 24px;
        height: 24px;
    }

    .footer-bottom {
        /* border-top: 1px solid #555; */
        margin-bottom: 32px;
        /* padding-top: 10px; */
        margin-top: 32px;
        display: flex;
        /* justify-content: space-between; */
        justify-content: space-between ;
        /* justify-content: space-evenly; */
        gap: 24px;
        flex-wrap: wrap;
    }

    .footer-bottom p {
        margin: 0;  
        color: #FFF;
        font-size: 14px;
        font-style: normal;
        font-weight: 400;
        line-height: 150%; /* 21px */
    }

    .footer-links {
        display: flex;
        gap: 15px;
    }

    .footer-links a {
        text-decoration: none;
        color: rgba(255, 255, 255, 0.72);
        font-family: Roboto;
        font-size: 14px;
        font-style: normal;
        font-weight: 400;
        line-height: 150%; /* 21px */
    }

    .footer-links a:hover {
        text-decoration: underline;
    }

    .footer-bottom span {
        color: #D15710;
    }

/* Responsive Design */

/* Tablet */
@media (max-width: 1200px) and (min-width: 601px) {
    footer {
        padding: 150px 40px;
        padding-bottom: 40px;
    }

    .footer-content {
        justify-content: space-evenly;
        margin: 0px 20px;
        gap: 10px;
    }

    /* .footer-logo img {
        margin-top: 14px;
    }     */

    .footer-social{
        display: inline-block;
        max-width: fit-content;
        /* margin-top: 20px;
        margin-left: auto;
        margin-right: auto; */
    }

    .footer-nav{
        max-width: fit-content;
        font-size: 14px;
        /* margin-top: 20px;
        margin-left: auto;
        margin-right: auto; */
    }

    /* .footer-nav a, */
    .footer-social img {
        font-size: 10px;
    }

    .footer-bottom{
        margin-top: 40px;
        margin-bottom: 0px;
    }

    .footer-bottom p,
    .footer-links a {
        font-size: 12px;
    }
}

/* Mobile */
@media (max-width: 600px) {
    footer {
        padding: 20px 20px;
    }

    .footer-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer-logo {
        display: flex;
        font-size: 18px;
        margin-top: 140px;
        margin-bottom: 30px;
    }

    .footer-nav {
        flex-wrap: wrap;
        gap: 12px;
        margin-bottom: 20px;
        display: flex;
        /* flex-direction: column; */
        flex-direction: row;
        justify-content: space-evenly;
    }

    .footer-nav a {
        font-size: 14px;
    }

    .footer-social {
        margin-bottom: 20px;
    }

    .footer-social img {
        width: 25px;
        height: 25px;
    }
    .footer-bottom{
        margin-top: 20px;
    }

    .footer-bottom p,
    .footer-links a, .footer-bottom p span {
        font-size: 12px;
    }

    .footer-links {
        gap: 10px;
    }
}