@charset "UTF-8";
/*!
* Style Sheet for ""
* version: 1
* last modified:2023 By Applab
* author: Applab
* website: www.applab.qa
*/
/*b5 start -------------------------------------------------------------------------------------------------------------------*/
/*b5 end ---------------------------------------------------------------------------------------------------------------------*/
audio {
  font-size: 1rem;
}

.bg-orange {
  background: #F48F00 !important;
}
.station-main {
  width: 100%;
  position: fixed;
  bottom: -127px;
  transition: all 0.3s;
  min-height: 110px;
  z-index: 9;
  display: none;
  transition: all 0.3s;
}
.station-main.show-player {
  transition: all 0.3s;
  display: block !important;
  bottom: -1px;
}
@media (max-width: 1199px) {
  .station-main {
    position: relative;
    bottom: 0;
  }
}
.station-main.scrolled-near-bottom {
  position: sticky;
  transition: all 0.3s;
  min-height: 90px;
  bottom: -127px;
}
.station-main p {
  margin: 0;
}
@media (max-width: 1679px) {
  .station-main p {
    font-size: 14px !important;
  }
}
.station-main .close-frame {
  background-color: transparent;
  border: none;
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  inset-inline-start: 100px;
  padding: 0;
}
.radio-player {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0;
  border-radius: 10px;
  box-sizing: border-box;
}
.radio-player .controls {
  display: flex;
  align-items: center;
  gap: 40px;
}
.radio-player .controls button {
  background: transparent;
  border: none;
  font-size: 24px;
  color: white;
  cursor: pointer;
  outline: none;
}
.radio-player .controls button.play-pause-btn {
  background-color: white;
  color: #f08c30;
  border-radius: 50%;
  padding: 10px;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.radio-player .controls button.play-btn img {
  position: relative;
  left: 1px;
  width: 20px;
}

.audio-image {
  width: 100px;
  height: 94px;
  border-radius: 12px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 1679px) {
  .audio-image {
    width: 80px;
    height: 74px;
  }
}

.livePlayer .audio-image {
  width: 81px;
  height: 81px;
}

.seek-bar-container {
  direction: ltr;
}

.seek-bar-range {
  cursor: pointer;
}

/* Styling the progress bar with image background */
.seek-bar-range {
  position: absolute;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  z-index: 9;
  /* opacity: 0; */
  /* display: none; */
  height: 100%;
  width: 100%;
  opacity: 0;
}

.seek-bar {
  width: 100%;
  height: 100%;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border-radius: 5px;
  overflow: hidden;
  background: url("../images/seek-bg.svg") no-repeat center;
  background-size: contain;
  background-size: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}
.seek-bar.orange-seek-bar {
  background: url("../images/orange-seek-bg.svg") no-repeat center;
}

.seek-bar-range::-webkit-slider-thumb {
  width: 20px;
  height: 20px;
  background-color: lightblue;
}

.seek-bar-range::-moz-range-thumb {
  width: 20px;
  height: 20px;
  background-color: lightblue;
}

.seek-bar-container {
  display: flex;
  position: relative;
  width: 100%;
  min-height: 92px; /* Adjust to match the seek bar height */
}

@media (max-width: 1679px) {
  .station-main, .seek-bar-container {
    min-height: 70px;
  }
}

.mix-blend {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0;
  background-color: #ddd; /* The color of the progress */
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  transition: width 0.1s linear;
  z-index: 0;
}

.mix-blend {
  mix-blend-mode: luminosity;
  opacity: 0.5;
}

.time-display {
  position: relative;
  z-index: 9;
  font-size: 14px;
  color: #fff;
}

.seek-bar-loader {
  position: absolute;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
  display: flex;
  cursor: default;
  z-index: 9;
}
.seek-bar-loader .loader {
  display: flex;
  justify-content: center;
  align-items: center;
}
.seek-bar-loader .dot {
  width: 10px;
  height: 10px;
  margin: 0 10px;
  border-radius: 50%;
  background-color: #ffffff; /* Change color as needed */
  animation: bounce 0.6s infinite alternate;
}
.seek-bar-loader .dot:nth-child(1) {
  animation-delay: 0s;
  width: 4px;
  height: 4px;
}
.seek-bar-loader .dot:nth-child(2) {
  animation-delay: 0.1s;
  width: 6px;
  height: 6px;
}
.seek-bar-loader .dot:nth-child(3) {
  animation-delay: 0.2s;
  width: 8px;
  height: 8px;
}
.seek-bar-loader .dot:nth-child(4) {
  animation-delay: 0.3s;
  width: 10px;
  height: 10px;
}
.seek-bar-loader .dot:nth-child(5) {
  animation-delay: 0.4s;
  width: 12px;
  height: 12px;
}
.seek-bar-loader .dot:nth-child(6) {
  animation-delay: 0.5s;
  width: 14px;
  height: 14px;
}
.seek-bar-loader .dot:nth-child(7) {
  animation-delay: 0.6s;
  width: 10px;
  height: 10px;
}
.seek-bar-loader .dot:nth-child(8) {
  animation-delay: 0.7s;
  width: 8px;
  height: 8px;
}
.seek-bar-loader .dot:nth-child(9) {
  animation-delay: 0.8s;
  width: 6px;
  height: 6px;
}
.seek-bar-loader .dot:nth-child(10) {
  animation-delay: 0.9s;
  width: 4px;
  height: 4px;
}
@keyframes bounce {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-20px);
  }
}

.bg-orange {
  background-color: #F48F00 !important;
}
.bg-orange .seek-bar-loader, .bg-orange .mix-blend {
  background-color: #F48F00 !important;
}

.bg-grey .seek-bar-loader, .bg-grey .mix-blend {
  background-color: #F6F6F6 !important;
}
.bg-grey .mix-blend {
  mix-blend-mode: color;
  opacity: 1;
}
.bg-grey .time-display {
  color: #000;
}
.bg-grey .play-pause-btn {
  background-color: #F48F00 !important;
}
.bg-grey .play-pause-btn img {
  filter: brightness(0) invert(1);
  -webkit-filter: brightness(0) invert(1); /* For Safari and older WebKit browsers */
}
.bg-grey .seek-bar-loader .dot {
  background-color: #c3c3c3;
}

.seekbar-otr {
  display: flex;
  gap: 15px;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.station-small {
  position: static;
}
.station-small .seekbar-otr {
  width: 80.1%;
}
.station-small .seek-bar.orange-seek-bar {
  background-position: right;
}
.station-small .time-display {
  font-size: 16px;
}
.station-small .seek-bar-container {
  justify-content: end;
  padding-inline-end: 25px;
}

@media (max-width: 1679px) {
  .station-main .close-frame {
    inset-inline-start: 15px;
  }
}
@media (max-width: 1500px) {
  .station-main .close-frame {
    inset-inline-end: 15px;
    text-align: left;
    z-index: 9;
    top: 25px;
    inset-inline-start: auto;
  }
  .station-main .close-frame img {
    width: 27px;
  }
}
@media (max-width: 991px) {
  .seek-bar-loader .dot {
    margin: 0 5px;
  }
  .radio-player .controls {
    gap: 15px;
  }
  .radio-player .controls button.play-pause-btn {
    width: 40px;
    height: 40px;
  }
  .radio-player .controls button.play-btn img {
    width: 15px;
  }
  .program-details h4 {
    font-size: 18px;
  }
  .seek-bar-container {
    margin: 0;
    justify-content: flex-end;
    display: flex;
  }
  .station-small .seek-bar {
    background-size: 80%;
    background-repeat: repeat-x;
  }
}
@media (max-width: 767px) {
  .audio-image {
    width: 75px;
    border-radius: 8px;
    box-shadow: 3px 4px 16px -7px rgba(0, 0, 0, 0.55);
    border: 3px solid #F48F00;
  }
  .station-main .close-frame {
    top: 40px;
  }
  .station-main .close-frame img {
    width: 25px;
  }
  .program-details {
    row-gap: 10px;
    flex-direction: row !important;
  }
  .seek-bar-container {
    justify-content: center;
    margin-bottom: 25px;
    margin-top: 20px;
    min-height: 60px;
  }
  .seekbar-otr {
    width: 100%;
  }
  .radio-player {
    order: 3;
    justify-content: center !important;
  }
  .radio-player .controls {
    gap: 10px;
    justify-content: space-around;
    width: 100%;
    margin-bottom: 20px;
  }
  .program-details {
    margin-bottom: 15px;
  }
  .station-small .seek-bar-container {
    margin-bottom: 0;
  }
  .station-small .radio-player {
    order: inherit !important;
  }
  .station-main .seek-bar-loader {
    justify-content: center;
  }
}
@media (max-width: 575px) {
  .station-small .seekbar-otr {
    width: 100%;
  }
  .station-small .seek-bar-container {
    width: 100%;
  }
  .program-details h4 {
    font-size: 16px;
  }
  .program-details {
    margin-bottom: 0px;
  }
}
p a {
  color: #0d6efd;
}
p a:hover {
  color: #0d6efd;
  text-decoration: underline;
}

body {
  background-color: #fff;
  font-size: 16px;
  line-height: 1.5;
  color: #292D32;
}
body h1,
body h2,
body h3,
body h4,
body h5 {
  font-weight: 600;
}
body p {
  line-height: 1.5;
}

h1,
.h1 {
  font-size: 64px;
  line-height: 1.3;
}
@media (max-width: 1679px) {
  h1,
  .h1 {
    font-size: 44px;
  }
}
@media (max-width: 991.98px) {
  h1,
  .h1 {
    line-height: 1.5;
    font-size: 30px;
  }
}
@media (max-width: 767.98px) {
  h1,
  .h1 {
    font-size: 20px;
  }
}

h2,
.h2 {
  font-size: 40px;
}
@media (max-width: 1600px) {
  h2,
  .h2 {
    font-size: 30px;
    margin-bottom: 22px;
  }
}
@media (max-width: 1199.98px) {
  h2,
  .h2 {
    font-size: 25px;
  }
}
@media (max-width: 991.98px) {
  h2,
  .h2 {
    font-size: 18px;
    margin-bottom: 14px;
  }
}

p {
  font-size: 18px;
}
@media (max-width: 1600px) {
  p {
    font-size: 16px;
  }
}
@media (max-width: 991.98px) {
  p {
    font-size: 14px;
  }
}

a:hover {
  color: #fd7e14 !important;
  text-decoration: none !important;
}

article p {
  color: rgba(30, 30, 30, 0.65);
  font-size: 18px;
  margin-bottom: 20px;
}
@media (max-width: 991.98px) {
  article p {
    font-size: 15px;
    line-height: 1.6;
  }
}

.m-xxl-4-5 {
  margin-top: 43px;
  margin-bottom: 15px;
}
@media (max-width: 1399.98px) {
  .m-xxl-4-5 {
    margin-top: 33px;
  }
}
@media (max-width: 991.98px) {
  .m-xxl-4-5 {
    margin-top: 25px;
  }
}

.fs-14 {
  font-size: 14px !important;
}

.fs-13 {
  font-size: 13px !important;
}

.fs-20 {
  font-size: 20px !important;
  line-height: 1.625rem;
}
@media (max-width: 767.98px) {
  .fs-20 {
    font-size: 17px !important;
  }
}

.fs-22 {
  font-size: 22px;
}
@media (max-width: 1199.98px) {
  .fs-22 {
    font-size: 18px;
  }
}
@media (max-width: 767.98px) {
  .fs-22 {
    font-size: 16px;
  }
}

.fs-24 {
  font-size: 24px;
}
@media (max-width: 1679px) {
  .fs-24 {
    font-size: 22px;
  }
}
@media (max-width: 1199.98px) {
  .fs-24 {
    font-size: 18px;
  }
}
@media (max-width: 767.98px) {
  .fs-24 {
    font-size: 16px;
  }
}

.fs-32 {
  font-size: 32px;
}
@media (max-width: 1600px) {
  .fs-32 {
    font-size: 30px;
  }
}
@media (max-width: 991.98px) {
  .fs-32 {
    line-height: 1.5;
    font-size: 28px;
  }
}
@media (max-width: 767.98px) {
  .fs-32 {
    font-size: 20px;
  }
}

.fs-40 {
  font-size: 40px;
}
@media (max-width: 1600px) {
  .fs-40 {
    font-size: 30px;
  }
}
@media (max-width: 991.98px) {
  .fs-40 {
    line-height: 1.5;
    font-size: 28px;
  }
}
@media (max-width: 767.98px) {
  .fs-40 {
    font-size: 20px;
  }
}

.line-clamp-3 {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.line-clamp-2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.social-media-group .link {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  border: 1px solid #fff;
  transition: all 0.3s;
}
@media (max-width: 1679px) {
  .social-media-group .link {
    width: 40px;
    height: 40px;
  }
  .social-media-group .link img {
    width: 15px !important;
  }
}
@media (max-width: 575.98px) {
  .social-media-group .link {
    width: 30px;
    height: 30px;
  }
  .social-media-group .link img {
    width: 12px !important;
  }
}
.social-media-group .link img {
  aspect-ratio: 1/1;
}
.social-media-group .link:hover {
  background-color: #F48F00;
  scale: 1.1;
}
.social-media-group .dropdown-toggle::after {
  display: none;
}
.social-media-group .dropdown-menu.show {
  display: flex;
}

.social-media-sm .dropdown-items {
  display: flex;
  gap: 5px;
}
.social-media-sm .dropdown-menu {
  background-color: transparent;
  border: 0;
  inset: -45px auto 0px -78px !important;
  animation: dropdownMenuAnimation 0.03s ease-in forwards;
}
.social-media-sm .dropdown-toggle::after {
  display: none;
}
.social-media-sm .dropdown-menu.show {
  display: flex !important;
}
.social-media-sm .social-link {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: white;
}
.social-media-sm .social-link:hover {
  background-color: #114782;
}
.social-media-sm .social-link:hover img {
  filter: brightness(0) invert(1);
}
.social-media-sm .social-link img {
  max-width: 12px !important;
  height: 13px !important;
  filter: brightness(0%);
  -o-object-fit: inherit !important;
     object-fit: inherit !important;
  aspect-ratio: inherit !important;
  transform: none !important;
}

@keyframes dropdownMenuAnimation {
  0% {
    transform: scale(0.95);
    opacity: 0.6;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}
.social-dark .link {
  border-color: #ccc !important;
}
.social-dark .link img {
  width: 20px;
}
.social-dark .link:hover {
  border-color: #c27203 !important;
}
.social-dark .link:hover img {
  /* WebKit prefix for older browsers */
  filter: brightness(100%);
  /* Standard filter property */
}
.social-dark .link img {
  /* WebKit prefix for older browsers */
  filter: brightness(0);
  /* Standard filter property */
}

.hover-effect figure {
  overflow: hidden;
}
.hover-effect img {
  transition: all 0.5s;
}
.hover-effect:hover img {
  scale: 1.1;
}

.blue-bg {
  background-color: #114782;
}

.fw-500 {
  font-weight: 500;
}

.info-size {
  font-size: 16px;
}
@media (max-width: 991.98px) {
  .info-size {
    font-size: 13px;
  }
}
.info-size span {
  margin: 0 2px;
}
.info-size button {
  background-color: transparent;
  border: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  padding: 0;
  transition: all 0.1s;
}
.info-size button img {
  width: 100%;
}
.info-size button:hover {
  transform: scale(1.1);
}

.space-md {
  padding-top: 80px;
  padding-bottom: 80px;
}
@media (max-width: 1679px) {
  .space-md {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}

.heading-outer {
  margin-bottom: 40px;
}

.content-outer {
  margin-top: 30px;
}

.custom-p-end {
  padding-inline-end: 82px;
}

.custom-p-start {
  padding-inline-start: 82px;
}

@media (max-width: 1399.98px) {
  .custom-p-start, .custom-p-end {
    padding: 0 1rem;
  }
}

@media (max-width: 1199px) {
  .space-md {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}
@media (max-width: 1024px) {
  .heading-outer {
    margin-bottom: 10px;
  }
  .space-md {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}
@media (max-width: 767px) {
  article p {
    font-size: 14px;
  }
}
@media (min-width: 1400px) {
  .container-lg {
    max-width: 1392px;
  }
}
@media (max-width: 1679px) {
  .slick-arrow {
    width: 40px !important;
    height: 40px !important;
  }
  .slick-arrow:after {
    background-size: 15px !important;
  }
}
@media (max-width: 1024px) {
  .slick-arrow {
    width: 35px !important;
    height: 35px !important;
  }
  .slick-arrow:after {
    background-size: 13px !important;
  }
}

.round-sm {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(17, 71, 130, 0.1);
}
@media (max-width: 575.98px) {
  .round-sm {
    width: 38px;
    height: 38px;
  }
  .round-sm img {
    width: 15px;
  }
}

.label-sm {
  background: rgba(17, 71, 130, 0.1);
  padding: 8px 16px;
  border-radius: 4px;
  color: #114782;
  display: inline-flex;
  font-size: 16px;
}
.sm-img {
  max-width: 90px;
}

.btn-grp-round {
  gap: 7px;
}
.btn-grp-round .btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(30, 30, 30, 0.65);
  padding: 0;
}
.btn-grp-round .btn img {
  width: 24px !important;
}
.btn-grp-round .btn.sm {
  width: 32px;
  height: 32px;
}
.btn-grp-round .btn.sm img {
  width: 17.5px !important;
  transform: none !important;
  scale: inherit !important;
}
@media (max-width: 575.98px) {
  .btn-grp-round .btn {
    width: 38px;
    height: 38px;
  }
  .btn-grp-round .btn img {
    width: 20px !important;
  }
}
.btn-grp-round .btn img {
  transition: all 300ms;
}
.btn-grp-round .btn:hover img {
  transform: scale(1.2);
}

.p_1 {
  padding: 6px !important;
}

.font-bold {
  font-weight: 600;
}

.national-day-theme .sub-header, .national-day-theme .station-main {
  background-color: #910D4F !important;
}
.national-day-theme .bg-orange.station-main .mix-blend, .national-day-theme .bg-orange.station-main .seek-bar-loader {
  background-color: #910D4F !important;
}
.national-day-theme section {
  position: relative;
}
.national-day-theme .ribbon {
  position: absolute;
  top: -159px;
  z-index: -1;
}
@media (max-width: 1200px) {
  .national-day-theme .ribbon img {
    width: 100px;
  }
}
@media (max-width: 1024px) {
  .national-day-theme .ribbon {
    top: -213px;
  }
}
@media (max-width: 991px) {
  .national-day-theme .ribbon {
    top: -170px;
  }
}
@media (max-width: 767px) {
  .national-day-theme .ribbon {
    top: -127px;
  }
}
.national-day-theme .ribbon-2 {
  inset-inline-end: 0;
}
.national-day-theme .ribbon-02 {
  inset-inline-end: 0;
}
.national-day-theme .ribbon-lg {
  position: absolute;
  bottom: -140px;
}
@media (max-width: 1400px) {
  .national-day-theme .ribbon-lg img {
    width: 100px;
  }
}
@media (max-width: 991px) {
  .national-day-theme .ribbon-lg {
    bottom: -110px;
  }
  .national-day-theme .ribbon-lg img {
    width: 50px;
  }
}

.national-day {
  margin-inline-end: 50px;
}
@media (max-width: 991px) {
  .national-day {
    position: absolute;
    inset-inline-start: 170px;
  }
  .national-day img {
    width: 80px;
  }
}
@media (max-width: 579px) {
  .national-day {
    inset-inline-start: 80px;
  }
  .national-day img {
    width: 50px;
  }
}

@media (max-width: 579px) {
  .national-day-theme header .navbar-brand img {
    width: 52px;
  }
}

.inner-banner {
  position: relative;
}
.inner-banner figure {
  margin: 0;
}
.inner-banner .banner-content {
  position: absolute;
  inset-inline-start: 15px;
  bottom: 100px;
  z-index: 2;
}
@media (max-width: 1199.98px) {
  .inner-banner .banner-content {
    bottom: 30px;
  }
}
@media (max-width: 575.98px) {
  .inner-banner .banner-content {
    bottom: 10px;
  }
}
.grid-outer .grid-box {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(41, 45, 50, 0.3);
  padding: 8px;
}
.grid-outer .grid-box .link {
  position: relative;
  z-index: 9;
  width: 100%;
  height: 100%;
}
.grid-outer .grid-box .link:after {
  content: "";
  background: linear-gradient(180deg, rgba(40, 40, 40, 0) 0%, #282828 100%);
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 50%;
  left: 0;
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
}
.grid-outer .grid-box:hover .more-btn {
  background-color: #F48F00;
  transform: rotate(0deg);
}
.grid-outer .grid-box:hover .sound-btn {
  background-color: #F48F00;
}
.grid-outer .grid-box:hover .sound-btn img {
  /* For WebKit browsers */
  filter: brightness(0) invert(1);
  /* Standard */
}
.grid-outer .grid-box figure {
  width: 100%;
  height: 400px;
  overflow: hidden;
  margin: 0;
  border-radius: 12px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}
@media (max-width: 1199.98px) {
  .grid-outer .grid-box figure {
    height: 330px;
  }
}
@media (max-width: 575.98px) {
  .grid-outer .grid-box figure {
    height: auto;
  }
}
.grid-outer .grid-box figure:hover img {
  scale: 1.1;
}
.grid-outer .grid-box figure:hover .play-btn {
  background-color: #F48F00;
  scale: 1.2;
  box-shadow: 0px 5px 17px -4px rgba(0, 0, 0, 0.4);
}
.grid-outer .grid-box figure:hover .play-btn img {
  transition: all 0.7s;
  scale: 1.5;
}
.grid-outer .grid-box figure img {
  width: 100%;
  max-width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
  transition: all 0.5s;
  aspect-ratio: 1/1;
}
.grid-outer .content-btm {
  position: absolute;
  z-index: 9;
  bottom: 0;
  left: 24px;
  right: 24px;
  bottom: 24px;
}
.grid-outer .content-btm .sound-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: #fff;
  border: 1px solid transparent;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  transition: all 0.3s;
  z-index: 9;
  position: relative;
}
.grid-outer .content-btm .sound-btn img {
  width: 24px !important;
  height: auto;
  transition: all 0.3s;
}
.grid-outer .content-btm .sound-btn:hover {
  background-color: #F48F00;
}
.grid-outer .content-btm .sound-btn:hover img {
  /* For WebKit browsers */
  filter: brightness(0) invert(1);
  /* Standard */
}
.grid-outer .content-btm .title {
  font-size: 26px;
  margin-bottom: 0;
  word-break: break-all;
}
.grid-outer .content-btm p {
  font-size: 16px;
  margin-bottom: 0;
  margin-top: 5px;
}
.grid-outer.grid-sm figure {
  height: 290px;
}
@media (max-width: 991.98px) {
  .grid-outer.grid-sm figure {
    height: 300px;
  }
}
.grid-outer.grid-sm .btn-grp-round img {
  height: auto;
}

.slider-vertical .grid-box {
  margin: 0 15px;
}
.slider-vertical .slick-arrow {
  position: absolute;
  z-index: 1;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid rgb(17, 71, 130);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0;
  background-color: transparent;
  transform: translate(-50%, -50%);
  top: auto;
  bottom: -100px;
}
.slider-vertical .slick-arrow:hover {
  opacity: 0.7;
}
.slider-vertical .slick-arrow.slick-prev {
  inset-inline-start: auto;
  inset-inline-end: 100px;
}
.slider-vertical .slick-arrow.slick-prev:after {
  content: "";
  width: 100%;
  height: 100%;
  transform: rotate(180deg);
  -webkit-mask-image: url(../images/arrow-line.svg);
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  background: #114782;
}
.slider-vertical .slick-arrow.slick-next {
  inset-inline-end: 40px;
}
.slider-vertical .slick-arrow.slick-next:after {
  content: "";
  -webkit-mask-image: url(../images/arrow-line.svg);
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  background: #114782;
  width: 100%;
  height: 100%;
}
.slider-vertical .slick-dots {
  display: flex;
  display: none;
  max-width: 88%;
  position: relative;
  top: 55px;
  inset-inline-start: 15px;
}
.slider-vertical .slick-dots li {
  margin: 0 0px;
  flex-grow: 1;
}
.slider-vertical .slick-dots li button {
  font-size: 0;
  border: 0;
  border-radius: 2px;
  width: 100%;
  height: 2px;
  background-color: #cfdae6;
  outline: none;
}
.slider-vertical .slick-dots li.slick-active button {
  background-color: #114782;
  width: 100%;
  height: 4px;
}

.progress-bar-slide {
  position: relative;
  top: 48px;
  width: calc(100% - 175px);
  margin-inline-start: 15px;
  padding: 0;
}
.progress-bar-slide:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: rgba(17, 71, 130, 0.2);
  bottom: 1px;
  inset-inline-end: 0;
}
.progress-bar-slide .progress-bar {
  height: 5px;
  width: 0%;
  background-color: #114782;
  transition: width 0.3s ease;
  cursor: pointer;
}
.progress-bar-slide .progress-bar:hover {
  background-color: orange;
}

@media (min-width: 576px) {
  .grid-outer .content-btm.left-right-btm {
    left: 20px;
    bottom: 20px;
    z-index: 9;
  }
}
.top-sec {
  position: absolute;
  z-index: 9;
  inset-inline-start: 20px;
  inset-block-start: 20px;
}

@media (max-width: 1679px) {
  .grid-outer .content-btm .title {
    font-size: 18px;
  }
  .slider-vertical .slick-arrow {
    bottom: -87px;
  }
  .slider-vertical .slick-arrow.slick-prev {
    inset-inline-end: 90px;
  }
}
@media (max-width: 991px) {
  .grid-outer .content-btm .sound-btn,
  .more-btn {
    width: 40px;
    height: 40px;
  }
  .slider-vertical .slick-dots {
    max-width: calc(100% - 45px);
    top: 11px;
    inset-inline-start: 20px;
  }
  .slider-vertical .slick-arrow.slick-prev {
    inset-inline-end: auto;
  }
  .slider-vertical .slick-arrow.slick-next {
    inset-inline-end: auto;
    inset-inline-start: 50px;
  }
  .slider-vertical .grid-outer {
    display: block !important;
  }
  .progress-bar-slide {
    position: relative;
    top: 48px;
    width: calc(100% - 150px);
    margin-inline-start: 126px;
    margin-inline-end: 0;
  }
}
@media (max-width: 767px) {
  .grid-outer .content-btm {
    left: 15px;
    right: 15px;
    bottom: 15px;
  }
  .slider-vertical {
    margin-top: 30px;
  }
  .grid-outer .content-btm .title {
    font-size: 16px;
  }
  .grid-outer .content-btm p {
    font-size: 14px;
  }
}
@media (max-width: 991px) {
  .home-gallery .grid-outer {
    display: inherit !important;
  }
}

.breadcrumb li {
  position: relative;
  padding-inline-end: 50px !important;
  font-size: 16px;
}
.breadcrumb li a:hover {
  color: #8D1B3D !important;
}
@media (max-width: 1199.98px) {
  .breadcrumb li {
    font-size: 13px;
    padding-inline-end: 30px !important;
  }
}
@media (max-width: 767.98px) {
  .breadcrumb li {
    padding-inline-end: 30px !important;
  }
}
.breadcrumb li:last-child {
  padding-inline-end: 0 !important;
}
.breadcrumb li.active {
  font-weight: 600;
  color: #8D1B3D !important;
}

.breadcrumb-item + .breadcrumb-item::before {
  display: none;
}
.breadcrumb-item + .breadcrumb-item::after {
  content: "";
  border: solid #292D32;
  border-width: 0 2px 2px 0;
  display: inline-block;
  padding: 3px;
  transform: rotate(135deg);
  -webkit-transform: rotate(135deg);
  position: absolute;
  top: 2px;
  inset-inline-start: -30px;
  top: 7px;
}
@media (max-width: 1199.98px) {
  .breadcrumb-item + .breadcrumb-item::after {
    inset-inline-start: -20px;
  }
}
.pagination {
  gap: 7px;
}
.pagination .page-link, .pagination .page-numbers {
  border: 1px solid #F1F1F1 !important;
  border-radius: 10px;
  width: 43px;
  height: 43px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}
.pagination .page-link.current, .pagination .page-numbers.current {
  background-color: #114782;
  color: #fff !important;
}
.pagination .page-link.current:hover, .pagination .page-numbers.current:hover {
  color: #fff !important;
}
@media (max-width: 767.98px) {
  .pagination .page-link, .pagination .page-numbers {
    width: 30px;
    height: 30px;
    font-size: 13px;
    border-radius: 8px;
  }
}
.pagination .page-link.border-0, .pagination .page-numbers.border-0 {
  border: 0 !important;
}
.pagination .page-link.border-0:hover, .pagination .page-numbers.border-0:hover {
  background: none !important;
  color: inherit !important;
}
.pagination .page-link:hover, .pagination .page-numbers:hover {
  color: #0d6efd !important;
}
.responsive-tabs .card-body {
  background-color: transparent;
  padding: 40px 0 20px 0;
}
.responsive-tabs .nav-tabs {
  border: 1px solid rgba(204, 204, 204, 0.5);
  border-left: 0;
  border-right: 0;
}
.responsive-tabs .nav-tabs .nav-item {
  flex-grow: 1;
}
.responsive-tabs .nav-tabs .nav-link {
  background-color: transparent;
  border: 0;
  position: relative;
  min-width: 180px;
  height: 74px;
  color: rgba(30, 30, 30, 0.65);
  font-size: 18px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
}
.responsive-tabs .nav-tabs .nav-link:hover {
  color: #114782 !important;
}
.responsive-tabs .nav-tabs .nav-link.active {
  color: #114782;
  font-weight: 700;
}
.responsive-tabs .nav-tabs .nav-link.active:after {
  content: "";
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 2px;
  background-color: #114782;
  right: 0;
}

.responsive-tabs .nav-tabs {
  display: none;
}

.schedule-info-outer {
  display: grid !important;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}
@media (max-width: 991.98px) {
  .schedule-info-outer {
    grid-template-columns: 1fr;
  }
}
.schedule-info-outer .schedule-info {
  background-color: transparent;
  border-radius: 24px;
  overflow: hidden;
  min-height: 164px;
  border: 1px solid rgba(41, 45, 50, 0.3);
  padding: 8px;
  width: 100%;
  grid-column: span 1;
}
.schedule-info-outer .schedule-info:only-child {
  grid-column: span 2;
}
.schedule-info-outer .schedule-info .details {
  width: 100%;
  padding-inline-start: 32px;
  padding-inline-end: 63px;
  padding-bottom: 32px;
  padding-top: 32px;
  background-color: #fff;
  border-radius: 16px 0px 0px 16px;
  border: 1px solid rgb(222, 216, 216);
  border-inline-start: 0;
}
.schedule-info-outer .schedule-info .details .modal-dialog {
  top: 30%;
  max-width: 600px;
}
.schedule-info-outer .schedule-info .details .modal-content {
  max-width: 600px;
}
.schedule-info-outer .schedule-info .details .sm-head span {
  color: #F48F00;
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  gap: 6.5px;
}
.schedule-info-outer .schedule-info .details .sm-head span img {
  width: 20px;
}
.schedule-info-outer .schedule-info .details .sm-head h3 {
  font-size: 24px;
  color: #1E1E1E;
  font-weight: 600;
}
.schedule-info-outer .schedule-info .details p {
  color: rgba(30, 30, 30, 0.65);
  font-size: 18px;
  line-height: 1.6;
  margin: 0;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 2;
  line-height: 1.5;
  height: 3em;
  margin-bottom: 3px;
}
.schedule-info-outer .schedule-info .date-box {
  background-color: #F48F00;
  min-width: 192px;
  border-radius: 0px 16px 16px 0;
}
.schedule-info-outer .schedule-info .date-box h4 {
  font-size: 48px;
  color: #fff;
  font-weight: 500;
  margin-bottom: 0;
}
.schedule-info-outer .schedule-info .date-box p {
  font-size: 24px;
  font-weight: 500;
  margin: 0;
  color: #fff;
}

@media (max-width: 1679px) {
  .responsive-tabs .nav-tabs .nav-link {
    height: 60px;
    font-size: 16px;
  }
  .schedule-info-outer .schedule-info .date-box {
    min-width: 150px;
  }
  .schedule-info-outer .schedule-info .details {
    padding-inline-start: 22px;
    padding-inline-end: 53px;
    padding-bottom: 22px;
    padding-top: 22px;
  }
  .schedule-info-outer .schedule-info .details p {
    font-size: 16px;
  }
  .schedule-info-outer .schedule-info .date-box h4 {
    font-size: 38px;
    line-height: 40px;
  }
  .schedule-info-outer .schedule-info .date-box p {
    font-size: 15px;
  }
  .schedule-info-outer .schedule-info .details .sm-head h3 {
    font-size: 20px;
  }
  .schedule-info-outer .schedule-info .details .sm-head span {
    font-size: 14px;
  }
}
@media (max-width: 1199px) {
  .responsive-tabs .nav-tabs .nav-link {
    min-width: 130px;
    padding-left: 5px;
    padding-right: 5px;
  }
  .schedule-info-outer {
    gap: 30px;
  }
}
@media (min-width: 991px) {
  .responsive-tabs .nav-tabs {
    display: flex;
  }
  .responsive-tabs .card {
    border: none;
    background-color: transparent;
  }
  .responsive-tabs .card .card-header {
    display: none;
  }
  .responsive-tabs .card .collapse {
    display: block;
  }
}
@media (max-width: 991px) {
  .responsive-tabs .card-body {
    padding: 30px 20px;
  }
  .responsive-tabs .card-header {
    padding: 10px 18px;
  }
  .responsive-tabs .card-header h3 {
    font-size: 20px;
  }
  .responsive-tabs .card-header a {
    color: #114782;
    display: inline-flex;
    align-items: center;
    width: 100%;
  }
  .schedule-info-outer .schedule-info .date-box {
    min-width: 100px;
  }
  .schedule-info-outer .schedule-info {
    min-height: auto;
  }
  .responsive-tabs [aria-expanded=false]:after {
    content: "+";
    margin-inline-start: auto;
    font-size: 30px;
    font-weight: 300;
  }
  .responsive-tabs [aria-expanded=true]:after {
    content: "−";
    margin-inline-start: auto;
    font-size: 30px;
    font-weight: 300;
  }
  .responsive-tabs {
    padding: 0;
    margin-top: 40px;
  }
  .responsive-tabs .tab-pane {
    display: block !important;
    opacity: 1;
    margin-bottom: 10px;
  }
  .schedule-info-outer .schedule-info .details {
    padding-inline-start: 15px;
    padding-inline-end: 15px;
    padding-bottom: 15px;
    padding-top: 15px;
  }
  .schedule-info-outer .schedule-info .details .sm-head {
    margin-bottom: 5px !important;
  }
}
@media (max-width: 767px) {
  .responsive-tabs .card-header h3 {
    font-size: 16px;
  }
  .schedule-info-outer .schedule-info .details p {
    font-size: 14px;
  }
  .schedule-info-outer .schedule-info .date-box h4 {
    font-size: 30px;
  }
  .schedule-info-outer {
    flex-direction: column;
  }
  .responsive-tabs .card-body {
    padding: 20px 20px;
  }
  .responsive-tabs .card-header {
    padding: 5px 18px;
    overflow: hidden;
    border-bottom: 0;
  }
}
@media (max-width: 479px) {
  .schedule-info-outer .schedule-info {
    flex-direction: column;
    padding: 0;
  }
  .schedule-info-outer .schedule-info .details {
    border: 0;
  }
  .schedule-info-outer .schedule-info .date-box {
    border-radius: 0;
    align-items: center !important;
    flex-direction: row !important;
    justify-content: flex-start !important;
    padding: 10px 15px;
    gap: 10px;
  }
  .responsive-tabs .card-header {
    padding: 5px 15px;
  }
}
.content-card {
  border: 1px solid rgba(17, 71, 130, 0.2);
  padding: 20px;
}
.content-card p {
  margin-bottom: 0px;
}
@media (max-width: 991.98px) {
  .content-card {
    padding: 20px;
  }
}

.slider_nav {
  display: flex;
  margin-bottom: 30px;
  max-width: 410px;
  width: 100%;
  text-align: center;
  gap: 40px;
}
@media (max-width: 991.98px) {
  .slider_nav {
    max-width: 350px;
  }
}
@media (max-width: 575.98px) {
  .slider_nav {
    max-width: 100%;
    justify-content: space-between;
  }
}
.slider_nav .thumbnail {
  font-size: 24px;
  font-weight: 600;
  color: #292D32;
}
@media (max-width: 991.98px) {
  .slider_nav .thumbnail {
    font-size: 18px;
  }
}
.slider_nav .slick-arrow {
  font-size: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  transition: all 0.2s;
  background-color: transparent;
  flex-shrink: 0;
  position: relative;
  border: 1px solid rgba(41, 45, 50, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}
.slider_nav .slick-arrow:hover {
  border-color: #114782;
}
.slider_nav .slick-arrow:after {
  content: "";
  position: absolute;
  transform: translate(0, -50%);
  top: 50%;
  background: rgba(41, 45, 50, 0.8);
  background: url(../images/arrow-dark.svg) no-repeat center center;
  width: 100%;
  height: 100%;
}
.slider_nav .slick-arrow.slick-prev:after {
  content: "";
  transform: rotate(180deg);
  top: 0;
}

.content-card {
  min-height: 295px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.content-card .text-light-grey {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 2;
  line-height: 1.5;
  height: 3em;
  margin-bottom: 3px;
}
.content-card .row {
  margin-top: 20px;
}
.content-card .modal-content, .content-card .modal-dialog {
  max-width: 600px;
}
.content-card .modal-dialog {
  top: 30%;
}
