.pop-up {
	position: fixed;
	z-index: 999999;
	inset: 0;
	background-color: rgba(0, 0, 0, 0.5);
	transform: scaleY(0); 
	transform-origin: center;
	transition: transform .4s ease-in-out;
	display: flex;
	align-items: center;
	justify-content: center;
} 

.pop-up--show {
	transform: scaleY(1); 
}

.pop-up__container {
	z-index: 12;
	padding: 2rem 1rem;
	margin: 0 10px;
	color: #4d4d4d;
	font-size: 1rem;
	text-align: center;
	border-radius: 7px;
	background-color: #fff;
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.pop-up__close-button {
  font-size: 3rem;
  position: absolute;
  right: 30px;
  top: 15px;
  opacity: 1;
  cursor: pointer;
}

.pop-up__title {
	margin: 0;
    margin-top: 1.5rem;
    font-size: 1.5em;
    color: #4d4d4d;
    text-transform: uppercase;
    text-align: center;
    position: relative;
    margin-bottom: 2rem;
}

.pop-up__title:after {
	content: '';
	position: absolute;
	width: 40%;
	height: 1px;
	background-color: #4d4d4d;
	bottom: -60%;
	left: 50%;
	transform: translateX(-50%);
}

.pop-up__subtitle {
	max-width: 500px;
}

@media screen and (max-width: 1370px) {

.pop-up__container {
	max-width: 80%;
	
}

}

@media screen and (max-width: 768px) { 	

}

@media screen and (max-width: 960px) {


}