:root{
    --primaryColor:black;
    --middleColor:#444444;
    --helperColor:#C84B31;
    --lightHelper:#F8EDE3;
    --hrColor:rgb(222, 184, 135);
    --transparentColor:#00d0848f;
    --shadow:rgba(189, 188, 188, 0.514);
   /* --------------------------------- */
    --whatsappColor:#25D366;
    --white:#ffff;
    --blue: #1877F2;
    --green: #25D366;
    --gray:  #f8f8f8;
}

.aboutus{
    padding: 2% 0%;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.aboutus h1{
    width: fit-content;
    margin: auto;
    font-size: 2.5rem;
    color: var(--primaryColor);
    border-bottom: 4px solid var(--primaryColor);
}

.aboutus-container{ 
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: start;
}

/* --------------------------------------------- */

.aboutus-image{
  width: 40%;
  max-height: 900px;
  background: linear-gradient(190deg,#F8EDE3 0%,black 73%);
  box-shadow: var(--shadow);
  border-radius: 50px 0px;
}

.aboutus-image div{     
    width: fit-content;
    text-align: center;
    position: relative;
    top: -5px;
    right:5px;
    border-radius: 50px 0px;
    max-height: 900px;
 
}

.aboutus-image div img{
    border-radius: 50px 0px;
    width: 95%;
    margin: auto;
    min-height: 900px;
    object-fit: cover;
}

/* ------------------------------------------------ */

.aboutus-details{
    width: 45%;
    text-align: start;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.aboutus-details div h3{
    width: fit-content;
    font-size: 2.5rem;
    color: var(--primaryColor);
}

.aboutus-details div p{
    font-size: 1.5rem;
    line-height: 2rem;
    color: var(--middleColor);
}

/* @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ */

@media (max-width: 760px) {
    .aboutus{
     gap: 60px;
     padding: 4% 2%;
    }
    
    .aboutus h1{
        font-size: 1.8rem;
    }

    .aboutus-container{ 
        flex-direction: column;
        gap: 50px;
    }

    /* --------------------------------------------- */

    .aboutus-image{
        width: 90%;
    margin: auto;
      }
  /* -------------------------- */
  .aboutus-details{
    width: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.aboutus-details div h3{
    width: fit-content;
    margin: auto;
    font-size:2rem;
    color: var(--primaryColor);
    border-bottom: 4px solid var(--primaryColor);
}

.aboutus-details div p{
    font-size: 1.3rem;
    line-height: 2.5rem;
    color: var(--middleColor);
}

.aboutus-image div img{
    min-height: 300px;
    width: 98%;
    object-fit:cover;
    border-radius: 50px 0px;
}
 }

 @media screen and (min-width: 761px) and (max-width: 992px){
     
    .aboutus{
     gap: 60px;
     padding: 4% 2%;
    }
    
    .aboutus h1{
        font-size: 2rem;
    border-bottom: 4px solid var(--primaryColor);

    }

    .aboutus-container{ 
        flex-direction: column;
        gap: 50px;
    }

    /* --------------------------------------------- */

    .aboutus-image{
        width: fit-content;
    margin: auto;
      }
  /* -------------------------- */
  .aboutus-details{
    width: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.aboutus-details div h3{
    width: fit-content;
    margin: auto;
    font-size:2rem;
    color: var(--primaryColor);
}

.aboutus-details div p{
    font-size: 1.5rem;
    line-height: 2.5rem;
    color: var(--middleColor);
}

.aboutus-image div img{
    min-height: auto;
max-height: 500px;
    object-fit: contain;
    border-radius: 50px 0px;
}
 }

 
