body {
    /* font-family: "Raleway", sans-serif; */
    overflow-x: hidden;
    /* scrollbar-width:none; */
  }


  @import url("https://fonts.googleapis.com/css2?family=Rubik:wght@400;500;600;700&display=swap");
:root {
  --color-white-100: hsl(206, 5%, 100%);
  --color-white-200: hsl(206, 5%, 90%);
  --color-white-300: hsl(206, 5%, 80%);
  --color-white-400: hsl(206, 5%, 65%);
  --color-white-500: hsl(206, 5%, 50%);
  --color-black-100: hsl(213, 20%, 10%);
  --color-black-200: hsl(213, 23%, 8%);
  --color-black-300: hsl(214, 21%, 6%);
  --color-black-400: hsl(210, 21%, 6%);
  --color-black-500: hsl(216, 22%, 4%);
  --color-black-600: hsl(220, 18%, 3%);
  --color-black-700: hsl(220, 27%, 2%);
  --color-black-800: hsl(180, 20%, 1%);
  --color-blue-100: hsl(214, 95%, 93%);
  --color-blue-200: hsl(213, 97%, 87%);
  --color-blue-300: hsl(212, 96%, 78%);
  --color-blue-400: hsl(213, 94%, 68%);
  --color-blue-500: hsl(217, 91%, 60%);
  --color-blue-600: hsl(221, 83%, 53%);
  --color-blue-700: hsl(224, 76%, 48%);
  --color-blue-800: hsl(226, 71%, 40%);
  --color-blue-900: hsl(224, 64%, 33%);
  --shadow-small: 0 1px 3px 0 rgba(0, 0, 0, 0.1),
     0 1px 2px 0 rgba(0, 0, 0, 0.06);
  --shadow-medium: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
     0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-large: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
     0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

*,
*::before,
*::after {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  list-style: none;
  list-style-type: none;
  text-decoration: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

html {
  font-size: 100%;
  box-sizing: inherit;
  scroll-behavior: smooth;
  height: -webkit-fill-available;
}

.contactus_banner {
    font-family: "Rubik", sans-serif !important;
    font-size: clamp(1rem, 2vw, 1.125rem) !important;
    font-weight: 400 !important;
    line-height: 1.5 !important;
    color: var(--color-white-100) !important;
    background-color: var(--color-black-500) !important;
    width: 100% !important;
    height: 85vh !important; /* Make it cover the entire viewport height */
    background: url("/assets/images/membership/contact.jpg") no-repeat center center fixed !important;
    background-size: cover !important; /* Ensures the image covers the entire area */
    overflow: hidden !important;
  }
  

.container {
  max-width: 75rem;
  height: auto;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.centered {
  text-align: center;
  vertical-align: middle;
  margin-bottom: 1rem;
}

.heading-xl {
  font-family: inherit;
  font-size: clamp(2.448rem, 6vw, 4.241rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -1px;
  /* mix-blend-mode: overlay; */
}
.heading-lg {
  font-family: inherit;
  font-size: clamp(2.179rem, 5vw, 3.176rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -1px;
  /* mix-blend-mode: overlay; */
}
.heading-md {
  font-family: inherit;
  font-size: clamp(1.794rem, 4vw, 2.379rem);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -1px;
  /* mix-blend-mode: overlay; */
}
.heading-sm {
  font-family: inherit;
  font-size: clamp(1.476rem, 3vw, 1.782rem);
  font-weight: 600;
  line-height: 1.5;
}
.heading-xs {
  font-family: inherit;
  font-size: clamp(1.215rem, 2vw, 1.335rem);
  font-weight: 500;
  line-height: 1.5;
}

.paragraph {
  font-family: inherit;
  font-size: clamp(1rem, 2vw, 1.125rem);
  text-wrap: balance;
  color: var(--color-black-200) !important;
}

.btn {
  display: inline-block;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5;
  text-align: center;
  vertical-align: middle;
  white-space: nowrap;
  user-select: none;
  outline: none;
  border: none;
  border-radius: 0.25rem;
  text-transform: unset;
  transition: all 0.3s ease-in-out;
}
.btn-inline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  column-gap: 0.5rem;
}
.btn-darken {
  padding: 0.75rem 2rem;
  color: var(--color-white-100);
  background-color: var(--color-black-200);
  box-shadow: var(--shadow-medium);
  margin-bottom: 10px;
}
.btn-neutral {
  padding: 0.75rem 2rem;
  color: var(--color-black-500);
  background-color: var(--color-white-100);
  box-shadow: var(--shadow-medium);
}

.section {
  margin: 0 auto;
  padding: 12rem 0 1rem;
}

.banner-column {
  position: relative;
  display: grid;
  align-items: center;
  row-gap: 3rem;
}
@media only screen and (min-width: 48rem) {
  .banner-column {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    justify-content: center;
  }
}
@media only screen and (min-width: 64rem) {
  .banner-column {
    grid-template-columns: 1fr max-content;
    column-gap: 4rem;
    margin-top: 3rem;
  }
}

@media (max-width: 768px){
  .section {
    margin: 0 auto;
    padding: 6rem 0 1rem;
  }
}
.banner-image {
  display: block;
  max-width: 18rem;
  height: auto;
  margin-top: 2rem;
  object-fit: cover;
  justify-self: center;
}
@media only screen and (min-width: 48rem) {
  .banner-image {
    order: 1;
    max-width: 20rem;
    height: auto;
  }
}
@media only screen and (min-width: 64rem) {
  .banner-image {
    max-width: 25rem;
    height: auto;
    margin-right: 5rem;
  }
}
.banner-inner {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    row-gap: 1.75rem !important; 
    padding-left: 10px !important;
    border-left: 3px solid steelblue !important;
    background-color: rgba(192, 192, 192, 0.427) !important;
    backdrop-filter: blur(5px) !important;
  }
  
  .banner-links {
    position: absolute !important;
    top: 30% !important;
    right: 1.5rem !important;
    display: grid !important;
    justify-items: center !important;
    row-gap: 0.5rem !important;
    opacity: 0 !important;
    visibility: hidden !important;
  }
  
  @media only screen and (min-width: 64rem) {
    .banner-links {
      opacity: 1 !important;
      visibility: visible !important;
    }
  }
  
  @media (max-width: 1024px) {
    .contactus_banner {
      height: auto !important;
    }
  }
  
  .banner-links > * {
    font-size: 1.25rem !important;
    line-height: 1.25 !important;
    color: var(--color-white-100) !important;
  }
  
  .banner-links::before {
    position: absolute !important;
    content: "" !important;
    top: -3rem !important;
    width: 4rem !important;
    height: 1.5px !important;
    transform: rotate(90deg) !important;
    background: var(--color-white-100) !important;
  }
  
  .banner-links::after {
    position: absolute !important;
    content: "" !important;
    bottom: -3rem !important;
    width: 4rem !important;
    height: 2px !important;
    transform: rotate(90deg) !important;
    background: var(--color-white-100) !important;
  }
  
/* content section  */
/* * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
} */
.container-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  padding: 50px 20px;
  /* text-align: center; */
}
.card-content {
  width: 300px;
  padding: 20px;
  border-radius: 10px;
  border: none;
  /* box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); */
  background: #fff;
}
.card-content img {
  width: 100%;
  height: auto;
  margin-bottom: 15px;
}
.card-content h3 {
  font-size: 18px;
  margin-bottom: 10px;
}
.card-content p {
  font-size: 14px;
  color: #555;
  margin-bottom: 10px;
}
.card-content a {
  color: #007bff;
  text-decoration: none;
  font-weight: bold;
}
@media (max-width: 768px) {
  .container {
      flex-direction: column;
      align-items: center;
  }
}



/* .contact-form {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: Arial, sans-serif;
} */

.container-contact {
    display: flex;
    min-height: 100vh;
    width: 100%;
    /* padding: 100px; */
    }
    
    .form-section {
    flex: 2;
    padding: 60px;
    background-color: #FFE4B5;
    }
    
    .info-section {
    flex: 1;
    padding: 100px;
    background-color: #0A1942;
    color: white;
    }
    
    .form-title {
    font-size: 28px;
    margin-bottom: 30px;
    color: #333;
    }
    
    .contact-form {
    max-width: 700px;
    width: 100%;
    }
    
    .form-group {
    margin-bottom: 5px;
    }
    
    .form-group .form-control {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
    }
    
    textarea.form-control {
    min-height: 120px;
    resize: vertical;
    }
    
    .submit-btn {
    background-color: #0A1942;
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    }
    
    .submit-btn:hover {
    background-color: #152868;
    }
    
    .info-section h2 {
    font-size: 40px;
    margin-bottom: 20px;
    line-height: 1.2;
    color: white;
    }
    
    .info-section p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
    }
    
    select.form-control {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1em;
    }
    
    @media (max-width: 768px) {
    .container-contact {
        flex-direction: column;
        padding: 20px;
    }
    
    .form-section, .info-section {
        padding: 20px;
    }
    
    .info-section {
        text-align: center;
    }
    
    .form-title {
        text-align: center;
    }
    
    .contact-form {
        margin: 0 auto;
    }
    }