﻿/*
 * MENU BUTTON
 */
@import url("https://fonts.googleapis.com/css?family=Raleway:100i,400");

.menu__toggler {
  position: absolute;
  top: 20px; TOP: 12PX;
  left: 20px; LEFT: 12PX;
  z-index: 999;
  777height: 28px;
  777width: 28px;
  outline: none;
  cursor: pointer;
  display: flex;
  align-items: center; 
	BORDER-RADIUS: 50%;
}







/* SMALLER TABLET screens */   /* SMALLER TABLET */
@media screen and (max-width: 480px) {
  	.menu__toggler {
  		width: 50px;
  		height: 50px;	     
  		}
	}





@media only screen and (min-width : 320px) and (max-width : 480px) {/* Mobile portrait */
  	.menu__toggler {
  		width: 55px;
  		height: 55px;   
  		}
	}





@media only screen and (min-width : 480px) and (max-width : 595px) {/* Mobile landscape */
  	.menu__toggler {
  		width: 60px;
  		height: 60px;    
  		}
	}





@media only screen and (min-width : 595px) and (max-width : 690px) {/* Small tablet portrait */
  	.menu__toggler {
  		width: 65px;
  		height: 65px;   
  		}
	}





@media only screen and (min-width : 690px) and (max-width : 769px) {/* Tablet portrait */
  	.menu__toggler {
  		width: 70px;
  		height: 70px;   
  		}
	}





/* SMALLER TABLET screens */   /* (location for ID picture) --- SMALLER TABLET */
@media only screen and (min-width : 769px) and (max-width : 800px) {/* Small tablet landscape */
	.menu__toggler {
  		width: 75px;
  		height: 75px;    
  		}
	}





/* SMALLER TABLET screens */   /* (location for ID picture --- SMALLER TABLET */
@media only screen and (min-width : 800px) and (max-width : 1024px) {/* Small tablet landscape */
  	.menu__toggler {
  		width: 80px;
  		height: 80px;    
  		}
	}





@media only screen and (min-width : 1024px) and (max-width : 1224px) {/* Tablet landscape */
  	.menu__toggler {
  		width: 85px;
  		height: 85px;   
  		}
	}






/* Desktops and laptops */  /* SMALL DESKTOP */
@media only screen 
and (min-width : 1224px) {
  	.menu__toggler {
  		width: 90px;
  		height: 90px;  
		}
	}























.menu__toggler span,
.menu__toggler span::before,
.menu__toggler span::after {
  position: absolute;
  content: "";
  width: 28px;
  height: 2.5px;
  background: #fafafa;  
  border-radius: 20px;
  transition: 500ms cubic-bezier(0.77, 0, 0.175, 1);
}
.menu__toggler span::before {
  top: -8px;
}
.menu__toggler span::after {
  top: 8px;
}
.menu__toggler.active > span {
  background: transparent;
}
.menu__toggler.active > span::before, .menu__toggler.active > span::after {
  background: #005c9c;
  top: 0px;
}
.menu__toggler.active > span::before {
  transform: rotate(-225deg);
}
.menu__toggler.active > span::after {
  transform: rotate(225deg);
}

/*
 * SLIDING MENU PANEL
 */
7878.menu {
  	font-family: "Raleway";
  position: absolute; top: 0; margin-top: 0px;
  left: -30%;
  z-index: 998;
  color: #005c9c;     777text-shadow: 0 1px 10px #000;  
  background: rgba(250, 250, 250, 0.7);
  -webkit-clip-path: polygon(0 0, 100% 0, 85% 100%, 0% 100%);
          clip-path: polygon(0 0, 100% 0, 85% 100%, 0% 100%);
  width: 30%;
  height: 100%;
  padding: 100px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: 300ms left cubic-bezier(0.77, 0, 0.175, 1);
  	box-shadow: -1px 0px 3px 0px rgba(0, 0, 0, 0.75);
}

.menu {
  	font-family: "Raleway";
  position: absolute; top: 0; margin-top: 0px;
  left: -30%;
  z-index: 998;
  7878color: #005c9c;    777text-shadow: 0 1px 10px #000;  
  7878background: rgba(250, 250, 250, 0.7);    background: rgba(23, 21, 29, 0.7);
  -webkit-clip-path: polygon(0 0, 100% 0, 85% 100%, 0% 100%);
          clip-path: polygon(0 0, 100% 0, 85% 100%, 0% 100%);
  width: 30%;
  height: 100%;
  padding: 100px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: 300ms left cubic-bezier(0.77, 0, 0.175, 1);
  	box-shadow: -1px 0px 3px 0px rgba(0, 0, 0, 0.75);
}

.menu a {
	color: #FFFFFF !important;
	}

.menu a:hover {
	color: #ffff00 !important;
	text-decoration: none;
	}






@media only screen and (max-width: 600px) {
  .menu {
    width: 250px;
    left: -250px;
    padding: 50px;
  }
}
.menu.active {
  left: 0;
}
.menu p { font-weight: bold;
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

/*
 * BASIC STYLES
 */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}




/** STAMP **/

#miniature-stamp {
	display:flex; flex-direction: row; justify-content: center; align-items: center;
	}
