a {
	text-decoration: none;
	cursor: pointer;
	display: block;
}



a:hover {
	text-decoration: none;
}

p, ul, li {
	padding: 0;
	margin: 0;
}

li {
	list-style-type: none;
}

h1, h2, h3, h4, h5, h6 {
	padding: 0;
	margin: 0;
	font-weight: normal;
}

button {
	background: transparent;
	border: none;
	cursor: pointer;
	padding: 0;
	margin: 0;
	outline: none;
}

.container {
	max-width: 1210px;
	margin: 0 auto;
	padding: 0 20px;
	width: 100%;
}

.button {
	font-weight: 500;
	text-align: center;
	padding: 18px 20px;
	font-size: 16px;
	font-family: $default-font;
	cursor: pointer;
	background-color: #ccc;
	color: #000;
	transition: .3s all ease;
}

.button:hover {
	box-shadow: inset 0 0 0 30px rgba(255, 255, 255, .1);
}




.popup {
	background-color: #FFFFFF;
	border: 1px solid #DDDDDD;
	box-shadow: 4px 4px 20px 0px rgba(0, 0, 0, 0.1);
	padding: 50px 35px 55px;
	border-radius: 8px;
	width: 95%;
	max-width: 610px;
	position: fixed;
	top: 45%;
	left: 50%;
	transform: translate(-50%,-45%);
	display: none;
	opacity: 0;
	z-index: 112;
}

.popup a:hover {
	color: #fff;
	font-weight: 600;
}

.popup__close {
  width: 30px;
  height: 30px;
  position: absolute;
  top: 15px;
  right: 17px;
  cursor: pointer;
  display: block;
}

.popup__logo {
  max-width: 100%;
  margin: 0 auto;
	margin-bottom: 25px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.popup__logo img {
	max-width: 250px;
	margin-right: 15px;
}

.popup__logo-title {
	font-size: 32px;
	font-weight: 700;
	text-align: center;
}

.popup__title {
  margin-bottom: 20px;
  font-size: 26px;
  font-weight: 700;
  color: #2B2B2B;
  text-align: center;
}

.popup__text {
  font-size: 20px;
  color: #2B2B2B;
}

.popup__text +.popup__text {
  margin-top: 20px;
}

.popup__button {
  margin-top: 35px;
}

.popup-button {
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 20px;
	font-weight: 700;
	color: #fff;
	padding: 16px 20px;
	max-width: 400px;
	min-height: 60px;
	width: 100%;
	background-color: #62C875;
	border-radius: 8px;
	margin-left: auto;
	margin-right: auto;
}

.overlay {
	z-index: 111;
	position: fixed; 
	background-color: #000;
	opacity: 0.1; 
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	cursor: pointer;
	display: none;
}



/******* Media *******/
@media (max-width: 600px) {
	.popup {
		padding: 50px 15px;
	}

	.popup__logo {
		margin-bottom: 35px;
	}

  .popup__title {
    font-size: 22px;
    margin-bottom: 28px;
  }

  .popup__text {
    font-size: 16px;
  }

  .popup__button {
    margin-top: 26px;
  }

  .popup__close {
    top: 7px;
    right: 10px;
  }

	.popup__logo-title {
		font-size: 28px;
	}
}