@import url('https://fonts.googleapis.com/css?family=Open+Sans:800&display=swap');

section.slide-section {
  color: #fff;
  font-size: 3em;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  width: 100vw;
  z-index: 10;
}
#page-1, nav a:nth-of-type(1) {
  background-color: #1e1e1e;
}
#page-2, nav a:nth-of-type(2) {
  background-color: #e74c3c;
}
#page-3, nav a:nth-of-type(3) {
  background-color: #2980b9;
}
#page-4, nav a:nth-of-type(4) {
  background-color: #2ecc71;
}
#page-5, nav a:nth-of-type(5) {
  background-color: #8e44ad;
}
#page-6, nav a:nth-of-type(6) {
  background-color: #8e44ad;
}
#page-7, nav a:nth-of-type(7) {
  background-color: #2ecc71;
}

nav.slide-nav {
  position: fixed;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}

nav.slide-nav a {
  border: 4px solid #fff;
  border-radius: 50%;
  display: block;
  margin: 10px;
  height: 30px;
  width: 30px;
}

@import url('https://fonts.googleapis.com/css?family=Muli&display=swap');

* {
  box-sizing: border-box;
}

/* SOCIAL PANEL CSS */
.social-panel-container {
  position: fixed;
  right: 0;
  bottom: 80px;
  transform: translateX(100%);
  transition: transform 0.4s ease-in-out;
}

.social-panel-container.visible {
  transform: translateX(-10px);
}

.social-panel { 
  background-color: #fff;
  border-radius: 16px;
  box-shadow: 0 16px 31px -17px rgba(0,31,97,0.6);
  border: 5px solid #001F61;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-family: 'Muli';
  position: relative;
  height: 169px;  
  width: 370px;
  max-width: calc(100% - 10px);
}

.social-panel button.close-btn {
  border: 0;
  color: #97A5CE;
  cursor: pointer;
  font-size: 20px;
  position: absolute;
  top: 5px;
  right: 5px;
}

.social-panel button.close-btn:focus {
  outline: none;
}

.social-panel p {
  background-color: #001F61;
  border-radius: 0 0 10px 10px;
  color: #fff;
  font-size: 14px;
  line-height: 18px;
  padding: 2px 17px 6px;
  position: absolute;
  top: 0;
  left: 50%;
  margin: 0;
  transform: translateX(-50%);
  text-align: center;
  width: 235px;
}

.social-panel p i {
  margin: 0 5px;
}

.social-panel p a {
  color: #FF7500;
  text-decoration: none;
}

.social-panel h4 {
  margin: 20px 0;
  color: #97A5CE; 
  font-family: 'Muli';  
  font-size: 14px;  
  line-height: 18px;
  text-transform: uppercase;
}

.social-panel ul {
  display: flex;
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.social-panel ul li {
  margin: 0 10px;
}

.social-panel ul li a {
  border: 1px solid #DCE1F2;
  border-radius: 50%;
  color: #001F61;
  font-size: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 50px;
  width: 50px;
  text-decoration: none;
}

.social-panel ul li a:hover {
  border-color: #FF6A00;
  box-shadow: 0 9px 12px -9px #FF6A00;
}

.floating-btn {
  border-radius: 26.5px;
  background-color: #001F61;
  border: 1px solid #001F61;
  box-shadow: 0 16px 22px -17px #03153B;
  color: #fff;
  cursor: pointer;
  font-size: 16px;
  line-height: 20px;
  padding: 12px 20px;
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 999;
}

.floating-btn:hover {
  background-color: #ffffff;
  color: #001F61;
}

.floating-btn:focus {
  outline: none;
}

@media screen and (max-width: 480px) {

  .social-panel-container.visible {
    transform: translateX(0px);
  }
  
  .floating-btn {
    right: 10px;
  }
}
        
@import url('https://fonts.googleapis.com/css?family=Muli&display=swap');
@import url('https://fonts.googleapis.com/css?family=Nunito:300,700&display=swap');
.flux-btnTip {
	background-color: #d63031;
  	box-shadow: 0 3px 6px rgba(0,0,0,0.16), 0 3px 6px rgba(0,0,0,0.23);
	border: 0;
	color: #fff;
	font-size: 20px;
	font-family: inherit;
	font-weight: bold;
	padding: 15px 35px;
	position: relative;
}
.flux-btnTip:focus {
	outline: 0;
}
.flux-btnTip:hover {
	opacity: 0.9;
    z-index: 9999;
}
.flux-btnTip:hover .flux-tip {
	transform: translate(-50%, 120%);
	opacity: 1;
    z-index: 9999;
}
.flux-tip {
	background-color: #fff;
  	box-shadow: 0 3px 6px rgba(0,0,0,0.16), 0 3px 6px rgba(0,0,0,0.23);
	border-radius: 5px;
	color: #555;
	font-weight: 300;
	padding: 15px 30px;
	position: absolute;
	bottom: 0;
	left: 50%;
	opacity: 0;
	transform: translate(-50%, 0%);
	transition: all 0.5s ease;
	text-align: center;
    white-space: nowrap;
}   
