/* Home Carousel News and Announcement */

body {
    padding-top: 100px;
}

#popular-news{
    display: flex;
    flex-wrap: wrap;
    margin: 30px 5%;
}
#popular-news h2{
    margin: 0;
    padding: 5px;
    color: #fff;
}
#featured h2{
    background-color: black;
}
#latest h2{
    background-color: #279cb9;
}
#our-picks h2{
    background-color: #279cb9;
}
#featured{
    flex: 2;
}
#latest,#our-picks{
    flex: 1;
}
#latest2,#our-picks2{
    display: none;
}
#popular-news img{
    width: 100%;
    filter: brightness(0.7);
    transition-duration: 500ms;
}
.carousel, .news-container{
    position: relative;
}
.carousel-text{
    position: absolute;
    word-wrap: normal;
    bottom: 5px;
    z-index: 2;
    color: #fff;
    font-size: 24px;
    font-weight: bolder;
    padding: 0 10px;
    transition-duration: 500ms;
}
.news-container .carousel-text{
    font-size: 18px;
}
.carousel-date{
    display: block;
    text-align: center;
    font-size: 14px;
    color: rgba(255,255,255,0.7);
    font-weight: 300;
}
section{
    cursor: pointer;
}
.news-container:hover > .carousel-text{
    bottom: 10px;
}
.news-container:hover > img{
    filter: brightness(0.4);
}

.homenewsandannouncement {
    background: linear-gradient(135deg, rgb(240, 162, 45) 0%, rgb(221, 224, 42) 40%, rgb(255, 145, 0) 100%);
    padding-top: 50px;
                padding-bottom: 100px;
}


/* Home Carousel News and Announcement end */

.h_iframe iframe {
    width:100%;
    height:300px;
}
.h_iframe {
    height: 100%;
    width:100%;
}

/* Fact Counter CSS */
.counter {
    color: #eaa636;
    font-family: 'Open Sans', sans-serif;
    text-align: center;
    height: 190px;
    width: 190px;
    padding: 30px 25px 25px;
    margin: 0 auto;
    margin-top: 30%;
    margin-bottom: 50%;
    border: 3px solid #eaa636;
    border-radius: 20px 20px;
    position: relative;
    z-index: 1;
}
.container {
    margin-top: 50px;
}

.counter:before,
.counter:after {
    content: "";
    background: #f3f3f3;
    border-radius: 20px;
    box-shadow: 4px 4px 2px rgba(0, 0, 0, 0.2);
    position: absolute;
    left: 15px;
    top: 15px;
    bottom: 15px;
    right: 15px;
    z-index: -1;
}

.counter:after {
    background: transparent;
    width: 100px;
    height: 100px;
    border: 15px solid #eaa636;
    border-top: none;
    border-right: none;
    border-radius: 0 0 0 20px;
    box-shadow: none;
    top: auto;
    left: -10px;
    bottom: -10px;
    right: auto;
}

.counter .counter-icon {
    font-size: 35px;
    line-height: 35px;
    margin: 0 0 15px;
    transition: all 0.3s ease 0s;
}

.counter:hover .counter-icon {
    transform: rotateY(360deg);
}

.counter .counter-value {
    color: #555;
    font-size: 25px;
    font-weight: 600;
    line-height: 20px;
    margin: 0 0 5px;
    display: block;
    transition: all 0.3s ease 0s;
}

.counter .counter-valuepercent {
    color: #555;
    font-size: 25px;
    font-weight: 600;
    line-height: 20px;
    margin: 0 0 5px;
    display: block;
    transition: all 0.3s ease 0s;
}

span[class="counter-valuepercent"]::after {
    content: " %";
  }

.counter:hover .counter-value {
    text-shadow: 2px 2px 0 #d1d8e0;
}

.counter:hover .counter-valuepercent {
    text-shadow: 2px 2px 0 #d1d8e0;
}

.counter h6 {
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    margin: 0 0 15px;
    margin-top: 10px;
}

.counter.blue {
    color: #4accdb;
    border-color: #4accdb;
}

.counter.blue:after {
    border-bottom-color: #4accdb;
    border-left-color: #4accdb;
}

.homenewsandannouncementheading {
    color: #444;
    font-size: 40px;
    text-align: center;
    padding: 10px;
     }

.homepoasheading {
        color: #444;
        font-size: 40px;
        text-align: center;
        padding-top: 20px;
        border-top: transparent;
        border-bottom: transparent;
        border-left: transparent;
        border-right: transparent;
        width: 50%;
        border-width: 10px;
        margin: auto;

    }

    .homepoas {
        background: linear-gradient(135deg, rgb(240, 162, 45) 0%, rgb(221, 224, 42) 40%, rgb(255, 145, 0) 100%);
    }


/* Fact Counter END CSS*/


/* Home Galery */

.homegalery {
    padding-top: 100px;
}

* {
    box-sizing: border-box;
    -webkit-animation: fadeIn 0.5s;
            animation: fadeIn 0.5s;
  }


  img {
    height: 100%;
    width: 100%;
    min-height: 50px;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .gallery {
    display: grid;
    justify-content: center;
    grid-gap: 20px;
    grid-template-columns: repeat(2, 100px) minmax(200px, 800px) repeat(2, 100px);
    grid-template-rows: repeat(5, 100px);
  }

  .gallery__item {
    cursor: pointer;
    border-radius: 5px;
    grid-row: span 1;
    grid-column: span 1;
    transition: -webkit-transform 0.1s ease-in-out;
    transition: transform 0.1s ease-in-out;
    transition: transform 0.1s ease-in-out, -webkit-transform 0.1s ease-in-out;
  }
  .gallery__item:hover {
    -webkit-transform: scale(1.1) rotate(5deg);
            transform: scale(1.1) rotate(5deg);
  }
  .gallery__select {
    display: none;
  }
  .gallery__select:nth-of-type(1):checked ~ .gallery .gallery__item:nth-of-type(1) {
    cursor: default;
    display: grid;
    align-items: center;
    grid-row: 1/-1;
    grid-column: 3;
  }
  .gallery__select:nth-of-type(1):checked ~ .gallery .gallery__item:nth-of-type(1):hover {
    -webkit-transform: none;
            transform: none;
  }

  @media (max-width: 768px) {
    .gallery {
      grid-gap: 10px;
      grid-template-columns: repeat(auto-fit, 50px);
      grid-template-rows: 300px repeat(auto-fit, 50px);
    }
  }
  .gallery__filler {
    grid-column: span 2;
  }
  @media (max-width: 768px) {
    .gallery__filler {
      display: none;
    }
  }
  @media (min-width: 768px) {
    body {
      align-content: center;
    }
  }

  @media (max-width: 768px) {
    .gallery__select:nth-of-type(1):checked ~ .gallery .gallery__item:nth-of-type(1) {
      grid-row: 1/-3;
      grid-column: 1/-1;
    }
  }
  .gallery__select:nth-of-type(2):checked ~ .gallery .gallery__item:nth-of-type(2) {
    cursor: default;
    display: grid;
    align-items: center;
    grid-row: 1/-1;
    grid-column: 3;
  }
  .gallery__select:nth-of-type(2):checked ~ .gallery .gallery__item:nth-of-type(2):hover {
    -webkit-transform: none;
            transform: none;
  }
  @media (max-width: 768px) {
    .gallery__select:nth-of-type(2):checked ~ .gallery .gallery__item:nth-of-type(2) {
      grid-row: 1/-3;
      grid-column: 1/-1;
    }
  }
  .gallery__select:nth-of-type(3):checked ~ .gallery .gallery__item:nth-of-type(3) {
    cursor: default;
    display: grid;
    align-items: center;
    grid-row: 1/-1;
    grid-column: 3;
  }
  .gallery__select:nth-of-type(3):checked ~ .gallery .gallery__item:nth-of-type(3):hover {
    -webkit-transform: none;
            transform: none;
  }
  @media (max-width: 768px) {
    .gallery__select:nth-of-type(3):checked ~ .gallery .gallery__item:nth-of-type(3) {
      grid-row: 1/-3;
      grid-column: 1/-1;
    }
  }
  .gallery__select:nth-of-type(4):checked ~ .gallery .gallery__item:nth-of-type(4) {
    cursor: default;
    display: grid;
    align-items: center;
    grid-row: 1/-1;
    grid-column: 3;
  }
  .gallery__select:nth-of-type(4):checked ~ .gallery .gallery__item:nth-of-type(4):hover {
    -webkit-transform: none;
            transform: none;
  }
  @media (max-width: 768px) {
    .gallery__select:nth-of-type(4):checked ~ .gallery .gallery__item:nth-of-type(4) {
      grid-row: 1/-3;
      grid-column: 1/-1;
    }
  }
  .gallery__select:nth-of-type(5):checked ~ .gallery .gallery__item:nth-of-type(5) {
    cursor: default;
    display: grid;
    align-items: center;
    grid-row: 1/-1;
    grid-column: 3;
  }
  .gallery__select:nth-of-type(5):checked ~ .gallery .gallery__item:nth-of-type(5):hover {
    -webkit-transform: none;
            transform: none;
  }
  @media (max-width: 768px) {
    .gallery__select:nth-of-type(5):checked ~ .gallery .gallery__item:nth-of-type(5) {
      grid-row: 1/-3;
      grid-column: 1/-1;
    }
  }
  .gallery__select:nth-of-type(6):checked ~ .gallery .gallery__item:nth-of-type(6) {
    cursor: default;
    display: grid;
    align-items: center;
    grid-row: 1/-1;
    grid-column: 3;
  }
  .gallery__select:nth-of-type(6):checked ~ .gallery .gallery__item:nth-of-type(6):hover {
    -webkit-transform: none;
            transform: none;
  }
  @media (max-width: 768px) {
    .gallery__select:nth-of-type(6):checked ~ .gallery .gallery__item:nth-of-type(6) {
      grid-row: 1/-3;
      grid-column: 1/-1;
    }
  }
  .gallery__select:nth-of-type(7):checked ~ .gallery .gallery__item:nth-of-type(7) {
    cursor: default;
    display: grid;
    align-items: center;
    grid-row: 1/-1;
    grid-column: 3;
  }
  .gallery__select:nth-of-type(7):checked ~ .gallery .gallery__item:nth-of-type(7):hover {
    -webkit-transform: none;
            transform: none;
  }
  @media (max-width: 768px) {
    .gallery__select:nth-of-type(7):checked ~ .gallery .gallery__item:nth-of-type(7) {
      grid-row: 1/-3;
      grid-column: 1/-1;
    }
  }
  .gallery__select:nth-of-type(8):checked ~ .gallery .gallery__item:nth-of-type(8) {
    cursor: default;
    display: grid;
    align-items: center;
    grid-row: 1/-1;
    grid-column: 3;
  }
  .gallery__select:nth-of-type(8):checked ~ .gallery .gallery__item:nth-of-type(8):hover {
    -webkit-transform: none;
            transform: none;
  }
  @media (max-width: 768px) {
    .gallery__select:nth-of-type(8):checked ~ .gallery .gallery__item:nth-of-type(8) {
      grid-row: 1/-3;
      grid-column: 1/-1;
    }
  }
  .gallery__select:nth-of-type(9):checked ~ .gallery .gallery__item:nth-of-type(9) {
    cursor: default;
    display: grid;
    align-items: center;
    grid-row: 1/-1;
    grid-column: 3;
  }
  .gallery__select:nth-of-type(9):checked ~ .gallery .gallery__item:nth-of-type(9):hover {
    -webkit-transform: none;
            transform: none;
  }
  @media (max-width: 768px) {
    .gallery__select:nth-of-type(9):checked ~ .gallery .gallery__item:nth-of-type(9) {
      grid-row: 1/-3;
      grid-column: 1/-1;
    }
  }
  .gallery__select:nth-of-type(10):checked ~ .gallery .gallery__item:nth-of-type(10) {
    cursor: default;
    display: grid;
    align-items: center;
    grid-row: 1/-1;
    grid-column: 3;
  }
  .gallery__select:nth-of-type(10):checked ~ .gallery .gallery__item:nth-of-type(10):hover {
    -webkit-transform: none;
            transform: none;
  }
  @media (max-width: 768px) {
    .gallery__select:nth-of-type(10):checked ~ .gallery .gallery__item:nth-of-type(10) {
      grid-row: 1/-3;
      grid-column: 1/-1;
    }
  }
  .gallery__select:nth-of-type(11):checked ~ .gallery .gallery__item:nth-of-type(11) {
    cursor: default;
    display: grid;
    align-items: center;
    grid-row: 1/-1;
    grid-column: 3;
  }
  .gallery__select:nth-of-type(11):checked ~ .gallery .gallery__item:nth-of-type(11):hover {
    -webkit-transform: none;
            transform: none;
  }
  @media (max-width: 768px) {
    .gallery__select:nth-of-type(11):checked ~ .gallery .gallery__item:nth-of-type(11) {
      grid-row: 1/-3;
      grid-column: 1/-1;
    }
  }
  .gallery__select:nth-of-type(12):checked ~ .gallery .gallery__item:nth-of-type(12) {
    cursor: default;
    display: grid;
    align-items: center;
    grid-row: 1/-1;
    grid-column: 3;
  }
  .gallery__select:nth-of-type(12):checked ~ .gallery .gallery__item:nth-of-type(12):hover {
    -webkit-transform: none;
            transform: none;
  }
  @media (max-width: 768px) {
    .gallery__select:nth-of-type(12):checked ~ .gallery .gallery__item:nth-of-type(12) {
      grid-row: 1/-3;
      grid-column: 1/-1;
    }
  }
  .gallery__select:nth-of-type(13):checked ~ .gallery .gallery__item:nth-of-type(13) {
    cursor: default;
    display: grid;
    align-items: center;
    grid-row: 1/-1;
    grid-column: 3;
  }
  .gallery__select:nth-of-type(13):checked ~ .gallery .gallery__item:nth-of-type(13):hover {
    -webkit-transform: none;
            transform: none;
  }
  @media (max-width: 768px) {
    .gallery__select:nth-of-type(13):checked ~ .gallery .gallery__item:nth-of-type(13) {
      grid-row: 1/-3;
      grid-column: 1/-1;
    }
  }
  @-webkit-keyframes fadeIn {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }
  @keyframes fadeIn {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }


/* Home Galery */

@media (max-width: 380px){



}

@media (max-width: 640px) {

    #latest,#our-picks{
        display: none;
        }
    #latest2,#our-picks2{
            display: flex;
        }

         /* Counter */

    .counter {
        margin-bottom: 30px;
        margin-top: 20px;
        height: 100px;
        width: 100px;

    }


    .counter .counter-icon {
        margin-top: -20px;
        margin-bottom: -12px;
        font-size: 15px;
    }

    .counter .counter-value {
        font-size: 13px;
        line-height: 20px;
    }

    .counter .counter-valuepercent {
        font-size: 13px;
        line-height: 20px;
    }

    .counter h6 {
        font-size: 5px;
        margin-top: -5px;
    }


    .yellow{
        margin-bottom: 30px;
        margin-top: 20px;
        height: 100px;
        width: 100px;
    }




    .main-card .cards .card{
        margin: 20px 0 10px 0;
        width: calc(100% / 2 - 10px);
      }


}

@media (max-width: 768px){

    #latest,#our-picks{
        display: none;
        }
    #latest2,#our-picks2{
            display: flex;
        }

         /* Counter */

    .counter {
        margin-bottom: 30px;
        margin-top: 20px;
        height: 100px;
        width: 100px;

    }


    .counter .counter-icon {
        margin-top: -20px;
        margin-bottom: -12px;
        font-size: 15px;
    }

    .counter .counter-value {
        font-size: 13px;
        line-height: 20px;
    }

    .counter .counter-valuepercent {
        font-size: 13px;
        line-height: 20px;
    }

    .counter h6 {
        font-size: 5px;
        margin-top: -5px;
    }


    .yellow{
        margin-bottom: 30px;
        margin-top: 20px;
        height: 100px;
        width: 100px;
    }

    .homeimage {
        display: none;

    }

    .main-card .cards .card{
        margin: 20px 0 10px 0;
        width: calc(100% / 2 - 10px);
      }


}



@media only screen and (max-width: 896px){

    #latest,#our-picks{
        display: none;
        }
    #latest2,#our-picks2{
            display: flex;
        }

         /* Counter */

    .counter {
        margin-bottom: 30px;
        margin-top: 20px;
        height: 100px;
        width: 100px;

    }


    .counter .counter-icon {
        margin-top: -20px;
        margin-bottom: -12px;
        font-size: 15px;
    }

    .counter .counter-value {
        font-size: 13px;
        line-height: 20px;
    }

    .counter .counter-valuepercent {
        font-size: 13px;
        line-height: 20px;
    }

    .counter h6 {
        font-size: 5.5px;
        margin-top: -5px;
    }


    .yellow{
        margin-bottom: 30px;
        margin-top: 20px;
        height: 100px;
        width: 100px;
    }



    .main-card .cards .card{
        margin: 20px 0 10px 0;
        width: calc(100% / 2 - 10px);
      }


}



@media (max-width: 1020px){

}

@media (max-width: 1600px){


}
