html {
	scroll-behavior: smooth;
}
body {
	display: flex;
	justify-content: center;
	margin: 0;
}
.hor-sections {
	display: flex;
}
.ver-section {
	display: flex;
	flex-direction: column;
}
.basic-center {
	display: flex;
	justify-content: center;
	align-items: center;
}
.margined-container {
	width: 85%;
}
.sticky {
	position: fixed;
	top: 0;
	width: 85%;
	z-index: 5;
}
.main-container {
	width: 100%;
}
.content-container {
	position: relative;
	width: 100%;
}
.content-container h1 {
	margin-top: 100px;
	font-size: 60px;
	line-height: 70px;
}
.content-container p {
	font-family: "Poppins", sans-serif;
	font-weight: 400;
	font-style: normal;
	font-size: 18px;
}

.home-img {
	position: absolute;
	right: 0px;
	top: 110px;
	width: 650px;
}

.contact-top {
	width: 100%;
	justify-content: flex-end;
	padding: 15px 0;
	border-bottom: 1px solid #ccc;
}
.contact-top span {
	margin-left: 60px;
}

.nav-container {
	justify-content: space-between;
	align-items: center;
	margin-top: 20px;
	background-color: rgba(255, 255, 255, 0.5);
}
.nav-menu {
	justify-content: space-between;
	list-style: none;
	padding: 0;
	width: 500px;
	color: black;
}
.nav-menu li {
	padding-bottom: 5px;
}
.nav-menu-active {
	border-bottom: 5px solid #0e3343;
}
.cta-button {
	height: 20px;
	padding: 15px 30px;
	background-color: #ff7221;
	color: white;
	text-decoration: none;
}

.footer {
	width: 100%;
	padding-top: 70px;
	background-color: #dd6119;
}
.footer-right {
	background-color: #ff7221;
}

.footer h3 {
	font-family: "Poppins", sans-serif;
	font-weight: 700;
	font-style: normal;
	font-size: 30px;
	color: white;
}

.footer p,
ul,
a {
	font-family: "Poppins", sans-serif;
	font-weight: 400;
	font-style: normal;
	color: white;
}

.footer ul {
	padding-left: 20px;
}

.footer a {
	text-decoration: none;
}

.footer-copyright {
	display:flex;
	justify-content:center;
	width:100%;
	padding:20px 0;
	background-color:grey;
}
.footer-copyright .footer-copyright-inner {
	display:flex;
	width:85%;
	align-items:center;
}

.footer-copyright .footer-copyright-inner img {
	width:280px;
	margin-top:10px;
}

.footer-copyright .footer-copyright-inner p {
	font-size:12px;
}

@media only screen and (min-width: 1025px) {
	.mob-hor-section {
		display: flex;
		flex-direction: row;
	}
	.desktop-only-block {
		display: block;
	}
	.desktop-only-flex {
		display: flex;
	}
	.mob-only-block {
		display: none;
	}
	.mob-only-flex {
		display: none;
	}
	.two-col-items-container {
		display: flex;
		justify-content: space-between;
		width: 100%;
	}
}
@media only screen and (max-width: 1024px) {
	.mob-hor-section {
		display: flex;
		flex-direction: column;
	}
	.desktop-only-block {
		display: none;
	}
	.desktop-only-flex {
		display: none;
	}
	.mob-only-block {
		display: block;
	}
	.mob-only-flex {
		display: flex;
	}
	.two-col-items-container {
		display: flex;
		flex-direction: column;
		width: 100%;
	}
}
