.menu {
	z-index: 9999;
	width: 100%;
	height: 65px;
	position: fixed;
	line-height: 60px;
	text-align: center;
	background: #fff;
	left:0px;
	top:0px;
}

.menu div.logo {
	float: left;
	width: auto;
	height: auto;
	padding-left: 0rem;
}

.menu div.logo a {
	text-decoration: none;
	/*color: #fff;*/
}

.menu div.logo a:hover {
	color: #00e676;
}

.menu div.main_list {
	height: 65px;
	float: right;
}

.menu div.main_list ul {
	width: 100%;
	height: 65px;
	display: flex;
	list-style: none;
	margin: 0;
	padding: 0;
}

.menu div.main_list ul li {
	width: auto;
	height: 30px;
	padding: 0;
	padding-right: 3rem;
}

.menu div.main_list ul li a {
	text-decoration: none;
	color: #000;
	line-height: 36px;
	font-size: 16px !important;
}

.menu div.main_list ul li a:hover {
	color: #00e676;
}

/* Home section */

.menuTrigger {
	display: none;
}

.menu {
	padding-top: 20px;
	padding-bottom: 20px;
	-webkit-transition: all 0.4s ease;
	transition: all 0.4s ease;
}
.w-btn {
	padding: 8px 10px !important;
	font-size: 12px;
	line-height: 10pt;
	font-weight: bold;
	margin-right: 2px;
	margin-left: 3px !important;
	background: #3e99be;
	display: inline-block;
	border-radius: 10px;
	color:#fff;
}

.w-btn-line {
	border: 2px solid #3e99be;
	border-radius: 10px;
	color: #3e99be!important;
	padding: 4px;
	font-size: 12px !important;
}

/* Media qurey section */

/**@media screen and (min-width: 768px) and (max-width: 1024px) {
	.container {
		margin: 0;
	}
}
*/
@media screen and (max-width: 768px) {
	.menuTrigger {
		display: block;
	}
	.menu div.logo {
		margin-top: -18px;
		margin-left: 15px;
	}
	.menu div.main_list {
		width: 100%;
		height: 0;
		overflow: hidden;
	}
	.menu div.show_list {
		height: auto;
		display: none;
	}
	.menu div.main_list ul {
		flex-direction: column;
		width: 100%;
		height: 100vh;
		right: 0;
		left: 0;
		bottom: 0;
		background-color: #fff;
		/*same background color of menubar*/
		background-position: center top;
	}
	.menu div.main_list ul li {
		width: 100%;
		text-align: left;
	}
	.menu div.main_list ul li a {
		text-align: center;
		width: 100%;
		font-size: 3rem;
		padding: 20px;
	}
	.menu div.media_button {
		display: block;
	}
}

@media screen and (max-width: 320px){
	.w-btn{
		width: 60px;
		font-size:10px!important;
		}
}
/* Animation */
/* Inspiration taken from Dicson https://codemyui.com/simple-hamburger-menu-x-mark-animation/ */

.menuTrigger {
	cursor: pointer;
	width: 20px;
	height: 20px;
	margin: auto;
	position: absolute;
	right: 15px;
	top: 0;
	bottom: 0;
}

.menuTrigger i {
	background-color: #000;
	border-radius: 2px;
	content: "";
	display: block;
	width: 100%;
	height: 4px;
}

.menuTrigger i:nth-child(1) {
	-webkit-animation: outT 0.8s backwards;
	animation: outT 0.8s backwards;
	-webkit-animation-direction: reverse;
	animation-direction: reverse;
}

.menuTrigger i:nth-child(2) {
	margin: 5px 0;
	-webkit-animation: outM 0.8s backwards;
	animation: outM 0.8s backwards;
	-webkit-animation-direction: reverse;
	animation-direction: reverse;
}

.menuTrigger i:nth-child(3) {
	-webkit-animation: outBtm 0.8s backwards;
	animation: outBtm 0.8s backwards;
	-webkit-animation-direction: reverse;
	animation-direction: reverse;
}

.menuTrigger.active i:nth-child(1) {
	-webkit-animation: inT 0.8s forwards;
	animation: inT 0.8s forwards;
}

.menuTrigger.active i:nth-child(2) {
	-webkit-animation: inM 0.8s forwards;
	animation: inM 0.8s forwards;
}

.menuTrigger.active i:nth-child(3) {
	-webkit-animation: inBtm 0.8s forwards;
	animation: inBtm 0.8s forwards;
}

@-webkit-keyframes inM {
	50% {
		-webkit-transform: rotate(0deg);
	}
	100% {
		-webkit-transform: rotate(45deg);
	}
}

@keyframes inM {
	50% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(45deg);
	}
}

@-webkit-keyframes outM {
	50% {
		-webkit-transform: rotate(0deg);
	}
	100% {
		-webkit-transform: rotate(45deg);
	}
}

@keyframes outM {
	50% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(45deg);
	}
}

@-webkit-keyframes inT {
	0% {
		-webkit-transform: translateY(0px) rotate(0deg);
	}
	50% {
		-webkit-transform: translateY(9px) rotate(0deg);
	}
	100% {
		-webkit-transform: translateY(9px) rotate(135deg);
	}
}

@keyframes inT {
	0% {
		transform: translateY(0px) rotate(0deg);
	}
	50% {
		transform: translateY(9px) rotate(0deg);
	}
	100% {
		transform: translateY(9px) rotate(135deg);
	}
}

@-webkit-keyframes outT {
	0% {
		-webkit-transform: translateY(0px) rotate(0deg);
	}
	50% {
		-webkit-transform: translateY(9px) rotate(0deg);
	}
	100% {
		-webkit-transform: translateY(9px) rotate(135deg);
	}
}

@keyframes outT {
	0% {
		transform: translateY(0px) rotate(0deg);
	}
	50% {
		transform: translateY(9px) rotate(0deg);
	}
	100% {
		transform: translateY(9px) rotate(135deg);
	}
}

@-webkit-keyframes inBtm {
	0% {
		-webkit-transform: translateY(0px) rotate(0deg);
	}
	50% {
		-webkit-transform: translateY(-9px) rotate(0deg);
	}
	100% {
		-webkit-transform: translateY(-9px) rotate(135deg);
	}
}

@keyframes inBtm {
	0% {
		transform: translateY(0px) rotate(0deg);
	}
	50% {
		transform: translateY(-9px) rotate(0deg);
	}
	100% {
		transform: translateY(-9px) rotate(135deg);
	}
}

@-webkit-keyframes outBtm {
	0% {
		-webkit-transform: translateY(0px) rotate(0deg);
	}
	50% {
		-webkit-transform: translateY(-9px) rotate(0deg);
	}
	100% {
		-webkit-transform: translateY(-9px) rotate(135deg);
	}
}

@keyframes outBtm {
	0% {
		transform: translateY(0px) rotate(0deg);
	}
	50% {
		transform: translateY(-9px) rotate(0deg);
	}
	100% {
		transform: translateY(-9px) rotate(135deg);
	}
}

.affix {
	padding: 0;
	background-color: #111;
}

.myH2 {
	text-align: center;
	font-size: 4rem;
}
.myP {
	text-align: justify;
	padding-left: 15%;
	padding-right: 15%;
	font-size: 20px;
}
@media all and (max-width: 700px) {
	.myP {
		padding: 2%;
	}
}