*{
	padding:0;
	margin:0;
	box-sizing: border-box;
}
h1{
	font-family: 'Archivo Black', sans-serif;
	color: green;
	padding-bottom: 15px;
	font-size: 42px;
	line-height: 53px;
}
h3{
	padding-bottom: 20px;
	font-size: 24px;
}
body{
	font-family: 'Montserrat', sans-serif;
}
.mobile-wrapper{
	display: none;
}
.logo{
	padding:10px 10px 10px 10px
}
nav{
	display: flex;
}
.btn{
	background-color: rgb(232, 78, 54);
	border: none;
	padding: 15px 30px;
	color: #fff;
	font-size: 16px;
	text-transform: uppercase;
	font-weight: bold;
	text-decoration: none;
}
.fixwidth{
	max-width:1280px;
	margin:0 auto;
}
.flbox{
	display: flex;
	flex-direction: row;
}
.leftbx{
	padding: 7% 40px 0 20px;
}
.leftbx .rightbx{
	flex:50%
}

.rightbx img{
	max-width: 100%
}
.main{
	background-color: rgb(246, 246, 246);
}
.pad30{
	padding: 30px;
}
header>div{
	display:flex;
	justify-content: space-between;
	flex:50%;
	padding: 5px 0;
}
header ul{
	display: flex;
	flex-direction: row;
}
header ul li{
	list-style-type: none;
	padding:10px
}
header ul li a{
	text-transform: uppercase;
	text-decoration: none;
	font-weight: bold;
	color: #000;
}
.col-3{
	flex: 33.3%;
	padding: 50px
}

.col-3 p{
	font-size: 18px;
	line-height: 28px;
}
footer{
	background-color: rgb(232, 78, 54);
	display: flex;
	align-items: center;
}
footer p{
	color: #fff;
}

.nav{
	display:flex;
    position: fixed;
    background-color: #fff;
    overflow: hidden;
}
.menu a{
    display: block;
    padding: 15px;
    color: #666;
}
.menu a:hover{
    background-color: #ccc;
}
.nav{
    max-height: 0;
    transition: max-height .5s ease-out;
}

.hamb{
    cursor: pointer;
    float: right;
    padding: 40px 20px;
}

.hamb-line {
    background: #666;
    display: block;
    height: 2px;
    position: relative;
    width: 24px;

}

.hamb-line::before,
.hamb-line::after{
    background: #666;
    content: '';
    display: block;
    height: 100%;
    position: absolute;
    transition: all .2s ease-out;
    width: 100%;
	z-index: 99;
}
.hamb-line::before{
    top: 5px;
}
.hamb-line::after{
    top: -5px;
}

.side-menu {
    display: none;
}

.side-menu:checked ~ nav{
    max-height: 100%;
}
.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;
}

@media (max-width: 800px) {
	header, main, footer, .leftbx, .rightbx {
	  flex: 100%;
	}
	.flbox{
		flex-direction: column;
	}
	img{
		width: 100%
	}
	.flinverse{
		flex-direction: column-reverse;
	}
	.leftbx{
		padding: 0 30px 30px 30px;
	}
	.col-3{
		padding: 30px;
	}
	h1{
		font-size: 30px;
		line-height: 35px;
	}
	h3{
		font-size: 20px;
	}
	.mainmenu{
		display: none;
	}
	.mobile-wrapper{
		display: block;
	}
	nav{
		width:100%;
		height:100%
	}
	header ul{
		flex-direction: column;
	}
	.hamb{
		display: flex;
		align-items: center;
		justify-content: center;
		padding: 0 10px 0 0;
	}

  }
  @media (min-width: 768px) {
    .nav{
        max-height: none;
        top: 0;
        position: relative;
        float: right;
        width: fit-content;
    }
    .menu li{
        float: left;
    }
    .menu a:hover{
        background-color: transparent;
        color: #666;

    }

    .hamb{
        display: none;
    }
}