@import '../../../styles/essentials';

.lift-product {
	background-color: $light;

	.container {
		display: flex;
		flex-wrap: wrap;
		padding: 5em 1em;
		justify-content: space-between;
		align-items: center;

		@include st {
			padding: 5em;
		}

		.image-box {
			flex-basis: 100%;
			height: 300px;
			max-height: 300px;
			background-color: white;
			padding: 1em;

			img {
				width: 100%;
				height: 100%;
				object-fit: contain;
			}

			@include st {
				flex-basis: 25%;
				height: auto;
				max-height: none;
			}
		}
		.content-box {
			flex-basis: 100%;

			.info {
				font-weight: 600;
			}

			.product-description {
				margin-bottom: 2em;
			}

			@include st {
				flex-basis: 70%;
			}
		}
	}
}
