*
{
	font-family: 'Poppins-Regular';
	text-decoration: none !important;
	outline: none !important;
	scroll-behavior: smooth;
}
::-webkit-scrollbar 
{
	width: 5px;
}
::-webkit-scrollbar-track
{
	background: #bdc3c7;
	border-radius: 30px;
}
::-webkit-scrollbar-thumb
{
	width: 5px;
	background: #2c3e50;
	border-radius: 30px;
}
ul , li
{
	list-style: none;
}
/*font-face define*/
@font-face
{
	font-family: 'BebasNeue-Regular';
	src: url('../fonts/BebasNeue-Regular.ttf');
}
@font-face
{
	font-family: 'Poppins-Black';
	src: url('../fonts/Poppins-Black.ttf');
}
@font-face
{
	font-family: 'Poppins-Bold';
	src: url('../fonts/Poppins-Bold.ttf');
}
@font-face
{
	font-family: 'Poppins-Light';
	src: url('../fonts/Poppins-Light.ttf');
}
@font-face
{
	font-family: 'Poppins-Medium';
	src: url('../fonts/Poppins-Medium.ttf');
}
@font-face
{
	font-family: 'Poppins-Regular';
	src: url('../fonts/Poppins-Regular.ttf');
}
@font-face
{
	font-family: 'Poppins-SemiBold';
	src: url('../fonts/Poppins-SemiBold.ttf');
}
/*all variables define*/
:root
{
	--bebas-font: 'BebasNeue-Regular';
	--main-heading-color: #1f1f1f;
	--main-heading-color: #666;
	--main-button-color: #0035bf;
	--heading-pattern-center: #d40011;
	--heading-stroke: #11009f;
	--nav-background:#000494;
	--upper-nav-bg: #430094;
}
/*global define*/
.main-heading
{
	font-size: 45px;
	font-family: var(--bebas-font);
}
.sub-heading
{
	font-size: 28px;
	font-family: var(--bebas-font);
}
.sub2-heading
{
	font-size: 22px;
	font-family: var(--bebas-font);
}
body
{
	margin: 0;
	padding: 0;
}
.upper-nav
{
	position: relative;
	display: flex;
	justify-content: space-between;
}
.back_top
{
	position: fixed;
	bottom: 20px;
	right: 20px;
	z-index: 999;
	opacity: 0;
	visibility: hidden;
	transition: .4s ease;
}
.back_top.active
{
	opacity: 1;
	visibility: visible;
}
.back_top button
{
	width: 45px;
	height: 45px;
	color: #fff;
	font-size: 20px;
	background: #0c59db;
	border-radius: 0px;
}
.back_top button:hover
{
	color: #fff;
}
.upper-nav .left-side,
.upper-nav .right-side
{
	width: 40%;
	background: var(--upper-nav-bg);
}
.upper-nav .left-side p
{
	color: #fff;
	font-size: 14px;
	letter-spacing: 1px;
	font-weight: 500;
	display: flex;
	justify-content: space-around;
	padding-right: 30px;
}
.upper-nav .right-side p
{
	color: #fff;
	font-size: 14px;
	font-weight: 500;
	padding: 0 30px;
}
.upper-nav .right-side ul
{
	display: flex;
	justify-content: flex-end;
}
.upper-nav .right-side li
{
	margin: 0 10px;
}
.upper-nav .left-side
{
	padding: 12px 0px;
	clip-path: polygon(0 0, 100% 0%, 90% 100%, 0% 100%);
}
.upper-nav .right-side
{
	text-align: right;
	float: right;
	padding: 12px 0px;
	clip-path: polygon(0 0, 100% 0%, 100% 100%, 10% 100%);
}
.logo
{
	position: absolute;
	top: 5px;
	left: 50%;
	transform: translateX(-50%);
}
.logo img
{
	width: 120px;
  opacity: 0;
  animation: appear .1s linear forwards;
  animation-delay: 2s;
}
.logo:after
{
  content: '';
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background: #01ff02;
  position: absolute;
  animation: rev-img 1.5s cubic-bezier(.19,1,.22,1) forwards;
  animation-delay: 1.5s;
}
@keyframes rev-img
{
  0%
  {
    left: 0;
    width: 0%;
  }
  50%
  {
    width: 120px;
    left: 0;
  }
  100%
  {
    left: 120px;
    width: 0%;
  }
}
@keyframes appear
{
  0%
  {
    opacity: 0;
  }
  100%
  {
    opacity: 1;
  }
}
.middle-nav
{
	padding: 30px 20px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.middle-nav h4
{
	font-family: 'Caviar Dreams';
	font-weight: 700;
	font-size: 22px;
	margin: 0;
}
.middle-nav .name_asso img
{
	display: none;
}
.middle-nav .social-icon ul
{
	display: flex;
	justify-content: flex-end;
}
.middle-nav .social-icon li
{
	margin: 0 10px;
}
.middle-nav .social-icon li a
{
	font-size: 20px;
	color: #1f1f1f;
}
.navbar
{
	background: var(--nav-background);
	padding: 15px 10px;
	transition: .3s ease;
}
.navbar .dropdown-menu
{
	top: 130% !important;
	transform-origin: top;
	border-left: 3px solid #0984e3;
	transform: scaleY(0);
	display: block !important;
	min-width: 12rem !important;
	transition: .3s linear;
}
.navbar .dropdown-menu a
{
	margin: 10px 0;
}
.navbar .dropdown-menu.show
{
	transform: scaleY(1);
}
.rb-nav.scrolled
{
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 999;
}
.navbar .nav-link
{
	color: #fff;
	text-transform: uppercase;
	margin-right: 50px;
}
svg {
  display: block;
  overflow: visible;
}
#banner-slider
{
	height: 100%;
	overflow: hidden;
}
.slider-container {
  position: relative;
  height: 100vh;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  cursor: all-scroll;
}

.slider-control {
  z-index: 2;
  position: absolute;
  top: 0;
  width: 12%;
  height: 100%;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  will-change: opacity;
  opacity: 0;
}
.slider-control.inactive:hover {
  cursor: auto;
}
.slider-control:not(.inactive):hover {
  opacity: 1;
  cursor: pointer;
}
.slider-control.left {
  left: 0;
  background: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.18)), to(rgba(0, 0, 0, 0)));
  background: linear-gradient(to right, rgba(0, 0, 0, 0.18) 0%, rgba(0, 0, 0, 0) 100%);
}
.slider-control.right {
  right: 0;
  background: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0)), to(rgba(0, 0, 0, 0.18)));
  background: linear-gradient(to right, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.18) 100%);
}

.slider-pagi {
  position: absolute;
  z-index: 3;
  left: 50%;
  bottom: 2rem;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  font-size: 0;
  list-style-type: none;
}
.slider-pagi__elem {
  position: relative;
  display: inline-block;
  vertical-align: top;
  width: 2rem;
  height: 2rem;
  margin: 0 0.5rem;
  border-radius: 50%;
  border: 2px solid #fff;
  cursor: pointer;
}
.slider-pagi__elem:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 1.2rem;
  height: 1.2rem;
  background: #fff;
  border-radius: 50%;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
  -webkit-transform: translate(-50%, -50%) scale(0);
          transform: translate(-50%, -50%) scale(0);
}
.slider-pagi__elem.active:before, .slider-pagi__elem:hover:before {
  -webkit-transform: translate(-50%, -50%) scale(1);
          transform: translate(-50%, -50%) scale(1);
}

.slider {
  z-index: 1;
  position: relative;
  height: 100%;
}
.slider.animating {
  -webkit-transition: -webkit-transform 0.5s;
  transition: -webkit-transform 0.5s;
  transition: transform 0.5s;
  transition: transform 0.5s, -webkit-transform 0.5s;
  will-change: transform;
}
.slider.animating .slide__bg {
  -webkit-transition: -webkit-transform 0.5s;
  transition: -webkit-transform 0.5s;
  transition: transform 0.5s;
  transition: transform 0.5s, -webkit-transform 0.5s;
  will-change: transform;
}

.slide {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.slide.active .slide__overlay,
.slide.active .slide__text {
  opacity: 1;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
.slide__bg {
  position: absolute;
  top: 0;
  left: -50%;
  width: 100%;
  height: 100%;
  background-size: cover;
  will-change: transform;
}
.slide:nth-child(1) {
  left: 0;
}
.slide:nth-child(1) .slide__bg {
  left: 0;
  background-image: url("../img/banner.png");
}
.slide:nth-child(1) .slide__overlay-path {
  fill: rgba(0,0,0,.3);
}
@media (max-width: 991px) {
  .slide:nth-child(1) .slide__text {
    background-color: rgba(233, 156, 126, 0.8);
  }
}
.slide:nth-child(2) {
  left: 100%;
}
.slide:nth-child(2) .slide__bg {
  left: -50%;
  background-image: url("../img/banner.png");
}
.slide:nth-child(2) .slide__overlay-path {
  fill: #e1ccae;
}
@media (max-width: 991px) {
  .slide:nth-child(2) .slide__text {
    background-color: rgba(225, 204, 174, 0.8);
  }
}
.slide:nth-child(3) {
  left: 200%;
}
.slide:nth-child(3) .slide__bg {
  left: -100%;
  background-image: url("../img/banner.png");
}
.slide:nth-child(3) .slide__overlay-path {
  fill: #adc5cd;
}
@media (max-width: 991px) {
  .slide:nth-child(3) .slide__text {
    background-color: rgba(173, 197, 205, 0.8);
  }
}
.slide:nth-child(4) {
  left: 300%;
}
.slide:nth-child(4) .slide__bg {
  left: -150%;
  background-image: url("../img/banner.png");
}
.slide:nth-child(4) .slide__overlay-path {
  fill: #cbc6c3;
}
@media (max-width: 991px) {
  .slide:nth-child(4) .slide__text {
    background-color: rgba(203, 198, 195, 0.8);
  }
}
.slide__content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.slide__overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 100%;
  min-height: 810px;
  -webkit-transition: opacity 0.2s 0.5s, -webkit-transform 0.5s 0.5s;
  transition: opacity 0.2s 0.5s, -webkit-transform 0.5s 0.5s;
  transition: transform 0.5s 0.5s, opacity 0.2s 0.5s;
  transition: transform 0.5s 0.5s, opacity 0.2s 0.5s, -webkit-transform 0.5s 0.5s;
  will-change: transform, opacity;
  -webkit-transform: translate3d(-20%, 0, 0);
          transform: translate3d(-20%, 0, 0);
  opacity: 0;
}
@media (max-width: 991px) {
  .slide__overlay {
    display: none;
  }
}
.slide__overlay path {
  opacity: 0.8;
}
.slide-0 .slide__text {
  position: absolute;
  width: 100%;
  top: 12%;
  bottom: 0;
  left: 0%;
  color: #fff;
  -webkit-transition: opacity 0.5s 0.8s, -webkit-transform 0.5s 0.8s;
  transition: opacity 0.5s 0.8s, -webkit-transform 0.5s 0.8s;
  transition: transform 0.5s 0.8s, opacity 0.5s 0.8s;
  transition: transform 0.5s 0.8s, opacity 0.5s 0.8s, -webkit-transform 0.5s 0.8s;
  will-change: transform, opacity;
  opacity: 0;
}
.slide__text {
  position: absolute;
  width: 25%;
  bottom: 15%;
  left: 12%;
  color: #fff;
  -webkit-transition: opacity 0.5s 0.8s, -webkit-transform 0.5s 0.8s;
  transition: opacity 0.5s 0.8s, -webkit-transform 0.5s 0.8s;
  transition: transform 0.5s 0.8s, opacity 0.5s 0.8s;
  transition: transform 0.5s 0.8s, opacity 0.5s 0.8s, -webkit-transform 0.5s 0.8s;
  will-change: transform, opacity;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  opacity: 0;
}
@media (max-width: 991px) {
  .slide__text {
    left: 0;
    bottom: 0;
    width: 100%;
    height: 20rem;
    text-align: center;
    -webkit-transform: translateY(50%);
            transform: translateY(50%);
    -webkit-transition: opacity 0.5s 0.5s, -webkit-transform 0.5s 0.5s;
    transition: opacity 0.5s 0.5s, -webkit-transform 0.5s 0.5s;
    transition: transform 0.5s 0.5s, opacity 0.5s 0.5s;
    transition: transform 0.5s 0.5s, opacity 0.5s 0.5s, -webkit-transform 0.5s 0.5s;
    padding: 0 1rem;
  }
}
.slide__text-heading {
  font-family: "Polar", Helvetica, Arial, sans-serif;
  font-size: 22px;
  margin-bottom: 2rem;
}
@media (max-width: 991px) {
  .slide__text-heading {
    line-height: 20rem;
    font-size: 3.5rem;
  }
}
.slide__text-desc {
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  font-size: 20px;
  margin-bottom: 1.5rem;
}
@media (max-width: 991px) {
  .slide__text-desc {
    display: none;
  }
}
.slide__text-link {
  z-index: 5;
  display: inline-block;
  position: relative;
  padding: 0.5rem;
  cursor: pointer;
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  font-size: 2.3rem;
  -webkit-perspective: 1000px;
          perspective: 1000px;
}
@media (max-width: 991px) {
  .slide__text-link {
    display: none;
  }
}
.slide__text-link:before {
  z-index: -1;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  -webkit-transform-origin: 50% 100%;
          transform-origin: 50% 100%;
  -webkit-transform: rotateX(-85deg);
          transform: rotateX(-85deg);
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
  will-change: transform;
}
.slide__text-link:hover:before {
  -webkit-transform: rotateX(0);
          transform: rotateX(0);
}
.banner-welcome,
.banner-heading
{
	font-family: 'Caviar Dreams';
	color: #fff;
}
.banner-welcome
{
	font-size: 50px;
	padding: 0 4em;
	margin-bottom: 1.5em;
}
.banner-heading
{
	text-align: center;
	font-size: 8em;
	font-weight: 700;
	line-height: 100px;
	text-shadow: 0px 0px 10px rgba(0,0,0,.4);
}
.banner-heading span
{
	font-family: 'Caviar Dreams';
	font-size: 60px;
	font-weight: 400;
}
.about-content,
.video-box
{
	height: 100%;
}
.about-content .main-heading
{
	position: relative;
}
.about-content .main-heading:before
{
	content: '';
	position: absolute;
	top: 0;
	left: 25%;
	height: 1px;
	width: 100px;
	background: #666;
}
.about-content .main-heading:after
{
	content: '';
	position: absolute;
	bottom: 0;
	right: 25%;
	height: 1px;
	width: 100px;
	background: #666;
}
.about-content p
{
	line-height: 30px;
}
.video-box .imgbx
{
	position: relative;
	width: 100%;
	height:300px;
}
.video-box video
{
	width: 100%;
	height: 300px;
	object-fit: cover;
	object-position: 50% 40%;
}
.video-box .play-btn
{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,.5);
	display: flex;
	justify-content: center;
	align-items: center;
}
.video-box .play-btn .icon
{
	position: relative;
	width: 60px;
	height: 60px;
	background: #fff;
	border-radius: 50%;
	color: #ff2a42;
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 2;
	cursor: pointer;
}
.video-box .play-btn .icon:before
{
	content: '';
	position: absolute;
	top: -10px;
	left: -10px;
	width: 80px;
	height: 80px;
	background: rgba(255,255,255,.5);
	border-radius: 50%;
	z-index: -1;
	transform: scale(1);
	transition: .4s ease;
}
.video-box .play-btn .icon:hover:before
{
	transform: scale(3);
	opacity: 0;
	visibility: hidden;
}
#events
{
	padding: 30px 0;
	width: 100%;
	background: #edeff4;
}
.event-info .date
{
	font-size: 50px;
	font-family: 'Poppins-Bold';
	color: #1f1f1f;
}
.event-info .date span
{
	font-size: 25px;
	margin-left: 5px;
}
.event-info .time
{
	font-size: 18px;
	font-family: 'Poppins-SemiBold';
	color: #0060bf;
}
.event-info .day
{
	font-size: 20px;
	color: #1f1f1f;
	font-family: 'Poppins-SemiBold';
}
.event-pic img
{
	width: 100%;
	object-fit: cover;
}
.event-grid .event-desc
{
	position: relative;
	background: #fff;
	padding: 20px;
}
.event-grid .event-desc:before
{
	content: '';
	position: absolute;
	top: 0;
	left: -20px;
	width: 30px;
	height: 30px;
	clip-path: polygon(100% 0, 0% 100%, 100% 100%);
	background: #fff;
	transform: rotate(-90deg);
}
.sec-head
{
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
}
.head-ptr
{
  position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
  transform-origin: left;
  transform: scaleX(0);
  transition: .5s;
  transition-delay: .5s;
  z-index: 1;
}
.head-ptr:before
{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--heading-pattern-center);
  transform-origin: right;
  transition: .5s ;
  transition-delay: 0s;
  z-index: 1;
}
.head-ptr.active
{
  transform: scaleX(1);
  transition-delay: 0s;
}
.head-ptr.active:before
{
  transform: scaleX(0);
  transition-delay: 0.5s;
}
.sec-head span
{
	position: relative;
	color: #fff;
	background: var(--heading-pattern-center);
	width: 245px;
	height: 60px;
	line-height: 60px;
	letter-spacing: 2px;
	clip-path: polygon(0 0, 85% 0, 100% 100%, 15% 100%);
	display: block;
}
.sec-head .heading-stroke
{
	width: 60px;
	height: 60px;
	background: var(--heading-stroke);
	clip-path: polygon(0 0, 40% 0, 100% 100%, 60% 100%);
}
.sec-head .heading-stroke.left
{
	margin-right: -30px;
}
.sec-head .heading-stroke.right
{
	margin-left: -30px;
}
#events .sec-head .swiper-container
{
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	right: 0;
	width: 10%;
}
#events .swiper-button-next
{
	background: url(../img/next.svg);
}
#events .swiper-button-prev
{
	background: url(../img/next.svg);
	transform: rotate(-180deg);
}
#events .swiper-button-next,#events .swiper-button-prev {
    position: absolute;
    top: 50%;
    width: 50px;
    height: 44px;
    margin-top: -22px;
    z-index: 10;
    border: 2px solid #1f1f1f;
    cursor: pointer;
    background-size:20px 20px;
    background-position: center;
    background-repeat: no-repeat;
}
#videos
{
  position: relative;
  background: url(training.jpg) no-repeat;
  background-size: cover;
  z-index: 1;
}
#videos .video-grid
{
  position: relative;
}
#videos .video-grid .video-menu
{
  position: relative;
  width: 100%;
  height: 400px;
  overflow-y: auto;
}
#videos .video-grid .video-menu::-webkit-scrollbar {
  -webkit-appearance:none;
  appearance:none;
}

#videos .video-grid .video-menu li
{
  position: relative;
  list-style: none;
  overflow: hidden;
}
#videos .video-grid .video-menu li img
{
  width: 100%;
  height: 300px;
  object-fit: cover;
  margin-bottom: 20px;
  box-shadow: 2px 2px 15px rgba(0,0,0,.6);
  transform: scale(1);
  transition: .3s ease-in-out;
}
#videos .video-grid .video-menu li img:hover
{
  transform: scale(1.04);
}
#videos .player
{
  position: relative;
}
#videos .video-head
{
  padding: 20px 0;
}
.gallery-div h1.main-heading
{
	position: relative;
}
.gallery-div h1.main-heading:before
{
	content: '';
	position: absolute;
	top: 50%;
	right: 0;
	width: 88%;
	height: 2px;
	background: #1f1f1f;
}
.gallery-grid .gallery-img
{
	position: relative;
	height: 100%;
	cursor: pointer;
	overflow: hidden;
}
.gallery-img img
{
	width: 100%;
}
.gallery-img .overlay
{
	position: absolute;
	top: 0%;
	left: 0%;
	width: 100%;
	height: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	background: #4f0aff;
	color: #fff;
	transform-origin: top;
	transform: scaleY(0);
	transition: .4s ease;
}
.gallery-img .overlay a
{
  color: #fff;
}
.gallery-img .overlay i
{
	position: absolute;
	bottom: 20px;
	right: 20px;
	transform: scale(1);
	transition: .2s linear;
}
.gallery-img:hover .overlay
{
	height: 100%;
	transform: scaleY(1);
}
.gallery-img .overlay i:hover
{
	transform: scale(1.5);
}
.more-info-grid .info-div
{
	padding: 20px 0 0;
	box-shadow: 0px 0px 10px rgba(0,0,0,.3);
	border-radius: 10px;
	height: 100%;
}
.info-div
{
	overflow: hidden;
}
.info-div .list-div
{
	height: 100%;
	box-shadow: 0px 0px 10px rgba(0,0,0,.3);
	border-radius: 5px;
	border-left: 3px solid #ff1d25;
}
.list-div.result-list
{
	padding: 20px;
}
.info-div .list-div h4
{
	letter-spacing: 1px;
	margin-bottom: 15px;
}
.info-div .list-div ul li
{
	position: relative;
	padding: 5px 0;
}
.info-div .list-div ul li:before
{
	content: '';
	position: absolute;
	margin-left: -10px;
	top: 50%;
	left: -25px;
	transform: translateY(-50%);
	background: url(../img/redo.svg);
	width: 20px;
	height: 20px;
	background-size: cover;
}
.main-btn
{
	position: relative;
	width: 150px;
	padding: 10px 0;
	background: var(--main-button-color);
	color: #fff;
	font-family: 'Caviar Dreams';
	border-radius: 0px;
	font-size: 17px;
	letter-spacing: 1px;
}
.main-btn:hover
{
	color: #fff;
}
.main-btn:before
{
	content: '';
	position: absolute;
	top: -5px;
	left: -5px;
	width: 158px;
	height: 55px;
	border: 1px solid var(--main-button-color);
	transition: .2s linear;
}
.main-btn:hover:before
{
	transform: scale(1.1);
	opacity: 0;
	visibility: hidden;
}
.list-div .news-grid
{
	padding: 10px 0;
	border-bottom: 1px solid rgba(0,0,0,.3);
}
.list-div.news-sec
{
  height: 365px;
}
.list-div .news-pic,
.list-div .news-desc
{
	height: 100%;
}
.list-div .news-pic
{
  position: relative;
}
.list-div .news-pic img
{
	width: 100%;
}
.news-pic span
{
  position: absolute;
  top: 0;
  left: 0;
  padding:5px 20px;
  width: 100%;
  font-size: 12px;
  font-weight: 600;
  display: block;
  text-transform: uppercase;
  clip-path: polygon(0 0, 100% 0%, 85% 100%, 0% 100%);
  background: var(--heading-pattern-center);
  color: #fff;
  animation: coloring 4s linear infinite;
}
.list-div .news-desc h3
{
	font-size: 22px;
	font-family: 'Poppins-SemiBold';
	color: #2017c9;
}
.list-div .news-desc p
{
	font-size: 14px;
}
#team
{
	position: relative;
	width: 100%;
	background: #f4f4f4;
	padding-top: 6em;
	padding-bottom: 6em;
}
#team .line
{
	position: absolute;
	top: 50px;
	left: 55%;
	transform: translateX(-50%) rotate(-45deg);
	width: 70px;
	height: 1px;
	background: rgba(0,0,0,.5);
}
.team-sub h1
{
	position: relative;
	z-index: 2;
	margin-bottom: 2em;
}
.team-sub h1:before
{
	content: 'OUR TEAM';
	position: absolute;
	top: -30px;
	left: 50%;
	transform: translateX(-50%);
	color: rgba(0,0,0,0.2);
	font-size: 100px;
	z-index: 1;
}
.team-member
{
	width: 300px;
	background: #0039ff;
	transition: .3s ease;
	cursor: pointer;
}
.team-member:hover
{
	background: #f40037;
}
.team-member .member-pic img
{
	width: 100%;
	height: 280px;
	object-fit: cover;
	clip-path: polygon(0 0, 100% 0, 100% 89%, 0 100%);
}
.team-member .member-name
{
	font-family: 'Caviar Dreams';
	font-size: 27px;
	text-align: right;
	padding: 10px 20px;
	color: #fff;
}
.team-member .member-pos
{
	font-family: var(--bebas-font);
	font-size: 25px;
	color: #fff;
	padding: 10px 0;
	text-align: center;
	letter-spacing: 1px;
}
.team-member:hover .member-pos
{
	opacity: 0;
	visibility: hidden;
}
.team-member .rb-white
{
	background: #f4f4f4;
	transition: .3s;
}
.team-member .rb-white h5
{
	opacity: 0;
	visibility: hidden;
	transition: .3s;
}
.team-member:hover .rb-white
{
	background: #f40037;
}
.team-member:hover .rb-white h5
{
	opacity: 1;
	visibility: visible;
}
.team-member ul
{
	display: none;
	justify-content: center;
	align-items: center;
}
.team-member:hover ul
{
	display: flex;
}
.team-member ul li
{
	color: #fff;
	margin: 0 10px;
}
.team-member ul li a
{
	color: #fff;
}
#partners
{
	position: relative;
	width: 100%;	
	padding-top: 6em;
	padding-bottom: 6em;
}
#partners .line
{
	position: absolute;
	top: 50px;
	left: 55%;
	transform: translateX(-50%) rotate(-45deg);
	width: 70px;
	height: 1px;
	background: rgba(0,0,0,.5);
}
.partners-sub h1
{
	position: relative;
	z-index: 2;
}
.partners-sub .partners-desc
{
	font-family: 'Caviar Dreams';
	font-weight: 700;
	font-size: 17px;
	margin-bottom: 2em;
	text-align: center;
}
.partners-img
{
	position: relative;
	border: 1px solid rgba(0,0,0,.4);
	width: 100%;
	height: 170px;
	display: flex;
	justify-content: center;
	align-items: center;
	transition: .5s ease;
}
.partners-img:hover
{
	border: 1px solid rgba(0,0,0,1);
}
.partners-img:before
{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	border: 1px solid transparent;
	transform: scale(1);
	transition: transform .5s ease;
	will-change: transform;
}
.partners-img:hover:before
{
	transform: scale(.9);
	border: 1px solid #000;
}
.partners-img img
{
	width: 300px;
	opacity: .5;
	transform: scale(1);
	transition: transform .5s ease;
}
.partners-img:hover img
{
	transform: scale(.9);
	opacity: 1;
}
#contact
{
	width: 100%;
	background: #f7fcff;
}
#contact .contact-sub
{
	padding: 3em 5em;
}
#contact .contact-sub h4
{
	position: relative;
	font-size: 25px;
	font-weight: 600;
	color: #0984e3;
	margin-bottom: 40px;
}
#contact .contact-sub h4:before
{
	content: '';
	position: absolute;
	bottom: -10px;
	left: 0;
	width: 70px;
	height: 2px;
	border-radius: 10px;
	background: #0984e3;
}
#contact .contact-sub .form-side,
#contact .contact-sub .map-side
{
	height: 100%;
}
#contact .contact-sub input,
#contact .contact-sub textarea
{
	background: #fff;
	border-radius: 0px;
	border: none;
	margin-bottom: 10px;
	padding: 30px;
	font-size: 14px;
	font-weight: 500;
	outline: none !important;
	color: #6b93aa !important;
}
#contact .contact-sub input::placeholder,
#contact .contact-sub textarea::placeholder
{
	color: #6b93aa !important;
}
#contact .contact-sub textarea
{
	padding: 15px 30px;
	margin-bottom: 50px;
}
#contact .contact-sub button
{
	width: 150px;
	padding: 18px 0;
	text-align: center;
	color: #fff;
	background: #0c59db;
	border: none;
	outline: none !important;
	font-size: 14px;
	font-weight: 500;
	border-radius: 0px;
}
#contact .social-card
{
	position: relative;
	background: #f0f;
	padding: 24px 0;
	text-align: center;
	border-radius: 5px;
	color: #fff;
	overflow: hidden;
	z-index: 1;
	user-select: none;
}
#contact .social-card:before
{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 50px;
	height: 100%;
	border-radius: 0 50% 50% 0;
	transition: .3s linear;
	z-index: -1;
}
#contact .social-card:hover:before
{
	border-radius: 0px;
	width: 100%;
}
#contact .social-card.fb:before
{
	background: rgba(59,89,153 ,1);
}
#contact .social-card.tw:before
{
	background: rgba(85,172,238 ,1);
}
#contact .social-card.gm:before
{
	background: rgba(221,75,57 ,1);
}
#contact .social-card.ins:before
{
	background: rgba(228,64,95 ,1);
}
#contact .social-card.fb
{
	background: rgba(59,89,153 ,.8);
}
#contact .social-card.tw
{
	background: rgba(85,172,238 ,.8);
}
#contact .social-card.gm
{
	background: rgba(221,75,57 ,.8);
}
#contact .social-card.ins
{
	background: rgba(228,64,95 ,.8);
}
#contact .social-card h5
{
	z-index: 4;
}
footer
{
	background: #1f1f1f;
	padding: 3em 4em 1em;
}
footer .footer-abt p
{
	color: rgba(255,255,255,.3);
}
footer .footer-abt ul li
{
	margin: 0 10px;
}
footer .footer-abt ul a
{
	font-size: 23px;
	color: #fff;
}
footer .footer-link ul li
{
	margin: 0 0 10px;
}
footer .footer-link ul a
{
	text-transform: uppercase;
	font-size: 17px;
	color: rgba(255,255,255,.3);
	transition: .3s ease;
}
footer .footer-link ul a.active,
footer .footer-link ul a:hover
{
	color: #f6435f;
}
footer hr
{
	background: rgba(255,255,255,.3);
}
footer .footer-cnt p
{
	color: rgba(255,255,255,.3);
}
footer p.copyright
{
	margin-bottom: 0px;
	color: rgba(255,255,255,.3);
}
.swiper-container-horizontal>.swiper-pagination-bullets, .swiper-pagination-custom, .swiper-pagination-fraction {
    bottom: 0px;
    left: 0;
    width: 100%;
}
.swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    display: inline-block;
    border-radius: 100%;
    background: #000;
    opacity: .2;
}
.swiper-pagination-bullet-active {
    opacity: 1;
    background: #000;
}

/*About Page CSS*/
#banner_rb
{
	position: relative;
	width: 100%;
	height: 500px;
	background: url(../img/game.jpg) no-repeat;
	background-size: cover;
	color: #fff;
	z-index: 1;
	clip-path: polygon(0 0, 100% 0, 100% 90%, 0% 100%);
}
#banner_rb:before
{
	content: '';
	position: absolute;
	top: 0;
	left:0;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,.4);
	z-index: -1;
	clip-path: polygon(0 0, 100% 0, 100% 90%, 0% 100%);
}
#banner_rb h2
{
	font-size: 3em;
	margin-bottom: 20px;
}
#who_we
{
	position: relative;
	padding: 50px 0;
}
#who_we .about-content,
#who_we .about-pic
{
	height: 100%;
}
#who_we .about-content h2
{
	font-size: 2em;
	text-transform: uppercase;
	font-family: 'Poppins-SemiBold';
	color: #1f1f1f;
}
#who_we .about-content hr
{
	width: 100px;
	background: #1f1f1f;
}
#who_we .about-pic
{
	position: relative;
	margin: auto;
	width: 400px;
	height: 400px;
	z-index: 1;
}
#who_we .about-pic:before
{
	content: '';
	position: absolute;
	bottom: -10px;
	right: -10px;
	width: 300px;
	height: 300px;
	clip-path: polygon(100% 0, 0% 100%, 100% 100%);
	background: #430094;
	z-index: -1;
}
#who_we .about-pic img
{
	width: 400px;
	height: 400px;
	object-fit: cover;
}
#test .swiper-container {
  width: 100%;
  padding: 4em 0;
}
#test .swiper-container h3
{
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
  font-size: 2em;
}
#test .swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
#test .swiper-slide img
{
  position: relative;
  width: 120px;
  height: 120px;
  object-fit: cover;
  object-position: center;
  border-radius: 50%;
}
#test .swiper-slide .test-content
{
  position: relative;
  width: 70%;
}
#test .swiper-slide .test-content p
{
  margin: 20px 0;
  color: #666;
  font-weight: 300;
}
#test .swiper-slide .test-content h4
{
  text-transform: uppercase;
  font-weight: 700;
}
#test .swiper-slide .test-content span
{
  text-transform: uppercase;
  font-weight: 500;
  display: inline-block;
  font-size: 15px;
  color: #333;
}
/*About Page CSS END*/
/*Start Result Page CSS*/
.result-grid
{
  width: 100%;
  display: flex !important;
  flex-wrap: nowrap !important;
}
.result-grid .nav-item
{
  width: 45%;
  margin: auto;
}
.result-grid .result-card
{
  width: 100%;
  height: 100%;
  margin: auto;
  padding: 30px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  color: #fff;
  cursor: pointer;
}
.result-grid .result-card h2
{
  font-size: 25px;
}
.result-grid .result-card.latest
{
  background: linear-gradient(120deg, #3478ed,#1e61d3);
}
.result-grid .result-card.previous
{
  background: linear-gradient(120deg, #fa3e36, #ee2026);
}
/*End Result Page CSS*/
  ul.masory {
    list-style: none;
    column-count: 3;
    column-gap: 0.6rem;}
li.mas-grid {
  cursor: pointer;
  transition: 0.3s;
  margin-bottom: 0.6rem;
  border-radius: 0.3rem;
  overflow: hidden;
}
li.mas-grid figure {
  margin: 0;
  display: flex;
  break-inside: avoid;
}
li.mas-grid figure img {
  width: 100%;
  transition: 0.3s;
}
li.mas-grid:hover {
  transform: translateY(0.2rem);
}
li.mas-grid:hover img {
  transform: scale(1.05);
}

#rules
{
  position: relative;
  width: 100%;
  padding: 20px 0;
}
#rules .rules-sub
{
  position: relative;
  width: 90%;
  margin: 0 auto;
}
#rules .rules-sub .list
{
  position: relative;
  width: 100%;
}
#rules .rules-sub .list h2
{
  text-align: center;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 30px;
  color: #7e1416;
}
#rules .rules-sub .list ul li
{
  list-style: none;
  color: #666;
}
#rules .rules-sub .list ul li::before {
  content: "\2022";
  color: #7e1416; 
  font-weight: bold; 
  display: inline-block; 
  width: 1em; 
  font-size: 25px;
  margin-left: -1em; 
}
#rules .rules-sub .imgbx,
#rules .rules-sub .imgbx img
{
  padding: 20px 0;
  position: relative;
  width: 100%;
  margin-bottom: 10px;
}
#rules .rules-sub .imgbx img
{
  padding: 0;
}
#rules .rules-sub .imgbx .img1
{
  transform: translateY(20px);
  opacity: 0;
  visibility: hidden;
  transition: .5s;
}
#rules .rules-sub .imgbx .img2
{
  transform: translateY(-20px);
  opacity: 0;
  visibility: hidden;
  transition: .5s;
  transition-delay: 1s;
}
#rules .rules-sub .imgbx .img1.reveal,
#rules .rules-sub .imgbx .img2.reveal
{
  transform: translateY(0px);
  opacity: 1;
  visibility: visible;
  transition: .5s;
}
@media only screen and (max-width: 558px)
{
	.logo
	{
		display: none;
	}
	.navbar
	{
		padding: 10px 15px;
		display: block !important;
	}
	.navbar-toggler i
	{
		color: #fff;
		font-size: 20px;
	}
  .navbar .nav-item
  {
    text-align: center;
    margin-bottom: 10px;
  }
  .navbar .nav-link
  {
    margin-right: 0px;
  }
	.upper-nav
	{
		display: block;
	}
	.upper-nav .left-side,
	.upper-nav .right-side
	{
		width: 100%;
		background: #0c59db;
	}
	.upper-nav .left-side
	{
		padding: 10px 15px;
		clip-path: none;
	}
	.upper-nav .right-side
	{
		float: right;
		padding: 10px 15px;
		clip-path: none;
	}
	.upper-nav .right-side ul
	{
		display: flex;
		justify-content: center;
	}
	.middle-nav
	{
		clear: both;
		padding: 10px 20px 10px;
	}
	.middle-nav h4
	{
		display: none;
	}
	.middle-nav .name_asso img
	{
		display: block;
		width: 70px;
	}
	.banner-welcome
	{
		font-size: 20px;
		padding: 2em 4em 0;
		margin-bottom: 20px;
	}
	.banner-heading
	{
		text-align: center;
		font-size: 3em;
		font-weight: 700;
		line-height: 30px;
		text-shadow: 0px 0px 10px rgba(0,0,0,.4);
	}
	.banner-heading span
	{
		font-family: 'Caviar Dreams';
		font-size: 20px;
		font-weight: 400;
	}
	.slider-pagi 
	{
	    position: absolute;
	    z-index: 3;
	    left: 50%;
	    bottom: 1rem;
	    -webkit-transform: translateX(-50%);
	    transform: translateX(-50%);
	    font-size: 0;
	}
	.slider-pagi__elem 
	{
	    position: relative;
	    display: inline-block;
	    vertical-align: top;
	    width: 1rem;
	    height: 1rem;
	    margin: 0 0.4rem;
	    border-radius: 50%;
	    border: 2px solid #fff;
	    cursor: pointer;
	}
	#events .sec-head
	{
		display: block;
	}
	#events .sec-head .swiper-container
	{
		position: relative !important;
		top: 0% !important;
		transform: translateY(0%) !important;
		right: 0 !important;
		width: 100% !important;
	}
	#events .swiper-button-next
	{
		background: url(../img/next.svg);
	}
	#events .swiper-button-prev
	{
		background: url(../img/next.svg);
		transform: rotate(-180deg);
	}
	#events .swiper-button-next,#events .swiper-button-prev {
	    position: absolute;
	    top: 50%;
	    width: 30px;
	    height: 30px;
	    margin-top: -22px;
	    z-index: 10;
	    border: 2px solid #1f1f1f;
	    cursor: pointer;
	    background-size:15px 15px;
	    background-position: center;
	    background-repeat: no-repeat;
	}
	.event-grid .event-desc:before
	{
		content: '';
		position: absolute;
		top: 0;
		left: -20px;
		width: 30px;
		height: 30px;
		clip-path: polygon(100% 0, 0% 100%, 100% 100%);
		background: #fff;
		transform: rotate(-90deg);
		display: none;
	}
  #videos .grid
  {
    -webkit-box-orient:vertical;
    -webkit-box-direction:reverse;
    flex-direction: column-reverse;
  }
  #videos .video-grid .video-menu
  {
    width: 100%;
  }
  #videos .video-grid .video-menu::-webkit-scrollbar {
    -webkit-appearance:none;
    appearance:none;
  }
  #videos .video-grid .video-menu li
  {
    position: relative;
    margin: 0 20px;
    margin-bottom: 0px;
    list-style: none;
  }
  #videos .video-grid .video-menu li img
  {
    width: 100%;
    height: unset;
    margin-bottom: 20px;
  }
  #videos .video-player
  {
    width: 100% !important;
  }
	.gallery-div h1.main-heading:before
	{
		content: '';
		position: absolute;
		top: 50%;
		right: 0;
		width: 50%;
		height: 2px;
		background: #1f1f1f;
		display: none;
	}
	.partners-img img
	{
		width: 200px;
		opacity: .5;
		transform: scale(1);
		transition: transform .5s ease;
	}
	.info-div .sec-head
	{
		padding: 0 20px;
	}
	#contact .contact-sub
	{
		padding: 0em;	
	}
	footer
	{
		padding: 3em 0em 1em;
	}
	.team-sub h1:before {
    content: 'OUR TEAM';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(0,0,0,0.1);
    font-size: 60px;
    z-index: 1;
}
.navbar .dropdown-menu
{
	top: 130% !important;
	transform-origin: top;
	border-left: 3px solid #0984e3;
	transform: scaleY(0);
	display: none !important;
	min-width: 12rem !important;
	transition: .3s linear;
}
.navbar .dropdown-menu a
{
	margin: 10px 0;
}
.navbar .dropdown-menu.show
{
	transform: scaleY(1);
	display: block !important;
}
#who_we .about-pic,
#who_we .about-pic img
{
  position: relative;
  margin: auto;
  width: 250px;
  height: 300px;
  z-index: 1;
}
#who_we .about-pic:before
{
  content: '';
  position: absolute;
  bottom: -10px;
  right: -10px;
  width: 250px;
  height: 300px;
  clip-path: polygon(100% 0, 0% 100%, 100% 100%);
  background: #430094;
  z-index: -1;
}
#banner_rb h2
{
  font-size: 2em;
  margin-bottom: 20px;
}
/*result page media query*/
.result-grid
{
  width: 100%;
  display: block !important;
  flex-wrap: nowrap !important;
}
.result-grid .nav-item
{
  width: 90%;
  margin: 0 auto 10px;
}
.info-div .list-div ul li a
{
  font-size: 14px;
}
ul.masory
{
     list-style: none;
    column-count: 2;
    column-gap: 0.6rem;}
}
@media only screen and (min-width: 559px) and (max-width: 1000px)
{
	.navbar
	{
		padding: 10px 15px;
		display: block !important;
	}
	.navbar .nav-item
	{
    text-align: center;
		margin-bottom: 10px;
	}
  .navbar .nav-link
  {
    margin-right: 0px;
  }
	.navbar-toggler i
	{
		color: #fff;
		font-size: 20px;
	}
	.logo
	{
		display: none;
	}
	.upper-nav
	{
		display: block;
	}
	.upper-nav .left-side,
	.upper-nav .right-side
	{
		width: 70%;
		background: #0c59db;
	}
	.upper-nav .left-side
	{
		padding: 10px 15px;
		clip-path: polygon(0 0, 90% 0, 100% 100%, 0% 100%);
	}
	.upper-nav .right-side
	{
		float: right;
		clear: both;
		padding: 10px 55px;
		clip-path: polygon(0 0, 100% 0%, 100% 100%, 10% 100%);
	}
	.middle-nav
	{
		clear: both;
		padding: 10px 20px 10px;
	}
	.middle-nav h4
	{
		display: none;
	}
	.middle-nav .name_asso img
	{
		display: block;
		width: 100px;
	}
	.banner-welcome
	{
		font-size: 30px;
		padding: 1em 4em 0;
		margin-bottom: 20px;
	}
	.banner-heading
	{
		text-align: center;
		font-size: 3em;
		font-weight: 700;
		line-height: 50px;
		text-shadow: 0px 0px 10px rgba(0,0,0,.4);
	}
	.banner-heading span
	{
		font-family: 'Caviar Dreams';
		font-size: 30px;
		font-weight: 400;
	}
	.slider-pagi 
	{
	    position: absolute;
	    z-index: 3;
	    left: 50%;
	    bottom: 1rem;
	    -webkit-transform: translateX(-50%);
	    transform: translateX(-50%);
	    font-size: 0;
	}
	.slider-pagi__elem 
	{
	    position: relative;
	    display: inline-block;
	    vertical-align: top;
	    width: 1rem;
	    height: 1rem;
	    margin: 0 0.5rem;
	    border-radius: 50%;
	    border: 2px solid #fff;
	    cursor: pointer;
	}
	#events .sec-head
	{
		display: block;
	}
	#events .sec-head .swiper-container
	{
		position: relative !important;
		top: 0% !important;
		transform: translateY(0%) !important;
		right: 0 !important;
		width: 100% !important;
	}
	#events .swiper-button-next
	{
		background: url(../img/next.svg);
	}
	#events .swiper-button-prev
	{
		background: url(../img/next.svg);
		transform: rotate(-180deg);
	}
	#events .swiper-button-next,#events .swiper-button-prev {
	    position: absolute;
	    top: 50%;
	    width: 40px;
	    height: 40px;
	    margin-top: -22px;
	    z-index: 10;
	    border: 2px solid #1f1f1f;
	    cursor: pointer;
	    background-size:20px 20px;
	    background-position: center;
	    background-repeat: no-repeat;
	}
	.event-grid .event-desc:before
	{
		content: '';
		position: absolute;
		top: 0;
		left: -20px;
		width: 30px;
		height: 30px;
		clip-path: polygon(100% 0, 0% 100%, 100% 100%);
		background: #fff;
		transform: rotate(-90deg);
		display: none;
	}
  #videos .grid
  {
    -webkit-box-orient:vertical;
    -webkit-box-direction:reverse;
    flex-direction: column-reverse;
  }
  #videos .video-grid .video-menu
  {
    width: 100%;
  }
  #videos .video-grid .video-menu::-webkit-scrollbar {
    -webkit-appearance:none;
    appearance:none;
  }
  #videos .video-grid .video-menu li
  {
    position: relative;
    margin: 0 20px;
    margin-bottom: 0px;
    list-style: none;
  }
  #videos .video-grid .video-menu li img
  {
    width: 100%;
    height: unset;
    margin-bottom: 20px;
  }
  #videos .video-player
  {
    width: 100% !important;
  }
	.sec-head.event-sec
	{
		display: block;
	}
	.gallery-div h1.main-heading:before
	{
		content: '';
		position: absolute;
		top: 50%;
		right: 0;
		width: 50%;
		height: 2px;
		background: #1f1f1f;
		display: none;
	}
	.partners-img img
	{
		width: 200px;
		opacity: .5;
		transform: scale(1);
		transition: transform .5s ease;
	}
	#contact .contact-sub
	{
		padding: 0em;	
	}
	.team-sub h1:before {
    content: 'OUR TEAM';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(0,0,0,0.1);
    font-size: 70px;
    z-index: 1;
}
.navbar .dropdown-menu
{
	top: 130% !important;
	transform-origin: top;
	border-left: 3px solid #0984e3;
	transform: scaleY(0);
	display: none !important;
	min-width: 12rem !important;
	transition: .3s linear;
}
.navbar .dropdown-menu a
{
	margin: 10px 0;
}
.navbar .dropdown-menu.show
{
	transform: scaleY(1);
	display: block !important;
}
#who_we .about-pic,
#who_we .about-pic img
{
  position: relative;
  margin: auto;
  width: 250px;
  height: 300px;
  z-index: 1;
}
#who_we .about-pic:before
{
  content: '';
  position: absolute;
  bottom: -10px;
  right: -10px;
  width: 250px;
  height: 300px;
  clip-path: polygon(100% 0, 0% 100%, 100% 100%);
  background: #430094;
  z-index: -1;
}
/*result page media query*/
.result-grid
{
  width: 100%;
  display: block !important;
  flex-wrap: nowrap !important;
}
.result-grid .nav-item
{
  width: 90%;
  margin: 0 auto 10px;
}
.info-div .list-div ul li a
{
  font-size: 14px;
}
}
@media only screen and (max-width: 1200px)
{
	#events .sec-head .swiper-container
	{
		position: absolute;
		top: 50%;
		transform: translateY(-50%);
		right: 0;
		width: 10%;
	}
	#events .swiper-button-next
	{
		background: url(../img/next.svg);
	}
	#events .swiper-button-prev
	{
		background: url(../img/next.svg);
		transform: rotate(-180deg);
	}
	#events .swiper-button-next,#events .swiper-button-prev {
	    position: absolute;
	    top: 50%;
	    width: 30px;
	    height: 30px;
	    margin-top: -22px;
	    z-index: 10;
	    border: 2px solid #1f1f1f;
	    cursor: pointer;
	    background-size:15px 15px;
	    background-position: center;
	    background-repeat: no-repeat;
	}
}