/* cutome fonts */

@import url("https://fonts.googleapis.com/css2?family=Roboto+Condensed:ital,wght@0,100..900;1,100..900&display=swap");

:root {
  --primary: #b32126;
  --secondary: #26306a;
  --tertiary: #010101;
  --border-primary: #b32126;
  --ff-primary: "Roboto Condensed", sans-serif;
  --ff-secondary: "Roboto Condensed", sans-serif;

  --section-divider-height: 60;
  --section-divider-width: 1920;
  --section-divider-ratio: calc(
    100% * var(--section-divider-height) / var(--section-divider-width)
  );
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: var(--ff-primary);
}
body {
  margin: 0;
  font-family: var(--ff-primary);
}
.container,
.container-lg,
.container-md,
.container-sm,
.container-xl {
  max-width: 1400px;
}
.navbar .badge {
  margin: 0 5px;
}
a.navbar-brand {
  width: 200px;
}
@media screen and (max-width: 767px) {
  .header {
    background-color: #000000;
  }
}

.badge {
  font-size: 18px !important;
  border-radius: 10px;
  font-weight: 400 !important;
}
@media (max-width: 767px) {
  .topbar .border-left {
    border-left: 0 !important;
  }
}

@media (max-width: 430px) {
  .badge {
    font-size: 16px;
    border-radius: 10px;
    font-weight: 400 !important;
  }
}
.form-control {
  box-sizing: border-box;
  width: 100%;
  height: 60px;
  background: #ffffff;
  border: 1px solid #cccccc;
  border-radius: 10px;
}
textarea {
  height: auto !important;
}
.form-control:focus {
  color: #000000;
  background-color: #ffffff;
  border-color: #b32126;
  outline: 0;
  box-shadow: 0 0 0 0.2rem #168b4321;
}
.navbar-toggler {
  color: var(--primary);
  background-color: #ffffff;
  border: var(--bs-border-width) solid var(--primary);
}
.bg-quarternary {
  background-color: var(--quarternary) !important;
}
.bg-secondary {
  background-color: var(--secondary) !important;
}
.bg-yellow {
  background-color: var(--yellow) !important;
}

.bg-primary-50 {
  background-color: var(--primary-50) !important;
}
.bg-primary-100 {
  background-color: var(--primary-100) !important;
}
.bg-white {
  background-color: #ffffff !important;
}
.bg-gray-50 {
  background-color: #010101 !important;
}
.object-fit-cover {
  object-fit: cover;
}
.p-100 {
  padding: 100px;
}
.pt-100 {
  padding-top: 100px;
}
.pb-100 {
  padding-bottom: 100px;
}
.py-100 {
  padding-top: 100px;
  padding-bottom: 100px;
}
.m-100 {
  margin: 100px;
}
.mt-100 {
  margin-top: 100px;
}
.mb-100 {
  margin-bottom: 100px;
}
.my-100 {
  margin-top: 100px;
  margin-bottom: 100px;
}
.fw-light {
  font-weight: 300 !important;
}
.fw-regular {
  font-weight: 400 !important;
}
.fw-medium {
  font-weight: 500 !important;
}
.fw-samibold {
  font-weight: 600 !important;
}
.fw-bold {
  font-weight: 700 !important;
}
.fw-bolder {
  font-weight: 800 !important;
}
.border-white {
  border-color: #ffffff !important;
}
.opacity-1 {
  opacity: 1 !important;
}

button {
  outline: 0;
  border: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--ff-secondary);
  line-height: 1.2em !important;
  color: #000000;
}
h1,
.h1 {
  font-size: 72px !important;
  font-weight: bold !important;
}

h2,
.h2 {
  font-size: 50px !important;
  font-weight: bold !important;
}
h3,
.h3 {
  font-size: 30px !important;
  font-weight: 600 !important;
}
h4,
.h4 {
  font-size: 26px !important;
  font-weight: 600 !important;
}
h5,
.h5 {
  font-size: 24px !important;
  font-weight: 600 !important;
  line-height: 1.4em !important;
}
h6,
.h6 {
  font-size: 20px !important;
  font-weight: 600 !important;
}
@media (max-width: 430px) {
  h1 {
    font-size: 48px !important;
    font-weight: 700 !important;
  }
  h2 {
    font-size: 36px !important;
    font-weight: 700 !important;
  }
  h3 {
    font-size: 28px !important;
    font-weight: 700 !important;
  }
  h4 {
    font-size: 24px !important;
    font-weight: 700 !important;
  }
  h5 {
    font-size: 20px !important;
    font-weight: 400 !important;
  }
}
.btn-shadow {
  box-shadow: 0px 10px 10px rgba(255, 0, 0, 0.16);
}
.rounded-3 {
  border-radius: 10px !important;
}
.rounded-5 {
  border-radius: 20px !important;
}
.rounded-6 {
  border-radius: 24px !important;
}

p,
a,
label,
span,
li,
div {
  font-family: var(--ff-secondary);
}
.text-body {
  font-weight: 400;
  font-size: 20px;
  line-height: 30px;
  color: #010101;
}

a {
  text-decoration: none;
  color: var(--primary);
  opacity: 1;
  transition: all 0.356s;
}
a:hover {
  transition: all 0.356s;
}
label {
  font-size: 18px;
}
html,
body {
  overflow-x: hidden;
}

.z-0 {
  z-index: 0;
}
.z-1 {
  z-index: 10;
}
.z-2 {
  z-index: 20;
}

.z-9 {
  z-index: 999999;
}

.invert {
  filter: invert(100%) !important;
}
.opacity-50 {
  opacity: 0.5;
}
.mirror {
  transform: scaleX(-1) !important;
}

.min-h-inherit {
  min-height: inherit;
}

.o-cover {
  object-fit: cover;
}

.w-short {
  width: 75%;
}
.search-input {
  width: 67%;
  margin: 0 auto;
}
.search-input form {
  width: 100%;
}

.img-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -o-object-fit: cover;
  position: absolute;
  left: 0;
  top: 0;
}
.cursor-pointer {
  cursor: pointer;
}
@media (min-width: 1200px) {
  .col-xl-5th {
    flex: 0 0 20%;
    max-width: 20%;
  }
}
@media (min-width: 768px) {
  .w-md-auto {
    width: auto !important;
  }
}

.rotate-45 {
  rotate: 45deg;
}

/****************************
  *************Form**************
  ****************************/

/****************************
  *************BG**************
  ****************************/
.bg-primary {
  background-color: var(--primary) !important;
}
.bg-secondary-50 {
  background-color: #e8eaee !important;
}
.bg-secondary {
  background-color: var(--secondary) !important;
}
.bg-tertiary {
  background-color: var(--tertiary) !important;
}
.bg-quarternary {
  background-color: var(--quarternary) !important;
}
.bg-black {
  background-color: #000000 !important;
}

.bg-gradient {
  background: var(--primary-50);
  background: -moz-linear-gradient(
    90.01deg,
    var(--primary-50) 50%,
    rgba(8, 177, 244, 0) 50%
  );
  background: -webkit-linear-gradient(
    90.01deg,
    var(--primary-50) 50%,
    rgba(8, 177, 244, 0) 50%
  );
  background: linear-gradient(
    180deg,
    var(--primary-50) 50%,
    rgba(8, 177, 244, 0) 50%
  ) !important;
}
.bg-gradient-2 {
  background: var(--primary-50);
  background: -moz-linear-gradient(
    90.01deg,
    var(--primary-50) 50%,
    rgba(8, 177, 244, 0) 50%
  );
  background: -webkit-linear-gradient(
    90.01deg,
    var(--primary-50) 50%,
    rgba(8, 177, 244, 0) 50%
  );
  background: linear-gradient(
    180deg,
    var(--primary-50) 70%,
    rgba(8, 177, 244, 0) 30%
  ) !important;
}
/****************************
  *************BORDER**************
  ****************************/
.border-primary {
  border-color: #b32126 !important;
}

.border-secondary {
  border-color: var(--secondary) !important;
}
.border-tertiary {
  border-color: var(--tertiary) !important;
}
.border-quarternary {
  border-color: var(--quarternary) !important;
}

.border-black {
  border-color: #000000 !important;
}

/****************************
  ************FONT*************
  ****************************/
.font-primary {
  font-family: var(--ff-primary) !important;
}

.font-secondary {
  font-family: var(--ff-secondary) !important;
}

/****************************
  ************TEXT*************
  ****************************/
.text-primary {
  color: var(--primary) !important;
}
.text-secondary {
  color: var(--secondary) !important;
}
.text-yellow {
  color: var(--yellow) !important;
}
.text-beige {
  color: var(--beige) !important;
}
.text-tertiary {
  color: var(--tertiary) !important;
}
.text-quarternary {
  color: var(--quarternary) !important;
}
.text-white {
  color: #eee3e3 !important;
}
.text-black {
  color: #000000 !important;
}

/****************************
  **********DIVIDER************
  ****************************/
.has-divider {
  position: relative;
  padding-bottom: var(--section-divider-ratio);
}
.section-divider {
  display: block;
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 100%;
  height: auto;
}
/* w-md-50 */
@media (min-width: 768px) {
  .w-md-50 {
    width: 50% !important;
  }
}

/****************************
  *********NAVIGATION**********
  ****************************/
nav li a {
  margin: 0;
  background-color: transparent;
  transition: background-color 0.25s, color 0.25s;
}
.bg-black-100 {
  background: #000000b5;
}
.nav-link {
  font-size: 20px;
  position: relative;
  letter-spacing: 1.1px;
  color: #000 !important;
}

#navbarDropdown:hover + .dropdown-menu {
  display: block;
}
.dropdown-menu:hover {
  display: block;
}
.dropdown-menu {
  display: none;
}

.dropdown-item.active,
.dropdown-item:active {
  color: #fff;
  text-decoration: none;
  background-color: var(--primary);
}
/* .content {
  margin-top: 211.92px;
} */
/* @media screen and (max-width: 768px) {
  .content {
    margin-top: 66px;
  }
} */
@media screen and (min-width: 1200px) {
  .Banner {
    font-size: 22px;
  }
}

@media screen and (min-width: 800px) {
  .Banner {
    font-size: 20px;
  }
}

.Banner {
  color: var(--primary);
  font-size: 14px;
  line-height: 1.3;
  text-align: center;
}

.hero-section {
  background-image: url("../images/a1-tint-hero.jpg");
  background-position: center center;
  background-size: cover;
  height: 900px;
  background-color: black;
}

@media screen and (max-width: 768px) {
  .hero-section {
    height: 750px;
  }
}

.hover\:bg-yellow:hover {
  background-color: var(--yellow) !important;
}
.hover\:shadow-primary:hover {
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}
.shadow-primary {
  box-shadow: #0000001a 0px 10px 20px;
}
.rounded-30 {
  border-radius: 30px;
}
.swiper.swiper-initialized.swiper-horizontal.swiper-backface-hidden {
  padding-bottom: 50px;
}
.swiper-v2.swiper-initialized.swiper-horizontal.swiper-backface-hidden {
  overflow: hidden;
}
.hero-car {
  position: absolute;
  bottom: -70%;
  right: 0;
}
img.hero-text-img {
  width: 110px;
  position: absolute;
  left: auto;
  right: -8%;
}
#Progress {
  width: 110px;
  height: 5px;
  background-color: #e5e5e5;
  border-radius: 15px;
}

#Bar {
  height: 5px;
  background-color: var(--primary);
  border-radius: 15px;
}

.tabs {
  border-bottom: 2px solid #ccc;
  margin-bottom: 50px;
}

.tab-button {
  padding: 20px 10px;
  border-bottom: 2px solid transparent;
  cursor: pointer;
  background: transparent;
  color: #fff;
  transition: border 0.3s ease;
  margin-bottom: -2px;
}

.tab-button.active {
  border-bottom: 2px solid var(--border-primary);
}

.tab-content {
  display: none;
  padding: 20px;
  scale: 1.2;
}

.tab-content.active {
  display: block;
}
.swiper-wrapper {
  display: flex;
}
.swiper-wrapper .card {
  position: relative;
  border: 0;
}
.swiper-wrapper .card .service-title {
  display: none;
}

.swiper-wrapper .card:hover .service-title {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  text-align: center;
  height: 100%;
  background-color: #00000094;
}
td.border-0 {
  font-weight: 400;
  font-size: 20px;
  line-height: 30px;
  padding: 15px 0;
}
.form-label {
  font-weight: 400;
  font-size: 20px;
  line-height: 30px;
  color: #01010177;
}
.hero-text-wrapper {
  background-color: #000000c0;
  height: 100%;
}

span.navbar-toggler-icon {
  height: 3px;
  background: #000;
  border-radius: 10px;
}

button.navbar-toggler:after {
  height: 3px;
  background: #000;
  border-radius: 10px;
  width: 100%;
  content: "";
  display: block;
}

button.navbar-toggler:before {
  height: 3px;
  background: #000;
  border-radius: 10px;
  width: 100%;
  content: "";
  display: block;
  margin-bottom: -7px;
}

button.navbar-toggler {
  padding: 10px;
}
body {
  overflow-x: hidden;
}

.services-content {
  padding: 2rem;
}
.services-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}
.services-title {
  color: #ffffff;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.services-description {
  font-size: 1rem;
  line-height: 1.6;
  color: #ffffff;
  margin-bottom: 1.5rem;
}
.services-button {
  border-radius: 0;
  padding: 0.5rem 2.5rem;
}
@media (max-width: 767px) {
  .services-section {
    padding: 3rem 0;
  }
  .services-content {
    padding: 1.5rem;
  }
  .services-title {
    font-size: 1.75rem;
  }
}
.texture-background {
  background-color: #000;
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url(https://www.transparenttextures.com/patterns/clean-gray-paper.png);
  background-position: center;
  background-size: auto, auto;
}

.amount {
  font-family: Roboto Condensed;
  font-size: 30px;
  font-weight: 400;
  line-height: 30px;
  text-align: center;
  color: #b32126;
}
.vr-devider {
  rotate: 90deg;
  position: absolute;
  top: 50%;
  left: -73px;
}
swiper-slide.swiper-slide-active {
  opacity: 1;
}
swiper-slide {
  opacity: 0.2;
}
swiper-container.mySwiper {
  position: absolute;
  width: 100%;
}
@media screen and (max-width: 768px) {
  swiper-container.mySwiper {
    position: relative;
    width: 100%;
  }
}
hr {
  opacity: 1;
}

swiper-slide img {
  height: 450px !important;
  width: 100% !important;
  object-fit: cover;
  object-position: top center;
}

swiper-slide h5 {
  text-align: center;
  margin-top: 20px;
  color: var(--secondary);
}


/* Our Board */

:root {
  --primary-blue: #0d47a1;
  --secondary-red: #b71c1c;
  --accent-white: #f5f5f5;
}

body {
  background-color: var(--accent-white);
  color: #333;
}

.board-section {
  padding: 4rem 0;
  background: var(--primary-blue);
}

.section-title {
  color: var(--accent-white);
  text-align: center;
  margin-bottom: 3rem;
  font-weight: bold;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.board-member {
  background-color: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin-bottom: 2rem;
  height: auto;
}

.board-member:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

.member-image {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.member-info {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  height: auto;
}

.member-name {
  color: var(--primary-blue);
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.member-bio {
  font-size: 0.9rem;
  color: #555;
  overflow: hidden;
  transition: max-height 0.3s ease;
  flex-grow: 1;
}

.read-more {
  color: var(--secondary-red);
  cursor: pointer;
  font-weight: bold;
  display: inline-block;
  margin-top: 1rem;
}

.read-more:hover {
  text-decoration: underline;
}

.slider-container {
  position: relative;
  overflow: hidden;
}

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  color: var(--accent-white);
  background-color: rgba(0, 0, 0, 0.5);
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: background-color 0.3s ease;
}

.slider-arrow:hover {
  background-color: rgba(0, 0, 0, 0.7);
}

.slider-arrow.left {
  left: 10px;
}

.slider-arrow.right {
  right: 10px;
}

.slider-content {
  display: flex;
  transition: transform 0.5s ease;
}

@media (max-width: 999px) {
  .slider-container {
      overflow: visible;
  }
  
  .slider-content {
      flex-wrap: wrap;
      transform: none !important;
  }
  
  .slider-arrow {
      display: none;
  }
}

@media (min-width: 1000px) {
  .board-member-container {
      display: none;
      width: 33.333%;
      padding: 0 15px;
  }
  .board-member-container.active {
      display: block;
  }
}

@media (max-width: 999px) and (min-width: 701px) {
  .board-member-container {
      width: 50%;
      padding: 0 15px;
      margin-bottom: 1em;
  }
}

@media (max-width: 700px) {
  .board-member-container {
      width: 100%;
      padding: 0 15px;
      margin-bottom: 1em;
  }
}
.btn-lg {
  padding: 0.75rem 1.5rem;
  font-size: 1.1rem;
}
.lead {
  font-size: 1.1rem;
}
@media (min-width: 768px) {
  .display-6 {
    font-size: 2.5rem;
  }
}

.hero-section {
  background-image: url('images/american-flag-image.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 100vh; /* Ensure full viewport height */
  display: flex;
  align-items: center;
  position: relative;
  padding-top: 70px; /* Adjust according to the header height */
  padding-bottom: 70px; /* Add bottom padding to ensure spacing */
  z-index: 1;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.6);
}

.hero-section .container {
  position: relative;
  z-index: 2;
}

.hero-text-wrapper {
  background-color: rgba(0, 0, 0, 0.7);
  border-radius: 10px;
}

.hero-section h1 {
  font-size: 3.5rem;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-section .lead {
  font-size: 1.25rem;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.hero-image-wrapper {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-image-wrapper img {
  max-height: 80vh;
  object-fit: cover;
}

@media (max-width: 991px) {
  .hero-section {
    height: auto; /* Adjust height to auto on smaller screens */
    padding: 4rem 0;
  }

  .hero-section h1 {
    font-size: 2.5rem;
  }

  .hero-text-wrapper {
    margin-bottom: 2rem;
  }
}

.section {
  padding-top: 100px !important; /* Adds padding to prevent overlap from above section */
}





#contact-us {
  background-color: #e8eaee;
  position: relative;
  padding-top: 2em !important;
}

#contact-us::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100px;
  background-image: url('path/to/american-flag-pattern.png');
  opacity: 0.1;
}

#contact-us h2 {
  color: #172d54;
  font-weight: 700;
}

#contact-us .lead {
  color: #333;
  font-size: 1.1rem;
}

#contact-us .form-label {
  color: #172d54;
  font-weight: 600;
}

#contact-us .form-control {
  border: 1px solid #ccc;
  border-radius: 5px;
  padding: 0.75rem;
}

#contact-us .form-control:focus {
  border-color: #b32126;
  box-shadow: 0 0 0 0.2rem rgba(179, 33, 38, 0.25);
}

#contact-us .btn-primary {
  background-color: #b32126;
  border-color: #b32126;
  font-weight: 600;
  transition: all 0.3s ease;
}

#contact-us .btn-primary:hover {
  background-color: #8a1a1e;
  border-color: #8a1a1e;
  transform: translateY(-2px);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  #contact-us::before {
    height: 50px;
  }
}

.btn-primary {
  background-color: #b32126;
  border-color: #b32126;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: #8a1a1e;
  border-color: #8a1a1e;
  transform: translateY(-2px);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

html {
  scroll-behavior: smooth;
}

.hero-content {
  background-color: rgb(38 48 106 / 77%);
  padding: 40px;
  border-radius: 15px;
}
.section-title {
  margin-bottom: 30px;
  font-size: 2.5rem;
  font-weight: 600;
  text-align: center;
  color: #fff;
}

.slider-content {

  transition: transform 0.5s ease-in-out;
}

.board-member-container {

  box-sizing: border-box;
}
