#about-section{
    width: 100%;
    padding-top: 6vw;
    padding-bottom: 6vw;
    background-color: #252525;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
/*  left section of the about */
#left-about{
    width: 40%;
    height: 100%;
    display: flex;
    align-items: center;
}
#about-img-cont{
    width: 80%;
    height: 360px;
    /* background-color: #876037; */
    /* overflow: hidden; */
    border-radius: 6px;
}

#about-img-cont img  {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background-position: center;
    border-radius: 5px;
}

/* right section of the about */
#right-about{
    width: 60%;
    height: 100%;
    display: flex;
    flex-direction: column;
   justify-content: center;
    gap: 2vh;
}

#about-title,
#about-sub-title,
#about-desc{
    text-align: start;
}

#about-title{
    font-size: 40px;
}

#about-desc{
    font-size: 15px;
    opacity: .8;
}

.hover-button{
    display: flex;
    justify-content: end;
    align-items: center;
}
.hover-button-arrow{
    rotate: 180deg;
    margin-right: -8px;
}
.hover-button-arrow-line{
    /* width: 140px; */
    width: 20vh;
    height: 1px;
    background-color: white;
}

.button {
    width: 170px;
    height: 60px;
    position: relative;
    padding: 10px 20px;
    background-color: transparent;
    color: white;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 1px;
    z-index: 1;
  }
  
  .button::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background-color: #A7734A;
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
    z-index: -1;
  }
  
  .button:hover::before {
    width: 100%;
    background-color: #A7734A;
    right: 0;
    backdrop-filter: blur(0px);
  }
  
  .button:hover .button-text {
    color: #fff; /* Or any other color you prefer */
  }  