@import url('https://fonts.googleapis.com/css?family=Quicksand:400,500,700');


/* Navbar section */


.nav {
    width: 100%;
    height: 115px;
    position: fixed;
    line-height: 75px;
    text-align: center;
	z-index:10002;
	margin-top:0px;
}




.nav div.main_list {
    height: 65px;
    float: right;
	margin-top:0px;
	
}

.nav div.main_list ul {
    width: 100%;
    height: 65px;
    display: flex;
    list-style: none;
	padding-top:5px;
	padding-bottom:5px;
	margin:auto;
	margin-top:5px;
	margin-bottom:5px;
    
}

.nav div.main_list ul li {
    width: auto !Important;
    height: 60px;
    padding: 0;
	margin: 0;
    padding-right: 3rem;
	
	
}

.nav div.main_list ul li a {
    text-decoration: none;
    color: red;
	background:rgb(144,198,202);
	width:auto;
		border-radius:10px;
    line-height: 60px;
    font-size: 2.4rem;
	padding:5px 25px 5px 25px;
	margin-bottom:5px;
	
	
}

.nav div.main_list ul li a:hover {
    color: rgb(144,198,202);
	background:red;
	
    

}


/* Home section */



.navTrigger {
    display: none;
}

.nav {
    padding-top: 10px;
    padding-bottom: 10px;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
}


/* Media qurey section */

@media screen and (min-width: 768px) and (max-width: 1024px) {
    .container {
        margin: 0;
    }
}

@media screen and (max-width:1279px) {
    .navTrigger {
        display: block;
		
    }
    
    .nav div.main_list {
        width: 100%;
        height: 0;
        overflow: hidden;
    }
    .nav div.show_list {
        height: auto;
        display: none;
    }
    .nav div.main_list ul {
        flex-direction: column;
        width: 100%;
        height:auto;
		border-radius:5px;
        right: 0;
        left: 0;
        bottom: 10px;
        background:rgba(0,0,0,.2);
        /*same background color of navbar*/
        background-position: center top;
		margin-top:95px;
		margin-bottom:5px;
		padding-bottom:15px;
		
    }
	
	nav div.main_list ul li a {
    
    color: red !Important; } 
	
	nav div.main_list ul li a:hover {
    
    color: rgb(144,198,202) !Important; } 
	
    .nav div.main_list ul li {
        width: 100%;
        text-align: right;
		margin-top:15px;
		margin-bottom:5px;
    }
    .nav div.main_list ul li a {
        text-align: center;
        width: 100%;
        font-size: 3rem;
        padding: 10px;
		margin-top:15px;
		margin-bottom:15px;
		
    }
    .nav div.media_button {
        display: block;
    }
}


/* Animation */
/* Inspiration taken from Dicson https://codemyui.com/simple-hamburger-menu-x-mark-animation/ */

.navTrigger {
    cursor: pointer;
    width: 50px;
    height: 50px;  
    padding-top:15px;	
	padding-left:10px;
    position: relative;
	top:-15px;
    right:-40%;    
    bottom: 0;
	background: rgb(144,198,202);
	border-radius:10px;
	margin:auto;
}

.navTrigger i {
    background-color: red;
    border-radius: 2px;
	
    content: '';
    display: block;
    width: 70%;
    height: 4px;
}

.navTrigger i:nth-child(1) {
    -webkit-animation: outT 0.8s backwards;
    animation: outT 0.8s backwards;
    -webkit-animation-direction: reverse;
    animation-direction: reverse;
}

.navTrigger 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;
}

.navTrigger i:nth-child(3) {
    -webkit-animation: outBtm 0.8s backwards;
    animation: outBtm 0.8s backwards;
    -webkit-animation-direction: reverse;
    animation-direction: reverse;
}

.navTrigger.active i:nth-child(1) {
    -webkit-animation: inT 0.8s forwards;
    animation: inT 0.8s forwards;
}

.navTrigger.active i:nth-child(2) {
    -webkit-animation: inM 0.8s forwards;
    animation: inM 0.8s forwards;
}

.navTrigger.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: rgba(0,0,0,.3);
}






.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%;
	}
}