/* ------------------------------
News & Case Studies Styles
--------------------------------*/
section.latest-news .news-item,
section.news-listing .news-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  height: 100%;
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  -webkit-box-shadow: 0px -3px 30px rgba(17, 31, 70, 0.09);
          box-shadow: 0px -3px 30px rgba(17, 31, 70, 0.09);
  cursor: pointer;
}
section.latest-news .news-item .img-container,
section.news-listing .news-item .img-container {
  position: relative;
  width: 100%;
  padding-top: 75%;
  overflow: hidden;
}
section.latest-news .news-item .img-container img,
section.news-listing .news-item .img-container img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  -webkit-transition: all 0.12s ease-in-out;
  transition: all 0.12s ease-in-out;
}
section.latest-news .news-item .content,
section.news-listing .news-item .content {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 15px;
}
@media (min-width: 768px) {
  section.latest-news .news-item .content,
section.news-listing .news-item .content {
    padding: 30px;
  }
}
section.latest-news .news-item .content .tag,
section.news-listing .news-item .content .tag {
  text-transform: uppercase;
  font-size: 12px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  display: block;
  margin-bottom: 9px;
  color: #151C2F;
  opacity: 0.5;
}
section.latest-news .news-item .content h5,
section.news-listing .news-item .content h5 {
  margin: 0;
  line-height: 120%;
}
section.latest-news .news-item .content .arrow-link,
section.news-listing .news-item .content .arrow-link {
  margin-top: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
section.latest-news .news-item:hover .img-container img,
section.news-listing .news-item:hover .img-container img {
  -webkit-transform: scale(1.06);
          transform: scale(1.06);
  -webkit-transition: all 0.12s ease-in-out;
  transition: all 0.12s ease-in-out;
}
section.latest-news .news-item.featured,
section.news-listing .news-item.featured {
  display: block;
  height: calc(100% - 30px);
}
@media (min-width: 768px) {
  section.latest-news .news-item.featured,
section.news-listing .news-item.featured {
    height: 100%;
  }
}
section.latest-news .news-item.featured .img-container,
section.news-listing .news-item.featured .img-container {
  width: 100%;
  padding-top: 85%;
  position: relative;
}
section.latest-news .news-item.featured .img-container::before,
section.news-listing .news-item.featured .img-container::before {
  content: "";
  position: absolute;
  z-index: 2;
  bottom: 0;
  left: 0;
  height: 75%;
  width: 100%;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(17, 31, 70, 0)), to(#111F46));
  background: linear-gradient(180deg, rgba(17, 31, 70, 0) 0%, #111F46 100%);
  -webkit-transition: all 0.12s ease-in-out;
  transition: all 0.12s ease-in-out;
}
section.latest-news .news-item.featured .img-container img,
section.news-listing .news-item.featured .img-container img {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
section.latest-news .news-item.featured .content,
section.news-listing .news-item.featured .content {
  position: absolute;
  z-index: 3;
  bottom: 15px;
  left: 0;
  padding: 0 15px;
  color: #ffffff;
}
@media (min-width: 768px) {
  section.latest-news .news-item.featured .content,
section.news-listing .news-item.featured .content {
    bottom: 30px;
    padding: 0 30px;
  }
}
section.latest-news .news-item.featured .content .tag,
section.news-listing .news-item.featured .content .tag {
  color: #ffffff;
  opacity: 0.5;
}
section.latest-news .news-item.featured .content h5,
section.news-listing .news-item.featured .content h5 {
  font-size: 20px;
  font-size: 1.25rem;
  color: #ffffff;
}
section.latest-news .news-item.featured .content .arrow-link,
section.news-listing .news-item.featured .content .arrow-link {
  margin-top: 15px;
}
@media (min-width: 768px) {
  section.latest-news .news-item.featured .content .arrow-link,
section.news-listing .news-item.featured .content .arrow-link {
    margin-top: 30px;
  }
}
section.latest-news .news-item.featured:hover .img-container::before,
section.news-listing .news-item.featured:hover .img-container::before {
  height: 100%;
  -webkit-transition: all 0.12s ease-in-out;
  transition: all 0.12s ease-in-out;
}
section.latest-news .news-item.featured:hover .img-container img,
section.news-listing .news-item.featured:hover .img-container img {
  -webkit-transform: scale(1.06);
          transform: scale(1.06);
  -webkit-transition: all 0.12s ease-in-out;
  transition: all 0.12s ease-in-out;
}
section.latest-news.news-block,
section.news-listing.news-block {
  background: #ffffff;
  border-radius: 15px;
  overflow: hidden;
  padding: 30px 0;
}
@media (min-width: 768px) {
  section.latest-news.news-block,
section.news-listing.news-block {
    padding: 60px 0;
  }
}
section.latest-news.news-block .col-6,
section.latest-news.news-block .col-12,
section.news-listing.news-block .col-6,
section.news-listing.news-block .col-12 {
  margin-bottom: 30px;
}
section.latest-news .news-slider-container .news-slider-item,
section.news-listing .news-slider-container .news-slider-item {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  width: 100%;
  padding-top: 55%;
}
section.latest-news .news-slider-container .news-slider-item::before,
section.news-listing .news-slider-container .news-slider-item::before {
  content: "";
  position: absolute;
  z-index: 2;
  bottom: 0;
  left: 0;
  height: 75%;
  width: 100%;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(17, 31, 70, 0)), to(#111F46));
  background: linear-gradient(180deg, rgba(17, 31, 70, 0) 0%, #111F46 100%);
  -webkit-transition: all 0.12s ease-in-out;
  transition: all 0.12s ease-in-out;
}

.team-filter .btn {
  height: 65px;
  width: 180px;
  line-height: 50px;
  border-radius: 100px;
  font-size: 18px;
}

.team-filter form .element {
  margin-bottom: 15px;
}

.team-filter form .element .select select {
  color: #17100a;
  font-weight: 300;
}

.team-filter form .element .select .field i {
  color: #17100a;
  font-weight: 300;
}

.team-filter form .element a {
  font-weight: 650;
}

.team-filter form .element label {
  font-weight: 650;
}

.team-filter form .element.select {
  position: relative;
}

.team-filter form .element.select label {
  display: none;
}

.team-filter form .element.select .field {
  width: 100%;
  border-radius: 100px;
  position: relative;
  z-index: 1;
}

.team-filter form .element.select .field i {
  color: #17100a;
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 0;
}

.team-filter form .element.select select {
  position: relative;
  z-index: 1;
  font-size: 16px;
  border: none;
  width: 100%;
  padding: 5px 0px 5px 0px;
  background: rgba(0, 0, 0, 0);
  appearance: none;
  color: rgba(126, 130, 122, 0.8);
}

.team-filter form .element.select select:focus {
  outline: none;
}

.team-filter form .element.file {
  position: relative;
}

.team-filter form .element.file label {
  display: none;
}

.team-filter form .element.file .field {
  width: 100%;
  background-color: #f2f2f1;
  border-radius: 100px;
  position: relative;
  padding: 15px 0px 15px 20px;
}

.team-filter form .element.file .field i {
  position: absolute;
  right: 15px;
  top: 25px;
  z-index: 0;
}

.team-filter form .element.file input {
  border: none;
  width: 100%;
  padding: 0px 50px 0px 20px;
  background: rgba(0, 0, 0, 0);
  appearance: none;
  color: rgba(126, 130, 122, 0.8);
  position: absolute;
  opacity: 0;
  z-index: 1;
}

.team-filter form .element.file input:focus {
  outline: none;
}

.team-filter form .element.file .placeholder {
  display: block;
  line-height: 1;
  padding: 8px 15px;
}

.team-filter form .element.file .placeholder span {
  width: 200%;
  word-break: break-all;
  display: inline-block;
}
.main-menu .bx-chevron-down, .main-menu .bx-chevron-up {
   
   color:#2DB0A9;
}

.main-menu div[aria-expanded=true] .bx-chevron-down {
   
   display: none;
}
.main-menu div[aria-expanded=false] .bx-chevron-up {
   display: none;
}
/*# sourceMappingURL=news.css.map */