.modal__overlay {
  position: fixed;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	background-color: rgba(0, 0, 0, 0.7);
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100vh;
	width: 100%;
	opacity: 0;
	visibility: hidden;
	transition: all 0.4s ease-in-out;
	z-index: 10;
}
.modal {
  display: flex;
  align-items: center;
  justify-content: center;
  display: none;
	transition: all 0.3s ease-in-out;
  
}
.modal-contact__body {
  position: relative;
  text-align: center;
  padding: 50px 250px;
}
.modal__cloyse {
  position: absolute;
  top: 15px;
  right: 15px;
}
.modal-contact__title {
  font-size: 36px;
  font-weight: 600;
  line-height: 44px;
  margin-bottom: 100px;
}
.style-df {
  display: flex;
  text-align: center;
  justify-content: center;
  align-items: center;
}
.telegram, .email, .discord {
  justify-content: space-between;
  margin-bottom: 30px;
}
.dfBtn {
  box-sizing: border-box;
  border: 2px solid rgb(255, 255, 255);
  border-radius: 20px;
  background: rgba(196, 196, 196, 0);
  padding: 10px 15px;
  
}
.modal-contact__Link {
  color: rgb(255, 255, 255);
  font-size: 16px;
}
.style-one {
  box-sizing: border-box;
  border: 3px solid rgb(255, 255, 255);
  border-radius: 20px;
  background: rgb(25, 30, 35);

}
.style-two {
  background: rgb(25, 30, 35);
  border: 3px solid rgb(255, 255, 255);
  border-radius: 20px;
  padding: 50px;
  max-width: 500px;
  width: 90%;
  color: #fff;
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
  position: relative;
  margin-top: 100px;
}
.popup h2 {
  /* margin-top: 0; */
  font-size: 22px;
  color: #fff;
}
.popup label {
  display: block;
  margin: 10px 0 5px;
  font-size: 14px;
  color: #ccc;
}
.popup input,
.popup select,
.popup textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #666;
  border-radius: 8px;
  background: #1f2429;
  color: #fff;
  font-size: 14px;
}
.popup textarea {
  resize: vertical;
}
.popup button {
  margin-top: 20px;
  padding: 12px 20px;
  background: #007bff;
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 16px;
}

.popup button:hover {
  background: #0056b3;
}
.modal__overlay-active {
  opacity: 1;
	visibility: visible;
	transition: all 0.4s ease-in-out;
}
.modal-active {
  display: block;
}
.df {
  color: rgb(255, 255, 255);
  font-size: 24px;
  font-weight: 600;
  line-height: 29px;
}