*{
	padding: 0;
	margin: 0;
	box-sizing: border-box;
	list-style: none;
	text-decoration: none;
	font-family: 'Inter', sans-serif;
}
:root{
	--text-color: #fff;
	--main-color: #514e61;

	--h1-font: 5.5rem;
	--p-font: 1rem;
}

body{
	color: var(--text-color);
}
header{
	position: fixed;
	width: 100%;
	top: 0;
	right: 0;
	z-index: 1000;
	background: transparent;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 32px 9%;
	transition: all .55s ease;
}
.logo{
	font-size: 35px;
	font-weight: 600;
	color: var(--text-color);
}
.navmenu{
	display: flex;
}
.navmenu a{
	display: inline-block;
	margin: 0 30px;
	color: var(--text-color);
	font-size: var(--p-font);
	transition: all .6s;
}
.navmenu a:hover{
	transform: translateY(-5px);
	color: ghostwhite;
}
.nav-right{
	display: flex;
	align-items: center;
}
.nav-btn{
	display: inline-block;
	background: var(--main-color);
	border-radius: 16px;
	color: var(--text-color);
	padding: 12px 30px;
	font-size: var(--p-font);
	font-weight: 500;
	margin-right: 20px;
	transition: .5s;
}
.nav-btn:hover{
	background: var(--text-color);
	color: #101010;
}
#menu-icon{
	font-size: 42px;
	z-index: 10001;
	cursor: pointer;
	display: none;
}

.hero{
	position: relative;
	width: 100%;
	height: 100vh;
	background: linear-gradient(250.59deg, #32374b 0%, #202a44 28.53%, #1c2137 75.52%);
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 30px;
}
section{
	padding: 0 17%;
}
.hero-img img{
	width: 100%;
	height: auto;
}
.hero-text span{
	color: var(--main-color);
	font-size: 22px;
	letter-spacing: 5px;
}
.hero-text h5{
	font-size: 15px;
	font-weight: 400;
	color: var(--text-color);
	margin: 15px 0;
}
.hero-text h1{
	font-family: 'Caramel', cursive;
	font-size: var(--h1-font);
	line-height: 1;
	margin: 0 0 35px;
}
.hero-text p{
	width: 100%;
	max-width: 500px;
	font-size: var(--p-font);
	line-height: 32px;
	margin-bottom: 40px;
}
.hero-text a{
	display: inline-block;
	padding: 13px 28px;
	background: var(--main-color);
	border-radius: 16px;
	color: var(--text-color);
	font-size: 15px;
	line-height: 1.3;
	border: 1px solid transparent;
	text-transform: uppercase;
	transition: all .6s;
}
.hero-text a:hover{
	transform: translateY(-8px);
	border: 1px solid var(--text-color);
	background: transparent;
}
.btn2{
	margin-left: 12px;
	background: transparent;
	border: 1px solid var(--text-color);
}
.hero-text a i{
	margin-left: 4px;
}

.images-box{
	position: absolute;
	bottom: 7%;
	right: 9%;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: flex-end;
	gap: 30px;
}
.box{
	padding: 10px 22px;
	background: var(--main-color);
	box-shadow: rgba(33, 35, 38, 0.1) 0px 30px 30px -4px;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	border-radius: 12px;
	border: 0.5px solid transparent;
	transition: all .6s;
}
.box-img{
	height: 50px;
	width: 50px;
	object-fit: cover;
}
.box-img img{
	width: 100%;
	height: auto;
	border-radius: 50%;
}
.box-text h5{
	font-size: 14px;
	font-weight: 500;
	color: var(--text-color);
}
.box-text a{
	font-size: 13px;
	color: #b0795a;
}
.box:hover{
	transform: translateY(-5px);
	cursor: pointer;
	border: 0.5px solid var(--text-color);
}

.social-icons{
	position: absolute;
	top: 50%;
	padding: 0 9%;
	transform: translateY(-50%);
}
.social-icons i{
	display: block;
	margin: 25px 0;
	color: var(--text-color);
	font-size: 25px;
	transition: all .6s;
}
.social-icons i:hover{
	transform: rotate3d(0, 0, 1, 360deg);
}

.scroll-btn{
	position: absolute;
	bottom: 7%;
	left: 9%;
}
.scroll-btn a{
	font-size: 15px;
	color: var(--text-color);
}
.scroll-btn i{
	height: 45px;
	width: 45px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	font-size: 20px;
	color: var(--text-color);
	background: var(--main-color);
	margin-right: 6px;
	transition: all .6s;
}
.scroll-btn i:hover{
	background: var(--text-color);
	color: #101010;
}

@media(max-width:1740px){
	header{
		padding: 15px 4%;
	}
	section{
		padding: 0 10%;
	}
	.social-icons{
		padding: 0 4%;
	}
	.images-box{
		right: 4%;
	}
	.scroll-btn{
		left: 4%;
	}
}

@media(max-width:1460px){
	:root{
		--h1-font: 4.5rem;
	}
}

@media(max-width:1240px){
	.social-icons{
		display: none;
	}
	section{
		padding: 0 4%;
	}
}

@media(max-width:1050px){
	.scroll-btn{
		display: none;
	}
	.images-box{
		display: none;
	}
	.logo{
		font-size: 26px;
	}
	.hero{
		height: 100%;
		display: flex;
		flex-wrap: wrap;
		gap: 2rem;
	}
	.nav-btn{
		padding: 8px 18px;
	}
	.hero-text a{
		padding: 8px 18px;
	}
	.hero-text{
		padding-top: 100px;
	}
	.hero-img{
		margin: 0 auto;
	}
	:root{
		--h1-font: 3.8rem;
		--p-font: 15px;
	}
}

@media(max-width:750px){
	#menu-icon{
		display: block;
		font-size: 32px;
	}
	.navmenu{
		position: absolute;
		width: 100%;
		height: 100vh;
		padding: 50px 30px;
		top: 0;
		right: 0;
		bottom: 0;
		left: 100%;
		display: flex;
		flex-direction: column;
		backdrop-filter: blur(32px);
		transition: all .6s ease-in-out;
	}
	.navmenu a{
		display: block;
		padding: 0;
		margin: 0px 0px 24px 0px;
		font-size: 1.5rem;
	}
	.navmenu.open{
		left: 0;
	}
}

@media(max-width:470px){
	:root{
		--h1-font: 3.5rem;
		--p-font: 14px;
	}
	.hero{
		height: 100vh;
	}
	.hero-text h1{
		margin: 0 0 15px;
	}
	.hero-text p{
		margin-bottom: 25px;
	}
}

@media(max-width:400px){
	:root{
		--h1-font: 3rem;
		--p-font: 14px;
	}
}