@import url(https://db.onlinewebfonts.com/c/41ef03052040400ec0acd500990fdc97?family=URW+Imperial+W01+Regular);
body,
html {
  margin: 0;
  padding: 0;
  height: 100%;
  font-family: "URW Imperial W01 Regular";
}

.lang-btn {
  position: fixed;
  top: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.5);
  color: #ffffff;
  border: none;
  padding: 10px 20px;
  font-size: 1em;
  font-family: "URW Imperial W01 Regular";
  cursor: pointer;
  z-index: 100;
  transition: background-color 0.3s;
}
.lang-btn:hover {
  background: rgba(92, 12, 15, 0.8);
}

.video-container {
  position: relative;
  height: 100%;
  overflow: hidden;
}
.video-container #myVideo {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}
.video-container .content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
}
.video-container .content h1 {
  font-size: 2.6em;
  font-family: "URW Imperial W01 Regular";
  font-weight: 400;
  margin: 0;
}
.video-container .content h1 span {
  font-size: 1.5em;
}
.video-container .content p {
  font-size: 1.5em;
  margin-top: 0;
  font-family: "URW Imperial W01 Regular";
  font-weight: 400;
}
.video-container .content .icons {
  padding-top: 30px;
}
.video-container .content .icons .social-icon {
  width: 40px;
  height: 40px;
  margin: 0 10px;
  cursor: pointer;
  transition: transform 0.3s ease;
  margin-bottom: 200px;
}
.video-container .content .icons .social-icon:hover {
  transform: scale(1.1);
}
@media (max-width: 768px) {
  .video-container .content .icons .social-icon {
    width: 25px;
    height: 25px;
    margin: 0 5px;
  }
}
.video-container .content .icons .social-icon-requeue {
  width: auto;
  height: 40px;
  margin: 0 10px;
  cursor: pointer;
  transition: transform 0.3s ease;
  margin-bottom: 200px;
}
.video-container .content .icons .social-icon-requeue:hover {
  transform: scale(1.1);
}
@media (max-width: 768px) {
  .video-container .content .icons .social-icon-requeue {
    width: auto;
    height: 25px;
    margin: 0 5px;
  }
}
.video-container .btn-group {
  display: flex;
  align-items: center;
  gap: 10px;
}
@media (max-width: 768px) {
  .video-container .btn-group {
    flex-direction: column;
  }
}
.video-container .btn-group .btn {
  display: inline-block;
  padding: 15px 0;
  width: 250px;
  background-color: #5C0C0F;
  color: #ffffff;
  text-decoration: none;
  font-size: 1.2em;
  transition: background-color 0.3s;
  font-family: "URW Imperial W01 Regular";
  border-radius: 25px;
}
.video-container .btn-group .btn:hover {
  background-color: #ffffff;
  color: #5C0C0F;
}

.modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 1000;
  justify-content: center;
  align-items: center;
}
.modal-overlay.active {
  display: flex;
}

.modal {
  background-color: #1a1a1a;
  border: 1px solid rgba(92, 12, 15, 0.5);
  padding: 40px 50px;
  text-align: center;
  position: relative;
  max-width: 420px;
  width: 90%;
  animation: modalFadeIn 0.3s ease;
}
.modal .modal-close {
  position: absolute;
  top: 12px;
  right: 18px;
  background: none;
  border: none;
  color: #ffffff;
  font-size: 1.8em;
  cursor: pointer;
  line-height: 1;
  padding: 0;
  opacity: 0.7;
  transition: opacity 0.2s;
}
.modal .modal-close:hover {
  opacity: 1;
}
.modal .modal-title {
  color: #ffffff;
  font-family: "URW Imperial W01 Regular";
  font-weight: 400;
  font-size: 1.5em;
  margin: 0 0 30px 0;
}
.modal .modal-buttons {
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: center;
}
.modal .modal-btn {
  display: block;
  padding: 15px 0;
  width: 100%;
  max-width: 280px;
  background-color: #5C0C0F;
  color: #ffffff;
  text-decoration: none;
  font-size: 1.1em;
  font-family: "URW Imperial W01 Regular";
  transition: background-color 0.3s, color 0.3s;
  border-radius: 25px;
  border: none;
  cursor: pointer;
}
.modal .modal-btn:hover {
  background-color: #ffffff;
  color: #5C0C0F;
}

@keyframes modalFadeIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/*# sourceMappingURL=style.css.map */
