@charset "UTF-8";

/*CSS CODE*/
html{
	box-sizing: border-box;
	background: #fff;
    -webkit-font-smoothing: antialiased;
}

*,*::before,*::after{
	box-sizing: inherit;
}

body{
	margin: 0px;
	padding: 0px;
	background-color: white;
	font-family: verdana;
}

ul{
	padding: 0px;
}

.wrapper{
	background-color: rgb(237, 124, 238);	
}

/*NAV*/
.nav-ul{
	margin: 0;
	background-color: rgb(237, 124, 238);
}

.nav-li{
	list-style: none;
	margin-left: 0;
	border-bottom: 1px solid #efefef;	
}

.nav-li-a{
	padding: 0.6em 2rem;
	display: block;
	color: white;
	text-decoration: none;
	font-weight: normal;
	font-size: 15px;
	text-align: left;
}

.nav-ul a:link{
	text-decoration: none;
}

.nav-ul a:link, .nav-ul a:visited{
	color: white;
}

.nav-ul a:hover, .nav-ul a:focus, .nav-ul a:active{
	color: rgba(237, 124, 238, .8);
	background-color: white;
	transition: all 550ms ease;
	border-radius: 20px;
    border-collapse: collapse;
}

.nav-active{
	color: rgba(237, 124, 238, .8);
	transition: all 550ms ease;
}

.container{
	background-color: #EEEEEE;
	padding: 2em 2rem;	
}

.content{   
	background-color: #EEEEEE;
}

/*LINKS*/
.links{
	display: flex;
    background-size: cover;
    background-color: #9c497b;
	padding: 30px;
    border-top: 0.5px;
    border-top-style: inset;
    border-top-color: rgba(255, 255, 255, .3); 
    justify-content: center;
	justify-items: center;
	align-items: center;
	align-content: center;
}

.table{
        text-decoration: none;
        font-size: 20px;
        color: #fff;
        margin: auto;
        border-collapse: separate;
    }
    
    .table ul{
        list-style: none;
        margin-left: 70px;
    }
    
    .table ul li a{
        text-decoration: none;
        color: #000;
        font-size: 15px;
    }
    
    .table ul li a:hover{
        color: whitesmoke;
        transition: all 550ms ease;
    }

 /*FOOTER*/
 .footer{
	background-color: #9c497b;
	color: #fff;
    text-align: center;
    letter-spacing: 0.05em;
    border-top: 0.5px;
    border-top-style: inset;
    border-top-color: rgba(255, 255, 255, .3);
    font-size: 14px;
    padding: 20px;
}

 /*FLOAT BUTTONS*/
.gotopbtn{
    position: fixed;
    width: 40px;
    height: 40px;
    background: white;
    bottom: 40px;
    right: 50px;
    text-decoration: none;
    text-align: center;
    line-height: 50px;
    color: white;
    font-size: 22px;
    opacity: .7;
    border-radius: 20px;
}

.gotopbtn img{
    box-sizing: border-box;
    width: 40px;
    height: 40px;
}

.gotopbtn:hover{
    background-color: rgb(237, 124, 238);
    transition: all 550ms ease;;
}


/*640px BREAKPOINT*/
@media screen and (min-width: 40em){
	.header{
	    padding: 1.5em;
	    text-align: left;
    }

    .container{
	    padding: 3rem 0;
	    display: block;
	    overflow: auto;
    }

    .content{
	    display: block;
	    width: 100%;
	    padding: 0 1rem 0 2rem;
    }

   .nav-ul{
	    padding: 0 2rem;
	    overflow: hidden;
    }

    .nav-li{
	   float: left;
	   display: inline-block;
	   border: none;
	   width: auto;
    }

    .nav-li-a{
	   padding: 0.7em 1.2rem;
	   display: inline-block;
    }
}

/*1024px BREAKPOINT*/
@media screen and (min-width: 64em){
	.container{
		width: 85%;
		padding: 0;
		margin-left: 15%;
	}

	.content{
		width: 100%;
		padding: 1em 1.5em;
	}

	.nav-ul{
		width: 15%;
		float: left;
		margin: 1em 0;
		padding: 0;
	}

	.nav-li{
		width: 100%;
		float: none;
		text-align: center;
	}

	.nav-li-a{
		padding: 0.5em 3rem;
		display: block;
	}
}

/*1280px BREAKPOINT*/
@media screen and (min-width: 80em){
	.wrapper{
		margin: 0 auto;
		max-width: 100%;
	}

	.content{
	    width: 100%;
	    background-color: #EEEEEE;
	}
}

@media screen and (max-width: 1024px/*920px*/){
	.table{
           width:100%;
           border-right: hidden;
        }

        .table ul{
            margin-left: 0px;
            margin-right: 0px;
            margin-bottom: 0px;
            margin-top: 0px;
        }

        .table thead {
           display: none;
        }

        .table tr:nth-of-type(2n) {
           background-color: inherit;
        }

        .table tr td:first-child {
          
        }

        .table tbody td {
           display: block;
           text-align:center;
        }

        .table tbody td:before {
           content: attr(data-th);
           display: block;
           text-align:center;
        }
}
