/*---------------------------------------------------------------
  Template Name: Weconnect One Page Podcast HTML Website Template
  Description: Weconnect One Page Podcast HTML Website Template
  Author: Lucid Solutions
  Author URL: https://www.templatemonster.com/store/lucid_solutions/
  Version: 1.0.0
  -----------------------------------------------------------------
  CSS INDEX
  ==================
  1. Basic Styles
  2. Banner Styles
  3. Podcast Styles
  4. Meet & Greet Styles
  5. About Styles
  6. Contact Styles
  7. Back to top Styles
----------------------------------------------------------------*/

@import url('weconnectmain.css');

  /* ========================
    Basic Styles
  ===========================*/
  *{
    box-sizing: border-box;
    font-family: "Roboto", sans-serif;;
  }
  a{
    color: inherit;
    text-decoration: none;
  }
  #btnSwitch{
    width: 25px;
    height: 25px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  a:hover{
    color: var(--prime-txt);
    text-decoration: none;
  }
  body{
    background-color: var(--body-bg);
    overflow-x: hidden;
  }
  .w-unset{
    min-width: unset;
    width: unset;
  }
  input, textarea{
    color: var(--input-txt) !important;
  }
  ::placeholder{
    text-transform: capitalize;
  }
  .error:not(.form-control):not(.form-check-input):not(.form-select){
    background-color: var(--tertiary-bg) !important;
    color: rgb(187 0 0);
    font-size: var(--fs-10);
    padding: 3px 5px;
    margin: 5px 0 0 0;
    width: 100%;
    text-transform: capitalize;
    font-family: var(--Primary-font);
  }
  .text-shadow{
    text-shadow: 2px 4px rgba(var(--prime-rgb), 0.5);
  }
  .btn{
    position: relative;
  }
  .btn-icon{
    position: absolute;
    right: 15px;
    top: 16px;
  }
  .heading{
    max-width: 750px;
    margin-left: auto !important;
    margin-right: auto !important;
  }
  .subheading{
    max-width: 500px;
  }
  .media-outer{
    opacity: 0;
    height: 0;
  }
  .media-outer.active{
   opacity: 1;
   height: auto;
   padding: 15px 15px;
  }
/* =============================
    Banner Styles
===============================*/
.nav-link{
  color: var(--nav-txt) !important;
  font-weight: 600;
  position: relative;
  /* padding: 0 !important; */
  font-family: var(--SecondaryFont);
}
.nav-item.active .nav-link, .nav-item:hover .nav-link{
  color: var(--prime-txt) !important;
}
.banner-content h1{
  line-height: 60px;
}
.grid-wrapper > div {
  display: flex;
  justify-content: center;
  align-items: center;
}
.grid-wrapper div{
  width: 100%;
  height: 100%;
  position: relative;
}
.grid-wrapper > div img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 15px;
}
.grid-wrapper > div {
  border-radius: 15px;
}
.grid-wrapper .overlay{
  font-size: var(--fs-1);
  background-color: rgba(var(--prime-rgb), 0.4);
  position:absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  left: 0;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.grid-wrapper a:hover .overlay{
  opacity: 1 !important;
}
.grid-wrapper {
  display: grid;
  grid-gap: 0.5em;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  grid-auto-rows: 200px;
  grid-auto-flow: dense;
}

.grid-wrapper .wide {
  grid-column: span 2;
}
.grid-wrapper .tall {
  grid-row: span 2;
}
.grid-wrapper .big {
  grid-column: span 2;
  grid-row: span 2;
}
@media(min-width:992px){
  .banner-content{
    width: 80%;
    margin: auto;
  }
}
  
  .banner-main{
    min-height: 750px;
    padding-top: 100px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .banner-secondimg{
    min-width: 120px;
    height: 120px;
    border-radius: 15px;
    overflow: hidden;
  }
  .banner-secondimg img{
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .listenon img{
    width: 150px;
  }

  /* ===============
    Podcast Styles
  ===================*/
  .podcastmain .card-body img{
    width: 100%;
    height: 350px;
    object-position: top;
    object-fit: cover;
  }
  #trendingsplide  .card-body img{
    width: 100%;
    height: 200px;
    object-position: top;
    object-fit: cover;
  }

  .splide {
    padding: 20px 0;
  }
  
  .podcastmain .splide__slide > div {
    display: block;
    width: 100%;
    border-radius: 8px;
    transition: transform 400ms;
    transform: scale(0.9);
    transform-origin: center center;
  }
  .podcast-bar{
    background-color: var(--alt-bg);
    padding: 25px 20px;
    border-radius: 15px;
    position: relative;
  }
  .podcast-bar::after {
    content: '';
    display: block;  
    position: absolute;
    right: 60px;
    transform: rotate(180deg);
    top: 100%;
    width: 0;
    height: 0;
    border: 20px solid transparent;
    border-bottom-color: var(--alt-bg);
}
  .podcastmain .splide__slide.is-active > div {
    transform: scale(1);
  }
  
  .splide .splide__arrow {
    top: 0;
    bottom: 0;
    height: 100%;
    transform: none;
    border-radius: unset;
    width: 50px;
    opacity: 0.9;
  }
  .splide .splide__arrow svg {
    filter: invert(1);
    width: 24px;
    height: 24px;
    display: none;
  }
  
  .splide__arrow.splide__arrow--prev {
    left: 0;
    background: unset;
  }
  .splide__arrow.splide__arrow--prev::after{
    content: '\f0a8';
    font-family: 'FontAwesome';
    font-size: 45px;
  }
  
  .splide__arrow.splide__arrow--next {
    right: 0;
    background: unset;
  }
  .splide__arrow.splide__arrow--next::after{
    content: '\f0a9';
    font-family: 'FontAwesome';
    font-size: 45px;
  }
  
  .left {
    text-align: left;
  }


  /* ====================
    Meet & Greet Styles
  ==================*/
  .slider-bottom .splide__slide img{
    width: 100%;
    height: 650px !important;
    object-fit: cover;
    border-radius: 15px;
    object-position: top;
  }
  .slider-top .splide__slide {
    max-height: 150px !important;
  }
  .slider-top .splide__slide img{
    width: 100%;
    max-height: 130px !important;
    object-fit: cover;
    border-radius: 15px;
    object-position: top;
  }
  .slider-top .splide__slide img:hover{
    cursor: pointer;
  }
  .meet_greetmain .splide__arrow{
    color: #ffff !important;
  }
  .meetgreet-outer{
    position: relative;
  }
  .meet_greetcontent{
    position: absolute;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.557);
    width: 100%;
    padding: 45px 15px 70px 40px;
  }
  .meet_greetmain .splide__arrow--prev{
    left: 15px;
  }
  .meet_greetmain .splide__arrow--next{
    right: 15px;
  }

    /*==============================
    About Styles
  =================================*/
  .abt-content{
    max-width: 1050px;
    margin: auto;
  }
  .abt-content .card img{
    height: 250px;
    object-fit: cover;
  }

  /* =================
    Contact Styles
  ====================*/
    .form-sidebg{
      background:linear-gradient(0deg, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.6)), url(../../assets/images/podcast7.webp);
      background-repeat: no-repeat;
      background-size: cover;
      min-height: 700px;
      object-fit: cover;
      background-position: right center;
    }
    .testimonial-user{
      width: 75px !important;
      height: 75px;
      border-radius: 50%;
      object-fit: cover;
    }
    .form-testimonials .owl-nav{
      display: none;
    }
    @media(min-width:500px){
      .form-testimonials .owl-nav
      {
        display: block;
        font-size: 30px;
        color: var(--subheadalt-txt);
      }
    }
    .form-testimonials .owl-theme .owl-nav [class*='owl-']:hover, .form-testimonials .owl-theme .owl-nav [class*='owl-']:active, .form-testimonials .owl-theme .owl-nav [class*='owl-']:focus {
      background: unset;
      color: var(--subheadalt-txt);
      text-decoration: none;
      border: unset;
    }
   


    /* ==================
    Back to top Styles
    ================== */

    #backtotop {
      position: fixed;
      bottom: 30px;
      right: 30px;
      padding: 7px;
      transition: background-color .3s, opacity .5s, visibility .5s;
      opacity: 0;
      visibility: hidden;
      z-index: 1000;
    }
    #backtotop:hover {
      cursor: pointer;
    }
    #backtotop.show {
      opacity: 1;
      visibility: visible;
    }