@charset "UTF-8";
/* CSS Document */

body {
	margin-left: 0px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
}
table, tr, td, th
{
	padding: 0;
}

#main_div
{
	width: 1117px;
	height: 1080px;
	padding: 0;
	margin: 0 auto;
	display: none;
	 
}
#abouts_main_div
{
	width: 100%;
	display: none;
}
#mobile_main_div
{
	width: 414px;
	height: 973px;
	background: url("");
	
}
#tablet_main_div
{
	width: 1024px;
	height: 797px;
	padding: 0;	
	background: url("images/tablet-bg.jpg");
	position: absolute;
	background-size: 1024px 797px;
	display: none;
	
}
.font_desktop_list
{
	font-family: Arial, Helvetica, sans-serif;
	font-size: 15px;
	color: #ffffff;
	line-height: 22px;
	text-align: justify;
}
.font_p
{
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #fff;
	line-height: 14px;
	padding: 0;
	margin: 0;
	text-align: justify;
}
.font_p_yellow
{
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #ffcb08;
	font-weight: bold;
	line-height: 16px;
}
.footer_font
{
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11px;
	color: #fff;
}
.email_link
{
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #FFFFFF;
}
.email_link a
{
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #FFFFFF;
	text-decoration: none;
}
.email_link:hover
{
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #ffcb08;
}


/* humberger menu*/
.menu_font_mobile{
	font-family: Arial, Helvetica, sans-serif;
	font-size: 14px;
	color: #FFFFFF;
	line-height: 30px;
	padding: 40px;
}
header {
    border-bottom: 1px solid #eee;
    height: 4rem;
}
.burger-wrapper {
  cursor: pointer;
}
#meny {
    background:;
    width: 372px;
    height: 377px;
    position: fixed;
    right: 0;
    transition-timing-function: cubic-bezier(10,2,3,1);
    transform: translateX(50rem);
    top: 0;
    z-index: 0;
    transition: 0.5s;	
}
#menyAvPaa {
    display: none;
}

#menyAvPaa:checked ~ #meny {
    transform: translateX(0rem);
}

#burger {
    position: absolute;
    cursor: pointer;
    width: 25px;
    height: 1rem;
    right: 1rem;
    top: 1rem;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
}

#burger > div {
    height: 2px;
    background-color: #f7941e;
    transition: 0.5s;
    z-index: 999;
}

#menyAvPaa:checked ~ #burger > div {
  background-color: #6a2901;
}

#menyAvPaa:checked ~ #burger > div:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
#menyAvPaa:checked ~ #burger > div:nth-child(2) {
    opacity: 0;
}
#menyAvPaa:checked ~ #burger > div:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}