/* Overall Font */
@font-face {
  font-family: 'Gotham';
  src: url('assets/fonts/Gotham-Bold.woff2') format('woff2'),
       url('assets/fonts/Gotham-Bold.woff') format('woff'),
       url('assets/fonts/Gotham-Bold.ttf') format('truetype');
  font-weight: bold;
  font-style: normal;
}
body {
  font-family: 'Gotham', sans-serif;
  background: linear-gradient(135deg, #ffffff, #ffffff);
  color: #F61B79;
  margin: 0;
  padding: 0;
}

/* Navbar Styles */
.navbar {
  background-color: #ffffff !important;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  padding: 0.5rem 1rem;
}
.navbar-brand {
  color: #F61B79 !important;
  font-weight: bold;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
}
.navbar-logo {
  height: 35px;
  width: auto;
  object-fit: contain;
}
.navbar-logo-aux {
  height: 60px;
  width: auto;
  object-fit: contain;
}
.navbar-nav .nav-link {
  color: #340441 !important;
  font-size: 16px;
  padding: 0.5rem 1rem;
  transition: color 0.2s ease-in-out;
}
.d-lg-none {
  display: block;
}
.navbar-nav .nav-link:hover {
  color: #F61B79 !important;
}
.navbar-toggler-icon {
  padding: 0 !important;
}
@media (max-width: 992px) {
  .navbar-toggler {
    display: none !important;
  }
}
@media (max-width: 768px) {
  .navbar-logo {
    height: 30px;
  }
  .navbar-logo-aux {
  height: 55px;
  }
  .navbar-brand {
    font-size: 18px;
  }
  .navbar-toggler {
    display: none !important;
  }
}

.terms-conditions {
  background-color: #ffffff;
  color: #F61B79;
}
.terms-conditions h6 {
  color: #000000;
  font-size: 18px;
  margin-top: 30px;
  margin-bottom: 30px;
}
@media (max-width: 1200px) {
  .terms-conditions h6 {
    font-size: 15px;
  }
}
@media (max-width: 992px) {
  .terms-conditions h6 {
    font-size: 11px;
    margin-bottom: 20px;
  }
}
@media (max-width: 767px) {
  .terms-conditions h6 {
    font-size: 8px;
    margin-bottom: 15px;
  }
}
@media (max-width: 576px) {
  .terms-conditions h6 {
    font-size: 7px;
    margin-bottom: 10px;
  }
}
@media (max-width: 400px) {
  .terms-conditions h6 {
    font-size: 5px;
    margin-bottom: 2px;
  }
}

.terms-conditions p4 {
  font-size: 18px;
  color: #1f1f1f;
  line-height: 1.6;
  text-align: center;
  margin: 10px auto;
}
.terms-conditions p5 {
  font-size: 18px;
  color: #000000;
  font-weight: bold;
  line-height: 1.6;
  text-align: center;
  margin: -105px auto;
}

.terms-img {
  width: 100%;
  max-width: 1100px;
  margin-top: 15px;
  margin-bottom: 10px;
  display: block;
}
.terms-img-combined {
  width: 100%;
  max-width: 1100px;
  margin-top: -5px !important;
  margin-bottom: 5px;
  display: block;
}
@media (max-width: 1200px) {
  .terms-img {
    margin-top: 10px;
    margin-bottom: 10px;
  }
}
@media (max-width: 992px) {
  .terms-img {
    margin-top: 8px;
    margin-bottom: 8px;
  }
}
@media (max-width: 767px) {
  .terms-img {
    margin-top: 5px;
    margin-bottom: 5px;
  }
}
@media (max-width: 576px) {
  .terms-img {
    margin-top: 4px;
    margin-bottom: 4px;
  }
  .terms-img-combined {
    margin-top: -2px !important;
    margin-bottom: 0px !important;
  }
}
@media (max-width: 400px) {
  .terms-img {
    margin-top:3px;
    margin-bottom: 3px;
  }
}
@media (max-width: 300px) {
  .terms-img {
    margin-top: 1px;
    margin-bottom: 1px;
  }
  .terms-img-combined {
    margin-top: 0px !important;
    margin-bottom: -5px !important;
  }
}

