html, body {
  height: 100%;
  margin: 0;
  overflow: hidden;
  font-family: 'Inter', sans-serif;
}

/* Container */
.split-container {
  display: flex;
  height: 100%;
  width: 100%;
  transition: all 0.3s ease-in-out;
}

/* Panels */
.panel {
  flex: 0 0 50%;
  transition: flex-basis 1s ease-in-out, opacity 0.4s ease-in-out;
  overflow: hidden;
  position: relative;
}

/* Backgrounds */
#blue-panel {
  background-image: url('images/rural-bg.jpg');
  background-size: cover;
  background-position: center;
}

#orange-panel {
  background-image: url('images/hives-bg.jpg');
  background-size: cover;
  background-position: center 80%;
}

#footer {
	position:absolute;
	bottom:0px;
	width: 100%;
	text-align:center;
	padding-bottom:15px;
	z-index:999;
}

#footer p {margin:0px;}

/* Gradient Overlay */
.overlay {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom right, rgba(0,0,0,0.25), rgba(0,0,0,0.6));
  z-index: 1;
}

.panel-content {
  position: relative;
  z-index: 2;
}

.logos {
  max-width:360px;
}

/* Expanded States (Desktop) */
.split-container.orange-full #blue-panel {
  flex-basis: 0%;
}
.split-container.orange-full #orange-panel {
  flex-basis: 100%;
}
.split-container.blue-full #blue-panel {
  flex-basis: 100%;
}
.split-container.blue-full #orange-panel {
  flex-basis: 0%;
}

/* Hide content when collapsed */
.split-container.orange-full #blue-panel .panel-content,
.split-container.blue-full #orange-panel .panel-content {
  opacity: 0;
}

/* --- MOBILE FIX --- */
@media (max-width: 768px) {
  .split-container {
    flex-direction: column;
  }

  .panel {
    width: 100%;
    flex-basis: auto;
    height: 50%;
    transition: height 1s ease-in-out, opacity 0.4s ease-in-out;
  }

  .split-container.orange-full #blue-panel {
    height: 0%;
  }
  .split-container.orange-full #orange-panel {
    height: 100%;
  }
  .split-container.blue-full #blue-panel {
    height: 100%;
  }
  .split-container.blue-full #orange-panel {
    height: 0%;
  }
  
  #footer {display:none;}
  
  .text-gray-200 {
	  display:none;
  }
  
  .logos {
	  max-width:220px;
  }
}
