@charset "utf-8";
/* Header Common */
.header {
    width: -webkit-fill-available;
    z-index: 3;
    padding: 0;
    justify-content: space-between;
    align-items: center;
    display: flex;
}
.header .logo {
    float: left;
    padding: 0;
    text-decoration: none;
    color: #ccc;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    text-align: left;
}
.logofont {
    font-family: 'Cooper Black';
    color: #29a2c2;
    font-size: 1.5rem;
    line-height: 1.5rem;
    letter-spacing: -0.025rem;
}
.logotag-line {
    font-family: 'Baloo 2', cursive;
    color: #000;
    letter-spacing: -0.04rem;
}
.header ul {
    margin: 0;
    padding: 0;
    list-style: none;
    overflow: hidden;
    display: flex;
    align-items: center;
}
.header li {
    float: left;
}
.header li a {
    padding: 0 1vw;
    margin: 0;
    font-weight: 600;
    color: inherit;
    text-decoration: none;
    display: block;
    letter-spacing: -0.025vw;
   font-family: 'Baloo 2';
}
.header li:last-child a {
    color: #fff;
    background: #29a2c2;
    height: max-content;
    line-height: 3vw;
    padding: 0 2vw;
    border-radius: 0.5vw;
}
.header li a:hover, .header .menu-btn:hover {
    color: #29a2c2;
}
.header li:last-child a:hover {
    color: #fff;
}
.header li a span{
	display:none;
}
header> a > img {
    height: auto;
    width: 15vw;
}
/* Menu Icon */
.header .menu-icon {
    display: none;
}
/* Menu Btn */
.header .menu-btn {
    display: none;
}
/*Header Menu*/
.header .menu {
    clear: none;
    float: right;
    max-height: none;
	transition: max-height .2s ease-out;
}
/* Header Back Button & Icon */
.backicon{
	background: #333;
    display: block;
    height: 2px;
    position: relative;
    transition: background .2s ease-out;
    width: 18px;
	border-radius: 100px 0 0 100px;
}
.header .backicon:before, .header .backicon:after {
    background: #333;
    content: '';
    display: block;
    height: 100%;
    position: absolute;
    width: 100%;	
}
.header .backicon:before {
    top: -3px;
	transform: rotate(-45deg);
	width:10px;
	left:-1px;
	border-radius: 100px 0 0 100px;
}
.header .backicon:after {
    top: 3px;
	transform: rotate(45deg);
	width:10px;
	left:-1px;
	border-radius: 100px 0 0 100px;
}
.header #backButton {
    cursor: pointer;
    display: flex;
    float: right;
    padding: 0;
    position: relative;
    user-select: none;
    height: 15vw;
    align-items: center;
}
/* Header For Mobile Devices */
@media only screen and (min-device-width: 280px) and (max-device-width: 820px){
.header {
	width: 100%;
	padding:0;
	background-color: #fff;
	z-index: 3;
}
/*.header ul {
    margin: 0;
    padding: 0;
    list-style: none;
    overflow: hidden;
    background-color: #29a2c2;
    position: absolute;
    top: 0;
    width: 80vw;
    left: -100vw;
    height: 100vh;
}*/
.header ul {
    margin: 0;
    padding: 10vw 5vw;
    list-style: none;
    overflow: hidden;
    background-color: #29a2c2;
    position: fixed;
    bottom: -50vh;
    width: 90vw;
    height: calc(50vh - 20vw);
    border-radius: 5vw 5vw 0 0;
    left: 0;
}
.header li {
    float:none;
}
.header li:last-child {
	border-bottom: none;
}
.header li a {
    color: #000;
    letter-spacing: -0.03rem;
    padding: 0 1rem;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.65rem;
    width: 80%;
    border: 0;
    margin: 0.5rem auto;
    border-radius: 10rem;
    line-height: 2rem;
    background: #fff;
    display: block;
    font-family: 'Baloo 2';
}
.header li:last-child a {
    color: #000;
    letter-spacing: -0.03rem;
    padding: 0 1rem;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.65rem;
    width: 80%;
    border: 0;
    margin: 0.5rem auto;
    border-radius: 10rem;
    line-height: 2rem;
    background: #fff;
    display: block;
    font-family: 'Baloo 2';
}
.header li a:hover{
    color: #ffffff;
    background: #269abc;
}
.header li a > span:first-child{
	padding: 0 3vw 0 0;
	color: #269abc;
}
header> a > img {
    height: auto;
    width: 75%;
}
.header .menu-icon {
    cursor: pointer;
    display: inline-block;
    float: right;
    padding: 0;
    position: relative;
    user-select: none;
    z-index: 103;
    display: flex;
    align-items: center;
    height: 15vw;
    width: 15vw;
    justify-content: flex-end;
}
.header .menu-icon .navicon {
    background: #333;
    display: block;
    height: 2px;
    position: relative;
    transition: background .2s ease-out;
    width: 18px;
}
.header .menu-icon .navicon:before {
    top: 5px;
}
.header .menu-icon .navicon:after {
    top: -5px;
}
.header .menu-icon .navicon:before, .header .menu-icon .navicon:after {
    background: #333;
    content: '';
    display: block;
    height: 100%;
    position: absolute;
    transition: all .2s ease-out;
    width: 100%;
}
.header .menu {
	clear: both;
 	transition: bottom .2s ease-out;
	display:block;
}
.header .menu-btn {
	display: none;
}
.header .menu-btn:checked ~ .menu {
	 bottom:0;
	 z-index:104;
	 left:0
}
.menuoverlay {
    position: fixed;
    width: 100vw;
    height: 100vh;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 101;
    display: none;
}
.header .menu-btn:checked ~ .menuoverlay {
	display:block;
}
 .header .menu-btn:checked ~ .menu-icon .navicon {
 background: transparent;
}
 .header .menu-btn:checked ~ .menu-icon .navicon:before {
 transform: rotate(-45deg);
}
 .header .menu-btn:checked ~ .menu-icon .navicon:after {
 transform: rotate(45deg);
}
 .header .menu-btn:checked ~ .menu-icon:not(.steps) .navicon:before, .header .menu-btn:checked ~ .menu-icon:not(.steps) .navicon:after {
 top: 0;
 background: #fff;
}
@media only screen and (min-width: 768px) and (orientation: portrait){
.header {
	padding: 0;
}
}
@media only screen and (min-width: 1024px){
.header {
	padding: 0 10%;
}
}
@media only screen and (min-width: 1024px) and (orientation: portrait){
.header {
   padding: 50px 10% 0 10%;
}
}
@media only screen and (min-width: 1920px){
.header {
    padding: 50px 10% 0 10%;
}
header> a > img {
    width: 130%;
}
}
