* {
	padding: 0;
	margin: auto;
	box-sizing: border-box;
	color: #333;
	text-decoration: none;
}

body {
	background: #F7F7F7;
	font-family: "Figtree", sans-serif;
}

p {
	font-size: 18px;
	line-height: 1.65;
	font-weight: 300;
	color: #4a4a4a;
}

h1 {
	font-size: 40px;
	font-weight: 700;
	margin-bottom: 5px;
}

h2 {
	font-size: 26px;
	line-height: normal;
	text-decoration: none;
	font-weight: lighter;
	padding-bottom: 20px;
}

h3 {
	font-size: 28px;
	font-style: normal;
	margin-bottom: 10px;
}

.navbar {
	width: 100%;
	display: flex;
	align-items: center;
}

.logo {
	width: 48px;
	cursor: pointer;
}

nav {
	flex: 1;
	text-align: right;
}

nav ul li {
	display: inline-block;
	margin-right: 0;
}

nav ul li a {
    text-decoration: none;
    color: #333;
    font-weight: 600;
}

nav ul li a:hover {
	opacity: 0.8;
}

.container {
	max-width: 1030px;
	margin-top: 30px;
	padding-left: 30px;
	padding-right: 30px;
	overflow: hidden;
}

.btn {
	padding: 10px 32px;
	align-items: center;
	border-radius: 4px;
	background: #333;
	border: 0;
	outline: 0;
	color: #ededeb;
	cursor: pointer;
	font-size: 16px;
	font-weight: 400;
	line-height: normal;
	border: 2px solid #333;
	display: inline-block;
}

.content .btn:hover {
	border: 2px solid #333;
	background-color: #ededeb;
	color: #333;
}

.content {
	margin-top: 50px;
	color: #333;
	margin-bottom: 40px;
}

.content a {
	font-weight: 600;
	line-height: normal;
	text-decoration: none;
	color: #333;
}

.content a:hover {
	text-decoration: underline;
	opacity: 1;
}

a:hover {
  opacity: 0.8;
  text-decoration: none;
}

.img-container {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	grid-template-rows: 1fr 1fr 1fr;
	grid-column-gap: 20px;
	grid-row-gap: 20px;
}

img {
	width: auto;
	height: auto;
	border-radius: 8px;
}

.sec1 {
	grid-area: 1 / 1 / 3 / 2;
}

.sec2 {
	grid-area: 1 / 2 / 2 / 4;
}

.sec3 {
	grid-area: 2 / 2 / 3 / 3;
}

.sec4 {
	grid-area: 2 / 3 / 3 / 4;
}

.sec5 {
	grid-area: 3 / 1 / 4 / 3;
}

.sec6 {
	grid-area: 3 / 3 / 4 / 4;
}

.more-work {
	max-width: 970px;
	display: grid;
	grid-template-columns: repeat(3, auto);
	grid-gap: 20px;
}

.more-work img {
	border-radius: 8px;
    max-width: 100%;
	margin-bottom: 2px;
}

.title {
	padding-top: 40px;
	padding-bottom: 20px;
}

footer {
	padding-top: 80px;
	padding-bottom: 150px;
	width: 100%;
	display: flex;
	align-items: center;
}

footer p {
	flex: 1;
	text-align: left;
	margin-left: 15px;
	font-size: 12px;
	margin-bottom: auto;
}

footer img {
	width: 38px;
}

span {
    font-size: 14px;
    line-height: 1.65;
}

.mobile{
display: none;
}

@media only screen and (max-width: 1030px) and (min-width: 631px) {
/* For tablet: */

.tablet{
display: block;
}

.desktop{
display: none;
}

.more-work {
	display: grid;
	grid-template-columns: repeat(2, auto);
	grid-gap: 20px;
}

.more-work img {
	max-width: 100%;
	border-radius: 8px;
}

footer {
    padding-top: 40px;
    padding-bottom: 80px;
}

.img-fullwidth img {
    width: 100%;
}
}


@media only screen and (max-width: 630px) {
/*iphone*/
	
.content {
	margin-top: 30px;
	color: #333;
	margin-bottom: 20px;
}

.desktop{
display: none;
}

.mobile{
display: block;
}

.container {
	margin-top: 30px;
	overflow: hidden;
}

.header{
    height: 760px;
}

.nugget{
	margin-bottom: 10px;
}

.figure {
	flex-direction: column;
	gap: 30px;
	margin-top: 15px;
}

.figure-reverse {
	flex-direction: column;
	margin-top: 15px;
	gap: 20px;
}

.figure-image img {
    height: 400px;
    width: auto;
}

.figure-full {
    margin-top: 10px;
}

.img-triple img{
	margin-top: 0px;
    height: auto;
    width: 100%;
}

.img-fullwidth img{
	width: 100%;
    padding-bottom: 20px;
}

.title {
    padding-top: 0px;
}


h1 {
    font-size: 32px;
	line-height: 48px;
}

h2 {
    font-size: 24px;
    padding-bottom: 5px;
}

h3 {
    font-size: 20px;
    font-style: normal;
    margin-bottom: 5px;
}

p {
    margin-bottom: 20px;
}

.more-work {
	display: grid;
	grid-gap: 20px;
	grid-template-columns: repeat(1, auto);
}

.more-work img {
	max-width: 100%;
	flex: 1 0 0;
	border-radius: 8px;
	flex-wrap: wrap;
}

footer {
    padding-top: 40px;
    padding-bottom: 80px;
}
}