* {
	margin: 0;
	padding: 0;
	border: 0;
}

.main-section-wrapper {
	max-width: 2288px;
	background: url("/custom/hej-flexi/assets/images/bg.jpg") no-repeat center
		top;
	background-size: cover;
	padding-bottom: 200px;
}

.flexis {
	margin-right: -50px;
}

.flexi-s {
	margin-top: -10px;
}

.flexi-m {
	margin-top: 10px;
	margin-right: -5px;
}

.tariff-box {
	width: 100%;
	position: relative;
}

h2 {
	text-transform: uppercase;
	color: #fff;
	font-size: 55px;
	font-weight: 400;
}

.hidden-tariff-img {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 2;
	opacity: 0;
	transition: opacity 0.25s ease;
}

.tariff-box:hover .tariff-img,
.tariff-box:hover .hidden-tariff-img {
	animation: pulseScale 0.4s ease forwards;
}

.tariff-box:hover .hidden-tariff-img {
	opacity: 1;
}

.tariff-box:hover .tariff-img {
	opacity: 0;
}

@keyframes pulseScale {
	0% {
		transform: scale(1);
	}
	50% {
		transform: scale(1.1);
	}
	100% {
		transform: scale(1);
	}
}
