@charset "utf-8";

#about-promotions {
	position: relative;
	width: 100%;
	padding: 40px 60px;
	text-align: center;
	background-color: #f4f4f4;
}

	.about-promotion {
		display: inline-flex;
		text-align: left;
		width: 33%;
		gap: 25px;
		align-items: center;
		padding: 0px 20px;
		border-right: 1px dotted #ccc;
	}
	
	.about-promotion:last-of-type {
		border: 0;
	}
	
		.about-promotion .icon {
			flex: 0 0 40px;
		}
		
			.about-promotion .icon img {
				display: block;
				width: 100%;
			}
		
		.about-promotion .content {
			
		}
		
			.about-promotion .content h3 {
				font: 400 22px 'Source Sans Pro', sans-serif;
			}

@media screen and (max-width: 1024px) {
	#about-promotions {
		padding: 40px 10px 20px 10px;
	}
	
	.about-promotion {
		width: 100%;
		margin-bottom: 20px;
		border-right: 0;
	}
}

#about-warehouse {
	position: relative;
	padding: 60px 0;
	background-color: #fff;
}

	.about-warehouse-title {text-align: left}

	.about-warehouse-columns {
		display: flex;
		margin: 20px 0;
		gap: 10px;
		align-items: center;
	}
	
	.about-warehouse-columns .image {
		position: relative;
		flex: 3;
		height: 400px;
		background-position: 50% 50%;
		background-repeat: no-repeat;
		background-size: cover;
		background-image: url('../images/warehouse.jpg');
	}
	
		.image-overlay {
			position: absolute;
			background-color: var(--main-red);
			font: 900 40px 'Source Sans Pro', sans-serif;
			color: #fff;
			padding: 15px;
			right: -20px;
			bottom: -20px;
		}
		
			.image-overlay sup {
				font: 300 24px 'Source Sans Pro', sans-serif;
			}
	
	.about-warehouse-columns .content {
		flex: 2;
		text-align: left;
		padding: 60px;
		background-position: 50% 50%;
		background-repeat: no-repeat;
		background-size: auto;
		background-image: url('../images/bg_pattern.png');
	}

@media screen and (max-width: 1024px) {
	#about-warehouse {
		padding: 60px 0 0 0;
	}
	
	.about-warehouse-columns {
		flex-direction: column;
	}
	
	.about-warehouse-columns .image {
		flex: 0 0 400px;
		width: 96%;
	}
	
	.about-warehouse-columns .content {
		padding: 10px;
	}
}

#about-us {
	position: relative;
	padding: 60px 0;
	background-color: #fff;
}

	.about-us-title {text-align: left}
	
	.about-us-list {
		margin-top: 20px;
		text-align: center;
	}
	
		.colleague {
			display: inline-flex;
			margin: 15px;
			width: 250px;
			flex-direction: column;
			background-color: #f8f8f8;
		}
		
			.colleague .image {
				flex: 0 0 250px;
				border: 1px dotted #ccc;
				border-bottom: 0;
			}
			
			.colleague .image img {
				display: block;
				width: 100%;
			}
				
			.colleague .title {
				font: 300 14px 'Source Sans Pro', sans-serif;
				padding: 15px 15px;
				text-align: center;
				border: 1px dotted #ccc;
			}
			
			.colleague .title p {
				text-transform: uppercase;
				margin: 0;
				font: 400 18px 'Source Sans Pro', sans-serif;
			}

@media screen and (max-width: 1024px) {
	.about-us-title {
		text-align: center;
	}
	
	.about-us-list {
		font-size: 0;
	}
	
	.colleague {
		margin: 0;
		padding: 5px;
		width: 50%;
	}
}

#about-certificates {
	position: relative;
	padding: 60px 0;
	background-color: #f4f4f4;
}

	.about-certificates-title {text-align: center}
	
	.about-certificates-list {
		margin-top: 60px;
		text-align: center;
	}
	
		.certificate {
			position: relative;
			cursor: pointer;
			display: inline-flex;
			width: 250px;
			gap: 10px;
			flex-direction: column;
			background-color: #fff;
			border: 1px dotted transparent;
			padding: 40px 10px 15px 10px;
			margin: 10px 15px;
		}
		
		.certificate:hover {
			border: 1px dotted #ccc;
		}
		
			.certificate .header-label {
				position: absolute;
				right: -5px;
				top: -5px;
				padding: 10px 15px;
				background-color: var(--main-red);
				color: #fff;
				font: 900 18px 'Source Sans Pro', sans-serif;
			}
		
			.certificate .header {
				text-align: center;
			}
				
				.certificate .header .header-icon {
					display: inline-block;
					background-color: var(--main-red);
					color: #fff;
					width: 60px;
					height: 60px;
					padding: 17px 0;
					border-radius: 100%;
					font-size: 26px;
					text-align: center;
				}
			
			.certificate .name {
				flex: 0 0 80px;
				display: flex;
				justify-content: center;
				align-items: center;
				font: 400 18px 'Source Sans Pro', sans-serif;
			}
				
			.certificate .title {
				color: #aaa;
				font: 400 15px 'Source Sans Pro', sans-serif;
				flex: 0 0 55px;
				display: flex;
				flex-direction: column;
			}
	
@media screen and (max-width: 1024px) {
	.about-certificates-list {
		font-size: 0;
	}
	
	.certificate {
		width: calc(50% - 20px);
		margin: 10px 10px;
	}
}