/* Theming */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;700&display=swap"); /* import font */

:root{
    --white: #fffcdf;
    --black: #000000;
    --gray: #85888C;
	--yellow: #ffd800;
	--red: #ff5c5c;
} /* variables*/

/* Reset */
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
    background-color: var(--white);
    font-family: "Poppins", sans-serif;
}
a{
    text-decoration: none;
}
ul{
    list-style: none;
}
/* Header */
.header{
    background-color: var(--red);
    box-shadow: 1px 1px 5px 0px var(--yellow);
    position: relative;
    top: 0;
    width: 100%;
	max-width: 1044px;
	height: auto;
}
/* Logo */
.logo{
    display: inline-block;
    color: var(--yellow);
    font-size: 60px;
    margin-left: 10px;
}
/* Nav menu */
.nav{
    width: 100%;
	max-width: 1044px;
    height: 100%;
    position: relative;
    background-color: var(--red);
    overflow: hidden;

}
.menu a{
    display: block;
    padding: 0px 50px;
    color: var(--yellow);
}
.menu a:hover{
    background-color: var(--white);
}
.nav{
    max-height: 0;
    transition: max-height .5s ease-out;
}
/* Menu Icon */
.hamb{
    cursor: pointer;
    float: right;
    padding: 20px 20px;
}/* Style label tag */

.hamb-line {
    background: var(--yellow);
    display: block;
    height: 2px;
    position: relative;
    width: 24px;

} /* Style span tag */

.hamb-line::before,
.hamb-line::after{
    background: var(--yellow);
    content: '';
    display: block;
    height: 100%;
    position: absolute;
    transition: all .2s ease-out;
    width: 100%;
}
.hamb-line::before{
    top: 5px;
}
.hamb-line::after{
    top: -5px;
}

.side-menu {
    display: none;
} /* Hide checkbox */
/* Toggle menu icon */
.side-menu:checked ~ nav{
    max-height: 100%;
	top: 8%
}
.side-menu:checked ~ .hamb .hamb-line {
    background: transparent;
}
.side-menu:checked ~ .hamb .hamb-line::before {
    transform: rotate(-45deg);
    top:0;
}
.side-menu:checked ~ .hamb .hamb-line::after {
    transform: rotate(45deg);
    top:0;
}

/*columns*/
.row::after {
  content: "";
  clear: both;
  display: block;
}
.footer {
  background-color: var(--white);
  color: var(--black);
  text-align: Left;
  font-size: 12px;
  padding: 15px;
}
.center{
	display: block;
	width: 100%;
	max-width: 1044px;
	margin-left: auto;
	margin-right: auto;
	position: relative;
}
.right{
	float: right;	
}
.deskfont{
	font-size: 24px;
}
/* For desktop: */
.col-1 {width: 8.33%;}
.col-2 {width: 16.66%;}
.col-3 {width: 25%;
		padding-top: 40px;
		padding-left: 20px;}
.col-4 {width: 33.33%;}
.col-5 {width: 41.66%;}
.col-6 {width: 50%;}
.col-7 {width: 58.33%;}
.col-8 {width: 66.66%;}
.col-9 {width: 75%;}
.col-10 {width: 83.33%;}
.col-11 {width: 91.66%;}
.col-12 {width: 100%;}
/* Responsiveness */
@media (min-width: 768px) {
    .nav{
        max-height: none;
        top: 0;
        position: relative;
        float: right;
        width: 100%;
        background-color: #ff5c5c;
    }
    .menu li{
        float: left;
    }
    .menu a:hover{
        background-color: transparent;
        color: var(--white);

    }

    .hamb{
        display: none;
    }
}
@media only screen and (max-width: 480px) {
[class*="col-"]{
	display: block;
	width: 50%;
	padding-top: 40px;
	margin-left: auto;
	margin-right: auto;
	}
}

@media (min-width: 900px) {
	.nav{
		width: 100%;
		top: 0;
  		background-color: #ff5c5c;
  		overflow: auto;
	}
	.menu li{
		float: left;
  		padding: 8px;
  		color: #ffd800;
  		text-decoration: none;
  		font-size: 17px;
  		width: 25%; /* Four links of equal widths */
  		text-align: center;
	}
	.menu a:hover{
		background-color: transparent;
		color: var(--white);
	}
	.hamb{
		display: none;
	}
}
.container {
	text-align: justify;
	color: var(--white);
}
.centext {
  position: absolute;
  top: 15%;
  left: 15%;
  transform: translate(-5%, 10%);
  color: transparent;
}
