.press-release .read-more-btn button {
  position: absolute;
  bottom: 0;
  transition: 2s all ease;
  z-index: 1;
  background-color: #002347;
  color: #fff;
}

.press-release .read-more-btn button::before,
.news .read-more-btn button::before {
  content: "";
  position: absolute;
  z-index: -1;
  background-color: #ee7e30;
  transform: translate(-50%, -50%);
  border-radius: 5px;
  transition: all 0.3s;
  top: 50%;
  left: 50%;
  width: 0%;
  height: 100%;
}

.press-release .read-more-btn button:hover,
.news .read-more-btn button:hover {
  transition: all 0.6s;
}

.press-release .read-more-btn button:hover::before,
.news .read-more-btn button:hover::before {
  height: 100%;
  width: 100%;
  border-radius: 5px;
}

/* .news .read-more-btn {
    background: transparent;
    border: 2px solid #AEAEAE;
    color: #7B7B7B;
} */

.news .read-more-btn button:hover {
  color: #002347 !important;
  border: 0 !important;
}

.press-release {
  background-color: #ebebeb;
}

.press-release .thumb-img {
  height: 450px;
  width: 100%;
}

.press-release .pr-data .pr-date p {
  color: #ed7e30;
  font-family: "BebusNeue-Regular";
  font-size: 18px;
}

.press-release .pr-data .pr-title {
  font-family: "BebusNeue-Regular";
}

.press-release .pr-data .pr-description {
  font-family: "Lato-Light";
  font-size: 16px;
  word-wrap: break-word;
}

@media screen and (max-width: 768px) {
  .press-release .pr-data .pr-description {
    font-size: 14px;
    font-family: "Lato-SemiBold";
    height: 170px;
  }
}

@media screen and (max-width: 512px) {
  .press-release .thumb-img {
    width: 100%;
    height: 240px !important;
  }
}

@media screen and (max-width: 992px) {
  .pr-thumb-list {
    top: -20px !important;
  }
  .see-all {
    right: 25px !important;
    top: 50px !important;
  }
}

/*----------------------------------------------------
Press Release
----------------------------------------------------*/

button.nav-btn {
  width: 55px;
  background: none;
  border: 1px solid #6c757d;
  margin: 0 5px 0 0;
  border-radius: 3px;
  color: #6c757d;
  font-size: 10px;
}

button.nav-btn:hover {
  background: #ee7e30;
  border: 0;
  color: black;
}

.thumbnail .box {
  height: 200px;
}

.thumbnail .box img {
  height: 20vh;
}

.thumbnail .box .context p {
  display: none;
  font-size: 13px;
  color: #ed7e30;
}

.thumbnail .box .context h2 {
  font-size: 15px;
  color: #002347;
}

.thumbnail .box:hover .context {
  background: #002347;
  position: relative;
  top: -5px;
  border-bottom-right-radius: 5px;
  border-bottom-left-radius: 5px;
  transition: all 0.3s ease-in-out 0s;
  height: 95px;
}

.thumbnail .box:hover img {
  height: 19vh;
}

.thumbnail .box:hover p {
  display: block;
  padding: 0 10px;
}

.thumbnail .box:hover h2 {
  font-size: 15px;
  padding: 5px 10px 5px 10px;
  color: white;
}

.thumbnail a.see-all {
  position: relative;
  transition: color 0.3s ease-in-out;
  color: #7b7b7b;
  cursor: pointer;
}

.thumbnail a.see-all::before {
  content: "";
  position: absolute;
  top: 100%;
  width: 100%;
  height: 3px;
  background-color: #002347;
  transform: scaleX(0);
  transition: transform 0.3s ease-in-out;
}

.thumbnail a.see-all:hover {
  color: #002347;
}

.thumbnail a.see-all:hover::before {
  transform: scaleX(1);
}

@media screen and (min-width: 768px) {
  .thumbnail .col-md-2 {
    width: 20% !important;
  }
}

.gallery {
  width: 100%;
  /* max-width: 620px; */
  /* margin: 40px auto; */
}

.gallery-slider {
  width: 100%;
  height: auto;
  margin: 0 0 10px 0;
}

.gallery-slider .swiper-slide {
  width: auto;
  height: 400px;
}

.gallery-slider .swiper-slide img {
  display: block;
  width: auto;
  height: 100%;
  margin: 0 auto;
}

.gallery-thumbs {
  width: 100%;
  padding: 0;
  /* overflow: hidden; */
}

.gallery-thumbs .swiper-slide {
  width: 100px;
  height: 100px;
  text-align: center;
  overflow: hidden;
  /* opacity: 0.1; */
}

.gallery-thumbs .swiper-slide-active {
  opacity: 1;
}

.gallery-thumbs .swiper-slide img {
  width: auto;
  height: 100%;
}

/*----------------------------------------------
News Section
----------------------------------------------*/

.news h1 {
  text-align: center;
  border-bottom: 1px solid #707070;
  line-height: 0.1em;
  font-family: "BebusNeue-Regular";
  font-size: 75px;
  color: #ee7e30;
}

.news h1 span {
  background: #fff6ee;
  padding: 0 50px;
}

.news .read-more-btn button {
  bottom: 0;
  transition: 2s all ease;
  z-index: 1;
  background-color: transparent;
  color: #7b7b7b;
  border: 2px solid #aeaeae;
}

.news .content {
  position: relative;
  margin: auto;
  overflow: hidden;
  border-radius: 5px;
  height: auto;
}

.news .content:hover {
  height: auto;
}

.news .content .content-overlay {
  background: rgba(0, 0, 0, 0.9);
  position: absolute;
  height: 100%;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  opacity: 0;
  -webkit-transition: all 0.4s ease-in-out 0s;
  -moz-transition: all 0.4s ease-in-out 0s;
  transition: all 0.4s ease-in-out 0s;
}

.news .content:hover .content-overlay {
  opacity: 1;
}

.news .content:hover .content-image {
  opacity: 0.3;
  transform: scale(1.25);
}

.news .content-image {
  width: 100%;
  transition: 0.5s all ease-in-out;
  border-radius: 5px;
  /* height: 100%; */
  height: 300px;
}

.news .image-caption {
  /* height: 35%; */
  background: linear-gradient(0deg, black, transparent);
  bottom: 0;
  transition: all 0.3s ease-in-out 0s;
  position: absolute;
  padding: 20px 0px;
  width: 100%;
}

.news .content:hover .image-caption {
  -webkit-transform: translate(0%, 0%);
  -moz-transform: translate(0%, -75%);
  transform: translate(0%, -75%);
  -webkit-transition: all 0.3s ease-in-out 0s;
  -moz-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
  bottom: 0px;
  height: 80%;
  display: none;
}

.news .content-details {
  position: absolute;
  width: 100%;
  top: 70%;
  left: 50%;
  opacity: 0;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transition: all 0.3s ease-in-out 0s;
  -moz-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}

.news .content:hover .content-details {
  top: 65%;
  left: 50%;
  opacity: 1;
}

.news .content-details h2 {
  height: 90px;
}

.news .content-details p {
  color: #fff;
  font-size: 13px;
}

.news .content-details .fadeIn-top {
  top: 90%;
}

.news .content-details .read-more-icon {
  position: relative;
  top: 20px;
  left: 190px;
  right: 0;
  transition: all 0.3s ease-in-out 0s;
  width: 15px;
}

.news .content:hover .read-more-icon {
  -moz-transform: translate(0%, -75%);
  transform: translate(85px, 0);
  -webkit-transition: all 0.3s ease-in-out 0s;
  -moz-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
  left: 0px;
  /* right: 100%; */
}

@media screen and (max-width: 520px) {
  .news .content-image {
    height: 100%;
  }
  .news .content,
  .news .content:hover {
    height: 112%;
  }
  .news .image-caption {
    /* height: 90px; */
    bottom: 0;
    position: absolute;
    padding: 0;
  }
  .news .image-caption h2 {
    font-size: 12px !important;
  }
  .news .content:hover .content-details {
    top: 60%;
    left: 50%;
    opacity: 1;
  }
  .news .content-details h2 {
    height: 55px;
    font-size: 12px !important;
  }
  .news .content-details p {
    font-size: 10px;
    margin-bottom: 6px;
  }
}

.awards h1 {
  font-family: "BebusNeue-Regular";
  font-size: 75px;
}

.awards h2 {
  font-family: "BebusNeue-Regular";
  font-size: 34px;
  margin-top: 50px;
}

.awards h2 > span {
  font-size: 45px;
}

.awards .award-title {
  margin-top: -500px;
}

.awards .award-row {
  background-color: #ee7e30;
  height: 70%;
}

.awards .award-row img {
  width: 90%;
  position: relative;
  top: -50px;
}

.carousel-indicators {
  margin-left: 3px;
  margin-bottom: 40px;
}

.carousel-indicators button {
  border-radius: 10px;
  box-sizing: content-box;
  flex: 0 1 auto;
  width: 50px;
  height: 5px;
  padding: 0;
  margin-right: 3px;
  margin-left: 3px;
  text-indent: -999px;
  cursor: pointer;
  background-color: #fff;
  background-clip: padding-box;
  opacity: 0.5;
  transition: opacity 0.6s ease;
}

@media screen and (max-width: 767px) {
  .carousel-indicators {
    margin-left: 12px;
    bottom: 30px;
    justify-content: flex-start;
    padding-left: 24px;
  }
  .awards h2 {
    font-size: 30px;
    margin-top: -35px;
    margin-bottom: 130px;
  }
}

@media screen and (min-width: 768px) and (max-width: 1200px) {
  .carousel-indicators {
    margin-left: 28px;
    margin-bottom: 15px;
  }
}

@media screen and (min-width: 1200px) and (max-width: 1400px) {
  .carousel-indicators {
    margin-left: 13px;
  }
  .awards h2 {
    font-size: 30px;
  }
  .awards h2 > span {
    font-size: 35px;
  }
}

@media screen and (max-width: 768px) {
  .news h1 {
    font-size: 55px;
  }
  .news h1 span {
    padding: 10px;
  }
  .awards h1 {
    font-size: 46px;
  }
  .awards h2 {
    font-size: 30px;
    margin-top: -35px;
    margin-bottom: 80px;
  }
  .awards h2 > span {
    font-size: 35px;
  }
  .awards .award-title {
    margin-top: -115px;
  }
  .awards .award-row {
    background-color: #ee7e30;
    height: auto;
    position: relative;
    top: 55px;
  }
  .awards .award-row img {
    width: 50%;
    position: relative;
    top: -45px;
  }
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
  .awards h1 {
    font-family: "BebusNeue-Regular";
    font-size: 55px;
  }
  .awards h2 {
    font-family: "BebusNeue-Regular";
    font-size: 25px;
    margin-top: 30px;
  }
  .awards h2 > span {
    font-size: 32px;
  }
  .awards .award-title {
    margin-top: -250px;
  }
  .awards .award-row {
    background-color: #ee7e30;
    height: 70%;
  }
  .awards .award-row img {
    width: 90%;
    position: relative;
    top: -40px;
  }
}

@media screen and (min-width: 1025px) and (max-width: 1200px) {
  .awards .award-title {
    margin-top: -285px !important;
  }
  .awards h1 {
    font-size: 55px;
  }
  .awards .award-row img {
    width: 85% !important;
    top: -25px !important;
  }
  .awards h2 {
    font-size: 22px !important;
    margin-top: 35px;
  }
  .awards h2 > span {
    font-size: 28px !important;
  }
}

.blogs h1.our-blog {
  font-size: 75px;
  color: #ee7e30;
}

.blogs .blog-list .d-flex {
  overflow-x: scroll;
  padding-bottom: 100px;
}

.blogs .blog-list .blog {
  margin-right: 10px;
  cursor: pointer;
  width: 425px;
  height: 475px;
}

.blogs .blog-list .blog h5,
h6 {
  font-family: "BebusNeue-Regular" !important;
}

.blogs .blog-list ::-webkit-scrollbar {
  height: 3px;
  cursor: pointer;
}

.blogs .blog-list ::-webkit-scrollbar-track {
  background: #ffffff3b;
  cursor: pointer;
  margin: 0px 500px 0px 10px;
}

.blogs .blog-list ::-webkit-scrollbar-thumb {
  cursor: pointer;
  background: #ffffff;
}

.blogs .blog-list ::-webkit-scrollbar-thumb:hover {
  background: #ffffff;
  cursor: pointer;
  height: 5px;
}

@media screen and (max-width: 768px) {
  .blogs .blog-list .d-flex {
    padding-bottom: 35px;
  }
  .blogs .blog-list .blog {
    margin-left: 15px;
    margin-right: 0;
    width: 245px;
    height: 275px;
  }
  .blogs .blog-list .blog p {
    font-size: 11px;
  }
  .blogs .blog-list ::-webkit-scrollbar-track {
    background: #ffffff3b;
    margin: 0px 30px 0px 30px;
  }
  .blogs .read-more-btn button {
    width: 150px;
    top: 50px;
    right: 10px !important;
  }
}

.blog-list .content {
  position: relative;
  margin: auto;
  overflow: hidden;
  border-radius: 5px;
  height: 100%;
}

.blog-list .content .content-overlay {
  background: rgba(0, 0, 0, 0.7);
  position: absolute;
  height: 100%;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  opacity: 0;
  -webkit-transition: all 0.4s ease-in-out 0s;
  -moz-transition: all 0.4s ease-in-out 0s;
  transition: all 0.4s ease-in-out 0s;
}

.blog-list .content:hover .content-overlay {
  opacity: 1;
}

.blog-list .content:hover .content-image {
  transform: scale(1.25);
  opacity: 0.5;
}

.blog-list .content-image {
  width: 100%;
  transition: 0.5s all ease-in-out;
  border-radius: 5px;
  height: 100%;
}

.blog-list .image-caption {
  height: 190px;
  background: linear-gradient(0deg, black, transparent);
  position: relative;
  transition: all 0.3s ease-in-out 0s;
  top: -130px;
}

.blog-list .content:hover .image-caption {
  -webkit-transform: translate(0%, 0%);
  -moz-transform: translate(0%, -75%);
  transform: translate(0%, -75%);
  -webkit-transition: all 0.3s ease-in-out 0s;
  -moz-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
  top: -45px;
}

.blog-list .content-details {
  position: absolute;
  width: 100%;
  top: 95%;
  left: 50%;
  opacity: 0;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transition: all 0.3s ease-in-out 0s;
  -moz-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}

.blog-list .content:hover .content-details {
  top: 95%;
  left: 50%;
  opacity: 1;
}

.blog-list .content-details p {
  color: #fff;
  font-family: "Lato-Heavy";
}

.blog-list .content-details .fadeIn-top {
  top: 90%;
}

.blog-list .content-details .read-more-icon {
  position: relative;
  top: 20px;
  left: 190px;
  right: 0;
  transition: all 0.3s ease-in-out 0s;
}

.blog-list .content:hover .read-more-icon {
  -moz-transform: translate(0%, -75%);
  transform: translate(85px, 0);
  -webkit-transition: all 0.3s ease-in-out 0s;
  -moz-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
  left: 0;
  /* right: 100%; */
}

@media screen and (max-width: 786px) {
  .blog-list .image-caption {
    height: 140px;
    top: -80px;
  }
  .blog-list .content:hover .image-caption {
    top: -20px;
  }
  .blog-list .image-caption h2 {
    font-size: 23px;
    left: 15px;
    right: 15px;
  }
  .blog-list .content-details p {
    font-size: 13px;
  }
}

.blogs .read-more-btn button {
  position: absolute;
  transition: 2s all ease;
  z-index: 1;
  background-color: #fff;
  color: #002347;
  width: 190px;
  right: 0;
}

.blogs .read-more-btn button::before {
  content: "";
  position: absolute;
  z-index: -1;
  transform: translate(-50%, -50%);
  background-color: #ee7e30;
  border-radius: 5px;
  transition: all 0.3s;
  top: 50%;
  left: 50%;
  width: 0%;
  height: 100%;
}

.blogs .read-more-btn button:hover {
  transition: all 0.6s;
}

.blogs .read-more-btn button:hover::before {
  height: 100%;
  width: 100%;
  border-radius: 5px;
}
