Coder Wrap provides free to use snippets Coder Wrap provides free to use snippets

Back to Web elements
Preview Source Code
Download
HTML
CSS
/**Typeo CSS Start**/
@import url('https://fonts.googleapis.com/css2?family=Rubik:ital,wght@0,400;0,500;0,700;0,800;1,300;1,400;1,500;1,600;1,700&display=swap');

* {
	box-sizing: border-box;
}

body {
	margin: 0px;
	background-color: #fff;
}

img {
	max-width: 100%;
}

/**Typeo CSS End**/
.bnr-inr-scn, .bnr-inr-scn * {
	--page-width: 1330px;
	--base-fm: 'Rubik', sans-serif;
	--title-size: 65px;
	--base-size: 20px;
	--white-clr: #ffffff;
	--theme-clr: #1ea69a;
	--bg-clr: #212121;
}

.page-width {
	max-width: var(--page-width);
	padding: 0 15px;
	margin: auto;
	width: 100%;
}

.bnr-inr-scn {
	position: relative;
	background-color: var(--bg-clr);
	width: 100%;
	padding: 50px 0px;
	font-family: var(--base-fm);
	font-size: var(--base-size);
	display: flex;
	flex-flow: row wrap;
	align-items: center;
	color: var(--white-clr);
	min-height: 300px;
}

.bnr-cont-inner {
	width: 100%;
	margin: auto;
	position: relative;
	z-index: 1;
	display: flex;
	flex-flow: row wrap;
	align-items: center;
}

.bnr-cont-inner .bnr-cont-prt {
	width: 55%;
	padding-right: 40px;
}

.bnr-cont-inner .bnr-img-prt {
	width: 44%;
}

.bnr-cont-inner .bnr-img-prt img {
	display: block;
}

.bnr-inr-scn h1 {
	font-size: var(--title-size);
	margin: 0px 0 30px 0;
}

.bnr-btn {
	padding: 16px 30px;
	background-color: #fff;
	color: #000;
	text-decoration: none;
	display: inline-block;
	transition: 0.5s all;
	margin-top: 15px;
	font-weight: 500;
	text-transform: uppercase;
}

.bnr-btn:hover {
	background-color: #000;
	color: #fff;
}

@media(max-width:1200px) {
	.bnr-inr-scn {
		padding: 40px 0px;
		font-size: calc(var(--base-size) - 4px)
	}

	.bnr-inr-scn h1 {
		font-size: calc(var(--title-size) - 20px);
	}

	.bnr-cont-inner .bnr-cont-prt {
		padding-right: 20px;
	}

	.bnr-btn {
		padding: 12px 20px;
		margin-top: 5px;
	}

}

@media(max-width:992px) {
	.bnr-inr-scn h1 {
		font-size: calc(var(--title-size) - 24px);
	}

}

@media(max-width:767px) {
	.bnr-cont-inner .bnr-cont-prt {
		padding-right: 0;
		width: 100%;
	}

	.bnr-inr-scn h1 {
		font-size: calc(var(--title-size) - 30px);
	}

	.bnr-cont-inner .bnr-img-prt {
		width: 100%;
		margin-top: 30px;
	}

}

Related Web Elements