/* ============================================================
   custom_bs5_v6.css - v6 group
   go2india.in Bootstrap 5 custom styles
   ============================================================ */

html, body {
  max-width: 100%;
  overflow-x: hidden;
}

/* ============================================================
   Main content
   ============================================================ */
#body_content {
  font-size: 20px;
  line-height: 1.8em;
  text-align: justify;
  font-weight: normal;
  padding-left: 15px;
}

@media (min-width: 768px) {
  #body_content {
    padding-left: 30px;
  }
}

/* ============================================================
   Headings
   ============================================================ */
h2 {
  margin-top: 1.5rem;
}

/* ============================================================
   Read more text spacing
   ============================================================ */
.read_more_text {
  margin-top: 1cm;
  margin-bottom: 1cm;
}

/* ============================================================
   Pre - code blocks
   ============================================================ */
pre {
  display: block;
  font-family: monospace;
  padding: 9.5px;
  margin: 1cm 0;
  font-size: 18px;
  line-height: 1.42857143;
  color: #333;
  word-break: break-all;
  word-wrap: break-word;
  background-color: #f6f8fa;
  /* background-color: #ffe6e6; */
  border: 1px solid #ccc;
  border-radius: 4px;
}

/* ============================================================
   Bootstrap component spacing adjustments
   ============================================================ */
.bg-info {
  margin-top: 1cm;
  margin-bottom: 1cm;
}

.btn {
  margin-top: 0.5cm;
  margin-bottom: 0.5cm;
  text-align: center;
}

/* ============================================================
   Images - mobile
   ============================================================ */
@media only screen and (max-width: 960px) {
  img {
    max-width: 100%;
    border: 0;
  }
}

/* ============================================================
   Flash message
   ============================================================ */
.msg {
  position: fixed;
  top: 0;
  right: 30%;
  display: none;
  font-size: 12px;
  font-family: Verdana;
  width: 500px;
  background-color: yellow;
}

/* ============================================================
   Helper classes
   ============================================================ */
.hdd {
  padding-left: 0.3cm;
}

/* ============================================================
   Video responsive wrapper - Bootstrap 5 compatible
   Use class embed-responsive on div, embed-responsive-item on iframe
   ============================================================ */
.embed-responsive,
.iframe-container {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  margin-bottom: 1rem;
}

.embed-responsive iframe,
.iframe-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* ============================================================
   Breadcrumb nav strip styling
   ============================================================ */
.breadcrumb {
  background-color: #f5e6d3;
  border-radius: 4px;
  padding: 8px 12px;
  margin-bottom: 0;
  margin-left: 15px;
}

.breadcrumb a {
  color: #7b4f2e;
  text-decoration: none;
}

.breadcrumb a:hover {
  color: #4e3120;
  text-decoration: none;
}

.breadcrumb-item.active {
  color: #7b4f2e;
}

.breadcrumb-item + .breadcrumb-item::before {
  color: #7b4f2e;
}

/* ============================================================
   Footer link styling - no underline
   ============================================================ */
.footer-links a {
  text-decoration: none;
}

.footer-links a:hover {
  text-decoration: none;
  color: #ffc107 !important;
}