@media (max-width: 410px) {
  /* Header Section 
  **********************/

  .header-section {
    position: relative;
  }

  .header-background {
    background: #f4efe8;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 90% center;
    height: 100vh;
    width: 100%;
    display: block;
  }

  .header-grid {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
    min-height: 55%;
    overflow: visible;
    align-items: center;
    padding: 0px;
    gap: 0px;
    margin: auto;
    position: absolute;
    top: calc(120px + (100vh - 120px) / 2); /* middle of remaining space */
    left: 50%;
    transform: translate(-50%, -50%);
  }

  .grid-colm-1 {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    text-align: center;
    gap: 0px;
    flex-wrap: wrap;
    align-items: center;
    margin-top: 10px;
  }

  .grid-colm-2 {
    display: flex;
    overflow: hidden;
    width: 100%;
    height: 75%;
    border-radius: 50%;
    border: 2px solid #d4572f;
    background: #20241b;
  }

  .grid-colm-2-img {
    object-fit: cover;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    object-fit: cover;
    display: block;
  }

  .main-navigation {
    display: flex;
    justify-content: space-between;
    gap: 0rem;
    align-items: center;
    width: 100%;
    max-width: 100%;
    position: static;
    transition: all 0.3s ease;
    top: 0;
    z-index: 50;
  }

  .hamburger {
    display: block;
    font-size: 28px;
    cursor: pointer;
    padding-bottom: 1rem;
    padding-right: 1.5rem;
    /* Hamburger Menu For The Mobile Navigation */
  }

  .close-btn {
    font-size: 4.5rem;
    color: #fff;
    cursor: pointer;
    display: block;
    position: absolute;
    top: 0.5rem;
    right: 1.5rem;
  }

  .close-btn:hover {
    color: #d4572f;
  }

  .Header-Content-Wrapper {
    transition: transform 0.3s ease;
    will-change: transform;
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.18);

    padding: 1.5rem;
    box-sizing: border-box;
    border-radius: 50%;
    width: 100%;
    overflow: hidden;
    aspect-ratio: 1/1;
    height: 75%;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center;
    background-color: #fff;
    position: absolute;
  }

  .Main-Title {
    font-size: 1.8rem;
    line-height: 3rem;
    font-family: "Anton";
    color: #20241b;
    letter-spacing: 2px;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 0.3rem;
    width: 100%;
  }

  .header-btn:link,
  .header-btn:visited {
    text-decoration: none;
    font-size: 1rem;
    text-transform: uppercase;
    font-family: "Anton";
    letter-spacing: 1px;
    background-color: #d4572f;
    color: #fff;
    padding: 1rem 1rem;
  }

  .header-btn:active,
  .header-btn:hover {
    background-color: #20241b; /* darken on hover */
    box-shadow: rgba(184, 87, 46, 0.795);
    transform: translateY(-2px);
    transition: all 0.3s ease;
  }
}
