/*** 

====================================================================
	Main Header style
====================================================================
***/ 
#coverLoader{
    width:100%;
    height:100%;
    position:absolute;
    background-color:rgba(0,0,0,0.15);
    z-index:99999;
    display:flex;
    justify-content:center;
    align-items:center;
}
#loading-container{
    position: fixed;
	z-index: 999999999;
	width: 100%;
	height: 100vh;
	background-color:#f1f1f1;
}
.inside-loading-ring{
    width:100%;
    height:100%;
	border-radius: 50%;
	display: inline-flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
}
.inside-loading-ring > img{
    width:150px;
	filter: grayscale(25%);
	animation: from_left 1.25s ease-in-out infinite;
}
.inside-loading-ring.small > img{
    width:110px;
	filter: grayscale(25%);
	animation: from_left 1.25s ease-in-out infinite;
}

.loading-ring
{
  position:absolute;
  top:50%;
  left:50%;
  transform:translate(-50%,-50%);
  width:280px;
  height:280px;
  background:transparent;
  border:3px solid #3c3c3c;
  border-radius:50%;
  text-align:center;
  line-height:150px;
  font-family:sans-serif;
  font-size:20px;
  color:#fff000;
  letter-spacing:4px;
  text-transform:uppercase;
  text-shadow:0 0 10px #fff000;
  box-shadow:0 0 20px rgba(0,0,0,.5);
}
.loading-ring.small
{
  position:absolute;
  top:50%;
  left:50%;
  transform:translate(-50%,-50%);
  width:180px;
  height:180px;
  background:transparent;
  border:3px solid #3c3c3c;
  border-radius:50%;
  text-align:center;
  line-height:150px;
  font-family:sans-serif;
  font-size:20px;
  color:#fff000;
  letter-spacing:4px;
  text-transform:uppercase;
  text-shadow:0 0 10px #fff000;
  box-shadow:0 0 20px rgba(0,0,0,.5);
}
.loading-ring:before
{
  content:'';
  position:absolute;
  top:-3px;
  left:-3px;
  width:100%;
  height:100%;
  border:3px solid transparent;
  border-top:3px solid #b5244d;
  border-right:3px solid #b5244d;
  border-radius:50%;
  animation:animateC 2s linear infinite;
}
.loading-ring > span
{
  display:block;
  position:absolute;
  top:calc(50% - 2px);
  left:50%;
  width:50%;
  height:4px;
  background:transparent;
  transform-origin:left;
  animation:animate 2s linear infinite;
}
.loading-ring > span:before
{
  content:'';
  position:absolute;
  width:16px;
  height:16px;
  border-radius:50%;
  background:#b5244d;
  top:-6px;
  right:-8px;
  box-shadow:0 0 20px #fff;
}
@keyframes animateC
{
  0%
  {
    transform:rotate(0deg);
  }
  100%
  {
    transform:rotate(360deg);
  }
}
@keyframes animate
{
  0%
  {
    transform:rotate(45deg);
  }
  100%
  {
    transform:rotate(405deg);
  }
}


@keyframes from_left {
  0% {
    filter: grayscale(25%);
    transform: scale(1);
  }
  50% {
    filter: grayscale(0%);
    transform: scale(1.25);
  }
  100% {
    filter: grayscale(25%);
    transform: scale(1);
  }
}
/*** 

====================================================================
	Main Header style
====================================================================

***/
header{
	display: flex;
	justify-content: center;
}
.Auto-Container{
	position: relative;
	max-width: 1000px;
}
.Header-Container{
	width: 100%;
	position: absolute;
	padding:50px 40px;
	display: flex;
	z-index:10;
}
.Header-Menu{
	display: inline-flex;
	align-items: center;
}
.Icon-Menu{
	  display: inline-flex;
	  justify-content: center;
	  align-items: center;
    z-index: 12;
    width: 50px;
    height: 40px;
    float: none;
    padding: 0px;
    text-align: center;
    border-radius: 0px;
    background: none;
    border: 2px solid #ffffff;
    border-radius: 2px;
    box-shadow:0px 0px 20px rgba(23,23,23,0.15);
    color: #fff;
    transition: 0.25s;
    font-size: 25px;
}
.Icon-Menu:hover{
	cursor: pointer;
	transform: scale(1.15);
}
.Logo-Container{
	flex-grow: 1;
	display: flex;
}
.Main-Logo{
	display: inline-block;
	max-width: 200px;
}
.Top-Nav{
    height:0;
    position: absolute;
    opacity:0;
    right: 5%;
    top: 150px;
    width: 250px;
    z-index: 100;
    background-color: #ffffff;
    border: 0;
    box-shadow: 0px 0px 10px rgba(0,0,0,0.10);
    transition: 0.25s;
    overflow:hidden;
}
.Top-Nav.active{
    height:auto;
    border: 2px solid #4835ce;
    opacity:1;
}
.Top-Nav > ul > li > a{
    position: relative;
    display:inline-block;
	width:100%;
	padding: 15px 20px;
	font-size: 14px;
	color: #7c7b7b;
	transition:0.25s;
	font-family: 'Poppins', sans-serif;
}
.Top-Nav > ul > li > a:hover{
    padding-left:30px;
    font-weight:bold;
    color:#fff;
	text-decoration: underline;
	background-color: #4835ce;
}
/*** 

====================================================================
	10. Banner Section
====================================================================

***/
.banner-section{
	position:relative;
	padding-top:180px;
	margin-bottom: 100px;
	width: 100%;
	box-shadow: 0px 10px 200px 200px #bc2387;
	background-image: -ms-linear-gradient(bottom, #702fd6 0%, #bc2387 100%);
	background-image: -moz-linear-gradient(bottom, #702fd6 0%, #bc2387 100%);
	background-image: -o-linear-gradient(bottom, #702fd6 0%, #bc2387 100%);
	background-image: -webkit-gradient(linear, bottom top, right top, color-stop(0, #702fd6), color-stop(100, #bc2387));
	background-image: -webkit-linear-gradient(bottom, #702fd6 0%, #bc2387 100%);
	background-image: linear-gradient(to bottom, #702fd6 0%, #bc2387 100%);
}
.Connect-Conatiner{
	width: 100%;
	padding: 25px;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
}
.Connect-Conatiner h1{
	text-align: center;
	width: 100%;
	position:relative;
	color:#ffffff;
	font-size: 40px;
	font-weight:700;
	line-height:1.2em;
	margin-bottom:28px;
}

.Connect-Conatiner .text{
	width: 100%;
	text-align: center;
	position:relative;
	color:#ffffff;
	font-size:16px;
	line-height:1.8em;
	margin-bottom:30px;
}
#connect-form{
    width:100%;
    max-width:820px;
    position:relative;
    padding: 0 20px;
    display:flex; 
    justify-content:center;
    flex-wrap:wrap;
    
}
.Input-Row{
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 3px;
	margin: 15px 0;
	overflow: hidden;
	box-shadow:0px 0px 20px rgba(23,23,23,0.15);
	background-color: rgba(255, 255, 255, 0.5);
	color: #fff;
}
.Input-Row input{
	display: inline-block;
	width: 100%;
	height: 50px;
	font-size: 18px;
	outline: 0;
	padding: 0 10px;
	box-sizing: border-box;
	color: rgba(0, 0, 0, 0.85);
	background-color: transparent;
	outline: 0;
	color: #fff;
}
.Input-Row input::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: #fff;
  opacity: 1; /* Firefox */
}

.Input-Row input:-ms-input-placeholder { /* Internet Explorer 10-11 */
  color: #fff;
}

.Input-Row input::-ms-input-placeholder { /* Microsoft Edge */
  color: #fff;
}
.Connect-Conatiner .btn-row{
	width: 100%;
	display: flex;
	justify-content: center;
	padding: 25px 0;
}
.Input-Icon{
	width: 50px;
	height: 50px;
	display: flex;
	background-color: transparent;
	justify-content: center;
	align-items: center;
	font-size: 20px;
}
.password-row{
    opacity:1;
    transition:0.5s;
}
.password-row.fade{
    display:none;
    opacity:0;
    cursor: not-allowed;
}
.ConnectOptions{
    width:100%;
    padding:15px 0;
    display:flex;
    justify-content:space-between;
    color:#fff;
}
.connect-btn{
    color:#fff;
}
.connect-btn.active{
	position:relative;
	line-height:24px;
	color:#ffffff;
	font-size:15px;
	cursor: pointer;
	font-weight:600;
	border-radius:50px;
	background-color:#ff8048;
	text-transform:capitalize;
	padding:16px 32px 16px 32px;
	font-family: 'Poppins', sans-serif;
	box-shadow:0px 0px 20px rgba(23,23,23,0.15);
	background-image: -ms-linear-gradient(left, #F434A1 0%, #ff8442 100%);
	background-image: -moz-linear-gradient(left, #F434A1 0%, #ff8442 100%);
	background-image: -o-linear-gradient(left, #F434A1 0%, #ff8442 100%);
	background-image: -webkit-gradient(linear, left top, right top, color-stop(0, #F434A1), color-stop(100, #ff8442));
	background-image: -webkit-linear-gradient(left, #F434A1 0%, #ff8442 100%);
	background-image: linear-gradient(to right, #F434A1 0%, #ff8442 100%);
}

.connect-btn.active:hover{
	color:#ffffff;
	background-image: -ms-linear-gradient(left, #ff8442 0%, #F434A1 100%);
	background-image: -moz-linear-gradient(left, #ff8442 0%, #F434A1 100%);
	background-image: -o-linear-gradient(left, #ff8442 0%, #F434A1 100%);
	background-image: -webkit-gradient(linear, left top, right top, color-stop(0, #ff8442), color-stop(100, #F434A1));
	background-image: -webkit-linear-gradient(left, #ff8442 0%, #F434A1 100%);
	background-image: linear-gradient(to right, #ff8442 0%, #F434A1 100%);
}
.connect-options-link{
    transition:0.5s;
    text-align:center;
}
.connect-options-link.active{
    position: relative;
    font-size: 15px;
    font-weight: 600;
    padding: 17px 34px;
    display: inline-block;
    border-radius: 50px;
    color: #ffffff;
	box-shadow:0px 10px 10px 2px rgba(69,220,133,0.15);
    background-image: -ms-linear-gradient(left, #17DA9B 0%, #88e066 100%);
    background-image: -moz-linear-gradient(left, #17DA9B 0%, #88e066 100%);
    background-image: -o-linear-gradient(left, #17DA9B 0%, #88e066 100%);
    background-image: -webkit-gradient(linear, left top, right top, color-stop(0, #17DA9B), color-stop(100, #88e066));
    background-image: -webkit-linear-gradient(left, #17DA9B 0%, #88e066 100%);
    background-image: linear-gradient(to right, #17DA9B 0%, #88e066 100%);
}
.connect-options-link:hover,.connect-btn:hover{
    text-decoration:underline;
    cursor:pointer;
}
.connect-options-link.active:hover,.connect-btn.active:hover{
    text-decoration:none;
    cursor:pointer;
}
#connect-form-loader{
    display:none;
    position:absolute;
    width:100%;
    min-height:100%;
    border-radius:15px;
    background-color:rgba(255,255,255,0.85);
    z-index:9999;
}
#close-connect-form{
    position:absolute;
    top:0;
    right:0;
    display:none;
    line-height:40px;
    text-align:center;
    border-bottom-left-radius:5px;
    border-top-right-radius:5px;
    font-size:18px;
    color:#fff;
    height:40px;
    width:40px;
    background-color:rgba(255,0,0,0.25);
    z-index:999;
}
#close-connect-form:hover{
    background-color:rgba(255,0,0,0.5);
    cursor:pointer;
}
#close-connect-form i{
    transition:0.1s;
}
#close-connect-form:hover i{
    transform:scale(1.25);
}
#form-loader{
    position:absolute;
    display:flex;
    justify-content:center;
    align-items:center;
    background-color:#fff;
    border-radius:10px;
    overflow:hidden;
    width:100%;
    min-height:100%;
    padding:30px;
}
#modal-content{
    display:block;
    background-color:#fff;
    text-align:center;
    width:100%;
    height:100%;
    min-height:100%;
    padding:10px 0;
}
#modal-fa{
  width: 100%;
  display:inline-flex;
  justify-content:center;
  text-align: center;
  height:100px;
  margin-bottom:30px;
}
#modal-fa .fa-check-circle{
  color: #04AA6D;
  font-size: 100px;
}
#modal-fa .fa-exclamation-circle{
  color: #f44336;
  font-size: 100px;
}
#modal-message{
    display:flex;
    justify-content:center;
    align-items:center;
    font-size: 17px;
}
#verification-code{
    background: #f7f7ff;
    border: 2px solid rgba(105,108,255,.2);
    border-radius: 8px;
    color: #2a2b54;
    font-size: 36px;
    font-weight: 700;
    height: 55px;
    margin:25px 0;
    text-align: center;
    width: 220px;
    letter-spacing: 3px;
}
.pass-fields > div{
    width:100%;
    padding: 0 20px;
}
.pass-fields > div > label{
    display:inline-block;
    width:30%;
    font-size: 16px;
    text-align:left;
}
.pass-fields > div > input{
    display:inline-block;
    width:70%;
    background: #f7f7ff;
    border: 2px solid rgba(105,108,255,.2);
    border-radius: 8px;
    color: #2a2b54;
    font-size: 36px;
    font-weight: 700;
    height: 55px;
    margin:25px 0;
    text-align: left;
    letter-spacing: 3px;
    padding:0 20px;
}
.verification-submit{
    position: relative;
    font-size: 15px;
    font-weight: 600;
    padding: 17px 34px;
    display: inline-block;
    border-radius: 50px;
    color: #ffffff;
	box-shadow:0px 10px 10px 2px rgba(69,220,133,0.15);
    background-image: -ms-linear-gradient(left, #17DA9B 0%, #88e066 100%);
    background-image: -moz-linear-gradient(left, #17DA9B 0%, #88e066 100%);
    background-image: -o-linear-gradient(left, #17DA9B 0%, #88e066 100%);
    background-image: -webkit-gradient(linear, left top, right top, color-stop(0, #17DA9B), color-stop(100, #88e066));
    background-image: -webkit-linear-gradient(left, #17DA9B 0%, #88e066 100%);
    background-image: linear-gradient(to right, #17DA9B 0%, #88e066 100%);    
}
.verification-submit:hover{
    cursor:pointer;
    color:#ffffff;
	background-image: -ms-linear-gradient(left, #88E066 0%, #17DA9B 100%);
    background-image: -moz-linear-gradient(left, #88E066 0%, #17DA9B 100%);
    background-image: -o-linear-gradient(left, #88E066 0%, #17DA9B 100%);
    background-image: -webkit-gradient(linear, left top, right top, color-stop(0, #88E066), color-stop(100, #17DA9B));
    background-image: -webkit-linear-gradient(left, #88E066 0%, #17DA9B 100%);
    background-image: linear-gradient(to right, #88E066 0%, #17DA9B 100%); 
}
.danger-text{
    color:rgba(255,0,0,0.85);
}
/*** 

====================================================================
	Steps Section
====================================================================

***/

.steps-section{
	position:relative;
	padding-top:80px;
	padding-bottom:60px;
}

.steps-section .outer-container{
	position:relative;
}

.steps-section .outer-container:before{
	position:absolute;
	content:'';
	left:0px;
	top:70px;
	width:100%;
	height:91px;
	background:url(../images/background/pattern-1.png) center top no-repeat;
}

.steps-section .outer-container .services-block-two:nth-child(2),
.steps-section .outer-container .services-block-two:nth-child(4){
	margin-top:70px;
}

.services-block-two{
	position:relative;
	margin-bottom:40px;
	width: 100%;
}

.services-block-two .inner-box{
	position:relative;
	text-align:center;
}

.services-block-two .inner-box .icon-outer{
	position:relative;
	display:inline-block;
}

.services-block-two .inner-box .icon-outer .icon-box{
	position:relative;
	width:135px;
	height:135px;
	color:#ffffff;
	text-align:center;
	border-radius:50%;
	line-height:138px;
	font-size:52px;
	background-color:#d3dde8;
	box-shadow: inset 0 0 10px rgba(0,0,0,0.20);
}

.services-block-two .inner-box .icon-outer .icon-box .icon{
	position:relative;
}

.services-block-two .inner-box .icon-outer .icon-box:before{
	position:absolute;
	content:'';
	left:0px;
	top:0px;
	width:100%;
	height:100%;
	display:block;
	opacity:0;
	border-radius:50%;
	transition:all 0.3s ease;
	-moz-transition:all 0.3s ease;
	-webkit-transition:all 0.3s ease;
	-ms-transition:all 0.3s ease;
	-o-transition:all 0.3s ease;
	box-shadow:inset 0 0 15px rgba(0,0,0,0.20);
	background-image: -ms-linear-gradient(left, #FF8441 0%, #f53d96 100%);
	background-image: -moz-linear-gradient(left, #FF8441 0%, #f53d96 100%);
	background-image: -o-linear-gradient(left, #FF8441 0%, #f53d96 100%);
	background-image: -webkit-gradient(linear, left top, right top, color-stop(0, #FF8441), color-stop(100, #f53d96));
	background-image: -webkit-linear-gradient(left, #FF8441 0%, #f53d96 100%);
	background-image: linear-gradient(to right, #FF8441 0%, #f53d96 100%);
}

.services-block-two .inner-box:hover .icon-outer .icon-box:before{
	opacity:1;
}

.services-block-two .inner-box .lower-box{
	position:relative;
	margin-top:30px;
}

.services-block-two .inner-box .lower-box h5{
	position:relative;
	font-weight:700;
	line-height:1.3em;
	margin-bottom:14px;
}

.services-block-two .inner-box .lower-box h5 a{
	position:relative;
	color:#222222;
	transition:all 0.3s ease;
	-moz-transition:all 0.3s ease;
	-webkit-transition:all 0.3s ease;
	-ms-transition:all 0.3s ease;
	-o-transition:all 0.3s ease;
}

.services-block-two .inner-box .lower-box h5 a:hover{
	color:#fe8045;
}

.services-block-two .inner-box .lower-box .text{
	position:relative;
	color:#555555;
	font-size:14px;
	line-height:2em;
	margin-bottom:14px;
	padding:0px 20px;
}

.services-block-two .inner-box .lower-box .contact{
	position:relative;
	font-size:13px;
	font-weight:600;
	text-transform:uppercase;
	font-family: 'Poppins', sans-serif;
    color: #f23e9d;
	letter-spacing:1px;
    background: linear-gradient(to top, #fb8460 0%, #f13aa1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
/*** 

====================================================================
	News Section
====================================================================

***/

.news-section{
	position:relative;
	padding:50px 0px 40px;
}

.news-section.style-two{
	padding-top:80px;
}

.news-section .sec-title{
	margin-bottom:80px;
}

.news-block{
	width: 100%;
	position:relative;
	margin: 0 15px;
	margin-bottom:40px;
}

.news-block .inner-box{
	position:relative;
	z-index:1;
	overflow:hidden;
	border-radius:12px;
	box-shadow:0px 0px 45px rgba(0,0,0,0.15);
}

.news-block .inner-box .image{
	position:relative;
}

.news-block .inner-box .image img{
	position:relative;
	width:100%;
	display:block;
}

.news-block .inner-box .lower-content{
	position:relative;
	padding:25px 25px;
	background-color:#ffffff;
}

.news-block .inner-box .lower-content h6{
	position:relative;
	font-weight:600;
	line-height:1.6em;
	margin-bottom:15px;
}

.news-block .inner-box .lower-content h6 a{
	position:relative;
	color:#222222;
	transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
}

.news-block .inner-box .lower-content h6 a:hover{
	color:#eb2f5b;
}

.news-block .inner-box .lower-content .author{
	position:relative;
	padding-left:42px;
	color:#999999;
	font-size:12px;
	padding-top:6px;
}

.news-block .inner-box .lower-content .author .image{
	position:absolute;
	left:0px;
	top:0px;
	width:34px;
	height:34px;
	border-radius:50%;
	overflow:hidden;
}

.news-block .inner-box .lower-content .post-time{
	position:relative;
	color:#999999;
	font-size:12px;
	margin-top:7px;
	padding-left:20px;
}

.news-block .inner-box .lower-content .post-time:before{
	position:absolute;
	content: "\f017";
	left:0px;
	top:0px;
	font-size:15px;
	font-weight:400;
	font-family: 'FontAwesome';
}
/*** 

====================================================================
	Sponsors Section
====================================================================

***/

.sponsors-section{
	position:relative;
	padding:80px 0px 80px;
}

.sponsors-section.alternate{
	padding:60px 0px 0px;
}

.sponsors-section.style-two{
	padding-top:0px;
	margin-bottom:-160px;
	padding-bottom:40px;
	background-color:#f5f5f5;
}
.sponsors-section .owl-theme .image-box{
	margin:0;
}
.sponsors-carousel{
	width: 100%;
	display: flex;
	justify-content: space-around;
	flex-wrap: wrap;
}
.sponsors-carousel li{
	display: inline-flex;
	margin: 15px 5px;
}
.sponsors-section .image-box{
	width: 100%;
	height: 100%;
	position:relative;
	text-align:center;
	border-radius:10px;
	box-shadow:0px 0px 30px rgba(0,0,0,0.15);
	background-color:#ffffff;
	transition:all 300ms ease;
	-webkit-transition:all 300ms ease;
	-ms-transition:all 300ms ease;
	-o-transition:all 300ms ease;
}

.sponsors-section .image-box img{
	position:relative;
	display:inline-block;
	width:auto;
	max-width:100%;
	opacity:0.4;
	transition:all 300ms ease;
	-webkit-transition:all 300ms ease;
	-ms-transition:all 300ms ease;
	-o-transition:all 300ms ease;
	-webkit-filter: grayscale(100%);
	filter: grayscale(100%);
}

.sponsors-section .image-box img:hover{
	opacity:1;
	-webkit-filter: grayscale(0%);
	filter: grayscale(0%);
}

.sponsors-section .owl-dots,
.sponsors-section .owl-nav{
	display:none;	
}

/*** 

====================================================================
	Footer Section
====================================================================

***/
.overFooter{
	position: relative;
	box-sizing: border-box;
	margin-bottom: 50px;
}
.card{
	margin: 40px;
}
.footer-logo{
	padding: 0 40px;
}
.cardHead{
	height: 50px;
	padding: 5px 0;
	font-weight: 600;
	font-size: 18px;
}
.cardHead > span{
	color: #f23e9d;
	text-transform: uppercase;
    font-family: 'Poppins', sans-serif;
	font-size: 24px;
  
}
.cardBody{
	color: #222222;
	font-size: 18px;
	line-height: 1.6em;
}
.cardBody a{
	color: #f23e9d;
	text-transform: capitalize;
	font-family: 'Playfair Display', serif;
  background: linear-gradient(to top, #fb8460 0%, #f13aa1 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.social{
	font-size: 38px;
}
.copy-right{
	border-top: 1px solid rgba(0, 0, 0, 0.25);
	padding-top: 3vh ;
	margin: 0 20px 50px 20px;
}

/*** 

====================================================================
	Menu Toogle Section
====================================================================

***/
#footerMenu{
	padding: 0;
    margin: 0;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    position: fixed;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-justify-content: space-around;
    -ms-flex-pack: distribute;
    justify-content: space-around;
    height: 50px;
    bottom: 0;
    background-color: #fff;
    border-top: 2px solid #f1f1f1;
    box-shadow: 0px 0px 20px rgba(23,23,23,0.15);
    z-index: 1002;
}
#footerUl{
	width: 100%;
	height: 100%;
	margin: 0;
	padding: 0;
	list-style-type: none;
    text-align: center;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-justify-content: space-around;
    -ms-flex-pack: distribute;
    justify-content: space-around;
}
.footerLi{
		text-decoration: none;
    width: 20%;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    box-sizing: border-box;
}
.footerLiA{
		color: #484848;
    font-size: 20px;
    font-weight: bold;
    text-decoration: none;
    height: 40px;
    width: 50px;
    border-radius: 5px;
    display: inline-flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    line-height: 1;
    position: relative;
    
}
.footerLiAi{
	transition: 0.25s;
	display: inline-block;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.footerLiA:hover > .footerLiAi {
	transform: scale(1.25);
	color: rgba(181,36,77,0.85);
}
.footerLiASpan{
	background-color: #fff;
	border-radius: 3px;
	box-shadow: 0px 0px 3px rgba(181,36,77,0.5);
	position: absolute;
	bottom: calc(100% + 2px);
	padding: 6px 12px;
	font-size: 0;
	font-weight: normal;
	height: 0;
	opacity: 0;
	transition: opacity 0.5s ease-out;
}
.footerLiASpan::after {
  content: " ";
  position: absolute;
  top: 100%; /* At the bottom of the tooltip */
  left: 50%;
  transform: translateX(-50%);
  border-width: 4px;
  border-style: solid;
  border-color: rgba(181,36,77,0.5) transparent transparent  transparent;
}
.footerLiA:hover > .footerLiASpan{
	height: unset;
	font-size: 14px;
	opacity: 1;
	transform: scale(1.25);
}
.menu-toggle-logo{
	padding-top: 35px;
}
.Main-Logo{
	display: inline-block;
	max-width: 200px;
}
.menuToggle{
    position: relative;
    transition: 0.15s;
    z-index: 9999999;
    color: #ff216d;
    font-size: 20px;
    font-weight: bold;
    text-decoration: none;
    height: 40px;
    width: 50px;
    border-radius: 5px;
    display: inline-flex;
    justify-content:center;
    align-items:center;
    align-items: center;
    line-height: 1;
}

.menuToggle.active{
	display: inline-flex;
	justify-content:center;
	align-items:center;
	height: unset;
	width: unset;
	border-radius: 50%;
	padding: 0;
	transform:scale(3.5) rotate(45deg);
	width:20px;
	height:20px;
	overflow:hidden;
	font-size:14px;
	bottom: 15px;
	color: #fff;
	background-color:#ff8048;
	text-transform:capitalize;
	font-family: 'Poppins', sans-serif;
	box-shadow:0px 0px 20px rgba(23,23,23,0.15);
	background-image: -ms-linear-gradient(left, #F434A1 0%, #ff8442 100%);
	background-image: -moz-linear-gradient(left, #F434A1 0%, #ff8442 100%);
	background-image: -o-linear-gradient(left, #F434A1 0%, #ff8442 100%);
	background-image: -webkit-gradient(linear, left top, right top, color-stop(0, #F434A1), color-stop(100, #ff8442));
	background-image: -webkit-linear-gradient(left, #F434A1 0%, #ff8442 100%);
	background-image: linear-gradient(to right, #F434A1 0%, #ff8442 100%);
}
.footerLiA:hover > .menuToggle.active > .footerLiAi {
	color: #fff;
	border-radius: 50%;
}
.menu{
	opacity: 0;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 0;
	max-height: 100%;
	box-shadow: 0px 10px 50px 50px #bc2387;
	background-image: -ms-linear-gradient(bottom, #702fd6 0%, #bc2387 100%);
	background-image: -moz-linear-gradient(bottom, #702fd6 0%, #bc2387 100%);
	background-image: -o-linear-gradient(bottom, #702fd6 0%, #bc2387 100%);
	background-image: -webkit-gradient(linear, bottom top, right top, color-stop(0, #702fd6), color-stop(100, #bc2387));
	background-image: -webkit-linear-gradient(bottom, #702fd6 0%, #bc2387 100%);
	background-image: linear-gradient(to bottom, #702fd6 0%, #bc2387 100%);
	z-index: -1;
	transform: translateY(0%);
	transition: opacity 0.5s ease-out;
	overflow: hidden;
	cursor: auto;
}
.menuToggle.active ~ .menu{
	height: unset;
  opacity:1;
}
.menuToggle.active ~ .menu{
	visibility: visible;
	width: 100%;
	height: 100vh;
	max-height: 100vh;
	bottom: 0;
	transform: translateY(0%);
	z-index: 1;
	transition-delay: 0s , 0.5s, 0.5s;
}

.menuUl{
	position: relative;
	width: 100%;
	max-height: 100vh;
	padding: 25px 25px 80px 25px;
	overflow: scroll;
	display: inline-flex;
	justify-content: space-around;
	align-items: flex-start;
	flex-wrap: wrap;
}
.menuUl::-webkit-scrollbar {
  display: none;
}
.menuUl {
  -ms-overflow-style: none;  /* IE and Edge */
  scrollbar-width: none;  /* Firefox */
}
.menuLi{
	list-style: none;
	cursor: pointer;
	opacity: 0;
	transition-delay: 0.25;
	margin: 25px;
}
.menuToggle.active ~ .menu .menuLi{
	opacity: 1;
	transition: 0.5s;
}
.menuLiA{
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	width: 100px;
	height: 100px;
	visibility: hidden;
	transition: 0.25s;
	border: 1px solid rgba(255, 255, 255, 0.4);
	border-right: 1px solid rgba(255, 255, 255, 0.2);
	border-bottom: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 10px;
	background-color: rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(4px);
	box-shadow: 0 5px 45px rgba(0, 0, 0, 0.1);
	text-decoration: none;
	z-index: 8;
}
.menuLiA > span{
	font-family: "Times New Roman", serif;
	opacity: 0;
	position: absolute;
	top: 120%;
	text-align: center;
	border-radius: 5px;
	box-shadow: 0 5px 45px rgba(0, 0, 0, 0.1);
	background-color: rgba(255, 255, 255, 1);
	z-index: 10;
	white-space: nowrap;
	transition: 0.25s;
}
.menuLiA > span::after {
  content: " ";
  position: absolute;
  bottom: 100%;
  left: calc(50% - 5px);
  border-width: 5px;
  border-style: solid;
  border-color: transparent  transparent white transparent;
}
.menuLiA > div{
	transition: 0.25s;
	font-size:30px;
	color: #fff;
}
.menuLiA:hover{
	transform: scale(1.25);
	color:#ffffff;
	background-image: -ms-linear-gradient(left, #ff8442 0%, #F434A1 100%);
	background-image: -moz-linear-gradient(left, #ff8442 0%, #F434A1 100%);
	background-image: -o-linear-gradient(left, #ff8442 0%, #F434A1 100%);
	background-image: -webkit-gradient(linear, left top, right top, color-stop(0, #ff8442), color-stop(100, #F434A1));
	background-image: -webkit-linear-gradient(left, #ff8442 0%, #F434A1 100%);
	background-image: linear-gradient(to right, #ff8442 0%, #F434A1 100%);
}
.menuLiA:hover > div{
	transform: scale(1.25);
}
.menuLiA:hover > span{
	top: 85%;
	opacity: 1;
	padding: 8px 12px;
	display: inline-block;
	font-size: 14px;
	color: #f23e9d;
	text-transform: capitalize;
	font-family: 'Playfair Display', serif;
}
.menuToggle.active ~ .menu .menuLiA{
	visibility: visible;
}
#logout-btn{
    outline:none;
    border:none;
    background:unset;
}
#logout-btn:hover{
    cursor:pointer;
}
/*Menu Toogle End*/

.hoverBtn:hover{filter: brightness(103%); cursor: pointer;box-shadow: rgba(255, 255, 255, 0.25) 0px 1px 2px;}
.Items-continer{
    display:flex;
    flex-direction:column;
    gap: 3px;
    flex-wrap:wrap;
    align-items:center;
    justify-content: center;
    padding:4px;
}
.Items-continer.horizontal{
    width:100%;
    flex-direction:unset;
    gap: unset;
    flex-wrap:no-wrap;
}
.Item{
    border-radius: 3px;
    height: 30px;
    width: 30px;
    font-size: 17px;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    margin:0 auto;
    transition:0.15s;
}
.largItem{
    width: 15%;
}
.Item.blue{
    background-color: #007bff;
}
.Item.red{
    background-color: #dc3545;
}
.Item.gray{
    background-color: #ccc;
}
.Item:hover{
    opacity:0.95;
    cursor:all-scroll;
    transform:scale(1.1);
}
.social-connect{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:8px
}
.btn {
  width: 100%;
  padding: 12px;
  border: none;
  border-radius: 4px;
  margin: 5px 0;
  display: inline-block;
  font-size: 17px;
  line-height: 20px;
  text-decoration: none; /* remove underline from anchors */
}



/* add appropriate colors to fb, twitter and google buttons */
.fb {
  background-color: #3B5998;
  color: white;
}

.twitter {
  background-color: #55ACEE;
  color: white;
}

.google {
  background-color: #dd4b39;
  color: white;
}
.largSide{
    width:22%;
    padding:0 4px 0 0;
}
#sideContent{
    max-width:25%;
}
.sideContent::-webkit-scrollbar-thumb {
    border-radius: 3px;
    background-color: rgb(211, 219, 229);
}
.sideContent::-webkit-scrollbar {
    width: 12px;
}
.sideContent{
    margin: 1vh 0;
    padding: 6px;
    overflow: hidden;
    background-color: rgba(255, 255, 255, 0.5);
	border-radius: 5px;
	box-shadow: 0 0 5px 0 rgba(150, 150, 150, 0.15);
}

.sideAdContent{
	margin: 15px;
    padding: 5px;
    overflow: hidden;
    background-color: rgba(255, 255, 255, 0.5);
	border-radius: 5px;
	box-shadow: 0 0 5px 0 rgba(150, 150, 150, 0.15);
}
.textAd{
    background-color: rgba(255, 255, 255, 1);
}
.sideTitle{
	height: 45px;
	padding: 0 2vh;
	font-weight: 600;
	font-size: 16px;
	border-bottom: 1px solid rgba(0, 0, 0, 0.1);
	color:#000;
}
.sideBody{
	padding: 10px;
	font-size: 14px;
	line-height:22px;
}
.block{
	margin: 0 10px;
	max-height: 100%;
	overflow-y: scroll;
}
.sideAd{
	padding: 5px;
}
.sponsor{
    display:block;
    text-decoration:none;
}
.sequare{
	max-width:270px;
	max-height:200px;
}
.horizontal{
	aspect-ratio: 468/60;
	max-width:468px;
	max-height:60px;
}
.vertical{
	aspect-ratio: 60/468;
}
.sequare > img,.horizontal > img,.vertical > img{
    width:100%;
    height:100%;
}
.spadImg{
    border-radius:5px;
    overflow:hidden;
    box-shadow: 0 0 5px 0 rgba(150, 150, 150, 0.5);
}
.spadTitle{
	font-weight: 600;
	font-size: 14px;
	color: rgba(5, 33, 99, 0.8);
}
.spadDesc{
	font-weight: 400;
	font-size: 12px;
	color:#000;
}
.spadUrl{
	font-weight: 400;
	font-size: 12px;
	color: #009900;
}
#logoutBtn{
    border:unset;
    background:unset;
    color:unset;
}