@import url(https://fonts.googleapis.com/css?family=Quattrocento+Sans);
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@500&display=swap');

/* Standard settings */

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	padding: 0;
	background: #100c0c;
	width: 100%;
}


/* Links */

a {
	color: #fff;
	font-family: "Quattrocento Sans", sans-serif;
	font-size: 14px;
}


/* Lists */

ul {
	margin: 0;
	padding: 0;
	list-style: none;
}


/* Headings */

h2 {
	text-transform: uppercase;
}

/* Logotype */
#logo{
	width: 40%;
}

#logotype{
	color: #fff;
	z-index: 1;
	position: fixed;
	top: 10px;
	left: 40px;
	text-transform: uppercase;
	font-family: "Montserrat";
	font-size: 2em;
	letter-spacing: 0.2em;
}

/* Content */

.contents {
	display: table;
	width: 100%;
	height: 100vh;
	padding: 0;
	margin: 0;
	background: #111;
	-webkit-transition-property: all;
	transition-property: all;
	-webkit-transition-delay: .3s;
	transition-delay: .3s;
	-webkit-transition-duration: .5s;
	transition-duration: .5s;
}


/* Icons */

#icons {
	display: block;
	position: absolute;
	bottom: 5%;
	right: 30px
}

#icons i {
	padding-right: 20px;
	color: #fff;
	font-size: 18px
}


/* Content cont. */

.contents__inner {
	display: table-cell;
	vertical-align: middle;
	text-align: center;
}

.contents__inner img {
	width: 70%;
	margin-bottom: 0px;
	padding: 0;
	margin-top: -100px;
}

.contents__inner h1 {
	color: #fff;
	font-family: "Quattrocento Sans", sans-serif;
	text-transform: uppercase;
	font-size: 20px;
	font-weight: 100;
	letter-spacing: 4px;
	margin-top: -20px;
}

.contents__inner p {
	margin-top: 20px;
	color: #fff;
	font-size: 20px;
}

.contents__inner p span {
	border-bottom: 1px solid #fff;
}


/* Drawer menu */

.drawer-menu {
	box-sizing: border-box;
	position: fixed;
	top: 0;
	right: 0;
	width: 300px;
	height: 100%;
	padding: 120px 0;
	background: #111;
	-webkit-transition-property: all;
	transition-property: all;
	-webkit-transition-duration: .5s;
	transition-duration: .5s;
	-webkit-transition-delay: 0s;
	transition-delay: 0s;
	-webkit-transform-origin: right center;
	-ms-transform-origin: right center;
	transform-origin: right center;
	-webkit-transform: perspective(500px) rotateY(-90deg);
	transform: perspective(500px) rotateY(-90deg);
	opacity: 0;
}

.drawer-menu li {
	text-align: center;
}

.drawer-menu li a {
	display: block;
	height: 50px;
	line-height: 50px;
	font-size: 16px;
	color: #8b5f30;
	text-transform: lowercase;
	-webkit-transition: all .8s;
	transition: all .8s;
	text-decoration: none;
	font-family: "Montserrat";
}

.drawer-menu li a:hover {
	color: #c4c4c4;
	background: #111;
}


/* Checkbox */

.check {
	display: none;
}


/* Menu button - label tag */

.menu-btn {
	position: fixed;
	display: block;
	top: 40px;
	right: 40px;
	display: block;
	width: 40px;
	height: 40px;
	font-size: 10px;
	text-align: center;
	cursor: pointer;
	z-index: 3;
}

.bar {
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	width: 40px;
	height: 3px;
	background: #fff;
	-webkit-transition: all .5s;
	transition: all .5s;
	-webkit-transform-origin: left top;
	-ms-transform-origin: left top;
	transform-origin: left top;
	border-radius: 25px;
}

.bar.middle {
	top: 15px;
	opacity: 1;
	width: 25px;
}

.bar.bottom {
	top: 30px;
	-webkit-transform-origin: left bottom;
	-ms-transform-origin: left bottom;
	transform-origin: left bottom;
}

.menu-btn__text {
	position: absolute;
	bottom: -15px;
	left: 0;
	right: 0;
	margin: auto;
	color: #fff;
	-webkit-transition: all .5s;
	transition: all .5s;
	display: block;
	visibility: visible;
	opacity: 1;
}

.menu-btn:hover .bar {
	background: rgb(153, 153, 153);
}

.menu-btn:hover .menu-btn__text {
	color: #999;
}

.close-menu {
	position: fixed;
	top: 0;
	right: 300px;
	width: 100%;
	height: 100vh;
	background: rgba(0, 0, 0, 0);
	cursor: url(http://theorthodoxworks.com/demo/images/cross.svg), auto;
	-webkit-transition-property: all;
	transition-property: all;
	-webkit-transition-duration: .3s;
	transition-duration: .3s;
	-webkit-transition-delay: 0s;
	transition-delay: 0s;
	visibility: hidden;
	opacity: 0;
}


/* Checked */

.check:checked~.drawer-menu {
	-webkit-transition-delay: .3s;
	transition-delay: .3s;
	-webkit-transform: none;
	-ms-transform: none;
	transform: none;
	opacity: 1;
	z-index: 2;
}

.check:checked~.contents {
	-webkit-transition-delay: 0s;
	transition-delay: 0s;
	-webkit-transform: translateX(-300px);
	-ms-transform: translateX(-300px);
	transform: translateX(-300px);
}

.check:checked~#portfolio {
	-webkit-transition-delay: 0s;
	transition-delay: 0s;
	-webkit-transform: translateX(-300px);
	-ms-transform: translateX(-300px);
	transform: translateX(-300px);
}

.check:checked~#portfolio2 {
	-webkit-transition-delay: 0s;
	transition-delay: 0s;
	-webkit-transform: translateX(-300px);
	-ms-transform: translateX(-300px);
	transform: translateX(-300px);
}

.check:checked~#portfolio3 {
	-webkit-transition-delay: 0s;
	transition-delay: 0s;
	-webkit-transform: translateX(-300px);
	-ms-transform: translateX(-300px);
	transform: translateX(-300px);
}

.check:checked~#about {
	-webkit-transition-delay: 0s;
	transition-delay: 0s;
	-webkit-transform: translateX(-300px);
	-ms-transform: translateX(-300px);
	transform: translateX(-300px);
}

.check:checked~.menu-btn .menu-btn__text {
	visibility: hidden;
	opacity: 0;
}

.check:checked~.menu-btn .bar.top {
	width: 56px;
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
}

.check:checked~.menu-btn .bar.middle {
	opacity: 0;
}

.check:checked~.menu-btn .bar.bottom {
	width: 56px;
	top: 40px;
	-webkit-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	transform: rotate(-45deg);
}

.check:checked~.close-menu {
	-webkit-transition-duration: 1s;
	transition-duration: 1s;
	-webkit-transition-delay: .3s;
	transition-delay: .3s;
	background: rgba(0, 0, 0, .5);
	visibility: visible;
	opacity: 1;
	z-index: 3;
}


/* Main section */

.contents2 {
	position: absolute;
	top: 100px;
	bottom: 0;
	left: 0;
	right: 0;
	width: 400px;
	height: 40px;
	margin: auto;
}

.contents {
	position: relative;
	width: 100%;
	height: 100vh;
	background-image: url(../img/dog3.jpg);
	background-size: 60%;
	background-position: 50% 0%;
	background-repeat: no-repeat;
	overflow: hidden!important;
	background-color: #1e191b;
}


/* Desktop */

@media only screen and (min-width: 1301px) and (max-width: 1500px) {

	/* Content */
	.contents2 {
		top: 110px;
	}
	.contents__inner h1 {
		font-size: 25px!important;
		text-align: center;
		margin-top: -15px;
		margin-bottom: 5px;
	}
	/* Logotype */
	#logo {
		padding-bottom: 15px;
		width: 30%;
	}
}


/* Small desktop / Tablet */

@media only screen and (max-width: 1300px) {

	/* Menu */
	.menu-btn {
		position: absolute;
	}

	/* Content */
	.contents {
		max-width: 100vw;
		height: 100vh;
		background-size: 80%!important;
		background-position: 50% 50%;
		overflow: hidden;
    }
	.contents2 {
		width: 100%;
	}

	/* Content */
    
	.contents__inner h1 {
		font-size: 18px!important;
        text-align: center;
        margin-top: -25px;
	}

  /* Logotype */
        
    #logo {
        width: 20%;
        margin-top: -80px;
    }

    /* Icons */

    #icons {
    bottom: 5%;
    right: 0px
    }
}


/* Mobile */

@media only screen and (max-width: 700px) {

	
	/* Content */
	.contents {
		max-width: 100vw;
		height: 100vh;
		background-size: 90%!important;
		background-position: 50% 50%;
		overflow: hidden;
    }
    
	.contents__inner h1 {
		font-size: 18px!important;
		text-align: center;
	}
	.contents__inner h1 {
		margin-top: -2px;
    }

/* Drawer menu */

.drawer-menu {
	width: 280px;
}

    /* Menu */

    .menu-btn {
        top: 40px;
        right: 15px;
    }

    /* Logo */
    
	#logo {
		width: 30%;
		margin-top: -60px;
    }
    
    /* Icons */

    #icons {
	bottom: 5%;
	right: 0px
    }
}