/* ----------------------------------
Basic CSS
-------------------------------------*/
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css');
body {
    color: #000000;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.4;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
li,
div,
a {
    color: #000000;
    margin: 0;
    padding: 0;
    line-height: 1.4;
    font-family: "Montserrat", sans-serif;
    font-weight: normal;
    font-style: normal;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Montserrat", sans-serif;
    font-weight: bold;
}

a {
    -webkit-transition: all 0.3s ease-in-out 0s;
    -o-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
}

a:hover,
a:focus {
    color: inherit;
    text-decoration: none;
    border: none;
    outline: 0 none;
}

img {
    max-width: 100%;
}

.section-padding {
    padding: 80px 0;
}

.pt0 {
    padding-top: 0;
}

.pb0 {
    padding-bottom: 0;
}

/*Header*/
.header-area {
    position: relative;
    padding: 40px 0;
    background: #D51F47;
    z-index: 1;
}
.header-area::before {
    width: 100%;
    height: 100%;
    content: "";
    top: 0;
    left: 0;
    position: absolute;
    background: url(../img/header-bg.png) no-repeat scroll center center / cover;
    z-index: -1;
    opacity: 0.5;
}
.header-wrap {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	-webkit-box-align: end;
	    -ms-flex-align: end;
	        align-items: flex-end;
}
.header-wrap img {
	width: 400px;
}
.date p {
    font-size: 28px;
	color: #fff;
	margin-bottom: 10px;
}
.date p:last-child {
    margin-bottom: 0;
}
.date p span {
	width: 30px;
	display: inline-block;
	text-align: center;
	margin-right: 5px;
}

/*Banner CSS*/
.banner-area {
	background: #FFFFFF;
    position: relative;
}
.banner-content {
	text-align: center;
	z-index: 2;
}
.banner-logo img {
	background: #fff none repeat scroll 0 0;
	border-radius: 6px;
	width: 300px;
    padding: 15px;
	margin-bottom: 30px;
}
.banner-title {
	color: #000;
	font-size: 28px;
	font-weight: 700;
	text-align: center;
}
.banner-promo {
	text-align: center;
}
.banner-promo h2 {
	font-size: 28px;
	color: #000;
	font-weight: bold;
}
.banner-content span,
.banner-promo span {
	color: #D51F47;
    text-transform: uppercase;
}
a.reg-button {
    font-size: 20px;
    color: #fff;
    background: #D51F47;
    height: 55px;
    line-height: 50px;
    display: inline-block;
    border: 2px solid #fff;
    padding: 0 40px;
    border-radius: 6px;
    margin-top: 30px;
    text-transform: uppercase;
    font-weight: 600;
}
a.reg-button:hover {
	background: #fff;
	color: #D51F47;
    border: 2px solid #D51F47;
}
.banner-promo p {
	font-size: 14px;
	color: #000;
	margin-top: 30px;
}
/* Video */

.video-text p {
    font-size: 18px;
    margin-bottom: 20px;
}
.video-text p:last-child {
    margin-bottom: 0px;
}

/*Promo Button*/

.promo-btn-btn {
    text-align: center;
}
.promo-icon {
    margin-bottom: 30px;
}
.promo-icon i {
    position: relative;
    font-size: 40px;
    height: 100px;
    width: 100px;
    line-height: 100px;
    background: #D51F47;
    border-radius: 100%;
    color: #fff;
    z-index: 2;
    margin: 10px 0;
    -webkit-transition: 0.3s all ease;
    -o-transition: 0.3s all ease;
    transition: 0.3s all ease;
}
.promo-icon i:after {
    position: absolute;
    content: "";
    width: 120px;
    height: 120px;
    top: 50%;
    left: 50%;
    -webkit-transform: translate( -50%, -50%);
            -ms-transform: translate( -50%, -50%);
        transform: translate( -50%, -50%);
    background: rgba(213, 31, 71, 0.5);
    border-radius: 100%;
    z-index: -1;
    transition: 0.3s all;
}
.promo-btn-btn:hover i::after {
    width: 130px;
    height: 130px;
}
.promo-btn-btn a {
    border-radius: 6px;
    color: #D51F47;
    display: inline-block;
    font-size: 18px;
    height: 50px;
    letter-spacing: 1px;
    line-height: 48px;
    padding: 0 30px;
    text-align: center;
    text-transform: uppercase;
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    border: 1px solid #D51F47;
    width: 100%;
}

.promo-btn-btn a:hover,
.promo-btn-btn a:active,
.promo-btn-btn a:focus {
    background: #D51F47;
    color: #FFFFFF;
}



/* Video */
.exh-video {
    position: relative;
}

.video-play-button {
  position: absolute;
  z-index: 10;
  top: 50%;
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
      -ms-transform: translateX(-50%) translateY(-50%);
          transform: translateX(-50%) translateY(-50%);
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  display: block;
  width: 32px;
  height: 44px;
  /* background: #FFF; */
  border-radius: 50%;
  padding: 18px 20px 18px 28px;
}

.video-play-button:before {
  content: "";
  position: absolute;
  z-index: 0;
  left: 50%;
  top: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
      -ms-transform: translateX(-50%) translateY(-50%);
          transform: translateX(-50%) translateY(-50%);
  display: block;
  width: 80px;
  height: 80px;
  background: #D51F47;
  border-radius: 50%;
  -webkit-animation: pulse-border 1500ms ease-out infinite;
          animation: pulse-border 1500ms ease-out infinite;
}

.video-play-button:after {
  content: "";
  position: absolute;
  z-index: 1;
  left: 50%;
  top: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
      -ms-transform: translateX(-50%) translateY(-50%);
          transform: translateX(-50%) translateY(-50%);
  display: block;
  width: 80px;
  height: 80px;
  background: #D51F47;
  border-radius: 50%;
  -webkit-transition: all 200ms;
  -o-transition: all 200ms;
  transition: all 200ms;
}

.video-play-button:hover:after {
  background-color: darken(#C2185B, 10%);
}

.video-play-button img {
  position: relative;
  z-index: 3;
  max-width: 100%;
  width: auto;
  height: auto;
}

.video-play-button span {
  display: block;
  position: relative;
  z-index: 3;
  width: 0;
  height: 0;
  border-left: 32px solid #FFF;
    border-top: 22px solid transparent;
    border-bottom: 22px solid transparent;
}
.exh-video {
  display: inline-block;
}



@-webkit-keyframes pulse-border {
  0% {
    -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
            transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
            transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
    opacity: 0;
  }
}
@keyframes pulse-border {
  0% {
    -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
            transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
            transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
    opacity: 0;
  }
}

/*Countdown CSS*/
.countdown-area {
    background: #D51F47;
}
.countdown-area .sec-title {
    color: #ffffff;
}

.countdown {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}
.cdown {
	text-align: center;
	border-radius: 4px;
	background: #ffffff;
	width: 150px;
}

.cdown span {
    display: block;
    border-radius: 4px;
    font-size: 20px;
    text-align: center;
    text-transform: uppercase;
}

.cdown span strong {
    color: #000;
    display: inline-block;
    font-size: 60px;
    padding: 15px 0;
}

.cdown span p {
	border-radius: 0 0 4px 4px;
	color: #000;
	padding-bottom: 10px;
	padding-top: 10px;
	font-weight: 600;
    border-top: 2px solid #ededed;
    background: #ffffff;
}

/*Share*/
.sec-title {
	padding-bottom: 40px;
	font-size: 28px;
	font-weight: bold;
}
.share-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-left: -15px;
    margin-right: -15px;
}
.share-wrapper a {
    display: block;
    width: 100%;
    margin: 0 15px;
    border-radius: 6px;
}

.share-wrapper a:hover {
    -webkit-box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.2);
            box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.2);
}

.social-box {
    background: #eeeff0;
    padding: 40px 30px;
    border-radius: 6px;
}
.social-box .icon {
    margin-bottom: 20px;
}
.social-box .icon i {
    font-size: 80px;
    height: 140px;
    width: 140px;
    line-height: 140px;
    display: inline-block;
    background: #59a1d8;
    border-radius: 50%;
    color: #fff;
    text-align: center;
    border: 2px solid transparent;
    -webkit-transition: all 0.3s ease-in-out 0s;
    -o-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
}
.social-box .icon .fa-x-twitter {
    background: #1da1f2;
}
.social-box .icon .fa-linkedin-in {
    background: #0077b5;
}
.social-box .icon .fa-facebook-f {
    background: #3b5998;
}
.share-wrapper a:hover .social-box .icon i {
    background: transparent;
}
.share-wrapper a:hover .social-box .icon .fa-x-twitter {
    color: #1da1f2;
    border-color: #1da1f2;
}
.share-wrapper a:hover .social-box .icon .fa-linkedin-in {
    color: #0077b5;
    border-color: #0077b5;
}
.share-wrapper a:hover .social-box .icon .fa-facebook-f {
    color: #3b5998;
    border-color: #3b5998;
}
.social-box .text h3 {
    font-size: 20px;
    color: #222;
}

/*Footer CSS*/
.footer-area {
    position: relative;
    padding: 40px 0;
    background: #D51F47;
    z-index: 1;
}
.footer-area::before {
    z-index: -1;
    width: 100%;
    height: 100%;
    content: "";
    top: 0;
    left: 0;
    position: absolute;
    background: url(../img/header-bg.png) no-repeat scroll center center / cover;
    opacity: 0.5;
}
.footer-wrap h1 {
	font-size: 70px;
	text-transform: uppercase;
	line-height: 1;
	color: #fff;
	margin-bottom: 20px;
    font-weight: 900;
    font-style: italic;
}
