* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "sofia-pro", sans-serif;
  font-weight: 300;
  background-color: #000000;
  color: #FFFFFF;
  font-size: 16px;
  position: relative;
}
.container {
  max-width: 90vw;
}
.nav_line_box {
  display: flex;
  align-items: center;
  height: 100%;
}
.nav_line {
  width: 100%;
  height: 2px;
  background-color: #ffffff;
}
/*== Navigation ==*/
.fixedBody {
  overflow: hidden !important;
}
.header {
  position: fixed !important;
  top: 0;
  width: 100%;
  z-index: 250;
  padding: 3px 0;
}
.header .container-fluid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-left: 1.3em;
  padding-right: 1.3em;
}
/*.logo__wrapper, .social__wrapper {
    flex-basis: 16.66%;
  }
  .nav__wrapper {
    flex-basis: 66.66%;
  }*/
.logo__wrapper h1 {
  margin-bottom: 0;
}
.logo__wrapper a {
  display: flex;
}
.logo__wrapper img {
  height: 30px;
  transition: height 0.2s;
  
}
.nav-ul {
  display: flex;
  justify-content: center;
  padding: 0;
  flex-wrap: wrap;
}
.nav-link {
  font-size: 1.2rem;
  color: #FFF;
  padding: 15px 35px;
  display: block;
  text-decoration: none !important;
  outline: none !important;
  transition: padding 0.3s;
  text-transform: uppercase;
  font-weight: 200;
  line-height: 1.2;
}
.nav-link:hover {
  color: #636466;
}
.nav-li a.active {
  color: #636466;
  border-bottom: 3px solid #f6e100;
  transition: all 0.2s;
}
.navActive .nav-container {
  right: 0px;
  transition: 0.4s ease;
}
#navIcon {
  width: 40px;
  height: 40px;
  position: relative;
  -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 #f2be96;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.15), 0 0px 5px rgba(0, 0, 0, 0.15);*/
  z-index: 1000;
  border-radius: 5px;
  /*  background-color: #ab0e01;*/
  margin-right: 2em;
  display: none;
}
#navIcon span {
  display: block;
  position: absolute;
  height: 2px;
  width: 35px;
  background: #ffffff;
  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: 10px;
}
#navIcon span:nth-child(2) {
  top: 20px;
}
#navIcon span:nth-child(3) {
  top: 30px;
}
.navActive #navIcon span:nth-child(1) {
  top: 19px;
  -webkit-transform: rotate(135deg);
  -moz-transform: rotate(135deg);
  -o-transform: rotate(135deg);
  transform: rotate(135deg);
}
.navActive #navIcon span:nth-child(2) {
  opacity: 0;
  left: -60px;
}
.navActive #navIcon span:nth-child(3) {
  top: 19px;
  -webkit-transform: rotate(-135deg);
  -moz-transform: rotate(-135deg);
  -o-transform: rotate(-135deg);
  transform: rotate(-135deg);
}
.social__wrapper {
  display: flex;
  justify-content: center;
  height: 100%;
  align-items: center;
}
.social__wrapper ul {
  display: flex;
  justify-content: center;
  align-items: center;
  list-style: none;
  padding-left: 0;
}
.social__wrapper ul li {
  margin: 0 5px;
}
.social__wrapper img {
  max-height: 24px;
}
.navbar-shrink {
  transition: all 0.2s;
  padding: 0;
}
.navbar-shrink .logo__wrapper h1 {
  margin-bottom: 0;
}
.navbar-shrink .logo__wrapper img {
  height: 0;
}
/*--------NAV DROP DOWN-----------------*/
/*.dropbtn {

}
*/
.dropdown {
  position: relative;
  display: -block;
  cursor: pointer;
}
.dropdown-content {
  display: none;
  position: relative;
  background-color: #f1f1f1;
  min-width: 140px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 1;
}
.dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  border-bottom: 1px solid rgba(0, 0, 0, 0.3);
  text-transform: uppercase;
}
.dropdown-content a:hover {
  background-color: #ddd;
}
.dropdown:hover .dropdown-content {
  display: block;
}
/*.dropdown:hover .dropbtn {background-color: #000;}*/
.dropdown-arrow {
  height: 0;
  width: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid #FFFFFF;
  position: absolute;
  top: 50%;
  margin-left: 5px;
  transform: translateY(-50%);
}
.dropdown:hover .dropdown-arrow {
  top: 40%;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-bottom: 5px solid #f6e100;
  border-top: 5px solid transparent;
}
.nav-li a.active span {
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 8px solid #f6e100;
}
/*--------NAV DROP DOWN-----------------*/
.nav-container-logo img {
  margin: .5em auto;
  max-width: 70%;
}
.nav-container {
  position: fixed;
  background: rgba(0, 0, 0, 0.90);
  width: 100%;
  height: 100vh;
  right: -100%;
  z-index: 300;
  top: 0;
  overflow-y: auto;
  transition: 0.5s ease;
  padding-top: 80px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
#navIcon {
  display: inline-block;
  margin-right: 0;
}
/* .nav-ul {
    display: inline-block;
  } */
.nav-li {
  width: 30%;
  color: #ffffff;
  list-style: none;
}
.nav-link {
  font-size: 5dvh;
}
.nav-li a.active {
  border-bottom: none;
}
.social__wrapper {
  height: auto;
  padding-top: 2vw;
  padding-bottom: 2vw;
}
.social__wrapper ul li a:hover {
  background: none !important;
}
.opeq__overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 1;
  background: rgba(0, 0, 0, 0.20);
}
#home {
  padding: 0;
}
.hero_banner {
  display: flex;
  justify-content: center;
  align-items: center;
  height: calc(100vh - 0rem);
  position: relative;
  /*    top: -4rem;*/
}
.hero_banner .hero_text {
  position: relative;
  text-align: justify;
  /*    width: 55vw;*/
  width: clamp(55vw, 60vw, 100vw);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.hero_text .fadeIn span {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeIn 0.5s ease-out forwards;
  display: inline-block;
  font-size: clamp(2rem, 30.6122rem + -2.1769vw, 4rem);
  padding: 0.3em 0.5em;
  letter-spacing: 2px;
}
h1.fadeIn span:nth-of-type(2) {
  animation-delay: 0.3s;
}
h1.fadeIn span:nth-of-type(3) {
  animation-delay: 0.6s;
}
h1.fadeIn span:nth-of-type(4) {
  animation-delay: 0.9s;
}
h1.fadeIn span:nth-of-type(5) {
  animation-delay: 1.2s;
}
h1.fadeIn span:nth-of-type(6) {
  animation-delay: 1.5s;
  display: inline-block;
  width: 49%;
}
h1.fadeIn span:nth-of-type(7) {
  animation-delay: 2s;
  display: inline-block;
  width: 49%;
  text-align: right;
}
@keyframes fadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.sitebg {
  /*    position: absolute;
    z-index: -1;
    height: 100%;
    width: 100%;*/
  background-color: #000000;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  background: url("../images/hero_x.png") no-repeat;
  background-position: center;
  background-size: auto 90%;
}
.section {
  min-height: 100dvh;
  min-height: 100vh;
  padding: 4rem 0;
  overflow-x: hidden;
}
.hero_section {
  padding: 0;
}
.original_section {
  overflow-x: inherit;
}
.intro_text {
  display: flex;
  height: 100%;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin-top: -230px;
  position: relative;
  
}

.intro_text a
{
  text-decoration: none;
}


.original_content, .imax_excellence_content, .awards_details_content {
  display: flex;
  justify-content: center;
  align-items: center;
  height: calc(100dvh - 8rem);
  height: calc(100vh - 8rem);
  width: 100%;
}
.original_content p {
  font-size: 4em;
  width: 100%;
  text-align: center;
}
.awards_details_section {
  background: url(../images/awards_details_bg.jpg) no-repeat;
  background-position: center;
  background-size: cover;
}
.awards_details_content p {
  font-size: 20px;
  text-align: justify;
}
.awards_details_content .container, .faq_content .container {
  max-width: 1280px;
}
.faq_content .container {
  width: 90vw;
}
.awards_details_content .container {
  max-width: 940px;
}
.top_diamond {
  position: absolute;
  top: 0;
  right: 15%;
  max-width: 550px;
  max-width: 30%;
  transform: translateY(-58%);
}
.bottom_diamond {
  position: absolute;
  top: 108%;
  left: 15%;
  max-width: 550px;
  max-width: 30%;
  transform: translateY(-41%);
}
.awards_img {
  position: absolute;
  width: 86%;
  top: -30%;
  left: 50%;
  transform: translateX(-50%);
}
.awards_box {
  text-align: justify;
  position: relative;
  transform-style: preserve-3d;
  transition: all .4s ease-in-out;
}
.awards {
  display: flex;
  min-height: calc(100dvh - 8rem);
  flex-direction: column;
  justify-content: start;
}
.awards .awards_box:hover {
  scale: 1.03;
}
.best_performing_bg, .bestlocalBG {
  transition: all .3s ease-in-out;
}
.awards .awards_box:hover .best_performing_bg, .awards .awards_box:hover .bestlocalBG {
  filter: grayscale(100%);
}
.awards_wrapper {
  perspective: 10px;
  max-width: 72%;
  margin: 0 auto;
}
#bestperformingText {
  transition: all 2s;
}
.awards_text:hover .best_performing_bg {
  transform: scale(1.2);
}
.best_performing_section, .best_local_marketing_section {
  padding: 4rem 0;
}
.best_performing_section .side_content {
  display: flex;
  flex-direction: column;
  justify-content: end;
  align-items: flex-end;
  min-height: calc(100dvh - 8rem);
}
.side_content > div {
  width: 80%;
}
.best_performing_section .side_content > div {
  margin-left: 20%;
}
.best_local_marketing_content .side_content {
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: flex-start;
  min-height: calc(100dvh - 8rem);
}
.side_img {
  max-width: 80%;
  margin: 0 auto;
}
.best_performing_section .side_img {
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: center;
  height: 100%;
}
.best_local_marketing_content .side_img {
  display: flex;
  flex-direction: column;
  justify-content: end;
  align-items: flex-end;
  height: 100%;
}
.side_content p {
  text-align: justify;
  font-size: 16px;
}
.side_content li {
  font-size: 16px;
}
.side_content p.small {
  font-size: 13px;
  margin-top: 10px;
  text-align: left;
}
.faq_content .accordion {
  font-size: 20px;
}
.faq_content h3 {
  font-weight: 900;
  letter-spacing: 3px;
}
.prizes_section {
  background: url(../images/prizes_bg.jpg) no-repeat;
  background-position: center;
  background-size: 100% auto;
  padding: 0 !important;
}
.prize_img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  max-width: 100%;
  z-index: 1;
  padding: 0 5px;
}
.prizes_disc_section {
  background: url(../images/prizes_disc_bg.jpg) no-repeat;
  background-position: left center;
  background-size: cover;
}
.prizes_disc_content p {
  font-size: 20px;
  text-align: justify;
}
.prizes_disc_content strong, .best_local_marketing_content strong {
  font-weight: 900;
}
.prizes_disc_img {
  position: absolute;
  height: 160vh;
  top: 20%;
  right: 0;
  max-height: 220vh;
  -webkit-transform: translate(65%, -42%);
  transform: translate(65%, -42%);
}

.grand-prizes_section {
  background: url(../images/grand_prize_bg.jpg) no-repeat;
  background-position: center;
  background-size: cover;
  padding: 0 !important;
}
.grand-prizes_details_section{
  height: auto;
  padding: 2rem ;

}
.grand_awards_details_content {
  display: flex;
  justify-content: center;
  /* align-items: center; */
  height:auto;
  width: 100%;
  padding: 4rem;
}
.grand_awards_details_content strong{
  font-weight: 900;
}
.grand_awards_details_content p{
  font-size: 20px;
}
.grand_awards_details_content .row {
  --bs-gutter-x: 10rem;
}
/* .grand_prizes_content {
  display: flex;
  justify-content: center;     
  align-items: center;         
  flex-direction: column;      
  gap: 20px;                   
  height: 100vh;               
  text-align: center;
  padding: 15px;
  box-sizing: border-box;
}

.grand-prizes_img,
.grand-prizes_img1 {
  max-width: 100%;
  height: auto;
} */
.grand_prizes_content{
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;

}
.grand-prizes_img {
  position: absolute;

  left: 50%;
  -webkit-transform: translate(-50%, -160%);
  transform: translate(-50%, -160%);
  max-width: 26%;
  z-index: 1;
  padding: 0 5px;
}
.grand-prizes_img1 {
  position: absolute;

  left: 50%;
  -webkit-transform: translate(-50%, 40%);
  transform: translate(-50%, 40%);
  max-width: 100%;
  z-index: 1;
  padding: 0 5px;
}
.official_rule{
  color: white;
  /* font-size: x-large; */
  
}
/* .grand-prizes_details_section {
  background: url(../images/filmed_for_imax.png) no-repeat;
  background-position: center;
  background-size: cover;
} */
.bottom_left_diamond {
  position: absolute;
  bottom: 0;
  left: 0%;
  max-width: 550px;
  max-width: 75%;
  z-index: -1;
  /* transform: translateY(-41%); */
}
.bottom_left_diamond_mobile{
  position: absolute;
  bottom: 0;
  left: 0;
  max-width: 550px;
  max-width: 75%;
  z-index: -1;
}

.faq_section {
  background: url(../images/faq_bg.jpg) no-repeat;
  background-position: center;
  background-size: cover;
  padding: 0 !important;
}
.faq_img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  max-width: 100%;
  z-index: 1;
  padding: 0 5px;
}
.ref_downloadable_wrapper{
  justify-content: center;

}
.resources_section {
  background: url(../images/resources_bg.jpg) no-repeat;
  background-position: center;
  background-size: cover;
  padding: 0 !important;
}
.resources_img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  max-width: 100%;
  z-index: 1;
  padding: 0 20px;
}
.resources_section_content {
  background: url(../images/ref_document_bg.jpg) no-repeat;
  background-position: center bottom;
  background-size: cover;
  padding: 8rem 8rem 45vh 8rem !important;
}

/*.ref_content{
    width: 100%;
    margin: 0 auto;
}*/
.ref_content h2 {
  font-size: 50px;
  font-weight: bold;
}
.ref_content p {
  font-size: 28px;
  padding-top: 4.5%;
  padding-bottom: 4.5%;
}
.ref-col {
  margin-bottom: 1.5rem;
}
.flex-fill{
  flex: 0 0 20% !important;
   max-width: 20% !important;
}
/*.ref-col a {
  padding: 15px;
  border: #FFFFFF solid 1px;
  border-radius: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  min-height: 35vh;
  color: #FFFFFF;
  text-decoration: none;
}
.ref-col h4{
    font-size: 22px;
}
.ref-col span{
    font-size: 18px;
}
.ref-col img {
  max-width: 35%;
}*/
/*.ref-col a {

}*/
.ref-col a:hover, .ref-col a:active {
  background: url("../images/roll_over.png") no-repeat center center;
  background-size: cover;
  display: block;
}
.ref-diamond {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
}
.contact_section {
  background: url(../images/contact_bg.png) no-repeat;
  background-position: -85% center;
  background-size: 80%;
}
.contact_content {
  font-size: 18px;
}
.contact_content .row, .prizes_disc_content .row {
  min-height: calc(100dvh - 8rem);
}
.dynamic_line {
  display: inline-block;
  height: 3px;
  width: 0;
  max-width: 40vw;
  background-color: #ffffff;
  margin: .3em 0;
  /*    animation: line-animation linear both;
    animation-timeline: view();
    animation-range: contain 300px;
    animation-duration: 200ms;*/
}
.section_heading {
  position: absolute;
  right: -3%;
  rotate: -90deg;
  bottom: 10%;
  font-size: 1.2em;
}
.section_heading p {
  margin-bottom: 0;
  letter-spacing: 10px;
}
.section_heading.awards_heading {
  right: -9%;
  bottom: 24%;
}
.desktop_hide {
  display: none;
}
.footer_ul {
  display: flex;
  /* margin-top: 10vh; */
  flex-wrap: wrap;
  justify-content: center;
  padding-left: 0;
  margin-bottom: 0;
}
.footer_ul .footer_li {
  list-style: none;
  margin: 0 10px;
}
.footer_link {
  text-decoration: none;
  color: #636466;
  font-size: 14px;
  font-weight: 400;
}
.footer_link:hover {
  color: #ffffff;
}
.prizes_section {
  padding: 0;
}
.prizes_section .container-fluid {
  padding: 0;
}
.gallery-img img {
  max-height: 100%;
}
.awards_text {
  position: absolute;
  top: 32%;
  left: 5%;
}
.best_perf_text {
  top: 43%;
}
.awards_option_content .col-sm-6 {
  max-width: 45%;
}
.footer_box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 18px;
  flex-wrap: wrap;
}
.footer_logo {
  max-width: 110px;
}
.footer_right p {
  text-align: right;
  font-size: 10px;
  font-weight: 400;
  margin-bottom: 0;
}
.footer_left, .footer_right {
  min-width: 14%;
}
.name {
  font-weight: 900;
}
.top_left_logo, .top_right_logo, .bottom_right_logo, .bottom_left_logo {
  max-width: 25px;
  position: absolute;
}
.top_left_logo {
  top: 5%;
  left: 5%;
}
.top_right_logo {
  top: 5%;
  right: 5%;
}
.bottom_right_logo {
  bottom: 5%;
  right: 5%;
}
.bottom_left_logo {
  bottom: 5%;
  left: 5%;
}
.awards_details_img img {
  width: 350px;
}
.hero_text {
  animation: fadeInAnimation ease 4s;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
}
@keyframes fadeInAnimation {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.faq_section1 {
  background: url(../images/awards_details_bg.jpg) no-repeat;
  background-position: left bottom;
  background-size: cover;
}
.best_local_faq_section {
  background: url(../images/faq_local_bg.jpg) no-repeat;
  background-position: bottom right;
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
}
/* slider */
/* .slider-container {
  margin: 2rem 0;
} */
.slider-container > div {
  /*padding-bottom: 20px;*/
  width: 100%;
  /* max-width: 45.26vw; */
  margin: 0 auto;
}
.gallery-img img {
  max-width: 100%;
}
.subheading-text {
  font-size: 0.8em;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: #FFFFFF;
  padding: 2em 0 0;
  text-align: center;
}
/* / 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;
}
[dir="rtl"] .slick-slide {
  float: right;
}
.slick-slide img {
  /* display: block; */
  margin: 0 auto;
  width: 100vw;
  /*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: 50%;
  margin-top: -10px;
}
.slick-slider .slide-arrow img {
  height: 25px;
  filter: invert(1);
}
.photo-gallery.bg-pink .slick-slider .slide-arrow img {
  filter: none;
}
.slick-slider .prev-arrow {
  left: -30px;
  /*  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: -30px;
  /*  width: 0;
  height: 0;
  border-right: 0 solid transparent;
  border-left: 20px solid #ffffff;
  border-top: 15px solid transparent;
  border-bottom: 15px solid transparent;*/
}
.slide-arrow.slick-arrow.slick-disabled {
  opacity: .3;
  cursor: not-allowed;
}
.gallery-img .trailer {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding-top: 56.25%;
  border: 1px solid var(--color-primary);
}
.thumb-video-gallery {
  cursor: pointer;
  border: 1px solid var(--color-primary);
}
.slider-image {
  cursor: pointer;
  overflow: hidden;
  /* border: 1px solid var(--color-primary); */
}
.slider-container .slider-image img:hover {
  scale: 1.1;
  transition: all .3s ease-in-out;
}
.faq_section {
  padding: 4rem 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
/* FAQ Accordion */
.accordion-item:first-of-type .accordion-button {
  background: transparent;
}
.accordion-button {
  outline: none;
  padding: 5px;
  background-color: transparent;
  border: 0;
  color: #ffffff;
  font-weight: 700;
  font-size: 20px;
  text-align: justify;
}
.accordion-button:focus {
  border: 0;
  outline: 0;
  box-shadow: none;
}
.accordion-item {
  color: #ffffff;
  background-color: transparent;
  border: 0;
  margin: 1.5rem 0;
  text-align: justify;
}
.accordion-button:not(.collapsed) {
  color: #ffffff;
  background-color: transparent;
  box-shadow: none;
}
.accordion-body {
  padding: 5px;
}
.accordion-button::after {
  content: "+";
  top: -9px;
  left: -24px;
}
.accordion-button:not(.collapsed)::after {
  content: "-";
  top: 30px;
  left: -28px;
}
.accordion-button::after, .accordion-button:not(.collapsed)::after {
  background: none;
  position: absolute;
  color: #5ab4f4;
  font-size: 36px;
  font-weight: 400;
}

/* enter btn  section  */
.enter_button {
  padding: 13px 30px 17px 38px;
  font-size: 35px;
  color: white;
  background-color: black;
  border: 2px solid white;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  font-weight: 500;
}


/* Video Section Start */
.video_content{
    display: flex;
    justify-content: center;
    align-items: center;
    height: calc(100vh - 8rem);
    width: 100%;
}

.videoWrapper{
  width: 75%;
}

.play-button-wrapper {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: auto;
	pointer-events: none;
	#playButton {
		cursor: pointer;
		pointer-events: auto;
    text-align: center;
	}
}

#playButton img{
 width: 100%;
}

/* Video Section End */

@media all and (min-width:1025px) {
  .enter_button:hover {
    background-color: #f0f0f0; /* Change background color on hover */
    color: black; /* Change text color on hover */
    border-color: black; /* Change border color on hover */
  }  
}

.enter_button span
{
  letter-spacing: 0.5rem;
  font-weight: 500;
  /* margin-right: -0.5rem; */
}

.enter-btn-para
{
color: #847F7F; 
margin-top: 12px;
font-size: 1.4rem;
}
   
 

@media all and (max-width: 1760px) {
  /*  .hero_banner .hero_text{
    max-width: 55%;
  }*/
  .section_heading.awards_heading {
    right: -13%;
    bottom: 30%;
  }
  .hero_text .fadeIn span {
    font-size: clamp(2rem, 30.6122rem + -2.1769vw, 3.5rem);
  }
}
@media all and (max-width: 1680px) {
  /*  .hero_banner .hero_text{
    max-width: 60%;
  }*/
  .section_heading.awards_heading {
    right: -10%;
    bottom: 30%;
  }
  .section_heading {
    right: -4%;
  }
  .awards_wrapper {
    max-width: 80%;
  }
}
@media all and (max-width:1600px) {
  .awards_details_content p {
    font-size: 20px;
  }
  /*  .hero_banner .hero_text{
    max-width: 55%;
  }*/
  .section_heading.awards_heading {
    right: -12%;
    bottom: 30%;
  }
  .section_heading {
    right: -5%;
  }
  .awards_wrapper {
    max-width: 70%;
  }
  .best_performing_section .side_content, .best_local_marketing_section .side_content {
    min-height: calc(100dvh - 4rem);
  }

  .enter_button span {
    font-size: 20px;
  }

  .enter_button {
    padding: 11px 25px 15px 33px;
    font-size: 20px;
    
  }
  .enter-btn-para {
    margin-top: 12px;
    font-size: 1rem;
  }

  
  .grand_awards_details_content p{
    font-size: 1.2rem;
  }
  .grand_awards_details_content .row {
    --bs-gutter-x: 7rem;
  }

}
@media all and (max-width:1440px) {
  .awards_details_content p {
    font-size: 20px;
  }
  .hero_banner .hero_text {
    width: clamp(55vw, 65vw, 100vw);
  }
}
@media all and (max-width:1366px) {
  /* .bottom_left_diamond {

    top: 85%;
  } */
  .contact_content, .prizes_disc_content p, .awards_details_content p, .accordion, .accordion-button, .accordion-body {
    font-size: 16px;
  }
  .side_img {
    max-width: 86%;
    margin: 0 auto;
  }
  .container {
    max-width: 90vw;
  }
  .right_award_box {
    margin-top: 40dvh;
  }
  .section_heading {
    bottom: 15%;
  }
  .faq_content .container {
    max-width: 980px;
  }
  .awards_wrapper {
    max-width: 78%;
  }
  .resources_section_content {
    padding: 8rem 4rem 45vh 4rem !important;
  }
  .grand_awards_details_content p{
    font-size: 1.1rem;
  }
  .grand_awards_details_content .row {
    --bs-gutter-x: 6rem;
  }
}
@media all and (device-width:1280px) and (device-height: 1024px), all and (device-width:1280px) and (device-height: 960px), all and (device-width:1366px) and (device-height: 1024px) {
  /* .bottom_left_diamond {

    top: 85%;
  } */
  /* .grand-prizes_img {
   
    top: 44%;
  } */
  .awards_wrapper {
    max-width: 95%;
  }
  .side_img {
    max-width: 100%;
  }
}
@media all and (max-device-width:1280px) {
  .top_diamond {
    max-width: 250px;
  }
  .section_heading.awards_heading {
    right: -8%;
  }
  .section_heading.awards_heading {
    right: -6%;
  }
  .hero_banner .hero_text {
    max-width: 74%;
  }
  .section_heading.awards_heading {
    right: -13%;
  }


 
}
@media screen and (device-width:1280px) and (device-height:1024px) and (orientation:landscape), screen and (device-width:1280px) and (device-height:960px) and (orientation:landscape) {
  .hero_banner .hero_text {
    width: clamp(55vw, 75vw, 100vw);
  }
}
@media screen and (max-width:1200px) {
  /* .grand-prizes_img{
    top: 40%;
  } */
  .hero_banner .hero_text {
    width: clamp(55vw, 70vw, 100vw);
  }
  .ref-col a:hover, .ref-col a:active  {
    background: none;
    background-size: cover;
    display: block;
  }
  .grand_awards_details_content p{
    font-size: 1rem;
  }
  .grand_awards_details_content .row {
    --bs-gutter-x: 5rem;
  }

}
@media all and (max-device-width:1280px) and (min-device-height:1000px) {
  .right_award_box {
    margin-bottom: 12%;
  }
  .left_award_box {
    margin-top: 12%;
  }
}
@media all and (max-width:1128px) {
  
  .col-xl-7 {
    max-width: 60%;
  }
  .col-xl-5 {
    max-width: 40%;
  }
  .contact_content, .prizes_disc_content p, .side_content p, .side_content li, .awards_details_content p, .accordion, .accordion-button, .accordion-body {
    font-size: 16px;
  }
  .side_content p.small {
    font-size: 12px;
  }
  /*  .hero_banner .hero_text {
    max-width: 55%;
}*/
  .hero_text .fadeIn span {
    font-size: clamp(2rem, 30.6122rem + -2.1769vw, 3rem);
  }
}
@media all and (max-width:1024px) {
  .grand_awards_details_content{
    height: auto;
  }
  .grand_awards_details_content p{
    font-size: 1.1rem;
  }
  .grand_awards_details_content .row {
    margin-bottom: 10vh;
  }
}
@media all and (max-width:1024px) and (orientation: landscape) {
  .grand-prizes_img {
   max-width: 28%;
  }
  .col-xl-7 {
    max-width: 60%;
  }
  .col-xl-5 {
    max-width: 40%;
  }
  .prizes_disc_content .col-xl-6 {
    max-width: 50%;
  }
  .contact_content .col-xl-4 {
    max-width: 33.33%;
  }
  .nav-link:hover {
    color: #ffffff;
  }
  .nav-ul {
    display: block;
  }
  .nav-li {
    width: auto;
  }
  .nav-link {
    font-size: 25px;
  }
  /*  .hero_banner .hero_text {
    max-width: 70%;
  }*/
  .hero_banner .hero_text {
    width: clamp(55vw, 90vw, 100vw);
  }
  .hero_text .fadeIn span {
    font-size: clamp(2rem, 30.6122rem + -2.1769vw, 3rem);
  }
}
@media screen and (max-width: 1000px) and (max-height: 650px) and (orientation: landscape) {
  .mobile_hide {
    display: none;
  }
  .nav-ul {
    display: block;
  }
  .nav-li {
    width: auto;
  }
  .nav-link {
    font-size: 25px;
  }
  .desktop_hide {
    display: block;
  }
  .container {
    padding: 0 10%;
    max-width: 100%;
  }
  .awards_details_content p {
    text-align: justify;
  }
  .top_diamond {
    position: absolute;
    top: 3%;
    right: 60%;
    max-width: 30%;
    transform: translateY(-50%);
    z-index: 0;
  }
  .bottom_diamond {
    position: absolute;
    top: 97%;
    left: 50%;
    max-width: 30%;
    transform: translate(-50%, -50%);
    z-index: 0;
  }
  .awards_details_content {
    margin: 2rem 0;
  }
  .awards_details_img img {
    max-width: 80%;
  }
  .awards_details_section {
    background: url(../images/awards_details_bg_mobile.jpg) no-repeat;
    background-position: center;
    background-size: cover;
  }
  .awards_img {
    width: 106%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  .original_section, .best_performing_section {
    min-height: auto;
  }
  .prizes_section {
    background: url(../images/prizes_bg_mobile.jpg) no-repeat;
    background-size: cover;
  }
  .contact_content .row, .prizes_disc_content .row {
    height: auto;
  }
  .prizes_disc_section {
    min-height: auto;
  }
  .prizes_disc_content {
    margin-bottom: 5rem;
  }
  .prizes_disc_img {
    position: absolute;
    top: 10%;
    right: -3%;
    width: 70vw;
    rotate: 119deg;
    height: auto;
  }
  .contact_content, .prizes_disc_content p, .side_content p, .side_content li, .awards_details_content p {
    font-size: 22px;
  }
  .prizes_disc_content .col-xl-6 {
    max-width: 100%;
  }
  .side_content p.small {
    font-size: 18px;
  }
  .contact_list {
    margin-bottom: 50vh;
  }
  .contact_section {
    background-size: 129vw auto;
    background-position: -33vw bottom;
  }
  .section_heading {
    position: static;
    rotate: 0deg;
    font-size: 1.2em;
    text-align: center;
  }
  /* .original_content{
    height: auto;
  } */
  .nav-link:hover {
    color: #ffffff;
  }
  .col-xl-5, .col-xl-7 {
    width: 100%;
  }
  .text_img {
    text-align: center;
  }
  .col-xl-4 {
    min-width: 100%;
  }
  .col-xl-5 {
    max-width: 100%;
  }
  .col-xl-7 {
    max-width: 100%;
  }
  /*  .hero_banner .hero_text {
    margin-top: 7%;
  }*/
  .awards_details_img {
    text-align: center;
  }
  .accordion-button::after {
    content: "+";
    top: -12px;
    left: -23px;
  }
  .accordion-button:not(.collapsed)::after {
    content: "-";
    top: 25px;
    left: -23px;
  }
  .side_content > div {
    width: 100%;
  }
  .side_content > div {
    margin-left: 0;
  }
  .prizes_disc_content {
    margin: 15px 0;
  }
  .prizes_disc_content {
    margin-bottom: 30dvh;
  }
  .footer_link:hover {
    color: #636466;
  }
}
@media screen and (max-device-width: 1024px) and (orientation: portrait), screen and (max-width: 1024px) {
  .grand-prizes_img{
    max-width: 28%;
  }
  /* .bottom_left_diamond {
    top: 90%;
} */
.col-sm-6

 {
        flex: 0 0 auto;
        width: 100%;
    }

  .sitebg {
    background-size: 100% auto;
  }
  .mobile_hide {
    display: none;
  }
  .nav-ul {
    display: block;
  }
  .nav-li {
    width: auto;
  }
  .nav-link {
    font-size: 25px;
  }
  .desktop_hide {
    display: block;
  }
  .container {
    padding: 0 10%;
    max-width: 100%;
  }
  .awards_details_content p {
    text-align: justify;
  }
  .top_diamond {
    position: absolute;
    top: 3%;
    right: 60%;
    max-width: 30%;
    transform: translateY(-50%);
    z-index: 0;
  }
  .bottom_diamond {
    position: absolute;
    top: 97%;
    left: 50%;
    max-width: 30%;
    transform: translate(-50%, -50%);
    z-index: 0;
  }
  .awards_details_content {
    margin: 2rem 0;
  }
  .awards_details_img img {
    max-width: 80%;
  }
  .awards_details_section {
    background: url(../images/awards_details_bg_mobile.jpg) no-repeat;
    background-position: center;
    background-size: cover;
  }
  .awards_img {
    width: 106%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  /* .awards_details_content {
    height: calc(150vh);
} */
  .original_section, .best_performing_section {
    min-height: auto;
  }
  .prizes_section {
    background: url(../images/prizes_bg_mobile.jpg) no-repeat;
    background-size: cover;
  }
  .contact_content .row, .prizes_disc_content .row {
    height: auto;
  }
  .prizes_disc_section {
    min-height: auto;
  }
  .prizes_disc_content {
    margin-bottom: 10dvh;
  }
  .prizes_disc_img {
    position: absolute;
    top: 40%;
    right: -3%;
    width: 70vw;
    rotate: 119deg;
    height: auto;
  }
  .contact_content, .prizes_disc_content p, .side_content p, .side_content li, .awards_details_content p {
    font-size: 22px;
  }
  .side_content p.small {
    font-size: 18px;
  }
  .contact_list {
    margin-bottom: 50vh;
  }
  .contact_section {
    background-size: 129vw auto;
    background-position: -33vw bottom;
  }
  .section_heading {
    position: static;
    rotate: 0deg;
    font-size: 1.2em;
    text-align: center;
  }
  /* .original_content{
    height: auto;
  } */
  .nav-link:hover {
    color: #ffffff;
  }
  .col-xl-5 {
    max-width: 100%;
  }
  .col-xl-7 {
    max-width: 100%;
  }
  .hero_banner .hero_text {
    max-width: 86%;
    width: clamp(55vw, 74vw, 100vw);
  }
  .col-lg-4 {
    width: 100%;
  }
  .hero_text .fadeIn span {
    font-size: clamp(2rem, 30.6122rem + -2.1769vw, 1.8rem);
  }
  .awards_details_img {
    text-align: center;
  }
  .accordion-button::after {
    content: "+";
    top: -12px;
    left: -23px;
  }
  .accordion-button:not(.collapsed)::after {
    content: "-";
    top: 25px;
    left: -23px;
  }
  .side_content > div {
    width: 100%;
  }
  .text_img {
    text-align: center;
  }
  .side_content > div {
    margin-left: 0;
  }
  .best_performing_section, .best_performing_section .side_content {
    min-height: auto;
  }
  .footer_link:hover {
    color: #636466;
  }
  .resources_section {
    background: url("../images/resources_bg_m.jpg") no-repeat;
    background-size: cover;
  }
  
  .resources_section_content {
    background: url(../images/ref_document_bg_m.jpg) no-repeat;
    padding: 8rem 4rem 35rem 4rem !important;
    background-size: cover;
  }
  .ref_content p {
    font-size: 30px;
    padding-top: 3%;
    padding-bottom: 2%;
  }
  /*  .ref_downloadable_wrapper {
    grid-template-columns: 1fr 1fr;
    gap: 8%;
  }*/
  /* .ref-col {
    flex: 0 0 auto;
    width: 50%;
  } */
  .flex-fill{
    flex: 0 0 auto !important;
     max-width: 50% !important;
  }
  
}

@media all and (device-width:1280px) and (device-height: 1024px) and (orientation:landscape), all and (device-width:1280px) and (device-height: 960px) and (orientation:landscape), all and (device-width:1366px) and (device-height: 1024px) and (orientation:landscape) {
  .enter_button:hover {
    background-color: black; /* Reset to default */
    color: white;
    border-color: white;
  }
}

@media all and (device-width:1280px) and (device-height: 1024px) and (orientation:portrait), all and (device-width:1280px) and (device-height: 960px) and (orientation:portrait), all and (device-width:1366px) and (device-height: 1024px) and (orientation:portrait) {
  .enter_button:hover {
    background-color: black; /* Reset to default */
    color: white;
    border-color: white;
  }
}

@media all and (max-width:992px) {
  .resources_section_content {
   
    padding: 8rem 4rem 28rem 4rem !important;
 
  }
  .faq_img{
    max-width: 55%;
  }
  .bottom_left_diamond {
    display: none;
  }
  /* .grand-prizes_img {
    position: absolute;
    top: 45%;
  } */
  .col-sm-6 {
    width: 100%;
    padding: 15px;
  }

  /* .bottom_left_diamond {
    position: absolute;
    top: 93%;
    left: 0%;
    max-width: 75%;
    transform: translateY(-50%);
  } */
  .awards_details_content {
    margin: 4rem 0;
  }
  .prizes_disc_content {
    margin-top: 4rem;
  }
  .original_content p {
    font-size: 2em;
  }
  .contact_content, .prizes_disc_content p, .side_content p, .side_content li, .awards_details_content p {
    font-size: 18px;
  }
  .side_content p.small {
    font-size: 14px;
  }
  /* .hero_banner .hero_text {
   max-width: 86%;
      width: clamp(55vw, 95vw, 100vw);
      max-width: 100%;
  } */
  .hero_text .fadeIn span {
    font-size: clamp(1rem, 30.6122rem + -0.1769vw, 2.2rem);
    letter-spacing: 2px;
  }
  h1.fadeIn span:nth-of-type(6), h1.fadeIn span:nth-of-type(7) {
    width: 48%;
  }
  .footer_box {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .footer_right p {
    text-align: center;
  }
  .footer_left, .footer_right {
    min-width: auto;
  }

  .video_section{
    min-height: auto;
  }

  .video_content{
    display: flex;
    justify-content: center;
    align-items: center;
    height: auto;
    width: 100%;
}

  .videoWrapper{
    width: 96%;
  }
  #playButton img{
    width: 50%;
   }
   .nav-container{
    padding-top: 10px;
   }
   
}
@media all and (max-width:750px) {
  /* .grand-prizes_img {
    position: absolute;
    top: 45%;
  } */
  .awards_details_content p {
    font-size: 16px;
  }
  .contact_content, .prizes_disc_content p, .side_content p, .side_content li, .awards_details_content p, .faq_content p, .faq_content .accordion-button, .faq_content .accordion, .faq_content .accordion-body {
    font-size: 16px;
  }
  .side_content p.small {
    font-size: 10px;
  }
  .ref_content h2 {
    font-size: 30px;
  }
  .ref_content p {
    font-size: 17px;
    margin-bottom: 0;
  }
  .ref_downloadable_wrapper {
    margin-top: 4rem;
  }
}
@media all and (max-width:992px) and (orientation:landscape) {
  .resources_section_content {
   
    padding: 8rem 4rem 30rem 4rem !important;
 
  }
  .nav-link
 {
        font-size: 18px;
    }

  .awards_details_content {
    height: auto;
  }
  .top_diamond {
    max-width: 25%;
  }
  .bottom_diamond {
    max-width: 25%;
  }
  .prizes_disc_content p {
    padding: 0 10% 0 0;
  }
  .prizes_disc_img {
    top: 8%;
  }
  .bottom_diamond {
    top: 96%;
  }
  .contact_content .col-xl-4 {
    max-width: 50%;
  }
  .contact_section {
    background-size: 55%;
  }
  .col-xl-5, .col-xl-7 {
    max-width: 100%;
  }
  .contact_content, .prizes_disc_content p, .side_content p, .side_content li, .awards_details_content p, .faq_content p, .faq_content .accordion-button, .faq_content .accordion {
    font-size: 16px;
  }
  .side_content p.small {
    font-size: 12px;
  }
  .hero_banner .hero_text {
    /* margin-top: 13%; */
    max-width: 70vw;
  }
  .nav-container{
    padding-top: 10px;    
   }
   .nav-ul {
    display: flex;
  }
  .nav-li {
    width: 50%;
  }
}
@media all and (max-width: 589px) and (min-width: 501px) {
  .hero_text .fadeIn span {
    font-size: clamp(1rem, 30.6122rem + -0.1769vw, 1.8rem);
    letter-spacing: 2px;
  }
  .hero_banner .hero_text {
    /*    max-width: 86%;*/
    width: clamp(55vw, 95vw, 100vw);
    max-width: 100%;
  }
}

/*  For Enter button  */
@media all and (max-width:560px) {
  .awards_details_content {
    height: auto;
  }
  .footer_logo {
    margin-bottom: 10px;
    max-width: 100px;
  }
  .enter-btn-para {
    margin-top: 5px;
    font-size: 0.8rem;
}
.intro_text {
  margin-top: -191px;
}

.enter_button {
  padding: 10px 13px 14px 21px;
  font-size: 20px;
  letter-spacing: 0.1em;
}
}
 
@media only screen and (max-width: 915px) and (orientation: landscape) {
  .intro_text {
    margin-top: -150px;
}

}
/* XXXXXXXXX Enter button  XXXXXXXXX*/



@media all and (max-width:500px) and (orientation: portrait) {
  .grand_awards_details_content {
    display: flex
;
    justify-content: center;
  
    height: auto;
    width: 100%;
    padding: 0rem;
}
  .flex-fill{
    flex: 0 0 auto !important;
     /* max-width: 100% !important; */
  }
  /* .grand-prizes_img {
    
    top: 45%;
  } */
  /* .bottom_left_diamond {
    position: absolute;
    top: 95%;
        left: 0%;
        max-width: 90%;
  } */
  .prizes_disc_content {
    margin-bottom: 25dvh;
  }
  .prizes_disc_img {
    position: absolute;
    top: 60%;
    right: -3%;
    width: 70vw;
    rotate: 119deg;
    height: auto;
  }
  .hero_text .fadeIn span {
    font-size: clamp(1rem, 30.6122rem + -0.1769vw, 1.6rem);
    letter-spacing: 2px;
  }
  .hero_banner .hero_text {
    /*    max-width: 86%;*/
    width: clamp(55vw, 95vw, 100vw);
    max-width: 100%;
  }
  .resources_section_content {
    background: url(../images/ref_document_bg_m.jpg) no-repeat;
    padding: 10px 1rem 14rem 10px !important;
    background-size: cover;
  }
  .faq_section {
    background: url(../images/FAQ_all.png) no-repeat;
    background-size: cover;
  }
  .faq_img{
    display: none !important;
  }
  .grand-prizes_section {
    background: url(../images/Grand_Prize_bg.png) no-repeat;
   background-size: cover;
  }
  
  /*        .ref-col {
        min-height: 28vh;
    }
  .ref-col h4 {
    font-size: 14px;
      margin: 0;
      padding-bottom: 5px;
  }*/
  .ref_content h2 {
    font-size: 30px;
    padding-top: 3rem;
  }
  .ref_content p {
    font-size: 17px;
    margin-bottom: 0;
  }
  .ref_downloadable_wrapper {
    margin-top: 3rem;
  }
}
@media all and (max-width:320px) and (orientation: portrait) {
  .hero_text .fadeIn span {
    font-size: clamp(1rem, 30.6122rem + -0.1769vw, 1.4rem);
    letter-spacing: 2px;
  }
}
@media all and (min-width:1024px) and (max-height:800px) {
  .intro_text {
    margin-top: -15%;
  }
  /* .grand-prizes_img {
   
    top: 40%;
  } */
}
@media all and (min-width:1024px) and (max-height:750px) {
  .intro_text {
    margin-top: -13%;
  }
}
@media all and (min-width:1600px) and (max-height:750px) {
  .intro_text {
    margin-top: -10%;
  }
}
@media all and (min-width:1600px) and (max-height:800px) {
  .intro_text {
    margin-top: -12%;
  }
}

@media all and (min-width:1600px) and (max-height:750px) {
  .intro_text {
    margin-top: -10%;
  }
}

@media all and (device-width:780px) and (device-height: 360px) and (orientation:landscape) {
  .enter_button {
    padding: 7px 20px 11px 28px;
    font-size: 20px;
}

.intro_text {
  margin-top: -140px;
}
}

@media all and (device-width:390px) and (device-height: 844px) and (orientation:portrait) {
  

.intro_text {
  margin-top: -280px;
}
}
@media all and (device-width:1024px) and (device-height: 1366px) and (orientation:portrait) {
  

  /* .grand-prizes_img{
    top:45%
  } */
  }
