
  /* body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
  } */

  .container-globally {
    display: flex;
    justify-content: space-between;
    width: 100%;
    /* background-color: rgba(0, 0, 0, 0.8); */

    /* margin: 0 auto;
    padding: 20px; */
  }

  .box-globally {
    position: relative;
    flex: 1;
    overflow: hidden;
  }

  .images {
    width: 100%;
    height: 100%;
    display: block;
 
  }

  .text-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    color: white;
    display: flex;
    flex-direction: column;
    /* justify-content: center;
    align-items: center; */
    /* opacity: 0; */
    /* transition: opacity 0.3s ease; */
  }

  .text-overlay h3{
    margin: 25px;
    font-size: 23px;
  }
  
  .text-overlay p{
    /* margin: 5px 40px; */
    margin-left: 30px;
    /* margin-top: 10px; */
    font-size: 15px
  }

  /* .box:hover .text-overlay {
    opacity: 1;
  } */

  
  @media (max-width: 991px) {
    .container-globally {
      flex-direction: column;
      align-items: center;
    }

    /* .box-global-bly {
      margin-bottom: 20px;
    } */
    .text-overlay h3{
      font-size: 18px;
    }
    .text-overlay p{
        margin-top: 0px;
        font-size: 12px;
    }
  }

  /* @media screen and (max-width: 1100px) {
    .text-overlay h3{
         font-size: 35px;
    }
    .text-overlay p{
      font-size: 25px;
    }
  } */
