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

🗙
Login
Register

Create Account

Cancel
Back to Forms
Preview Source Code
Download
HTML
CSS
/**Typeo CSS Start**/
	@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,400;0,500;0,600;0,700;1,400&display=swap');
	* {
		box-sizing: border-box;
	}
	body {
		font-family: "Poppins", sans-serif;
		color: #444;
		box-sizing: border-box;
		margin: 0px;
	}
	.container {
		max-width: 1200px;
		width: 100%;
		padding: 0px 15px;
		margin: auto;
	}
	.container-fluid {
		width: 100%;
		padding: 0px 30px;
	}
	/**Typeo CSS End**/
	.contact-top {
		text-align: center;
	}
	.contact-top h2{
		font-size: 40px; 
		margin: 40px 0 0 0; 
		font-weight: 400; 
		color: #000;
	}
	.contact-group {
		display: flex;
		flex-flow: row wrap;
		width: 100%;
		justify-content: space-between;
		padding-top: 20px;
		padding-bottom: 40px;
	}
	.contact-group .contact-form-prt {
		width: 60%;
		background-color: #272a34;
		padding: 40px 30px;
		box-shadow: #ccc 0px 1px 11px;
		position: relative;
	}
	.contactmap {
		width: 40%;
		overflow:hidden;  
		box-shadow: #ccc 0px 1px 11px;
	}
	.contactmap iframe {
		display: block;
		width: 100%;
	}
	.contact-info {
		width: 100%;
		margin-bottom: 10px;
	}
	.contact-info p {
    margin-top: 6px;
}
	.contact-group h4 {
		font-size: 26px;
		font-weight: normal;
		color: #fff;
		margin: 0 0 10px 0px;
	}
	.contact-info h4 {
		color: #fff;
	}
	.form {
		display: flex;
		flex-flow: row wrap;
		width: 100%;
		margin: auto;
		justify-content: space-between;
	}
	.form-group {
		width: calc(50% - 10px);
		margin: 10px 0px;
	}
	.form-control {
		width: 100%;
		padding: 10px 0px;
		color: #fff;
		outline: none;
		border:none;
		border-bottom: #4e5057 1px solid;
		font-size: 16px;
		font-family: 'Poppins';
		transition: 0.5s all;
		background-color: #272a34;
		resize: none;
	}
	select.form-control {
		appearance: none;
		padding: 5px 0;
		line-height: 34px;
		background-image: url(https://coderwrap.com/wp-content/uploads/2023/01/slt-arrow-down-white.svg);
		background-repeat: no-repeat;
		background-position: calc(100% - 5px) 20px;
	}
	.form-control:focus {
		border-color: #fff;
	}
	.form-control::-webkit-input-placeholder {
		color: #fff;
	}
	.form-control:-ms-input-placeholder {
		color: #fff;
	}
	.form-control::placeholder {
		color: #fff;
	}
	.fg-full-width {
		width: 100%;
	}
	textarea.form-control {
		height: 150px;
	}
	.submit-btn {
		padding: 10px 40px;
		border: none;
		outline: none;
		font-family: 'Poppins';
		font-size: 18px;
		text-transform: uppercase;
		background-color: #fff;
		color: #000;
		cursor: pointer;
		transition: 0.5s all;
		font-weight: 700;
		letter-spacing: 2px;
	}
	.submit-btn:hover {
		opacity: 0.8;
	}

	.c-info-list {
    display: flex;
    flex-flow: row wrap;
    width: 100%;
    justify-content: space-between;
}
	.c-info-item {
		display: flex;
		flex-flow: row wrap;
		width: 31.33%;
		margin: 30px 0px;
		padding: 15px;
		align-items: center;
		justify-content: center;
		border: #ccc 1px solid;
		min-height: 250px;
	}
	.c-info-item .c-info-icon {
		width: 70px;
		height: 70px;
		border-radius: 100%;
		background-color: rgba(0, 0, 0, 0.4);
		display: flex;
		flex-flow: row wrap;
		align-items: center;
		justify-content: center;
		margin:10px auto;
	}
	.c-info-item .c-info-icon img {
		width: 30px;
		filter: brightness(0) invert(1);
	}
	.c-info-item .c-info-cont {
		width: 100%;
		text-align: center;
		display: inline-block;
		font-size: 18px;
		min-height: 56px;
		margin-top: 5px;
	}
	.c-info-item .c-info-cont strong {
		display: block;
	}
	@media(max-width:992px) {
		.form-group {
			width: 100%;
		}
		.contact-group .contact-form-prt, .contactmap {
			width: 100%;
			padding: 25px 15px;
		}
		.c-info-item { 
			width: 100%;
			margin:15px 0px;
		}
		.c-info-item .c-info-cont {
			min-height: inherit;
		}
		.c-info-item .c-info-cont strong {
   display: block;
		}
	}

Related Snippets

Leave a comment

Your email address will not be published. Required fields are marked *