/* about page */
  * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
         
            background-color: #e8e4da;
            display: flex;
            justify-content: center;
            align-items: center;
            min-height: 100vh;
            padding: 20px;
            overflow: hidden;
        }
        .image-arrow {
  position: absolute;
  right: 420px;              /* distance from image */
  top: 48%;
  transform: translateY(0%);
  width: 100px;               /* controls arrow length */
  height: 1.3px;             /* controls thinness */
  background-color: #000;
}

.image-arrow::after {
  content: "";
  position: absolute;
  left: 0;
  top: -5.9px;
  width: 10px;
  height: 12px;
  border-top: 1.5px solid #000;
  border-right: 1.5px solid #000;
  transform: rotate(-125deg);
}

        .about-container {
           
            width: 100%;
            background-color: #e8e4da;
            border-radius: 20px;
            overflow: hidden;
           
            position: relative;
        }

        .about-header {
            padding: 30px 40px 0;
            text-align: center;
        }

        .about-header-text {
            font-size: 10px;
            text-transform: uppercase;
            color:black;
            font-weight: 400;
            margin-bottom: 10px;
            font-size: 12px;
    letter-spacing: -0.5px;
    word-spacing: 6px;
  
    font-family: Helvetica, sans-serif;
        }

        .about-main-section {
            position: relative;
            padding: 0 40px;
        }

        .about-title-wrapper {
            position: relative;
            min-height: 180px;
        }

        .about-title {
           font-family: "Futura-CondensedMedium", Futura, Arial, sans-serif;
            /* line-height: 0.9; */
            text-align: left;
            position: relative;
            z-index: 1;
            font-size: 227px;
            font-weight: 700;
          color: #111;
          letter-spacing: -7px;
          padding-top: 0px;
    
    
        }

        .about-content {
            display: grid;
            grid-template-columns: 1fr 0.8fr;
            gap: 50px;
            padding: 0;
            align-items: flex-start;
            position: relative;
           
             font-size: 12px;
    letter-spacing: -0.5px;
    word-spacing: 6px;
 
    font-family: Helvetica, sans-serif;
     font-weight: 400;
        }

        .about-image-section {
            display: flex;
            justify-content: center;
            align-items: flex-start;
            position: relative;
            margin-top: -318px;
            z-index: 2;
        }

        .about-image-wrapper {
            position: relative;
            width: 100%;
            max-width: 100%;
        }

        .about-image {
            width: 100%;
            height: 900px;
            /* display: block; */
            border-radius: 0;
            object-fit: contain;
        }

      

        .about-text-section {
            padding: 0;
            padding-top: 10px;
        }

        .about-greeting {
          text-transform: uppercase;
    color: black;
    font-weight: 400;
    text-align: justify;
    font-size: 12px;
    letter-spacing: -0.5px;
    word-spacing: 6px;
   
    font-family: Helvetica, sans-serif;
            max-width: 400px;
           
            line-height: 1.5;
        }

        .about-greeting strong {
            font-weight: 600;
        }

        .about-footer {
            max-width: 400px;
            text-align: right;
            padding: 30px 0px 0px;
        }

        .about-website {
             text-transform: uppercase;
    color: black;
    font-weight: 700;
    margin-bottom: 10px;
    font-size: 10px;
    letter-spacing: -0.5px;
    word-spacing: 6px;
    
    font-family: Helvetica, sans-serif;
        }

      /* Responsive Design */
@media (max-width: 768px) {
    body{
        overflow: hidden;
    }
        .image-arrow {
  position: absolute;
  right: 30px;              /* distance from image */
  top: 80%;
  transform: translateY(0%);
  width: 100px;               /* controls arrow length */
  height: 1.3px;             /* controls thinness */
  background-color: #000;
}

.image-arrow::after {
  content: "";
  position: absolute;
  left: 0;
  top: -6px;
  width: 10px;
  height: 12px;
  border-top: 1.5px solid #000;
  border-right: 1.5px solid #000;
  transform: rotate(-125deg);
}
    .about-title {
        font-size: 90px;
        letter-spacing: 12px;
        font-family: "Futura-CondensedMedium", Futura, Arial, sans-serif;
    }

    .about-content {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
        margin-top: 20px;
    }

    .about-image-section {
        margin-top: -180px;
    }

    .about-image-wrapper {
        max-width: 220px;
        height: auto;
    }

    .about-main-section {
        padding: 0 30px;
    }

    .about-header {
        padding: 20px 30px 0;
    }

    .about-footer {
        padding: 30px;
         font-size: 8px;
        line-height: 1.3;
        text-align: left;
         letter-spacing: 2px;
    }

    .about-greeting {
        font-size: 10px;
    }
    
    .about-image {
        width: 100%;
        height: auto;
        min-height: 400px;
        display: block;
        border-radius: 0;
        object-fit: cover;
    }
}

@media (max-width: 480px) {
   html, body{
        
        padding: 10px;
        overflow: hidden !important;
    }
    .about-container{
        padding-top: 60px;
    }
    .about-title {
        font-size: 100px;
        letter-spacing: -4px;
        font-weight: 700;
        line-height: 90px;
        font-family: "Futura-CondensedMedium", Futura, Arial, sans-serif;
    }

    .about-content {
        grid-template-columns: 1.2fr 1fr;
        gap: 5px;
    }

    .about-image-section {
        margin-top: 0px;
    }

    .about-image-wrapper {
        max-width: 180px;
        height: auto;
          min-height: 520px;
    }

    .about-header-text {
        font-size: 8px;
        letter-spacing: 2px;
    }

    .about-main-section {
        padding: 0 0px;
    }

    .about-greeting {
       font-size: 8px;
        line-height: 1.3;
        text-align: left;
         letter-spacing: 2px;
    }
    
    .about-image {
        width: 100%;
        height: auto;
        min-height: 400px;
        display: block;
        border-radius: 0;
        object-fit: cover;
        margin-top: -60px;
    }
}