
/* about css */

 /* Default styles for larger screens */
 #about {
    width: 100%;
  }
  
  #about .container {
    width: 100%;
    display: block;
    margin: 0 auto;
    padding: 10px 0;
  }
  
  .container .title {
    width: 100%;
    text-align: center;
    margin-bottom: 20px;
  }
  
  .container .title h1 {
    text-transform: uppercase;
    font-size: 30px;
    color:#ffffff;
  }
  
  .container .title h1::after {
    content: "";
    height: 5px;
    width: 100px;
    background-color: #008951;
    border-radius: 25px;
    display: block;
    margin: auto;
  }
  
  .content {
    width: 55%;
    height: auto;
    float: left;
    padding: 20px;
  }
  
  .images-section {
    position: relative;
    overflow: hidden;
    width: 40%;
    float: right;
    height: auto;
  }
  
 
  
  .content .article p {
    font-size: 16px;
    padding: -2px;
    color: #060606;
  
  }
  
  .container .content .article .button {
    margin-top: 20px;
    margin-left: 0;
    text-align: center;
  }
  
  .container .content .article .button a {
    text-decoration: none;
    padding: 8px 25px;
    background-color: green;
    border-radius: 40px;
    color: #fff;
    font-size: 18px;
    letter-spacing: 1.5px;
  }
  
  .container .content .article .button a:hover {
    color: #890038;
    background-color: #f7e81c;
    transition: 0.5s ease;
  }
  
  .container.social {
    width: 100%;
    clear: both;
    text-align: center;
    margin-top: 20px;
  }
  
  .container.social i {
    color: #fff;
    font-size: 22px;
    height: 45px;
    width: 45px;
    border-radius: 45px;
    line-height: 45px;
    text-align: center;
    background-color: #890038;
    margin: 0px 5px;
    display: inline-block;
  }
  
  .images-section {
    position: relative;
    overflow: hidden;
  
    float: right;
    height: 430px; /* Specify your desired height */
  }
  
  .images-section img {
    width: 100%;
    height: 100%;
    /* This ensures the image maintains its aspect ratio */
  }
  
  
  /* Media queries for responsiveness */
  
  @media (max-width: 768px) {
    .content {
        width: 100%;
        float: none;
    }
  
    .images-section {
        width: 100%;
        float: none;
        margin-top: 20px;
    }
  
    .container .content .article .button {
        margin-top: 20px;
        margin-left: 0;
        text-align: center;
    }
  }
  
  @media (max-width: 480px) {
    .container .title h1 {
        font-size: 24px;
    }
  
    .container .title h1::after {
        width: 60px;
    }
  
    .content .article h3 {
        font-size: 16px;
    }
  
    .content .article p {
        font-size: 16px;
    }
  
    .container .content .article .button a {
        font-size: 16px;
    }
  
    .container.social i {
        font-size: 18px;
        height: 40px;
        width: 40px;
        line-height: 40px;
    }
  }
  