/* Variables */
:root {
  --txt-xs: 12px;
  --txt-sm: 16px;
  --txt-md: 20px;
  --txt-lg: 24px;
  --txt-xl: 28px;
  --hdln-sm: 35px;
  --hdln-md: 38px;
  --hdln-lg: 45px;
  --hdln-xl: 55px;
  --hdln-xxl: 77px;
}

/* Reset some default styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  transition: all 0.5s ease-in-out;
}

/* Basic styles */
body {
  font-family: "Lora", serif;
  font-size: var(--txt-sm);
  color: #000000a6;
  background-color: white;
  line-height: 1.2;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.1 !important;
}

/* Override */
.container {
  max-width: 1170px;
}

/* Reusable */
.txt-xs {
  font-size: var(--txt-xs);
}
.txt-sm {
  font-size: var(--txt-xs);
}
.txt-md {
  font-size: var(--txt-md);
}
.txt-lg {
  font-size: var(--txt-lg);
}
.txt-xl {
  font-size: var(--txt-xl);
}

.hdln-sm {
  font-size: var(--txt-lg);
}
.hdln-md {
  font-size: var(--txt-xl);
}
.hdln-lg {
  font-size: var(--hdln-sm);
}
.hdln-xl {
  font-size: var(--hdln-md);
}

.btn-v1 {
  border: 1px solid white;
  color: white;
  background-color: transparent;
}

.btn-v1:hover,
.btn-v1:focus {
  border: 1px solid white;
  color: black;
  background-color: white;
}

.btn-v2 {
  border: 1px solid #8e4865;
  color: white;
  background-color: #8e4865;
}

.btn-v2:hover,
.btn-v2:focus {
  border: 1px solid #8e4865;
  color: white;
  background-color: #833556;
}

.btn-v3 {
  border: 1px solid white;
  color: black;
  background-color: white;
}

.btn-v3:hover,
.btn-v3:focus {
  border: 1px solid white;
  color: white;
  background-color: transparent;
}

.bg-maroon {
  background-color: #8e4865;
}

.bg-light-yellow {
  background-color: #f9f6f2;
}

/* Styles */

.navbar {
  background-color: transparent !important;
  position: absolute;
  z-index: 100;
  top: 0;
  left: 0;
  right: 0;
}

.navbar-toggler {
  filter: invert(1);
}

.navbar-toggler:focus,
.navbar-toggler:hover {
  box-shadow: none !important;
  background-color: #00000059;
  color: white;
}

.navbar .navbar-collapse {
  background-color: black;
}

.hero {
  background-image: url("./images/hero-bg-img.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
  min-height: 100vh;
}

.overlay {
  position: absolute;
  inset: 0;
  background-color: black;
  opacity: 0.5;
}

.txt-halo {
  width: 50px;
  display: inline-block;
}

.about-us {
  position: relative;
}

.about-us .container {
  margin-top: -150px;
}

.mssn-image {
  margin-bottom: -100px;
}

.read-more-1 {
  background-attachment: fixed;
  background-image: url("./images/veteran.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
}

.read-more-1.full-with {
  background-attachment: scroll;
  background-image: url("./images/veteran.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
  min-height: 50vh;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}

.left-bg {
  /* width: 100%; */
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  background-color: white;
}

.footer {
  line-height: 1.5;
}

.read-more-2 img {
  height: auto;
}

@media (min-width: 992px) {
  /* Override */
  /* Reusable */
  .hdln-sm {
    font-size: var(--hdln-md);
  }
  .hdln-md {
    font-size: var(--hdln-lg);
  }
  .hdln-lg {
    font-size: var(--hdln-xl);
  }
  .hdln-xl {
    font-size: var(--hdln-xxl);
  }

  /* Styles */

  .navbar .navbar-collapse {
    background-color: transparent;
  }

  .about-us .container {
    margin-top: -200px;
  }

  .mssn-image {
    margin-bottom: -200px;
  }

  .read-more-1 {
    background-size: 60vw;
    background-position: right;
  }

  .read-more-1.full-with {
    background-attachment: unset;
    background-size: 100vw, 50vh;
    background-position: right;
  }

  .left-bg {
    width: 40%;
  }

  .read-more-2 img {
    height: 400px;
  }

  .text-lg-nowrap {
    white-space: nowrap !important;
  }
}
