*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
:root{
    /* font weight */
    --font-medium: 500;
    --font-regular: 400;
    --font-semibold: 600;
    --font-bold: 700;
    --color-btn: hsl(356deg, 59%, 30%);
    --color-hero-slide-1: hsl(226.17deg, 100%, 54.9%);
    --color-hero-slide-2: hsl(30deg 100% 92.16%);
    --color-hero-slide-3: hsl(144deg, 70%, 44%);
    --color-hero-slide-4: hsl(0deg, 0%, 28%);
    --color-hero-slide-5: hsl(215.33deg 100% 79.02%);
    --color-side-content-1: hsl(30deg, 100%, 92%);
    --color-follow-section: hsl(224deg, 100%, 55%);
    --color-topics: hsl(215deg, 91%, 43%);
}
html{
  scroll-behavior: smooth;
}
body{
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    /* background: #f43e49; */
}
a{
    text-decoration: none;
}
ul{
  padding: 0;
  margin: 0;
}
.device{
  display: none;
}

/* NAV BAR */
#header{
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  z-index: 1;
}
.pre-header{
  background: #7a1f25;
  color: #ffffff;
  padding: .5rem;
  text-align: right;
  font-size: 1.125rem;
  font-weight: var(--font-medium);
}
.pre-header p{
  margin-bottom: 0;
}
.pre-header a{
  color: #ffffff;
  margin: 0 5px;
}
.sonyheader {
  position: relative;
  padding: 5px 10px 3px;
  background: black;
  z-index: 9999;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.sonyheader img {
  height: 15px;
}
.container-fluid {
  width: 100%;
  margin: 0;
  height: 100%;
}
.nav-device {
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 10px;
}
#navIcon {
  width: 40px;
  height: 40px;
  /* position: fixed; */
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  cursor: pointer;
  border: 1px solid #f43e49;
  /* box-shadow: 0 0 5px rgba(0, 0, 0, 0.15), 0 0px 5px rgba(0, 0, 0, 0.15); */
  top: 10px;
  right: 7px;
  z-index: 999;
  border-radius: 50%;
  background-color: #ffebd7;
}
#navIcon span {
  display: block;
  position: absolute;
  height: 2px;
  width: 25px;
  background: #f43e49;
  border-radius: 9px;
  opacity: 1;
  left: 0;
  margin: 0 auto;
  right: 0;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: 0.25s ease-in-out;
  -moz-transition: 0.25s ease-in-out;
  -o-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
}
#navIcon span:nth-child(1) {
  top: 12px;
}
#navIcon span:nth-child(2) {
  top: 19px;
}
#navIcon span:nth-child(3) {
  top: 26px;
}
.nav-active #navIcon span:nth-child(1) {
  top: 19px;
  -webkit-transform: rotate(135deg);
  -moz-transform: rotate(135deg);
  -o-transform: rotate(135deg);
  transform: rotate(135deg);
}
.nav-active #navIcon span:nth-child(2) {
  opacity: 0;
  left: -60px;
}
.nav-active #navIcon span:nth-child(3) {
  top: 19px;
  -webkit-transform: rotate(-135deg);
  -moz-transform: rotate(-135deg);
  -o-transform: rotate(-135deg);
  transform: rotate(-135deg);
}

.nav-container{
    padding: 1rem 1.5rem;
    /* position: fixed; */
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 5;
    transition: all .3s ease-in-out;
}
#header.scrolled{
  background: rgba(0, 0, 0, .8);
}
.nav-logo{
    width: 6vw;
}
.nav-ul{
    padding: 0;
    margin: 0;
    display: flex;
    flex-grow: 1;
    justify-content: center;
    align-items: center;
    gap: 3rem;
}
.nav-li{
    list-style: none;
}
.navigation-check{
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: var(--font-medium);
    text-transform: uppercase;
    position: relative;
}
.navigation-check::after{
  content: '';
  position: absolute;
  left: 0;
  top: 100%;
  border-bottom: 2px solid #ffffff;
  width: 0;
  transition: all .3s ease-in-out;
}
.navigation-check.active::after{
  width: 100%;
}
.nav-formats{
  position: relative;
}
.nav-formats::before{
    content: '';
    height: 0;
    width: 0;
    position: absolute;
    top: 50%;
    right: -20px;
    transform: translateY(-50%);
    border-top: 5px solid transparent;
    border-right: 5px solid transparent;
    border-bottom: 5px solid transparent;
    border-left: 5px solid #d4b4d7;
}
.sub-btn{
    padding: 1.5rem 4.5rem;
    background-color: var(--color-btn);
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: var(--font-regular);
    text-transform: uppercase;
}


/* Hero section */

.hero-section {
    background-image: url(../images/hero_section/bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top;
  margin-bottom: 3rem;
}
.hero-wrapper{
    width: 70vw;
    margin: 0 auto;
    padding-top: 11rem;
}
.hero-info{
    text-align: center;
    color: #ffffff;

}
.main-logo{
  max-width: 35%;
}
.intro-text {
    margin-bottom: 3rem;
    color: var(--color-hero-slide-2);
}
.intro-text p{
    margin-bottom: 0;
    font-size: 2.125rem;
    font-weight: var(--font-medium);
    padding: 0 4rem;
}


/* / Slider / */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}
.slick-list {
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0;
  padding: 0;
}
.slick-list:focus {
  outline: none;
}
.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}
.slick-slider .slick-track, .slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.slick-track {
  position: relative;
  top: 0;
  left: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.slick-track:before, .slick-track:after {
  display: table;
  content: "";
}
.slick-track:after {
  clear: both;
}
.slick-loading .slick-track {
  visibility: hidden;
}
.slick-slide {
  display: none;
  float: left;
  height: 100%;
  min-height: 1px;
  padding: 10px;
  padding-bottom: 0;
}
[dir="rtl"] .slick-slide {
  float: right;
}
.slick-slide img {
  display: block;
  margin: 0 auto;
  /*max-height: calc(100vh - 140px);*/
}
.slick-slide.slick-loading img {
  display: none;
}
.slick-slide.dragging img {
  pointer-events: none;
}
.slick-initialized .slick-slide {
  display: block;
}
.slick-initialized .slick-slide > div {
  display: flex;
}
.slick-loading .slick-slide {
  visibility: hidden;
}
.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}
.slick-arrow.slick-hidden {
  display: none;
}
.slick-slider button {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
}
.slick-slider .slide-arrow {
  position: absolute;
  top: 47%;
  margin-top: -10px;
  padding: 10px;
  background: rgba(0, 0, 0, 0);
  border-radius: 50%;
}
/* .slick-slider .slide-arrow img {
  height: 22vw;
} */
.photo-gallery.bg-pink .slick-slider .slide-arrow img {
  filter: none;
}
.slick-slider .prev-arrow {
  left: -3%;
  /*  width: 0;
    height: 0;
    border-left: 0 solid transparent;
    border-right: 20px solid #ffffff;
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;*/
}
.slick-slider .next-arrow {
  right: -3%;
  /*  width: 0;
    height: 0;
    border-right: 0 solid transparent;
    border-left: 20px solid #ffffff;
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;*/
  transform: scale3d(-1, 1, 1);
}
.slide-arrow.slick-arrow.slick-disabled {
  opacity: .3;
  cursor: not-allowed;
}


.hung-jury-slide{
    background-color: var(--color-hero-slide-1);
}
.camera-rolled-slide{
    background-color: var(--color-hero-slide-2);
    color: #000;
}
.street-cred-slide{
    background-color: var(--color-hero-slide-3);
}
.is-this-bs-slide{
    background-color: var(--color-hero-slide-4);
}
.hot-buttons-slide{
    background-color: var(--color-hero-slide-5);
    color: #000;
}
.slider-div{
    min-height: 30vw;
}
.slider-div-wrapper{
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
}
.slider-img{
    /* width: 60%; */
    padding: 3rem 0;
}
.slider-text{
    padding: 0 1rem;
    text-align: left;
}
.slider-div-wrapper{
    background: linear-gradient(0deg, black -44%, transparent 25%);
}


/* IS THIS BS SECTION */

.section-wrapper{
    width: 70vw;
    margin: 0 auto;
}
.section-heading{
    padding: 3rem 0;
}
.section-heading h2{
    display: flex;
}
.vline{
    border-right: 2px solid #b2b2b2;
    margin-right: 2rem;
}
.section-content{
    display: flex;
    justify-content: space-between;
    padding: 3rem 0;
}
.section-info{
    display: flex;
    justify-content: space-between;
    background: linear-gradient(135deg, var(--color-side-content-1) 60%, #000000 106%);
    width: 67%;
}
.section-info.dark{
    background: linear-gradient(45deg, #000000 60%, #414141 106%);
    color: #ffffff;
}
.section-img-wrapper{
    display: flex;
    gap: .875rem;
    width: 32%;
    justify-content: flex-end;
}
.section-img-wrapper >div{
  width: 50%;
}
.section-img-wrapper img{
  width: 100%;
}
.section-text{
  width: 61%;
  font-size: 1.625rem;
  font-weight: var(--font-regular);
  line-height: 1.2;
  padding: 2rem 0 2rem 2rem;
  align-content: center;
}
.section-topics li{
  list-style: none;
}
.topic{
  color: var(--color-topics);
  font-size: 1.875rem;
  font-weight: var(--font-semibold);
  line-height: 1.4;
}
.section-info-img{
  width: 39%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex-direction: column;
  gap: 1rem;
  padding: 1%;
  text-align: center;
}
.img-wrapper{
  flex-grow: 1;
  align-content: center;
}
.title-img{
 max-width: 90%;
}
.watch-now-btn{
    display: inline flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    color: #ffffff;
    font-size: 1.875rem;
}


/* Contact us section */
.contactUs-body h3{
  font-size: 2.125rem;
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 2rem;
}


/* Tweets section */
.tweets-section{
  /* font-family: 'Helvetica Neue', sans-serif; */
  background: var(--color-follow-section);
  color: #ffffff;
  position: relative;
  margin-top: 5rem;
}
.tweets-section strong{
  font-weight: var(--font-bold);
}
.tweets-section a{
  color: #ffffff;
}
.tweets-content{
  display: flex;
  justify-content: center;
  align-items: center;
}
.tweet-wrapper{
  width: 50%;
  font-size: 1.25rem;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  margin: 20vh 0;
  gap: .75rem;
}
.tweet-icon{
  height: 100%;
}
.follow-btn{
  position: absolute;
  top: 0;
  left: 10%;
  transform: translateY(-50%);
}
.follow-btn a{
  background: #000000;
  padding: 1.25rem 1.5rem;
}
.follow-btn a img{
  width: 20px;
}

/* Form section */
.section-wrapper h2{
  color: var(--color-side-content-1);
  margin-bottom: 0;
  text-transform: uppercase;
}
.form-section{
  padding: 3rem 0;
  border-bottom: 1px solid #eeeeee;
}
.form-wrapper{
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 aspect ratio (height / width = 9 / 16 = 0.5625) */
  height: 0;
  overflow: hidden;
  margin: 1rem 0;
}
.form-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.nav-tabs .nav-link{
  color: #000;
}
.nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link.active{
  color: #ffffff;
  background-color: #000000;
}
.slider-container{
  display: none;
}


/* Footer */

/* footer{
  padding: 1rem 0;
  font-size: 1.25rem;
}
.footer-wrapper{
  width: 80%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
} 
.footer-info{
  width: 50%;
}
.footer-links{
  display: flex;
  gap: 7rem;
}
footer ul{
  margin: 0;
}
footer li{
  list-style: none;
  margin-bottom: 2rem;
}
footer a{
  color: #000000;
  text-decoration: underline;
  text-underline-offset: 8px;
  text-decoration-color: #eeeeee;
} */


.footer-social-links{
  display: flex;
  gap: 1.125rem;
  justify-content: center;
  align-items: center;
  margin-bottom: 1rem;
}
.footer-social-links li{
  list-style: none;
}
.footer-social-links img{
  max-width: 35px;
  display: block;
}



.footer {
  position: relative;
  text-align: center;
  top: auto;
  bottom: 0;
  background: #000000;
  font-size: 10px;
  padding: 2rem 0;
  margin-top: 3rem;
  color: rgb(0 0 0);
  z-index: 0;
  /* text-transform: uppercase;  */
}
.footer-logo{
  width: 180px;
  margin-bottom: 1rem;
}
footer .audioplayer .audio-button {
  transition: opacity .5s 0s;
  display: inline-block;
  width: auto;
  height: auto;
  opacity: 1;
  pointer-events: all
}
footer .audioplayer .audio-button {
  pointer-events: none !important;
  opacity: 1;
}
footer .audioplayer .audio-button .bars-wrapper {
  white-space: nowrap;
  height: 20px;
  overflow: visible;
  transform: rotateX(180deg);
}
.bar {
  transition: box-shadow .5s cubic-bezier(.77, 0, .175, 1) 0s;
  display: inline-block;
  float: left;
  width: 3px;
  height: 20px;
  margin-right: 3px;
}
.audioplayer .audio-button .bars-wrapper .bar {
  background-color: #c80603;
  box-shadow: 0 0 0 #c80603;
}
.bugs img {
  max-width: 92%;
  margin: 15px auto;
  min-width: 250px;
}
.footer-links a {
  display: inline-block;
  color: #FFFFFF !important;
  margin: 0 5px;
}
.footer-links a:hover, #btnCredits:hover, #btnCreditsIntro:hover {
  color: #ffffff;
    text-decoration: underline;
}
.footer-links a:not([href]):not([class]):hover{
    text-decoration: underline;
}
.copyright {
  color: #FFFFFF;
}
#containerCredits, #containerCreditsIntro {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  padding: 30px 0 5px;
  background: #000000;
  text-align: center;
  display: none;
  z-index: 5;
}
#containerCredits .footer-links a, #containerCreditsIntro .footer-links a {
  /* color: #000000 !important; */
}
.personal_info img {
  width: 32px;
  margin-left: 0.3rem;
  margin-bottom: 3px;
}



@media screen and (min-width:2000px) {
  .slider-div{
    min-height: 20vw;
  }
  .pre-header{
    font-size: 1.25rem;
  }
  .navigation-check{
    font-size: 1.375rem;
  }
}
@media screen and (max-width: 1760px) {
  .nav-container{
    padding: 1rem;
  }
  .nav-ul{
    gap: 4rem;
  }
  .navigation-check{
    font-size: 1.375rem;
  }
  .hero-wrapper {
    padding-top: 8rem;
  }
  .main-logo{
    max-width: 30%;
  }
  .sub-btn{
    padding: 1rem 3.5rem;
    font-size: 1.375rem;
  }
  .intro-text p{
    font-size: 2rem;
    padding: 0 3rem;
  }
  .contactUs-body h3{
    font-size: 2rem;
  }
  .slider-text{
    font-size: 1rem;
  }
  .header-img {
    max-height: 6vw;
  }
  .section-text{
    font-size: 1.375rem;
    padding: 3rem 1rem;
  }
  .topic{
    font-size: 1.75rem;
  }
  .watch-now-btn{
    font-size: 1.75rem;
  }
  .watch-now-btn img{
    max-width: 30%;
  }
  .tweet-wrapper{
    width: 58%;
  }
  .tweet{
    font-size: 1.125rem;
  }
  footer{
    font-size: 1.125rem;
  }
}
@media screen and (max-width: 1680px) {
  .navigation-check{
    font-size: 1.25rem;
  }
  .sub-btn{
    font-size: 1.25rem;
  }
  .intro-text p{
    font-size: 1.75rem;
  }
  .contactUs-body h3{
    font-size: 1.75rem;
  }
  .slider-div{
    min-height: 35vw;
  }
  .topic{
    font-size: 1.5rem;
  }
  .watch-now-btn{
    font-size: 1.5rem;
  }
  .watch-now-btn img{
    max-width: 30%;
  }
  .tweet-wrapper{
    width: 58%;
  }
  .tweet{
    font-size: 1.125rem;
  }
  footer{
    font-size: 1.125rem;
  }
}
@media screen and (max-width: 1600px) {
  .slider-div{
    /* min-height: 80vh; */
  }
  .section-text{
    font-size: 1.25rem;
  }
  .topic{
    font-size: 1.375rem;
  }
  .watch-now-btn{
    font-size: 1.375rem;
  }
  .watch-now-btn img{
    max-width: 30%;
  }
  .tweet-wrapper{
    width: 58%;
  }
  .tweet{
    font-size: 1.125rem;
  }
  footer{
    font-size: 1.125rem;
  }
}
@media screen and (max-width:1535px) {
  .nav-ul{
    gap: 3rem;
  }
  .intro-text p{
    font-size: 1.625rem;
  }
  .contactUs-body h3{
    font-size: 1.625rem;
  }
  .slider-div{
    min-height: 42vw;
  }
  .section-text{
    font-size: 1.25rem;
  }
  .topic{
    font-size: 1.375rem;
  }
  .watch-now-btn{
    font-size: 1.375rem;
  }
  .watch-now-btn img{
    max-width: 30%;
  }
  .tweet-wrapper{
    width: 58%;
  }
  .tweet{
    font-size: 1rem;
  }
  footer{
    font-size: 1rem;
  }
}
@media screen and (max-width:1366px) {
  .pre-header{
    font-size: 1rem;
  }
  .navigation-check{
    font-size: 1.125rem;
  }
  .sub-btn{
    font-size: 1.125rem;
  }
  .intro-text p{
    font-size: 1.5rem;
  }
  .contactUs-body h3{
    font-size: 1.5rem;
  }
  .slider-div{
    min-height: 45vw;
  }
  .section-text{
    font-size: 1.125rem;
    padding: 1rem;
  }
  .topic{
    font-size: 1.125rem;
  }
  .watch-now-btn{
    font-size: 1.125rem;
  }
  .watch-now-btn img{
    max-width: 30%;
  }
  .tweet-wrapper{
    width: 58%;
  }
  .tweet{
    font-size: 1rem;
  }
  footer{
    font-size: 1rem;
  }
}
@media screen and (max-width:1280px) {
  .pre-header{
    font-size: .875rem;
  }
  .navigation-check{
    font-size: 1rem;
  }
  .sub-btn{
    padding: 1rem 2.5rem;
    font-size: 1rem;
  }
  .intro-text p{
    font-size: 1.375rem;
  }
  .contactUs-body h3{
    font-size: 1.375rem;
  }
  .slider-text{
    font-size: .875rem;
  }
  .slider-div{
    min-height: 40vw;
  }
  .topic{
    font-size: 1.125rem;
  }
  .watch-now-btn{
    font-size: 1.125rem;
  }
  .watch-now-btn img{
    max-width: 30%;
  }
  .tweet-wrapper{
    width: 58%;
  }
  .tweet{
    font-size: .875rem;
  }
  footer{
    font-size: .875rem;
  }
}
@media screen and (max-width:1200px) {
  .pre-header{
    font-size: .75rem;
  }
  .nav-ul{
    gap: 2rem;
  }
  .navigation-check{
    font-size: .875rem;
  }
  .sub-btn{
    padding: 1rem 1.5rem;
    font-size: .875rem;
  }
  .intro-text p{
    padding: 0;
    font-size: 1.25rem;
  }
  /* .contactUs-body h3{
    font-size: 1.25rem;
  } */
  .slider-text{
    font-size: .75rem;
  }
  .slider-div{
    /* min-height: 100vh; */
  }
  .section-text{
    font-size: 1rem;
    padding: 2rem 0 0 1rem;
  }
  .topic{
    font-size: 1rem;
  }
  .watch-now-btn{
    font-size: 1rem;
  }
  .watch-now-btn img{
    max-width: 30%;
  }
  .tweet-wrapper{
    width: 58%;
  }
  .tweet{
    font-size: .875rem;
  }
  footer{
    font-size: .875rem;
  }
}
@media screen and (max-width:1024px) {
  .nav-ul{
    gap: 2rem;
  }
  .intro-text p{
    font-size: 1.25rem;
  }
  .slider-div {
    min-height: 50vw;
  }
  .section-text{
    font-size: .875rem;
  }
  .topic{
    font-size: .875rem;
  }
  .watch-now-btn{
    font-size: .875rem;
  }
  .watch-now-btn img{
    max-width: 30%;
  }
  .tweet-wrapper{
    width: 100%;
  }
  footer{
    font-size: .75rem;
  }
}
@media screen and (max-width:1024px) and (orientation: portrait){
  .desktop{
    display: none;
  }
  .device{
    display: block;
  }
  .nav-logo{
    width: 60px;
  }
  .slick-slider .next-arrow{
    right: -5%;
  }
  .slick-slider .prev-arrow{
    left: -5%;
  }
  .device .nav-logo{
    /* position: fixed;
    top: 10px;
    left: 7px;
    z-index: 1; */
  }
  .nav-container{
    position: fixed;
    flex-direction: column;
    justify-content: center;
    gap: 1rem;
    left: auto;
    right: -100%;
    width: 100vw;
    height: 100dvh;
    overflow: auto;
    transition: all .3s ease-in-out;
  }
  .nav-ul{
    flex-direction: column;
    gap: 1rem;
    flex-grow: inherit;
    transition: all .3s ease-in-out;
  }
  .nav-btn{
    transition: all .3s ease-in-out;
  }
  .sub-btn{
    display: inline flex;
  }
  header.nav-active .nav-container{
    right: 0;
    padding: 4rem 1rem 1rem;
    background: #000;
  }
  .hero-wrapper{
    width: 90%;
  }
  .main-logo {
    max-width: 80%;
  }
  .header-img{
    max-height: 70px;
  }
  .section-wrapper{
    width: 90%;
  }
  .navigation-check{
    font-size: 1.5rem;
  }
  .section-info-img{
    padding: 0;
  }
}
@media screen and (max-width:1021px) {
  .desktop{
    display: none;
  }
  .device{
    display: block;
  }
  .nav-logo{
    width: 60px;
  }
  .device .nav-logo{
    /* position: fixed;
    top: 10px;
    left: 7px;
    z-index: 1; */
  }
  .pre-header{
    position: relative;
    z-index: 999;
    text-align: center;
  }
  .nav-container{
    position: fixed;
    flex-direction: column;
    justify-content: center;
    gap: 1rem;
    left: auto;
    right: -100%;
    width: 100vw;
    height: 100dvh;
    overflow: auto;
    transition: all .3s ease-in-out;
  }
  .nav-ul{
    flex-direction: column;
    gap: 1rem;
    flex-grow: inherit;
    transition: all .3s ease-in-out;
  }
  .nav-btn{
    transition: all .3s ease-in-out;
  }
  .sub-btn{
    display: inline flex;
  }
  .nav-container{
    max-height: 100dvh;
    overflow-y: auto;
  }
  .nav-container .nav-logo{
    width: 130px;
  }
  header.nav-active .nav-container{
    right: 0;
    padding: 4rem 1rem 1rem;
    background: #000;
  }
  .hero-wrapper{
    width: 90%;
  }
  .main-logo {
    max-width: 80%;
  }
  .section-info-img >div:last-child{
    display: flex;
  }
  .header-img{
    max-height: 70px;
  }
  .section-content{
    flex-wrap: wrap;
    gap: 10px;
  }
  .hung-jury-section .section-content, .street-cred-section .section-content{
    flex-direction: column-reverse;
  }
  .section-info{
    flex-wrap: wrap;
    padding: 1.5rem 1.125rem 1.25rem;
    gap: 1.125rem;
  }
  .section-text{
    font-size: 1rem;
    padding: 0;
  }
  .topic, .watch-now-btn{
    font-size: 1.125rem;
  }
  .section-info, .section-text, .section-info-img,.section-img-wrapper, .footer-info{
    width: 100%;
  }
  .section-info-img{
    padding: 0;
  }
  .section-img-wrapper >div{
    flex-grow: 1;
  }
  .section-img-wrapper img{
    width: 100%;
  }
  .form-wrapper{
    padding-bottom: 80vh;
  }
  .footer-wrapper{
    flex-wrap: wrap;
    gap: 1rem;
  }
  .footer-links{
    justify-content: space-between;
    gap: 0;
    width: 100%;
  }
  .section-wrapper{
    width: 90%;
  }
  .navigation-check{
    font-size: 1.5rem;
  }
}
@media screen and (max-width:1021px) and (max-height: 500px) and (orientation: landscape) {
  header.nav-active .nav-container{
    padding: 5rem 1rem 1rem;
    justify-content: flex-start;
  }
}
@media screen and (max-width:992px) {
  .slider-div {
    min-height: 60vw;
  }
  .slider-text{
    font-size: .875rem;
  }
  .navigation-check{
    font-size: 1.275rem;
  }
}
@media screen and (max-width:992px) and (orientation: landscape) {
  .hero-wrapper{
    padding-top: 6rem;
  }
      .main-logo {
        max-width: 50%;
    }
}
@media screen and (max-width:670px) {
  .slider-div {
    min-height: 70vw;
  }
}
@media screen and (max-width:600px) {
  .slider-div {
    min-height: 90vw;
  }
  .navigation-check{
    font-size: 1rem;
  }
}
@media screen and (max-width:500px) {
  .slider-div {
    min-height: 120vw;
  }
  .sonyheader img {
    height: 12px;
  }
}
@media screen and (max-width:390px) {
  .slider-div {
    min-height: 140vw;
  }
}
@media screen and (max-width:360px) {
  .slider-div {
    min-height: 160vw;
  }
}
@media screen and (max-width:300px) {
  .slider-div {
    min-height: 180vw;
  }
}