/* ALL */

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	scroll-behavior: smooth;
	font-family: 'Poppins', sans-serif;
	text-decoration: none;
	list-style: none;
}

h3 {
	color: #f4742A;
	font-family: 'Poppins', sans-serif;
	font-size: 15px;
	font-weight: 400;
	margin-bottom: 10px;
}

h1 {
	color: #18181b;
	font-family: 'Roboto', sans-serif;
	font-weight: 700;
	font-size: 40px;
	margin-bottom: 20px;
}

p {
	color: #575757;
	font-family: 'Poppins', sans-serif;
	font-size: 15px;
	font-weight: 400;
	line-height: 27px;
	margin-bottom: 30px;
}

/* Header */

header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 20px 50px;
	background: #fff;
	z-index: 1000;
	transition: all 0.3s ease;
	color: #333;
}

header .logo {
	background: #FFFFFF;
	font-family: 'Roboto', sans-serif;
	font-size: 35px;
	color: rgb(38, 30, 47);
	font-weight: 900;
	text-transform: uppercase;
	transition: transform 0.3s ease;
	cursor: pointer;
}

header .logo:hover {
	transform: scale(1.1);
}

header ul {
	display: flex;
}

header ul li {
	position: relative;
	margin-right: 30px;
	transition: transform 0.3s ease;
}

header ul li:hover {
	transform: translateY(-3px);
}

header ul li a {
	font-family: 'Roboto', sans-serif;
	font-size: 16px;
	color: #333;
	transition: color 0.3s ease, transform 0.3s ease;
}

header ul li a:hover {
	color: #F4742A;
	transform: translateY(-3px);
}

.active {
	color: #F4742A;
}

.btn_header {
	font-family: 'Poppins', sans-serif;
	background: #F4742A;
	color: #fff;
	padding: 12px 24px;
	border-radius: 5px;
	font-size: 15px;
	font-weight: 400;
	margin-left: 20px;
	transition: background 0.3s ease, transform 0.3s ease;
}

.btn_header:hover {
	background: #37244C;
	color: #fff;
	transform: translateY(-3px);
}

/* sec 1 */

.sec1 {
	background: #37244C;
	color: #fff;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 100px 50px;
}

.sec1 .left_sec1 {
	width: 50%;
}

.sec1 h1 {
	color: white;
	font-size: 50px;
}

.sec1 p {
	color: white;
}

.sec1 .img {
	display: flex;
	align-items: center;
	gap: 20px;
}

.sec1 .img img {
	border: none;
	border-radius: 10px;
}

.sec1 .right_sec1 {
	width: 52%;
}

.sec1 .right_sec1 img {
	width: 700px;
	height: 750px;
}

/* sec2 */

.sec2 {
	color: white;
	margin-top: 100px;
}

.top {
	text-align: center;
}

.carts {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: 50px;
	gap: 50px;
}

.cart {
	background-color: #f5f5f5;
	border-radius: 10px;
	text-align: center;
	padding: 20px;
	width: 250px;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
	margin-bottom: 20px;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cart:hover {
	transform: translateY(-10px);
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.img_cart {
	width: 50px;
	height: 50px;
	margin-bottom: 20px;
	filter: brightness(0.9) sepia(1) hue-rotate(-10deg) saturate(8) contrast(1.1);
}

.title {
	font-family: 'Roboto', sans-serif;
	font-weight: 700;
	font-size: 22px;
	color: #18181b;
	margin-bottom: 10px;
}

.desc {
	font-family: 'Poppins', sans-serif;
	font-weight: 400;
	color: #575757;
	font-size: 14px;
	line-height: 25px;
}

/* sec3 */

.sec3 {
	background: #F0EEF1;
	margin-top: 100px;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 100px 50px;
}

.sec3_left {
	width: 50%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	margin-right: 50px;
}

.sec3_left img {
	width: 535px;
	height: 570px;
	gap: 20px;
}

.sec3_right {
	width: 52%;
}

.top_sec3 {
	width: 80%;
}

.part {
	margin-bottom: 30px;
}

.part1_title {
	display: flex;
	align-items: center;
	gap: 20px;
}

.part1_desc {
	width: 65%;
	margin-left: 60px;
}

.img_part {
	background: #f4742a;
	border-radius: 50%;
	width: 45px;
	padding: 10px;
}

.title_part {
	font-family: 'Roboto', sans-serif;
	font-weight: 700;
	font-size: 22px;
	color: #18181b;
	margin-bottom: 10px;
}

.desc_part {
	font-family: 'Poppins', sans-serif;
	font-weight: 400;
	color: #575757;
	font-size: 16px;
}

.btn_sec3 {
	margin-top: 10px;
	display: inline-block;
	font-family: 'Poppins', sans-serif;
	background: #37244C;
	color: #fff;
	padding: 15px 30px;
	border-radius: 10px;
	font-size: 15px;
	font-weight: 400;
	transition: background 0.3s ease, transform 0.3s ease;
}

.btn_sec3:hover {
	background: #f4742a;
	color: #fff;
	transform: translateY(-3px);
}

/* sec 4 */

.sec4 {
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 100px 50px;
}

.sec4 .left_sec4 {
	width: 38%;
	margin-left: 150px;
}

.sec4 .right_sec4 {
	width: 52%;
	flex: 1;
	display: flex;
	justify-content: center;
	align-items: center;
}

.sec4 .right_sec4 img {
	width: 540px;
	height: 550px;
}

/* sec5 */


.sec5 {
	background: #37244C;
	margin-top: 100px;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 100px 50px;
	height: 600px;
}

.left_sec5 {
	width: 50%;
	margin-top: 200px;
}

.left_sec5 img {
	width: 449px;
	height: 600px;
}

.right_sec5 {
	width: 38%;
}

.sec5 h1 {
	color: white;
	font-size: 50px;
}

.sec5 p {
	color: white;
}

.sec5 .img_5 {
	display: flex;
	align-items: center;
	gap: 20px;
}

.sec5 .img_5 img {
	border: none;
	border-radius: 10px;
}