html {
    box-sizing: border-box;
}

/* Body width fixing */
body {
    max-width: 100%;
}

/* Box sizing depending on parent */
*,
*:before,
*:after {
    box-sizing: inherit;
}

/* Styling column */
.column {
    float: left;
    width: 33%;
    margin-bottom: 16px;
    padding: 2px 10px;
}

/* Column width change depends
      on screen size */
@media screen and (max-width: 670px) {
    .column {
        width: 100%;
        text-align: none;
    }
}

/* Card designing */
.card {
    background-color: gray;
    border: 1px solid black;
}

.container {
    padding: 0 16px;
}

/* Icon styling */
.fa {
    margin: 10px;
    font-size: 68px;
}

.fa:hover {
    transform: rotateY(180deg);
    transition: transform 0.8s;
}

.container::after,
.row::after {
    content: "";
    clear: both;
    display: table;
}

/* Button designing */
.button {
    border: none;
    padding: 8px;
    color: white;
    background-color: #449D44;
    text-align: center;
    cursor: pointer;
    width: 100%;
    margin-bottom: 10px;
}

/* Hover effect on button */
.button:hover {
    background-color: green;
}

/* Margin first member of team */
#gfg {
    float: none;
    margin: auto;
}
.meetteamitems{
    display: flex;
    flex-wrap: wrap;
    margin: 0px 0px 100px 0px;
}
.meetitem{
    border: solid 1px rgb(0, 126, 0);
    min-height: 710px;
    border-bottom: solid 3px rgb(0, 126, 0);
}
.meetpic123{
    height: 300px;
    margin-bottom: 30px;
}
.meetteam{
    margin-top: 130px;
    overflow: hidden;
}

* {
    margin: 0;
    padding: 0;
  }
  
  .carousel_items {
    display: flex;
    flex-wrap: nowrap;
    overflow: hidden;
  }
  .carousel_item {
    position: relative;
    min-width: 100%;
    height: 100vh;
    transition: all 0.5s linear;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
  }
  
  .item1 {
    background-image: url(./images/sld1.jpeg);
  }
  .item2 {
    background-image: url(./images/sld2.jpeg);
  }
  .item3 {
    background-image: url(./images/sld3.jpeg);
  }
  .item4 {
    background-image: url(./images/sld4.jpeg);
  }
  .item5 {
    background-image: url(./images/sld5.jpeg);
  }
  .item6 {
    background-image: url(./images/sld6.JPG);
  }
  .item7{
    background-image: url(./images/sld7.JPG);
  }
  .item8 {
    background-image: url(./images/sld8.jpeg);
  }
  .item9 {
    background-image: url(./images/sld9.jpeg);
  }
  .item10 {
    background-image: url(./images/sld10.JPG);
  }

  .slideshow{
    width: 550px;
    margin-top: 30px;
  }
  .sldmain{
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 60px 0px;
    background-color: rgba(68, 157, 68, 0.9);
    padding: 70px 0px;
    overflow: hidden;
}
    .shady{
        background-color: rgba(0, 0, 0, 0.588);
        max-width: 390px;
        text-align: center;
    }
    .omg{
        font-weight: bold;
    }
    .hidden {
        display: none;
    }

    #readMoreBtn {
        cursor: pointer;
        color: blue;
        text-decoration: underline;
    }