/*!
* 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;
    }
  }
  .search-form-box {
    background-color: #fff;
    border-radius: 16px;
    padding: 48px;
    border: 1px solid rgba(0, 0, 0, 0.0784313725);
    position: relative;
    gap: 20px;
    box-shadow: 6px 11px 14.4px 0px rgba(0, 0, 0, 0.04);
    margin-bottom: 80px;
  }
  .search-form-box form.search-area {
    border: 1px solid #EDEDED;
    background-color: #FAFAFA;
    border-radius: 30px;
    padding: 6px 8px 6px 8px;
    position: relative;
  }
  .search-form-box form.search-area .search-btn-group {
    order: 1;
    position: relative;
    z-index: 1;
  }
  .search-form-box form.search-area .search-btn-group .icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: 0;
    cursor: pointer;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  }
  .search-form-box form.search-area .search-btn-group .icon:focus {
    box-shadow: inset 0 0 0 0.2rem rgba(19, 126, 241, 0.2);
    border-color: #7eb4ef;
  }
  .search-form-box form.search-area .search-btn-group .search-icon {
    background-color: #114782;
  }
  .search-form-box form.search-area .search-btn-group .search-icon img {
    width: 15.5px;
  }
  .search-form-box form.search-area .search-btn-group .fillter-icon {
    background-color: #fff;
  }
  .search-form-box form.search-area .search-btn-group .fillter-icon img {
    width: 20px;
  }
  .search-form-box form.search-area .input-cover {
    height: 40px;
  }
  .search-form-box form.search-area .input-cover .form-control {
    background-color: transparent;
    border: 0;
    outline: none;
    width: 100%;
    font-size: 16px;
    position: absolute;
    inset: 0;
    padding: 0;
    border-radius: 30px;
    padding-inline-start: 30px;
    padding-inline-end: 150px;
  }
  .search-form-box .search-result {
    gap: 24px;
  }
  .search-form-box .search-result .result-heading {
    color: #1E1E1E;
    font-size: 20px;
  }
  .search-form-box .search-result .result-tags {
    gap: 6px;
  }
  .search-form-box .search-result .result-tags a,
  .search-form-box .search-result .result-tags button.tag {
    cursor: pointer;
    padding: 5px 20px;
    color: #114782;
    background: rgba(17, 71, 130, 0.06);
    text-decoration: none;
    margin: 0;
    border-radius: 30px;
    height: 50px;
    font-size: 14px;
  }
  .search-form-box .search-result .result-tags a:hover,
  .search-form-box .search-result .result-tags button.tag:hover {
    background-color: #ececec;
  }
  .search-form-box .search-result .result-tags .close img {
    width: 12px;
  }
  @media (max-width: 991.98px) {
    .search-form-box .search-result .result-tags .close img {
      width: 10px;
    }
  }
  
  .postion-top {
    margin-top: -85px;
  }
  
  .result-label-otr .result-label {
    border: 1px solid #8D1B3D;
    min-width: 117px;
    height: 54px;
    border-radius: 27px;
    padding: 0 15px;
  }
  .result-label-otr .result-label .close {
    cursor: pointer;
    background-color: transparent;
    border: 0;
    transition: all 300ms;
  }
  .result-label-otr .result-label .close:hover {
    transform: scale(1.3);
  }
  @media (max-width: 1199.98px) {
    .result-label-otr .result-label {
      min-width: 100px;
      height: 45px;
    }
  }
  
  @media (max-width: 1679px) {
    .search-form-box {
      padding: 38px;
    }
    .search-form-box form.search-area .search-btn-group .icon {
      width: 42px;
      height: 42px;
    }
    .search-form-box form.search-area .search-btn-group .fillter-icon img {
      width: 16px;
    }
    .search-form-box .search-result .result-tags a,
    .search-form-box .search-result .result-tags button.tag {
      padding: 5px 10px;
      height: 45px;
    }
    .search-form-box .search-result .result-heading {
      font-size: 18px;
    }
    .postion-top {
      margin-top: -65px;
      margin-bottom: 40px;
    }
  }
  @media (max-width: 1199px) {
    .postion-top {
      margin-top: -70px;
    }
  }
  @media (max-width: 1024px) {
    .postion-top {
      margin-top: 40px;
    }
    .search-form-box form.search-area .input-cover .form-control {
      padding-inline-end: 110px;
    }
  }
  @media (max-width: 991px) {
    .postion-top {
      margin-bottom: 30px;
    }
    .search-form-box {
      padding: 20px;
    }
    .search-form-box .search-result {
      gap: 15px;
    }
    .search-form-box .search-result .result-heading {
      font-size: 16px;
    }
    .search-form-box form.search-area .input-cover .form-control {
      font-size: 15px;
      padding-inline-start: 20px;
    }
    .search-form-box .search-result .result-tags a,
    .search-form-box .search-result .result-tags button.tag {
      height: 30px;
      font-size: 13px;
    }
  }
  @media (max-width: 767px) {
    .postion-top {
      margin-top: 25px;
    }
    .search-form-box {
      padding: 10px;
    }
    .search-form-box form.search-area .search-btn-group .icon {
      width: 35px;
      height: 35px;
      padding: 5px;
    }
    .search-form-box form.search-area .input-cover .form-control {
      padding-inline-end: 88px;
    }
    .search-form-box form.search-area {
      padding: 2px 2px 2px 5px;
    }
  }
  .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;
  }
  .video-container {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 48px;
  }
  .video-container .video-col {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    height: 382px;
  }
  @media (max-width: 991.98px) {
    .video-container .video-col {
      height: 330px;
    }
  }
  @media (max-width: 767.98px) {
    .video-container .video-col {
      height: 250px;
    }
  }
  @media (max-width: 575.98px) {
    .video-container .video-col {
      height: auto;
    }
  }
  .video-container .video-col:hover .play-btn {
    background-color: #F48F00;
    scale: 1.2;
    box-shadow: 0px 5px 17px -4px rgba(0, 0, 0, 0.4);
  }
  .video-container .video-col:hover .play-btn img {
    transition: all 0.7s;
    scale: 1.5;
  }
  .video-container .video-col .img-fill {
    -o-object-fit: cover;
       object-fit: cover;
    width: 100%;
    max-width: 100%;
    height: 374px;
    object-fit: cover;
    transition: all 0.5s;
  }
  @media (max-width: 575.98px) {
    .video-container .video-col .img-fill {
      height: 200px;
    }
  }
  .video-container .video-col .play-btn {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    position: absolute;
    inset: auto;
    z-index: 1;
    background-color: #000;
    display: grid;
    place-items: center;
    transition: all 0.3s;
  }
  .video-container .video-col .play-btn img {
    width: 16px;
    transition: all 0.2s;
  }
  
  @media (max-width: 1679px) {
    .video-container {
      gap: 38px;
    }
    .video-container .video-col .play-btn {
      width: 54px;
      height: 54px;
    }
    .video-container .video-col:hover .play-btn img {
      scale: 1.2;
    }
    .video-container .video-col:hover .play-btn {
      scale: 1.1;
    }
  }
  @media (max-width: 1199px) {
    .video-container {
      gap: 20px;
    }
  }
  @media (max-width: 991px) {
    .video-container {
      grid-template-columns: 1fr 1fr;
    }
  }
  @media (max-width: 580px) {
    .video-container {
      grid-template-columns: 1fr;
    }
  }
  