* {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box
}
:after, :before {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box
}

.fade {
	opacity: 0;
	-webkit-transition: opacity .15s linear;
	-o-transition: opacity .15s linear;
	transition: opacity .15s linear
}
.modal-dialog-centered{display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    min-height: calc(100% - (.5rem * 2));
}
.fade.in {
	opacity: 1
}
.collapse {
	display: none
}
.collapse.in {
	display: block
}
tr.collapse.in {
	display: table-row
}
tbody.collapse.in {
	display: table-row-group
}
.collapsing {
	position: relative;
	height: 0;
	overflow: hidden;
	-webkit-transition-property: height, visibility;
	-o-transition-property: height, visibility;
	transition-property: height, visibility;
	-webkit-transition-duration: .35s;
	-o-transition-duration: .35s;
	transition-duration: .35s;
	-webkit-transition-timing-function: ease;
	-o-transition-timing-function: ease;
	transition-timing-function: ease
}


.close {
	float: right;
	font-size: 21px;
	font-weight: 400;
	line-height: 1;
	color: #fff;
	text-shadow: 0 1px 0 #fff;
	filter: alpha(opacity=20);
	    background-color: #a6b739;
}
.close:focus, .close:hover {
	color: #000;
	text-decoration: none;
	cursor: pointer;
	filter: alpha(opacity=50);
	opacity: .5
}
button.close {
	padding: 0;
	cursor: pointer;
	background: 0 0;
	border: 0;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none
}
.modal-open {
	overflow: hidden
}
.modal {
	position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1050;
    display: none;
    overflow: hidden;
    outline: 0;
	background-color: rgba( 250, 250, 250, .1);
}
.modal.fade .modal-dialog {
	-webkit-transform: translate(0, -25%);
	-ms-transform: translate(0, -25%);
	-o-transform: translate(0, -25%);
	transform: translate(0, -25%);
	-webkit-transition: -webkit-transform .3s ease-out;
	-o-transition: -o-transform .3s ease-out;
	transition: -webkit-transform .3s ease-out;
	transition: transform .3s ease-out;
	transition: transform .3s ease-out, -webkit-transform .3s ease-out, -o-transform .3s ease-out
}
.modal.in .modal-dialog {
	-webkit-transform: translate(0, 0);
	-ms-transform: translate(0, 0);
	-o-transform: translate(0, 0);
	transform: translate(0, 0)
}
.modal-open .modal {
	overflow-x: hidden;
	overflow-y: auto
}
.modal-dialog {
	position: relative;
	width: auto;
	margin: 10px
}
.modal-content {
	position: relative;
	background-color:#0C0809;
	background-clip: padding-box;
	/* border: 1px solid var(--black); */
	/* border: 1px solid rgba(0,0,0,.2); */
	/* border-radius: 20px; */
	/* -webkit-box-shadow: 0 3px 9px rgba(0,0,0,.5); */
	/* box-shadow: 0 3px 9px rgba(0,0,0,.5); */
	outline: 0;
	width: 100%;
	overflow: hidden;
}
.modal-backdrop {
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 1040;
	background-color: #000
}
.modal-backdrop.fade {
	filter: alpha(opacity=0);
	opacity: 0
}
.modal-backdrop.in {
	filter: alpha(opacity=50);
	opacity: .5
}
.modal-header {
	padding: 0;
	/*border-bottom: 1px solid #e5e5e5*/
}
.modal-header .close {
    margin-top: -2px;
    background-color: var(--black);
    width: 40px;
    height: 40px;
    padding-bottom: 5px;
    /* border-bottom-left-radius: 10px; */
}

.modal-header .close:hover {
	background-color: var(--primary-color);
	opacity: 1;
	color: var(--white);
}
.modal-title {
	margin: 0;
	line-height: 1.42857143
}
.modal-body {
	position: relative;
	padding: 15px 30px 30px 30px;
}
.modal-footer {
	padding: 15px;
	text-align: right;
	border-top: 1px solid #e5e5e5
}
.modal-footer .btn+.btn {
	margin-bottom: 0;
	margin-left: 5px
}
.modal-footer .btn-group .btn+.btn {
	margin-left: -1px
}
.modal-footer .btn-block+.btn-block {
	margin-left: 0
}
.modal-scrollbar-measure {
	position: absolute;
	top: -9999px;
	width: 50px;
	height: 50px;
	overflow: scroll
}


/**************** panel bg style *************/
.panel-container {
  width: 100%;
  height:70vh;
  display: flex;
  overflow: hidden;
  /* gap:4px; */
  /* border-radius: 20px; */
}

/* Panels */
.panel {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: flex 0.7s ease;
  cursor: pointer;
  background-repeat: no-repeat;
  background-position: center center;
  -moz-background-size: cover;
  -webkit-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  outline: 3px solid rgba( 250, 250, 250, .2);
  /* outline: 1px solid var(--body-color); */
  outline-offset: -10px;
  border: 4px solid var(--black);
}
.panel:nth-child(01) {
	border-right: 2px solid var(--black);
}
.panel:nth-child(02) {
	border-left: 2px solid var(--black);
}

/* Background colors */   
.panel1 {
	background-image: url(../../images/panel-bg/bg1.jpg);
}
.panel2 {
	background-image: url(../../images/panel-bg/bg2.jpg);
}
.panel3 {
	background-image: url(../../images/panel-bg/bg3.jpg);
}
/* Grow panel on hover */
/* .panel:hover {
  flex: 3;
} */
/* Panel text styling */
.panel h2 {
  pointer-events: none;
}
.brand{
	 width:380px;
	 padding:20px 10px;
	 line-height:24px;
	 text-align:center;
	 flex-direction:column;
	 display:flex;
	 justify-content: center;
	 gap:20px 0;	 
}
.brand p{
	margin:0;
	color: var(--white);
}
.brand img{
	 width:250px;
	 display:inline-block;
	 background-color:#fff;
	 padding:10px;
	 border-radius: 10px;
}
.switch-hub-popup .modal-body {
    padding: 0;
}
.switch-hub-popup .modal-header {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 1;
}
.panel-link a, .panel-link-fill a {
	
	color:var(--white);
	height:50px;
	font-size: 16px; 
	padding: 0    30px;
	font-style: normal;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	position: relative;
	overflow:hidden;
	margin:0;
	border:1px solid var(--white);	 
	font-family:var(--font-medium);
	transition: all 0.4s ease;
	border-radius: 50px;

}
.panel-link a:hover {
	color:var(--white);
	border:1px solid var(--primary-color);	 
}
.panel-link a span{
 	position:relative;
	z-index:2;
	display:inline-block;
}
 .panel-link a:before{
	width:0;
	height:100%;
	border-radius: 0;
	position:absolute;
	right: -4px;
	top:0; 
	content:'';
	z-index:1;
	transition: all 0.4s ease;
	background-color: var(--primary-color);
	border:1px solid  var(--primary-color);
} 

/* .panel1 .panel-link a:before{
	background-color: #e4222b;	
}
.panel2 .panel-link a:before{
	background-color:#dd4e0d;	
} 
.panel3 .panel-link a:before{
	background-color: #af0e14;	
} 
.panel1 .panel-link a:hover{
	border:1px solid #e4222b;	
}
.panel2 .panel-link a:hover{
	border:1px solid#dd4e0d;	
} 
.panel3 .panel-link a:hover{
	border:1px solid #af0e14;	
}  */




.panel-link a:hover:before{
	 width:100%;
	 left:0;
	 right:auto; 
}
.panel-link-fill a {
	border:1px solid var(--secondary-color);
	background-color:var(--secondary-color);
	border:0;	 
}
.panel-link-fill a:hover {
	border:1px solid var(--secondary-color);
}



@media (max-width:992px) {
.panel-container {
	height: auto;
	flex-direction: column;
}
.panel {
	width: 100%;
	display: flex;
	flex-direction: column;
}
.brand img {
    width: 180px;
}
.brand p {
    font-size: 16px;
    line-height: 20px;
}
.brand {
    padding: 50px 10px;
}
}




@media (min-width: 576px){
.modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));}
}
@media (min-width:768px) {
.modal-dialog {
	
	margin: 5% auto 0 auto;
	width: 90%;
    max-width: 1200px;
}
.modal-content {
	-webkit-box-shadow: 0 5px 15px rgba(0,0,0,.5);
	box-shadow: 0 5px 15px rgba(0,0,0,.5)
}
.modal-sm {
	width: 300px
}
}
@media (min-width:992px) {
.modal-lg {
	width: 900px
}
}
