/* Offer Top */
.offer-top {
	background: #64D6E1;
	background: $base-accent-color;
	font-size: .85em;
	color: white;
	padding: 1em 0;
	border-left: .5em solid $base-accent-color-light;
	
	@media (min-width: $wide-container) {
		text-align: center;
	}

	.container {
		display: flex;
		align-items: center;
		justify-content: space-between;
		gap: 1em;

		@media (min-width: $wide-container) {
			justify-content: center;
		}
	}

	p {
		margin: 0;
	}

	i {
		color: $base-accent-color-light;
	}

	a.button {
		background: $base-accent-color-light;
		line-height: 1.2;
		text-align: center;
		padding: 1em;
		margin-left: auto;
		border-bottom: none;

		@media (min-width: $wide-container) {
			margin-left: 0;
		}

		&:hover {
			border-bottom: none;
		}
	}

	a.free-quote {
		display: block;
		transition: all .25s ease;
		color: #fcfcfc;
		border-bottom: none;

		@media (min-width: $wide-container) {
			display: inline;
			border-bottom: 1px dashed;
			// margin-left: 0;

			&:hover {
				border-bottom-style: solid;
			}
		}

		&:hover {
			color: white;
		}
	}
	
}

