.form_search.type_2 .tf-btn {
  position: absolute;
  top: -55px;
  bottom: 8px;
  right: inherit;
  left: 50%;
  transform: translate(-50%, 0);
}

.s-hero-banner .form-wrap {
  margin: 96px auto 27px;
}

.swiper {
  width: 100%;
  max-width: 1200px;
  height: 745px;
  position: relative;
  overflow: hidden;
}

.swiper-slide {
  text-align: center;
  font-size: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 18px;
  overflow: hidden;
}

.swiper-slide img {
  display: block;
  object-position: top;
  object-fit: contain;
  border-radius: 18px;
}

.infor-item {
  text-align: center;
}

.privacy-modal {
  display: none;
  position: fixed;
  z-index: 99999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.8);
  animation: fadeIn 0.3s;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.privacy-modal-content {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  margin: 5% auto;
  padding: 0;
  border: 2px solid #1dfff4;
  border-radius: 20px;
  width: 90%;
  max-width: 650px;
  box-shadow: 0 15px 60px rgba(29, 255, 244, 0.4);
  animation: slideDown 0.4s;
  overflow: hidden;
}

@keyframes slideDown {
  from {
    transform: translateY(-50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.privacy-modal-header {
  padding: 30px;
  background: linear-gradient(135deg, #1dfff4 0%, #00d4ff 100%);
  position: relative;
}

.privacy-modal-header h2 {
  margin: 0;
  color: #1a1a2e;
  font-size: 26px;
  font-weight: 700;
  padding-right: 40px;
  letter-spacing: 0px;
    line-height: 1.2;
}
.privacy-close {
  position: absolute;
  right: 25px;
  top: 50%;
  transform: translateY(-50%);
  color: #1a1a2e;
  font-size: 36px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s;
  line-height: 1;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.privacy-close:hover,
.privacy-close:focus {
  color: #fff;
  transform: translateY(-50%) rotate(90deg);
}

.privacy-modal-body {
  padding: 30px;
  color: #cac9d1;
  max-height: 400px;
  overflow-y: auto;
  line-height: 1.8;
}

.privacy-modal-body::-webkit-scrollbar {
  width: 10px;
}

.privacy-modal-body::-webkit-scrollbar-track {
  background: #1a1a2e;
  border-radius: 10px;
}

.privacy-modal-body::-webkit-scrollbar-thumb {
  background: #1dfff4;
  border-radius: 10px;
}

.privacy-modal-body p {
  font-size: 15px;
}

.privacy-modal-body strong {
  color: #1dfff4;
  font-weight: 600;
}

.privacy-modal-body a {
  color: #1dfff4;
  text-decoration: none;
  transition: color 0.3s;
  font-weight: 500;
}

.privacy-modal-body a:hover {
  color: #00d4ff;
}

.privacy-checkbox-container {
  padding: 25px 30px;
  background: rgba(29, 255, 244, 0.08);
  border-top: 1px solid rgba(29, 255, 244, 0.3);
}

.privacy-checkbox-label {
  display: flex;
  align-items: flex-start;
  cursor: pointer;
  color: #fff;
  font-size: 16px;
  user-select: none;
  line-height: 1.6;
}

.privacy-checkbox-label input[type="checkbox"] {
  width: 24px;
  height: 24px;
  min-width: 24px;
  margin-right: 15px;
  margin-top: 2px;
  cursor: pointer;
  accent-color: #1dfff4;
}

.privacy-modal-footer {
  padding: 25px 30px 35px;
  text-align: center;
}

.privacy-accept-btn {
  background: linear-gradient(135deg, #1dfff4 0%, #00d4ff 100%);
  color: #1a1a2e;
  border: none;
  padding: 16px 60px;
  font-size: 17px;
  font-weight: 700;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  box-shadow: 0 6px 25px rgba(29, 255, 244, 0.5);
  font-family: "Poppins", sans-serif;
}

.privacy-accept-btn:hover:not(:disabled) {
  transform: translateY(-3px);
  box-shadow: 0 10px 35px rgba(29, 255, 244, 0.7);
}

.privacy-accept-btn:active:not(:disabled) {
  transform: translateY(-1px);
}

.privacy-accept-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  background: linear-gradient(135deg, #666 0%, #555 100%);
  box-shadow: none;
}

@media (max-width: 768px) {
  .privacy-modal-content {
    width: 95%;
    margin: 10% auto;
  }

  .privacy-modal-header {
    padding: 20px;
  }

  .privacy-modal-header h2 {
    font-size: 20px;
    padding-right: 35px;
  }

  .privacy-close {
    font-size: 30px;
    right: 15px;
  }

  .privacy-modal-body {
    padding: 20px;
    max-height: 300px;
    font-size: 14px;
  }

  .privacy-checkbox-container {
    padding: 20px;
  }

  .privacy-checkbox-label {
    font-size: 14px;
  }

  .privacy-modal-footer {
    padding: 20px;
  }

  .privacy-accept-btn {
    padding: 14px 40px;
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .privacy-modal-header h2 {
    font-size: 18px;
  }

  .privacy-modal-body {
    font-size: 13px;
  }

  .privacy-checkbox-label {
    font-size: 13px;
  }

  .privacy-accept-btn {
    padding: 12px 30px;
    font-size: 14px;
  }
}

#mttop50px {
  margin-top: 50px;
}
