* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

/* font for all page */
body {
	font-family: "Quicksand", sans-serif;
	overflow-x: hidden;
}

:root {
	--text--bright: #616161;
	--secondary: #ff6f40;
	--white: #fff;
	--black: #000;
	--primary: #5a9a5b;
}

/* NAV */
.nav {
	display: flex;
	justify-content: space-between;
	align-items: center;
	max-width: 1240px;
	margin: 20px auto;
}

.nav-container {
	display: flex;
	gap: 58px;
}

/* links styles */
.nav-links {
	display: flex;
	align-items: center;
	gap: 40px;
}

.nav-links a {
	font-size: 16px;
	font-weight: bold;
	color: var(--text--bright);
	text-decoration: none;
	line-height: 24px;
	transition: 333ms ease-in-out;
}

.nav-links a:hover {
	color: var(--secondary);
	border-bottom: 1px var(--secondary) solid;
}

/* btn styles */
.nav-btn {
	display: flex;
	gap: 12px;
}

/* Order btn */
.nav-btn a:nth-child(1) {
	border: 1px var(--secondary) solid;
	text-decoration: none;
	padding: 16px 32px;
	border-radius: 8px;

	color: var(--secondary);
	font-weight: bold;
	font-size: 16px;
	transition: 333ms ease-in;
}

.nav-btn a:nth-child(1):hover {
	background-color: var(--secondary);
	color: var(--white);
}

/* Join btn */
.nav-btn a:nth-child(2) {
	border: 1px var(--secondary) solid;
	background-color: var(--secondary);
	text-decoration: none;
	padding: 16px 32px;
	border-radius: 8px;

	color: var(--white);
	font-weight: bold;
	font-size: 16px;
	transition: 333ms ease-in;
}

.nav-btn a:nth-child(2):hover {
	color: var(--secondary);
	background-color: var(--white);
}

/* burger menu */
#burger-menu {
	display: none;
	width: 40px;
}

/* create burger menu */
@media (max-width: 1240px) {
	.nav {
		padding: 0 20px;
		position: relative;
	}

	.nav-links {
		display: none;
	}

	#burger-menu {
		display: flex;
		cursor: pointer;
	}

	.active {
		position: absolute;
		left: 0;
		top: 160px;
		width: 100%;

		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
	}
}

/* phone styles */
@media (max-width: 650px) {
	.nav img {
		width: 160px;
	}

	.nav-container {
		gap: 16px;
	}
	.nav-btn {
		display: flex;
		align-items: center;
	}

	.nav-btn a:nth-child(1),
	.nav-btn a:nth-child(2) {
		align-items: center;
		padding: 6px 12px;
	}

	#burger-menu {
		width: 40px;
	}

	.active {
		top: 100px;
	}
}

@media (max-width: 420px) {
	.nav {
		padding: 0 10px;
	}

	.nav img {
		width: 120px;
	}
}

/* MAIN */
.main {
	max-width: 1240px;
	margin: 100px auto;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
}

.main h1 {
	font-size: 64px;
	font-weight: 500;
	line-height: 68px;
	letter-spacing: -0.5%;
	padding-top: 25px;
	padding-bottom: 40px;
}

/* orange-text */
.main-oragne {
	color: var(--secondary);
	font-weight: bold;
	position: relative;
}

/* img for main title */
.main-oragne::after {
	content: "";
	position: absolute;
	width: 64px;
	height: 64px;
	bottom: 30px;
	right: -40px;
	background-image: url("./assets/hero-title-styles.svg");
}

/* main text */
.main h5 {
	font-size: 24px;
	line-height: 32px;
	font-weight: 500;
	color: var(--text--bright);
	text-align: center;
	letter-spacing: 0.25%;

	padding-bottom: 100px;
}

/* main btns */
.main-btns {
	display: flex;
	align-items: center;
	gap: 24px;
}

.main-btns a:nth-child(1) {
	background-color: var(--primary);
	border: 1px solid var(--primary);
	border-radius: 8px;
	padding: 16px 85px;
	text-decoration: none;
	color: white;
	font-size: 16px;
	line-height: 24px;
	font-weight: bold;
	transition: 333ms ease-in-out;
}

.main-btns a:nth-child(1):hover {
	background-color: transparent;
	color: var(--primary);
}

.main-btns a:nth-child(2) {
	background-color: var(--white);
	border: 1px solid var(--white);
	border-radius: 8px;
	padding: 16px 61.5px;
	text-decoration: none;
	color: var(--black);
	font-size: 16px;
	line-height: 24px;
	font-weight: bold;
	transition: 333ms ease-in-out;
}

.main-btns a:nth-child(2):hover {
	background-color: var(--black);
	color: var(--white);
	border: 1px solid var(--black);
}

@media (max-width: 1090px) {
	.main h1 {
		font-size: 40px;
		font-weight: 500;
		line-height: 48px;
		text-align: center;
	}

	.main h5 {
		font-size: 18px;
		line-height: 28px;
	}
}

@media (max-width: 760px) {
	.main h1 {
		font-size: 32px;
		font-weight: 500;
		line-height: 40px;
	}

	.main h5 {
		font-size: 16px;
		line-height: 20px;
		padding-bottom: 40px;
	}

	.main-btns a:nth-child(1) {
		padding: 8px 42px;
	}
	.main-btns a:nth-child(2) {
		padding: 8px 30px;
	}
}

/* SECTION PHOTO */
.section-photo {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 20px;
	margin-bottom: 100px;
}

.section-photo img {
	transition: 333ms ease-in-out;
}

.section-photo img:hover {
	transform: scale(1.1);
	cursor: pointer;
}

@media (max-width: 760px) {
	.section-photo img:nth-child(1) {
		display: none;
	}
	.section-photo img:nth-child(4) {
		display: none;
	}

	.section-photo img {
		width: 250px;
	}
}

@media (max-width: 600px) {
	.section-photo img {
		width: 180px;
	}
}

/* Benefits */
.benefits {
	padding: 100px 0;
	background-color: #f6f9f6;
}
.benefits-container {
	max-width: 1240px;
	margin: 0px auto;
	display: grid;
	grid-template-columns: repeat(12, 1fr);
}

/* left content */
.text-content {
	grid-column-start: 1;
	grid-column-end: 7;
}

.text-content h1 {
	font-size: 48px;
	line-height: 52px;
	font-weight: 500;
	margin-bottom: 40px;
}

.benefits-orange {
	color: var(--secondary);
}

.text-content p {
	font-size: 18px;
	line-height: 24px;
	font-weight: 600;
	margin-bottom: 60px;
	color: var(--text--bright);
}

.text-content ul {
	list-style: none;
	display: flex;
}

.text-content li {
	font-size: 16px;
	color: var(--text--bright);
	line-height: 24px;
}

.text-content strong {
	font-size: 24px;
	font-weight: 400;
	line-height: 44px;
	color: var(--black);
}

/* images */
.image-container {
	grid-column-start: 7;
	grid-column-end: 13;
	width: 605px;
	height: 452px;

	display: grid;
	grid-template-columns: repeat(6, 1fr);
	grid-template-rows: repeat(6, 1fr);
	gap: 36px;
}

.image-container img:nth-child(1) {
	grid-column-start: 1;
	grid-column-end: 6;
	grid-row-start: 1;
	grid-row-end: 5;
	width: 100%;
	height: 100%;
	border-radius: 24px;
}
.image-container img:nth-child(2) {
	grid-column-start: 6;
	grid-column-end: 6;
}
.image-container img:nth-child(3) {
	grid-column-start: 5;
	grid-column-end: 7;
	grid-row-start: 3;
	grid-row-end: 7;
	width: 100%;
	height: 100%;
	border-radius: 24px;
}

@media (max-width: 1280px) {
	.benefits-container {
		grid-template-columns: repeat(10, 1fr);
		padding: 0 20px;
	}
	.image-container {
		grid-column-start: 7;
		grid-column-end: 11;
		width: 500px;
		height: 452px;
	}
}

@media (max-width: 1080px) {
	.benefits-container {
		display: flex;
		padding: 0 20px;
		gap: 10px;
	}
	.image-container {
		display: block;
		width: 100%;
		height: 80%;
	}

	.text-content h1 {
		font-size: 40px;
		line-height: 48px;
		margin-bottom: 30px;
	}

	.text-content p {
		font-size: 16px;
		line-height: 22px;
		margin-bottom: 40px;
	}

	.text-content li {
		font-size: 14px;
		line-height: 20px;
	}

	.text-content strong {
		font-size: 22px;
		font-weight: 400;
		line-height: 40px;
	}

	.image-container img:nth-child(2) {
		display: none;
	}
	.image-container img:nth-child(3) {
		display: none;
	}
}

@media (max-width: 925px) {
	.benefits-container {
		display: flex;
		flex-direction: column;
	}
}

@media (max-width: 600px) {
	.benefits {
		margin: 50px auto;
	}

	.benefits-container {
		display: flex;
		padding: 0 20px;
		gap: 10px;
	}
	.image-container {
		display: block;
		width: 100%;
		height: 60%;
	}

	.text-content h1 {
		font-size: 32px;
		line-height: 42px;
		text-align: center;
	}

	.text-content p {
		font-size: 16px;
		line-height: 22px;
		margin-bottom: 40px;
		text-align: center;
	}

	.text-content li {
		font-size: 14px;
		line-height: 20px;
		text-align: center;
	}

	.text-content strong {
		font-size: 22px;
		font-weight: 400;
		line-height: 20px;
	}
}

/* OUR US */
.our-us {
	max-width: 1240px;
	margin: 100px auto;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
}

.our-us h2 {
	font-size: 48px;
	font-weight: 500;
	line-height: 52px;
	padding-bottom: 60px;
}

/* container for cards */
.our-us-container {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.our-us-item {
	flex: 1 1;
	background-color: #fff;

	max-width: 604px;
}

.our-us-item span {
	display: flex;
	align-items: center;
	margin-bottom: 20px;
}

.our-us-item span {
	display: flex;
	gap: 8px;
	margin-bottom: 20px;
}

.our-us-item span p {
	font-size: 40px;
	line-height: 48px;
	white-space: nowrap;
	color: #333;
	margin: 0;
	line-height: 1.6;
}

@media (max-width: 1280px) {
	.our-us h2 {
		font-size: 24px;
		padding-bottom: 20px;
	}

	.our-us-item span p {
		font-size: 28px;
		line-height: 48px;
		white-space: nowrap;
		color: #333;
		margin: 0;
		line-height: 1.6;
	}
}

/* Cards */

.shop {
	background-color: #f6f9f6;
}

.shop-container {
	max-width: 1240px;
	margin: 0 auto;
	padding: 100px 0px;
	display: flex;
	flex-direction: column;
}

.shop-title {
	display: flex;
	justify-content: space-between;
	margin-bottom: 60px;
}

.shop-title h2 {
	font-size: 48px;
	line-height: 52px;
	font-weight: 500;
}

.shop-title p {
	font-size: 18px;
	line-height: 24px;
	font-weight: 600;
	color: var(--text--bright);
}

.more {
	display: flex;
	justify-content: end;
	gap: 8px;
	margin-bottom: 20px;
	color: var(--primary);
	font-size: 16px;
	font-weight: bold;
	cursor: pointer;
}

.shop-cards {
	display: flex;
	gap: 32px;
	justify-content: centeru;
	flex-wrap: wrap;
}

.shop-card {
	width: 286px;
	height: 384px;
	border-radius: 24px;
	background-color: var(--white);
	border: 1px solid #bdbdbd;
	display: flex;
	flex-direction: column;
}

.shop-card-box {
	border-radius: 24px;
}

.shop-card img {
	border-radius: 24px 24px 0 0;
}

.shop-card-box {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 12px;
	padding: 16px;
}

.shop-card-box h4 {
	font-size: 24px;
	line-height: 32px;
	font-weight: 600;
}

.shop-card-box p {
	color: var(--text--bright);
	font-size: 16px;
	line-height: 24px;
	font-weight: 500;
}

.shop-order {
	display: flex;
	justify-content: space-between;
}

.shop-order p {
	font-size: 30px;
	line-height: 36px;
	letter-spacing: 0.25%;
	font-weight: 600;
	color: var(--black);
}

.shop-order a {
	padding: 10px 36.5px;
	background-color: var(--secondary);
	border-radius: 4px;
	color: var(--white);
	font-size: 14px;
	line-height: 20px;
	letter-spacing: 0.25%;
	font-weight: bold;
	text-decoration: none;
	transition: 333ms ease-in-out;
}

.shop-order a:hover {
	transform: scale(1.1);
}

@media (max-width: 1280px) {
	.shop-title {
		display: flex;
		justify-content: space-between;
		flex-direction: column;
		margin: 0px 20px 60px 20px;
	}

	.shop-title h2 {
		font-size: 32px;
		line-height: 52px;
		font-weight: 500;
	}

	.more {
		margin-right: 20px;
	}

	.shop-title p {
		font-size: 16px;
		line-height: 24px;
		font-weight: 600;
		color: var(--text--bright);
	}

	.shop-cards {
		justify-content: center;
	}

	.shop-card-box h4 {
		font-size: 18px;
		line-height: 28px;
	}

	.shop-card-box p {
		color: var(--text--bright);
		font-size: 14px;
		line-height: 18px;
	}
}

/* form */
.form {
	margin: 100px 0px;
}

.form-container {
	max-width: 1240px;
	margin: 0 auto;
}

.form-maps {
	display: flex;
	justify-content: space-between;
	margin: 20px;
}

.location {
	display: flex;
	margin-top: 20px;
	gap: 80px;
}

.city h5,
.hour h5 {
	font-size: 24px;
	line-height: 32px;
	font-weight: 600;
	color: var(--black);
	margin-bottom: 12px;
}

.city p,
.hour p {
	font-size: 16px;
	font-weight: 500;
	line-height: 24px;
	color: var(--text--bright);
}

/* form */
form {
	width: 530px;
	margin: 0 auto;
	padding: 20px;
	border-radius: 5px;
}

.form-group {
	margin-bottom: 20px;
	width: 100%;
}

input[type="text"],
input[type="email"],
  input[type="tel"],
input[type="date"],
input[type="time"] {
	width: 100%;
	padding: 10px;
	border: 1px solid #ccc;
	border-radius: 3px;
}

input[type="submit"] {
	background-color: var(--primary);
	color: #fff;
	border: none;
	padding: 10px 20px;
	width: 100%;
	border-radius: 3px;
	cursor: pointer;
	transition: 333ms ease-in-out;
}

input[type="submit"]:hover {
	background-color: var(--secondary);
}

@media (max-width: 900px) {
	.form-maps {
		flex-direction: column;
	}
	.form-maps-left {
		display: flex;
		justify-content: center;
		flex-direction: column;
		align-items: center;
	}
	iframe {
		width: 300px;
	}
}
