/* Initializing Fonts */
@import url('https://fonts.googleapis.com/css2?family=Outfit&family=Roboto:wght@400;500&display=swap');

* {
  margin: 0%;
  padding: 0%;
}

body {
  height: 100vh !important;
  width: 100% !important  ;
  background-color: var(--body-bg);
  font-family: 'Roboto', sans-serif;
  line-height: 1.75;
}

::selection {
  color: #db0a5b;
}

.no_decorate {
  text-decoration: none;
}

/*============================== Theme Color Initialize Start===================================
============================================================================================*/
/* Light-mode */
:root {
  --body-bg: #fff;
  --background-theme: #fff;
  --text-clr: #000;
  --nav-shadow: #BFBFBF;
  --icon-color: #000;
  --card-shadow: #9e9d9d;
  --card-bg: #EEEDED;
  --logo: url(../images/logo-light.png);
  --shadow-text: #888688;
  --paragraph-text: #605a5a;

}

/* Dark mode */
[data-theme="dark"] {
  --body-bg: #1A1D24;
  --background-theme: #1A1D24;
  --text-clr: #fff;
  --nav-shadow: #15171c;
  --icon-color: #fff;
  --card-bg: #2a2b2e;
  --card-shadow: none;
  --logo: url(../images/logo-dark.png);
  --shadow-text: #3B3B3B;
  --paragraph-text: #e5e5e5;
}

/*============================== Theme Color Initialize End===================================
============================================================================================*/
/* -----------Navbar Styles------------- */

.bg-navbar {
  background-color: var(--background-theme);
}

.navbar-brand {
  background: var(--logo) center center no-repeat;
  height: 90px;
  width: 180px;
  background-size: cover;
}

#nav-text .nav-link {
  color: var(--text-clr);
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  text-transform: uppercase;
}

.moonColor {
  color: var(--text-clr);
}

.nav-size {
  display: flex;
  flex-wrap: inherit;
  align-items: center;
  justify-content: space-between;
}

.svgburg {
  color: var(--icon-color) !important;
}

#toggleknop .fa-sun {
  color: #FFE87C;
}

#toggleknop .fa-moon {
  color: #192A56;
}

/* searchbar */
#SerachIcon {
  display: none;
}

.searchIcon-color {
  color: #ffff;
  padding: 8px;
  font-weight: bolder;
}

.search-bg {
  display: flex;
  align-items: center;
  justify-content: center;
  vertical-align: middle;
  background-color: rgb(219, 10, 91);
  border-radius: 50px;
}

.searchBar {
  height: 95%;
  border-radius: 30px;
  border: 1px solid rgb(219, 10, 91);
  border-top-right-radius: 0%;
  border-bottom-right-radius: 0%;
  padding-right: 40px;
  background-color: transparent;
}

.searchBar:focus {
  box-shadow: none;
  border: 1px solid rgb(219, 10, 91);
  background-color: transparent;
  color: var(--text-clr);
}

.searchBar::placeholder {
  color: var(--text-clr);
}

.absolute-search {
  position: absolute;
  left: 90%;
}

/* mobile search */
.search-box {
  position: absolute;
  transform: translate(10%, 20%);
  background: transparent;
  border-radius: 40px;
  height: 30px;
  padding: 7px;
  border: 1px solid rgb(219, 10, 91);
}

.search-btn {
  border: none;
  background: rgb(219, 10, 91);
  border-radius: 50%;
  float: right;
  display: flex;
  width: 30px;
  height: 30px;
  justify-content: center;
  align-items: center;
  outline: none;
  transition: 0.6s;
  font-weight: bold;
  color: #FFFFFF;
}



.search {
  width: 40px;
  height: 40px;
  transform: 0.5s;
  overflow: hidden;
  position: relative;
  padding-left: 10px;
  border-radius: 60px;
  transition: all 0.5s;
}

.search.active {
  width: 220px;
  box-shadow: none;
  border: 1px solid rgb(219, 10, 91);
}

.search .icon {
  top: 1px;
  left: 0%;
  width: 40px;
  height: 40px;
  display: flex;
  z-index: 1000;
  cursor: pointer;
  position: absolute;
  background: transparent;
  border-radius: 60px;
  align-items: center;
  justify-content: center;
}

.search .icon:before {
  content: "";
  width: 24px;
  height: 24px;
  position: absolute;
  border-radius: 50%;
  border: 2px solid var(--icon-color);
  transform: translate(-2px, -2px);
}

.search .icon:after {
  content: "";
  width: 2px;
  height: 10px;
  position: absolute;
  background: var(--icon-color);
  transform: translate(8px, 8px) rotate(315deg);
}

.search .input {
  width: 80px;
  height: 60px;
  display: flex;
  position: relative;
  justify-content: center;
}

.search .input input {
  top: 0;
  border: none;
  outline: none;
  font-size: 18px;
  width: 290px;
  padding: 6px 0px;
  padding-left: 135px;
  position: absolute;
  background-color: transparent;
  color: var(--text-clr);
}

.search .input input::placeholder {
  color: var(--text-clr);
}

/* Hamburger Icon */
.path1,
.path2 {
  stroke-dasharray: 104;
  stroke-dashoffset: -71;
  transition: 1s all ease;
}

.cross {
  stroke-dashoffset: 68;
}

.mline {
  stroke-dasharray: 41;
  stroke-dashoffset: -82;
  transition: 1s all ease;
}

.hide {
  stroke-dasharray: 43;
  stroke-dashoffset: 130;
}

/* =====================================HOMEPAGE START ====================================== */
/* --------Main Section One----------------- */
.topText {
  font-weight: 900;
  font-size: 36px;
  line-height: 42px;
  color: var(--text-clr) !important;
}

.hero_sec_img {
  height: 263px;
  object-fit: cover;
}

.hero_center_img {
  height: 670.67px;
  object-fit: cover;
}

.sec-one-card {
  background-color: var(--card-bg);
}

.aside_card_padding {
  padding: 10px 9px 6px 15px;
}

.center_card_padding {
  padding: 8.02px 11.7px 12.68px 12.67px;
}

.card-bg {
  background-color: var(--card-bg);
}

.cardDescription {
  color: var(--paragraph-text) !important;
  font-weight: 400;
  font-size: 14px;
  line-height: 16px;
  cursor: pointer;
}

.center_card_desc {
  color: var(--paragraph-text) !important;
  font-weight: 400;
  font-size: 18px !important;
  line-height: 21px;
}

.eyeIcon {
  color: #686868;
  font-weight: bold;
}

.cardTitle {
  font-size: 20px;
  line-height: 23px;
  font-weight: 500;
  font-size: 20px;
  letter-spacing: 0.02em;
  color: var(--text-clr) !important;
  cursor: pointer;
  margin-bottom: 0;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;

}

.cardTitle:hover {

  color: #db0a5b !important;
}

.centerCardTitle {
  font-weight: 500;
  font-size: 24px;
  line-height: 30px;
  letter-spacing: 0.02em;
  margin: 10px 0;
  color: var(--text-clr);
  cursor: pointer;
}

.centerCardTitle:hover {
  color: #db0a5b !important;
}

.cardText {
  color: var(--paragraph-text) !important;
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  letter-spacing: 0.02em;
  margin-top: 10px;
  cursor: pointer;
  overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.lifstyle_content {
  padding: 8px 15px 11px 14px;
}

.fashion_content {
  padding: 8px 15px 11px 14px;
}

.entertain_content,
.sport_content {
  padding: 8px 15px 11px 14px;
}

/* Swiper Section One */
.Mobile-cardDescription {
  font-weight: 400;
  font-size: 11px;
  line-height: 12px;
  color: var(--text-clr) !important;
}

.Mobile-cardTitle {
  font-weight: 500;
  font-size: 12px;
  line-height: 18px;
  letter-spacing: 0.01em;
  color: var(--text-clr) !important;
  text-transform: capitalize !important;
}

.mobile_subcard_title {
  font-weight: 500;
  font-size: 12px;
  line-height: 14px;
  letter-spacing: 0.01em;
  color: var(--text-clr) !important;
}

.news_mob_padding {
  padding: 4px 4px 5px 4px;
}

.Mobile-cardText {
  color: var(--text-clr) !important;
  font-weight: 400;
  font-size: 12px;
  line-height: 14px;
  letter-spacing: 0.01em;
  padding-top: 2px;
}

/* Section Two */
.cardDescription-1 {
  color: var(--paragraph-text) !important;
  font-weight: 400;
  font-size: 12px;
  line-height: 14px;
}

.custom-card {
  height: 286px;
}

.smocky_padding {
  padding: 6px;
}

.custom-card:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(180deg, transparent 0 33%, var(--background-theme) 70% 100%);

}

.bgImage {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.linear-text {
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.02em;
  color: var(--text-clr) !important;
  cursor: pointer;

}

.linear-text:hover {

  color: #db0a5b !important;
}

.spotlight-padding {
  padding: 1px 5px 9px 5px;
}

/* section Two  End */
/* Section Three Start */
.coverflow-swip-title {
  color: var(--text-clr);
  font-weight: 500;
  font-size: 20px;
  line-height: 20px;
  cursor: pointer;
}

.coverflow-swip-title:hover {
  color: #db0a5b;
}

.focus_padding {
  padding: 16px 15px 19px 17px;
}

.swiper-card-bg {
  background-color: var(--card-bg);
  -webkit-box-shadow: 0px 3px 0px -1px var(--card-shadow);
  -moz-box-shadow: 0px 3px 0px -1px var(--card-shadow);
  box-shadow: 0px 3px 0px -1px var(--card-shadow);
  height: 100%;
}
.bytes_slider_bg{
  background-color: var(--card-bg);
  -webkit-box-shadow: 0px 3px 0px -1px var(--card-shadow);
  -moz-box-shadow: 0px 3px 0px -1px var(--card-shadow);
  box-shadow: 0px 3px 0px -1px var(--card-shadow); 
}
.swiper-text {
  color: var(--paragraph-text) !important;
  font-weight: 400;
  font-size: 14px;
  line-height: 19px;
  padding-top: 8px;
}

.swiper-controll {
  display: flex;
  align-items: center;
}

.leftArrow,
.rightArrow {
  background-color: #DB0A5B;
  padding: 10px;
  border-radius: 50%;
}

.clr {
  color: #fff;
  font-weight: bolder;
}

.celebrity-pic {
  width: 100%;
  height: 250px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  height: 180px;
  margin-bottom: 9px;
  object-fit: cover;
}

.outlinedText {
  font-size: 20pt;
  color: #000;
  text-shadow:
    -1px -1px 0 #fff,
    1px -1px 0 #fff,
    -1px 1px 0 #fff,
    1px 1px 0 #fff;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.position-1 {
  position: absolute;
  left: 49%;
  top: 70%;
}

.position-2 {
  position: absolute;
  left: 3%;
  top: 70%;
}

.celebrity-pic-3 {
  width: 100%;
  height: 250px;
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("../images/coverflowOne.png");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  height: 200px;
}


.btn-pink {
  background-color: #DB0A5B;
  color: white;
  font-weight: 400;

}

.btn-pink:hover {
  background-color: #DB0A5B !important;
  color: white !important;
  font-weight: 400;

}

/* Section Three End */
/* Section four Start*/
.mySlider {
  width: 100% !important;
  height: 550px;
}
.news-slider img {
  display: block;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover;
}

.slider-bg {
  background-color: var(--card-bg) !important;
  height: 100% !important;
  border-radius: 80px;
}

.story-card {
  background-color: var(--card-bg) !important;
}

.slider-describtion {
  font-weight: 400;
  font-size: 14px;
  line-height: 16px;
  color: var(--text-clr) !important;
}

.image-resize {
  height: 190px;
  object-fit: cover;
}

/* Large */
.overlay-title {
  color: var(--shadow-text);
  font-weight: 600;
  font-size: 50px;
  line-height: 66px;
  text-transform: uppercase;
  cursor: pointer;
}

.top-title {
  color: var(--text-clr);
  font-weight: 600;
  font-size: 45px;
  line-height: 60px;
  position: absolute;
  bottom: -16px;
  left: 9px;
  text-transform: uppercase;
  cursor: pointer;
}
@media screen and (min-width:768px) and (max-width:991px) {
  .overlay-title {
    font-size: 28px;
  }

  .top-title {
    font-size: 24px;
    bottom: -6px;
  }
  .profile_image{
    height: 290px !important;
  }
}

@media screen and (min-width:992px) and (max-width:1200px) {
  .overlay-title {
    font-size: 46px;
  }

  .top-title {
    font-size: 40px;
    bottom: -4px;
  }
}

/* Mobile */
.overlay-title-mobile {
  color: var(--shadow-text);
  font-weight: 500;
  font-size: 22px;
  line-height: 21px;
  text-transform: uppercase;
  cursor: pointer;
}

.top-title-mobile {
  position: absolute;
  bottom: -17px;
  left: 3px;
  font-weight: 500;
  font-size: 20px;
  line-height: 19px;
  color: var(--text-clr);
  text-transform: uppercase;
  cursor: pointer;
}

/* Section four End */
/* footer  */
.footer {
  background-color: #000;
  padding-top: 69px;
  padding-bottom: 82px;
  padding-left: 20px;
  padding-right: 20px;
}

.footer-logo {
  background: url(../images/logo-dark.png) no-repeat;
  background-position: center;
  background-size: cover;
  height: 105px;
  max-width: 195px;
  margin-top: -36px;
  margin-left: -20px !important;
}

.paragrapgText {
  color: #fffafa;
  line-height: 32px;
  font-size: 16px;
  font-weight: 300;
  letter-spacing: 0.03em;
  cursor: pointer;
}

.footer-nav {
  list-style: none;
  font-weight: 300;
  font-size: 16px;
  color: #6a6a6a;
}

.socialMedia {
  font-weight: 400;
  font-size: 20px;
  line-height: 23px;
  color: #FFFFFF;
}

.icon-size {
  font-size: 25px;
  color: #fff;
  padding: 0 15px;
  cursor: pointer;
}

.bg-color {
  background-color: #DB0A5B;
  padding: 7px 0px;
  border-radius: 10px;
}

.news_padding {
  padding: 8px 17px 8px 12px;
}

.postTitle {
  padding-top: 6px;
  color: var(--text-clr);
  font-weight: 500 !important;
  font-size: 20px;
  line-height: 140%;
  letter-spacing: 0.02em;
  cursor: pointer;
}

.postTitle:hover {
  color: #db0a5b;
}

.footer-head {
  font-weight: 400 !important;
  font-size: 22px;
  line-height: 30px;
  color: #fff;
  padding-bottom: 15px !important;
  cursor: pointer;
}
#showMore:focus{
  border: 0;
  outline: 0;
}
.post_img{
  height: 580px !important;
}
/* Footer End */
/* =====================================HOMEPAGE END ===========================================*/
/* =====================================HOLLYWOOD PAGE START =====================================*/
.hollywood_banner {
  height: 580px;
}

.generic-card-bg {
  background-color: var(--card-bg);
}

.genericCardText {
  color: var(--text-clr) !important;
  font-size: 20px;
  line-height: 28px;
  font-weight: 400;
  letter-spacing: 0.03em;
  cursor: pointer;
  text-align: justify;

}
.genericCardText p, .genericCardText h2{
 margin: 25px 0px !important;
} 

.genericCardText table, .genericCardText img, .genericCardText iframe {
    width: 100%;
}
.genericCardText tbody, .genericCardText td, .genericCardText tfoot, .genericCardText th, .genericCardText thead, .genericCardText tr {
   padding: 10px 15px;
   border: 2px solid #383838;
}
.genericCardText td b {
    color: #db0a5b;
}
.generic-title {
  color: var(--text-clr);
  text-transform: capitalize;
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: 0.03em;
  cursor: pointer;
}

.generic-text {
  color: #5F5F5F;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: 0.03em;
  cursor: pointer;
}

:first-letter {
  text-transform: uppercase;
}

.bg-pink {
  background-color: #DB0A5B;
  color: #fff;
  border: none;
  padding: 10px 150px;
  border-radius: 3px;
  font-size: 20px;
  letter-spacing: 2px;
}

.bordercard-title {
  line-height: 1.3;
  font-weight: 600;
  letter-spacing: .03em;
  cursor: pointer;
  font-size: 22px;
  line-height: 28px;
  color: var(--text-clr);
}
.bordercard-title a{
  color: var(--text-clr);
  text-decoration: none;
}

.bordercard-title:hover {
  color: #db0a5b;
}
.bordercard-title a:hover {
  color: #db0a5b;
}

.bordercard-text {
  color: #5F5F5F;
  font-size: 20px;
  font-weight: bold;
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: 0.03em;
  cursor: pointer;
}

.borderImage-size {
  width: 176px;
  height: 108px;
  border-radius: 8px;
  object-fit: cover;
}

.border-pink {
  padding: 18px 14px;
  border: 2px solid #DB0A5B;
  border-radius: 10px
}

.card-headers {
  line-height: 28px;
  font-size: 25px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--text-clr);
  cursor: context-menu;
}

.downArrow {
  background-color: #DB0A5B;
}

.movie-card-bg {
  background-color: var(--card-bg);
  border-radius: 15px;
}

.movie-card-bg img {
  border-top-left-radius: 15px !important;
  border-bottom-left-radius: 15px;
  border-bottom-right-radius: 0px !important;
  border-top-right-radius: 0px !important;
}

.movieTitle {
  line-height: 19px;
  font-weight: 550;
  font-size: 18px;
  color: var(--text-clr);
  letter-spacing: .03em;
  text-transform: uppercase;

}

.aside_card {
  padding: 10px 23px 22px 24px;
}

.movie:hover .movieTitle {
  cursor: pointer;
  color: #db0a5b;
}

.movieCardText {
  color: var(--text-clr) !important;
  font-weight: 400;
  font-size: 14px;
  line-height: 19px;
}

.clr-yellow {
  color: #FFD600;
}

.clr-gray {
  color: rgb(151, 151, 151);
}

.likeCardText {
  font-size: 18px;
  line-height: 24px;
  color: var(--text-clr);
  letter-spacing: 0.03em;
  cursor: pointer;
  font-weight: 500;

  letter-spacing: 0.02em;
}

.also-like-img {
  height: 280px;
}

.likeCardText:hover {
  color: #db0a5b;
}

.border-bottom-2 {
  border-bottom: 2px solid var(--card-bg) !important;
  padding-bottom: 10px;

}

.movieImage {
  width: 120px;
  height: 254px;
  object-fit: cover;
}

.movieDetail {
  padding-left: 8px;
  padding-right: 6px;
}

.mb-20 {
  margin-bottom: 20px;
}
.margin-vertical{
  padding: 18px 0;
}
/* =====================================HOLLYWOOD PAGE END =======================================*/
/* ====================================TECHBYTES PAGE START ==================================*/
.bytes_movie{
  height: 100%;
  width: 165px;
}

.aloneTitle {
  font-size: 25px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--text-clr);
}

.vertical-movie {
  background-color: var(--card-bg);
  /* -webkit-box-shadow: 0px 3px 0px -1px var(--card-shadow);
  -moz-box-shadow: 0px 3px 0px -1px var(--card-shadow);
  box-shadow: 0px 3px 0px -1px var(--card-shadow); */
}

.movie-img-size {
height: 400px;
object-fit: cover;
}

.tech-movietext {
  font-size: 18px;
  line-height: 24px;
  color: var(--text-clr);
  font-weight: 500;
  letter-spacing: 0.03em;
  cursor: pointer;
}

.tech-movietext:hover {
  color: #db0a5b;
}

.standAlone-slider {
  background-position: center;
  background-size: cover;
  width: 282px;
  height: 380px;
}

.standAlone .swiper-slide-active {
  width: 324px;
  height: 390px !important;
}
.standAlone .swiper-slide-active  .swiper-text{
  font-weight: 400;
font-size: 18px;
line-height: 145%;
}
.standAlone-slider img {
  display: block;
  width: auto;
  height: 196px;
}
.bytes_like_img{
  height: 343px;
}
.bytes_like_img-post{
  height: 230px;
}
/* ====================================TECHBYTES PAGE END ==================================*/
/* =====================================CELEBRITY NEWS PAGE START ===================================*/

.image-three {
  position: absolute;
  top: 0%;
  left: 30%;
}

.image-four {
  position: absolute;
  top: 50%;
  left: 30%;
}

.image-five {
  position: absolute;
  top: 0%;
  left: 60%;
}

.image-six {
  position: absolute;
  top: 50%;
  left: 70%;
}


.Galleryrow {
  display: -ms-flexbox;
  /* IE10 */
  display: flex;
  -ms-flex-wrap: wrap;
  /* IE10 */
  flex-wrap: wrap;
  padding: 0 0px;
}

/* Create four equal columns that sits next to each other */
.column {
  -ms-flex: 33.3%;
  /* IE10 */
  flex: 33.3%;
  max-width: 33.3%;
  padding: 0 4px;
}

.column img {
  margin-top: 8px;
  vertical-align: middle;
  width: 100%;
  border-radius: 8px;
}

#conference-timeline {
  position: relative;
  width: 100%;
  margin: 0 auto;
}

.content-left .timeline-card,
.content-right .timeline-card {
  background-color: transparent !important;

}

.timeline-title {
  font-size: 22px;
  font-weight: 500;
  color: var(--text-clr);
  line-height: 31px;
  letter-spacing: .03em;
  cursor: pointer;
}

.timeline-title:hover {
  color: #db0a5b;
}

.timeline-text {
  color: var(--text-clr) !important;
  font-size: 16px !important;
  font-weight: 400 !important;
  line-height: 25px;
  letter-spacing: 0.03em;
  padding-top: 9.74px;
  cursor: pointer;
}

.cardTopDate {
  color: #5F5F5F;
  font-weight: 400;
  font-size: 14px;
  line-height: 16px;
  margin-bottom: 4.87px;
}

.timeline-card img {
  border-radius: 8px !important;
  height: 237.47px;
}

#conference-timeline .conference-center-line {
  position: absolute;
  width: 3px;
  height: 100%;
  top: 0;
  left: 50%;
  margin-left: -2px;
  background: var(--card-bg);
  z-index: -1;
}

.timeline-article {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
  margin: 20px 0;
}

.timeline-article .content-left-container,
.timeline-article .content-right-container {
  max-width: 38%;
  width: 100%;
}

.timeline-article .content-left-container {
  margin-bottom: -20px;
}

.timeline-article .content-right-container {
  margin-top: 20px;
}

.timeline-article .content-left,
.timeline-article .content-right {
  position: relative;
  width: auto;
  background-color: var(--card-bg);
  box-shadow: 0 1px 3px rgba(0, 0, 0, .03);
  padding: 20.7px 23.14px 23.14px 23.14px;
  border-radius: 10px;
}

.timeline-article .content-left-container {
  float: left;
}

.timeline-article .content-right-container {
  float: right;
}

.timeline-article .content-left:before,
.timeline-article .content-right:before {
  position: absolute;
  top: 20px;
  font-size: 23px;
  font-family: "FontAwesome";
  color: var(--card-bg);
}

.timeline-article .content-left:before {
  content: "\f0da";
  right: -8px;
}

.timeline-article .content-right:before {
  content: "\f0d9";
  left: -8px;
}

.timeline-article .meta-date-1 {
  position: absolute;
  top: 0%;
  left: 50%;
  width: 30px;
  height: 30px;
  margin-left: -16px;
  color: #fff;
  border-radius: 100%;
  background: rgb(219, 10, 91);
}

.timeline-article .meta-date-2 {
  position: absolute;
  top: 8%;
  left: 50%;
  width: 30px;
  height: 30px;
  margin-left: -16px;
  color: #fff;
  border-radius: 100%;
  background: rgb(219, 10, 91);
}

.timeline-article .meta-date .date {
  display: block;
  text-align: center;
  font-weight: 900;
}

.timeline-article .meta-date .date {
  font-size: 18px;

}

.showsCard img {
  border-radius: 0px !important;

}

.border-gray {
  border: 2px solid #908d8d;
}

.border-top-bottom {
  border-top: 2px solid #908d8d;
  border-bottom: 2px solid #908d8d;
}

.showsCard {
  padding: 20px 0px;
  background-color: transparent !important;
}

.border-x {
  border-left: 4px solid #908d8d;
  border-right: 4px solid #908d8d;
}

.textProp {
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.7em;
  letter-spacing: 0.03em;
  cursor: pointer;
}

.start-text {
  color: var(--text-clr) !important;
  line-height: 27px;
}

.end-text {
  color: var(--text-clr);
  line-height: 27px;
}

.profile-card {
  background-color: var(--card-bg);
  border-radius: 10px;
}
.profile_image{
  height: 327.27px;
  object-fit: cover;
}
.profile-card img {
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.tableData1 {
  text-transform: uppercase;
  text-align: center !important;
  color: #5F5F5F !important;
  font-weight: 500;
  line-height: 16px;
}

.tableData2 {
  text-transform: uppercase;
  text-align: center !important;
  color: var(--text-clr) !important;
  font-weight: 500;
  line-height: 16px;
}

.mt-lg {
  margin-top: 7rem;
}

.mt-custom {
  margin-top: 4rem;
}

.trending-head {
  font-weight: 900;
  text-transform: uppercase;
  font-size: 16px;
  color: var(--text-clr);
  cursor: pointer;
}

.trending-head:hover {
  color: #db0a5b
}

.tending-text {
  font-size: 14px;
  font-weight: 400;
  color: var(--text-clr) !important;
  line-height: 1.75;
  letter-spacing: 0.03em;
}

.storyBoard .story-slider {
  background-position: center;
  background-size: cover;
  width: 363px;
  height: 454px;
}

.storyBoard .swiper-slide-active {
  margin-top: 40px;
  height: 458px;
  width: 392px;
}

.movie-slider {
  background-position: center;
  background-size: cover;
  width: 350px;

}

.movieBoard .swiper-slide-active {
  margin-top: 40px;
}

.storyBoard img {
  height: 360px;
}

.movieBoard img {
  height: 300px;
}


.padding-gallery {
  padding: 0 20px;
}
.profile_view{
  padding: 22.91px 6px 39px 6px;
}
@media screen and (min-width:926px) and (max-width:2600px) {
  .gallery_img_1{
    height: 230.75px;
  }
  .gallery_img_2{
    height: 359.37px;
  }
  .gallery_img_3{
    height: 331px;
  }
  .gallery_img_4{
    height: 259.76px;
  }
  .gallery_img_5{
    height: 331px;
  }
  .gallery_img_6{
    height: 259.76px;
  }
}
@media screen and (min-width:688px) and (max-width:925px) {
  .gallery_img_1{
    height: 180.75px !important;
  }
  .gallery_img_2{
    height: 250.37px;
  }
  .gallery_img_3{
    height: 221px;
  }
  .gallery_img_4{
    height: 209.76px;
  }
  .gallery_img_5{
    height: 221px;
  }
  .gallery_img_6{
    height: 209.76px;
  } 
}
@media screen and (max-width:687px) {
  .gallery_img_1{
    height: 150.75px !important;
  }
  .gallery_img_2{
    height: 180.37px;
  }
  .gallery_img_3{
    height: 191px;
  }
  .gallery_img_4{
    height: 140.76px;
  }
  .gallery_img_5{
    height: 191px;
  }
  .gallery_img_6{
    height: 140.76px;
  } 
}
.newsSec_large_img{
  height: 300.99px;
  width: 100%;
  object-fit: cover;
}
/* =====================================CELEBRITY NEWS PAGE END =====================================*/
/* ============================================TV PAGE START ==========================================*/

.socialMedia .social-media-post {
  background-position: center;
  background-size: cover;
  width: 395.31px !important;
  height: 444.29px !important;
}

.socialMedia .swiper-slide-active {
  height: 625px;
  width: 415px;
}

.mt-movieSlider {
  margin-top: 2rem;
}

.movieCards img {
  height: 250px;
}

/* ============================================TV PAGE END ==========================================*/
/*------------Media Queries---------------*/
@media screen and (min-width:1442px) and (max-width:2560px) {

  .socialMedia .social-media-post {
    background-position: center;
    background-size: cover;
    width: 295.31px !important;
    height: 444.29px !important;
  }

  .socialMedia .swiper-slide-active {
    height: 625px;
    width: 415;
  }

  .storyBoard .swiper-slide-active {
    margin-top: 40px;
    width: 392px;
  }

  .movieBoard .swiper-slide-active {
    margin-top: 40px;
    width: 392px;
  }

  .padding-sideCorners {
    padding: 0 140px !important;
  }

  #nav-text .nav-link {
    font-size: 20px;
  }

  .mt-xlg {
    margin-top: 9.5rem;
  }

  .generic-title {
    font-size: 38px;
    line-height: 140%;
  }

  .generic-text {
    font-size: 20px;
    line-height: 33.6px;
  }

}

@media screen and (min-width:1440px) and (max-width:2560px) {
  .celebrityImg {
    width: 229.01px;
    height: 229.01px;
    object-fit: cover;
  }

  .padding-xlg-only {
    padding: 0px 40px;
  }

  .tech-movietext {
    font-size: 22px;
  }

  .padding-bio {
    padding: 0px 30px;
  }
}

@media screen and (min-width: 1025px) and (max-width:2560px) {

  .trending-head {
    text-transform: uppercase;
    font-size: 20px;
  }

  .tending-text {
    font-size: 18px;
    font-weight: 400;
    color: #5F5F5F;
  }

  .mt-lg {
    margin-top: 8rem;
  }

  .bg-navbar {
    box-shadow: 0px 5px 4px 0px var(--nav-shadow);
    -webkit-box-shadow: 0px 5px 4px 0px var(--nav-shadow);
    -moz-box-shadow: 0px 5px 4px 0px var(--nav-shadow);
  }

  .col-two {
    flex: 0 0 auto;
    width: 16.66666667%;
  }

  .col-slg {
    flex: 0 0 auto;
    width: 25%;
  }

  .col-llg-three {
    flex: 0 0 auto;
    width: 25%;
  }

  .mt-llg-1 {
    margin-top: 1rem;
  }

  #nav-text .nav-link {
    padding: 0 15px;
  }

  .coverflow-slider {
    background-position: center;
    background-size: cover;
    width: 368px;
    height: 420px;
  }

  .coverFlow .swiper-slide-active {
    width: 628px;
    height: 430px;
  }

  .coverFlow .swiper-slide-active .coverflow-swip-title {
    font-weight: 550;
    font-size: 24px !important;
    line-height: 28px;
  }

  .coverFlow .swiper-slide-active .swiper-text {
    font-weight: 400;
    font-size: 18px;
    line-height: 145%;
  }
  .coverflow-slider img {
    display: block;
    width: auto;
    height: 300px;
    object-fit: cover;
  }

  .padding-x {
    padding: 0 100px;
  }

  .padding-sides {
    padding: 0 30px; 
  }

  .footer-nav {
    list-style: none;
    font-size: 20px !important;
    padding: 8px 0;
    cursor: pointer;
  }

  .card-height {
    height: 100%;
  }

  .mt-xlg {
    margin-top: 10rem;
  }

}

.padding-sideCorners {
  padding: 0 60px;
}

@media screen and (min-width:1900px) and (max-width:2560px) {
  .movieImage {
    width: 190px !important;
    height: 204px;
  }
}

@media screen and (min-width:1025px) and (max-width:2560px) {
  .padding-hollywood {
    padding: 0px 40px;
  }

  #centerSec {
    padding: 0 25% !important;
  }
  #centerSec_1 {
    padding: 0 10% !important;
  }

  .marginStart {
    margin-left: 1rem;
  }

  .p-xlg-3 {
    padding-top: 1rem !important;
    padding: 2rem;
  }

  .standAlone .swiper-slide-active {
    width: 424px;
    height: 340px;
  }

}

@media screen and (min-width:1025px) and (max-width:1152px) {
  #nav-text .nav-link {
    font-size: 12px !important;
    padding: 8px 10px !important;
  }
}

@media screen and (min-width:1130px) and (max-width:1441px) {
  .padding-sideCorners {
    padding: 0 70px;
  }

  .mobile-view,
  .textProp {
    font-size: 14px;
    font-weight: 500;
  }

  .movieTitle {
    font-size: 18px !important;
  }

}

@media screen and (min-width:1025px) and (max-width:1440px) {
  .mt-custom {
    margin-top: 10rem;
  }

  .size-md {
    font-size: 13px;
  }

  .slider-describtion {
    font-size: 11px;
  }
}

@media screen and (min-width:992px) and (max-width:2560px) {


  .padding-gallery {
    padding: 0 40px;
  }
}

@media screen and (min-width:992px) and (max-width:1024px) {
  .newsSec_large_img{
    height: 270.99px;
    width: 100%;
  }
  .size-md {
    font-size: 13px;
  }

  .slider-describtion {
    font-size: 11px;
  }

  .celebrityImg {
    width: 229.01px;
    height: 229.01px;
  }

  .standAlone-slider {
    height: 369px;
  }

  .mt-custom {
    margin-top: 7rem;
  }

  .storyBoard .story-slider {
    background-position: center;
    background-size: cover;
    width: 323px;
    height: 400px;
  }

  .storyBoard .swiper-slide-active {
    margin-top: 40px;
    width: 302px;
  }

  .storyBoard img {
    height: 250px;
  }

  .socialMedia .social-media-post {
    width: 245.31px !important;
    height: 280.29px !important;
  }

  .socialMedia .swiper-slide-active {
    height: 625px;
    width: 415;
  }

  .padding-bio {
    padding: 0px 0px;
  }

  .movieTitle {
    font-size: 18px !important;
  }

  .ms-slg-0 {
    margin-left: 0 !important;
  }

  .border-bottom-slg {
    border: none !important;
  }

  .padding-hollywood {
    padding: 0px 40px;
  }

  .mt-slg-0 {
    margin-top: 0 !important;
  }

  #nav-text .nav-link {
    font-size: 12px !important;
    padding: 8px 10px !important;
  }

  .tableData1 {
    font-size: 14px;
  }

  .tableData2 {
    font-size: 14px;
  }

  .p-xlg-3 {
    padding: 1rem;
  }

  .mobile-view,
  .textProp {
    font-size: 12px;
  }

  #centerSec {
    padding: 0 15%;
  }
  #centerSec_1 {
    padding: 0 10% !important;
  }


  .row-slg-only {
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 0;
    display: flex;
    flex-wrap: wrap;
    margin-top: calc(-1 * var(--bs-gutter-y));
    margin-right: calc(-.5 * var(--bs-gutter-x));
    margin-left: calc(-.5 * var(--bs-gutter-x));
    padding: 0 .1rem;
  }

  .col-four {
    flex: 0 0 auto;
    width: 33.33333333%;
  }

  .mt-slg-1 {
    margin-top: 0.5rem !important;
  }

  .mt-slg-2 {
    margin-top: 1rem !important;
  }

  .col-slg {
    flex: 0 0 auto;
    width: 100%;
  }

  .col-slg-six {
    flex: 0 0 auto;
    width: 50%;
    padding: 0 5px;
  }

  .col-slg-twelve {
    flex: 0 0 auto;
    width: 100%;
  }

  .coverflow-slider {
    background-position: center;
    background-size: cover;
    width: 350px;
    height: 420px;
  }

  .coverflow-slider img {
    display: block;
    width: auto;
    height: 400px;
  }

  .mySlider {
    width: 100%;
    height: 350px;
  }

  .padding-sideCorners {
    padding: 0 30px;
  }
}

@media screen and (max-width:991px) {

  .hero_center_img,
  .hero_sec_mobile {
    height: 303px;
  }

  .movieTitle {
    font-size: 20px !important;
  }

  .mobile-view,
  .textProp {
    font-size: 11px;
  }

  .reviewText {
    font-size: 10px;
  }

  .marging-tobbottom-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }

  .socialMedia {
    font-size: 16px !important;
    flex-wrap: nowrap;
  }

  .icon-size {
    font-size: 15px !important;
    color: #fff;
    padding: 0 8px;
    cursor: pointer;
  }

  .bg-color {
    background-color: #DB0A5B;
    padding: 2px 0px;
    border-radius: 10px;
  }

  .footer-head {
    font-size: 18px;
  }

  .padding-sideCorners {
    padding: 0 2px;
  }
}

@media screen and (min-width:577px) and (max-width:991px) {
  .movieImage {
    width: 150px !important;
    height: 204px;
    object-fit: cover;
  }
  .centerCardTitle {
    font-weight: 500;
    font-size: 20px !important;
    line-height: 26px;
    letter-spacing: 0.02em;
    color: var(--text-clr) !important;
    margin-top: 10px;
    margin-bottom: 8px !important;
    cursor: pointer;
  }

  .center_card_desc {
    font-weight: 400;
    font-size: 14px !important;
    line-height: 16px;
  }

  .hero_slider_img {
    height: 210px;
  }
}
@media screen and (min-width:769px) and (max-width:992px) {
  .profile_image{
    height:410px !important;
  }
  .mobile-view{
    font-size: 22px
  }
}
@media screen and (min-width:576px) and (max-width:768px) {
  
  .generic-text {
    font-size: 19px;
  }
  .timeline-card img {
    height: 185.47px;
  }
  .content-left{
    padding: 9.81px 14px 14px 14px !important;
  }
  .standAlone-slider {
    background-position: center;
    background-size: cover;
    width: 283px;
    height: 370px;
  }
  .celebrityImg {
    width: 159.01px;
    height: 159.01px;
  }
  .standAlone .swiper-slide {
    width: 323px;
  }

  .standAlone-slider img {
    display: block;
    width: auto;
    height: 196px;
  }

  .storyBoard .story-slider {
    background-position: center;
    background-size: cover;
    width: 223px;
    height: 300px;
  }

  .storyBoard .swiper-slide-active {
    margin-top: 40px;
    width: 202px;
  }

  .movieBoard .movie-slider {
    background-position: center;
    background-size: cover;
    width: 223px;
    height: 300px;
  }

  .movieBoard .movie-slide-active {
    margin-top: 40px;
    width: 202px;
  }

  #nav-text .nav-link {
    padding: 8px 10px !important;
  }
  .profile_image{
    height: 300px !important;
  }
  .timeline-card img {
    height: 285.47px;
}
.mobile-view{
  font-size: 20px;
}
  .tableData1 {
    font-size: 16px;
  }

  .tableData2 {
    font-size: 16px;
  }

  .socialMedia .social-media-post {
    width: 205.31px !important;
    height: 280.29px !important;
  }

  .socialMedia .swiper-slide-active {
    height: 625px;
    width: 415;
  }

  .story-slider {
    background-position: center;
    background-size: cover;
    width: 250px;
    height: 200px;
  }

  .storyBoard img {
    height: 200px;
  }

  .movieBoard img {
    height: 200px;
  }

  .timeline-article .meta-date-1 {
    position: absolute;
    top: 2%;
    left: 35px;
  }

  .timeline-article .meta-date-2 {
    position: absolute;
    top: 58%;
    left: 35px !important;
  }

  .coverflow-slider {
    background-position: center;
    background-size: cover;
    width: 300px;
    height: 390px;
  }

  .coverflow-slider img {
    display: block;
    width: auto;
    height: 300px;
  }

  .mySlider {
    width: 100%;
    height: 300px;
  }

  .size-md {
    font-size: 12px;
  }

  .slider-describtion {
    font-size: 10px;
  }
}

@media screen and (max-width:576px) {
  .post_img{
    height: 201px !important;
  }
  .bytes_like_img{
    height: 180px;
  }
  .news_sec_movie{
    height: 201px;
    width: 125px;
    object-fit: cover;
  
  }
  .profile_image{
    height:210px;
  }
  .timeline-card img {
    height: 145.47px;
  }
  .content-left{
    padding: 9.81px 14px 14px 14px !important;
  }
  .timeline-text{
    padding-top: 6px !important;
    font-size: 13px !important;
  }
  .hero_center_img,
  .hero_sec_mobile {
    height: 230px;
  }

  .hero_slider_img {
    height: 140px;
  }

  .news_mob_img,
  .lifestyle_mob_img,
  .fashion_mob_img,
  .slider_mob_img {
    height: 140px;
  }

  .lifstyle_mob_content,
  .fashion_mob_content,
  .entertain_mob_content,
  .sport_mob_content {
    padding: 4px;
  }

  .lifstyle_mob_content_lg,
  .fashion_mob_content_lg,
  .entertain_mob_content_lg,
  .sport_mob_content_lg {
    padding: 6px 11px;
  }

  .cardDescription,
  .center_card_desc {
    font-size: 12px !important;
    line-height: 14px;
  }

  .aside_card_padding,
  .center_card_padding {
    padding: 3px 5px 16px 6px;
  }

  .cardTitle {
    font-weight: 590;
    font-size: 16px;
    line-height: 19px;
    letter-spacing: 0.01em;
    margin-top: 4px;
    margin-bottom: 2px !important;

  }

  .cardText {
    font-weight: 400;
    font-size: 13px;
    line-height: 14px;
    letter-spacing: 0.01em;
    margin-top: 0px;
  }

  .centerCardTitle {
    margin-top: 4px;
    margin-bottom: 2px;
    font-weight: 500;
    font-size: 16px;
    line-height: 19px;
    letter-spacing: 0.01em;
  }

  .smocky_padding {
    padding: 4px 5px 2px 6px;
  }

  .footer-logo {
    height: 59px;
    max-width: 155px;
  }

  .borderImage-size {
    max-width: 120px;
    height: 100px;
  }


  .celebrityImg {
    width: 129.01px;
    height:100%;
    object-fit: cover;
  }

  .generic-text {
    font-size: 14px;
  }

  .hollywood_banner {
    height: 201px;
  }

  .socialMedia .social-media-post {
    background-position: center;
    background-size: cover;
    width: 145.31px !important;
    height: 200.29px !important;
  }

  .socialMedia .swiper-slide-active {
    height: 625px;
    width: 415;
  }

  .mobile-view,
  .textProp {
    font-size: 20px;
  }

  .timeline-title {
    font-size: 15px;
    line-height: 20px;
  }

  .navbar-brand {
    height: 90px;
    width: 100px;
  }

  #nav-text .nav-link {
    padding: 8px 10px !important;
  }

  .mobile-view-slider {
    background-position: center;
    background-size: cover;
    width: 200px;
    height: 250px;
  }
  .aloneTitle {
    font-size: 20px;
  }

  .topText {
    font-weight: 700;
    font-size: 18px;
    line-height: 27px;
  }

  .genericDesc {
    font-size: 12px;
  }

  .genericCardText {
    font-size: 14px;
  }

  .bg-pink {
    padding: 2px 60px;
    font-size: 16px;
  }

  .bordercard-text {
    font-size: 14px;
  }

  .bordercard-title {
    font-size: 18px;
  }

  .timeline-article .meta-date-2 {
    position: absolute;
    top: 55%;
    left: 35px !important;
  }

  .mt-custom {
    margin-top: 4rem;
  }

  .generic-title {
    font-size: 18px;
    line-height: 140%;
  }

  .borderImage-size {
    width: 90px;
    height: 120px;
    border-radius: 0px;
    object-fit: cover;
  }

  .movieImage {
    width: 150px !important;
    height: 204px;
    object-fit: cover;
  }

  .also-like-img {
    height: 180px;
  }

  .likeCardText {
    font-weight: 500;
    font-size: 15px;
    line-height: 24px;
    letter-spacing: 0.02em;
  }
  .card-headers {
    line-height: 21px;
    font-size: 20px;
    font-weight: 700;
  }
}
@media screen and (min-width:321px) and (max-width:375px){
  .bytes_movie{
    height: 100%;
    width: 125px;
  }
}
@media screen and (max-width:320px) {
  .bytes_movie{
    height: 100%;
    width: 100px;
  }
  .movieImage {
    width: 100px !important;
    height: 184px;
    object-fit: cover;
  }

  .movieTitle {
    font-size: 16px !important;
  }

  .position-1 {
    position: absolute;
    left: 5%;
    top: 50%;
  }

  .search.active {
    width: 145px;
  }

  .search .input input {
    width: 145px;
    padding-left: 62px;
  }

  .column {
    -ms-flex: 100%;
    /* Image gallery*/
    flex: 100%;
    max-width: 100%;
  }

  .timeline-title {
    font-size: 14px;
  }

}

@media screen and (min-width:321px) and (max-width:375px) {
  .search.active {
    width: 185px;
  }

  .search .input input {
    width: 220px;
    padding-left: 100px;
  }

  .column {
    -ms-flex: 100%;
    /* Image gallery*/
    flex: 100%;
    max-width: 100%;
  }

}

/*===== Resonsive Vertical Timeline =====*/
@media only screen and (max-width: 830px) {

  #conference-timeline .conference-center-line {
    margin-left: 0;
    left: 50px;
  }

  .timeline-article .meta-date-1 {
    margin-left: 0;
    left: 35px;
    top: 3.1%;
  }

  .timeline-article .meta-date-2 {
    margin-left: 0;
    left: 20px;
  }

  .timeline-article .content-left-container,
  .timeline-article .content-right-container {
    max-width: 100%;
    width: auto;
    float: none;
    margin-left: 110px;
    min-height: 53px;

  }

  .timeline-article .content-left-container {
    margin-bottom: 20px;
  }

  .timeline-article .content-left,
  .timeline-article .content-right {
    padding: 10px 25px;
    min-height: 65px;
  }

  .timeline-article .content-left:before {
    content: "\f0d9";
    right: auto;
    left: -8px;
  }

  /* .timeline-article .content-right:before {
    display: none;
  } */
}

/* Media Queries End */
.popup-wrapper {
    align-items: center;
}
.sub_button {
    border: 2px solid #db0a5b;
}
#foot-addon {
    background-color: #db0a5b;
    font-size: 20px;
    padding: 13px 22px;
    cursor: pointer;
    border-radius: 0 4px 4px 0;
    border: 1px solid #db0a5b;
}
#newsletterPopup .modal-content {
    border-radius: 0;
    position: relative;
    background-color: #1a1a1a
}

.closeNewsletter {
    width: 44px;
    height: 44px;
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    font-size: 20px;
    outline: 0;
    border: none;
    cursor: pointer
}

.popup-wrapper img {
    height: 479px;
    object-fit: cover
}

.popupContent {
    padding-left: 36px;
    padding-right: 59px
}

.popupTitle {
    font-size: 30px;
    border-bottom: 2px solid #fcad35;
    font-weight: 600;
    color: #fff;
    cursor: default
}

.popupPara {
    font-size: 16px;
    line-height: 24px;
    color: #eaeaea;
    cursor: default
}

.alignPara {
    margin-top: 24px;
    margin-bottom: 16px
}

.newsletterField {
    margin-top: 56px;
    height: 52px
}

.closeSearchModal {
    background-color: transparent;
    border: 0;
    font-size: 18px;
    padding: 0 10px;
    color: #fff
}
@media screen and (max-width: 991px) {
    .popup-wrapper img {
        height: 164px;
        object-fit: cover;
    }
  .popupContent {
    padding: 24px 30px 84px;
  }
}

ul.breadcrumb {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    padding: 5px 10px;
}

ul.breadcrumb li.breadcrumb-item {
    margin-right: 10px;
}

ul.breadcrumb li.breadcrumb-item a {
    display: inline-block;
    color: var(--text-clr) !important;
    text-decoration: none;
    font-family: 'Arial', sans-serif;
    transition: background-color 0.3s, color 0.3s;
}

ul.breadcrumb li.breadcrumb-item.active a {
    font-weight: bold;
    color: #db0a5b;
}
ul.breadcrumb.wizard li a {
    font-size: 12px;
}

/*category card */
.gs-card {
  margin: 1em;
  text-align: center;
  margin-inline: auto;
  background-color: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
}
.gs-card img {
  max-width: 100%;
  height: 250px;
  clip-path: polygon(0 0, 0 100%, 100% 85%, 100% 0%);
}
.description {
  padding: 0 1em 1em 1em;
}
a.gs_btn {
  font-size: 1em;
  padding: 0.5em 1em;
  color: #fff;
  background-color: #db0a5b;
  background-image: linear-gradient(315deg, #db0a5b 46%, #383838 40%);
  border: none;
  text-decoration: none;
}

.loader {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 10px;
}

.spinner {
    width: 40px;
    height: 40px;
    border: 4px solid rgba(0, 0, 0, 0.1);
    border-left-color: #db0a5b; /* Adjust color as needed */
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
li.footer-nav a {
    color: #fffafa;
    text-decoration: none;
}
@media screen and (min-width:321px) and (max-width:990px) {
	.search_bar {
	    display: none !important;
	}
  .position-1 {
    position: absolute;
    left: 5%;
    top: 50%;
  }
}
.customColor{
  color: var(--text-clr) !important;
}