/* =========================
   1. CSS RESET
   ========================= */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
:root {
  --black-color: #000000;
  --white-color: #ffffff;
  --primary-color: #004E97;
  --secondary-color: #F7F9FF;
  --magenta-pink-color: #AD3673;
  --light-pink: #F7EBF1;
  --gray-color: #FAFAFA;
}
html {
  scroll-behavior: smooth;
}

body {
  font-family:"halyard-display";
  /* font-family: Halyard Display,Inter,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen,Ubuntu,Cantarell,Fira Sans,Droid Sans,Helvetica Neue,sans-serif; */
  line-height: 1.6;
  font-size: 1rem;
  color: var(--black-color);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
.vth26-customlist {
  list-style: none; 
  padding-left: 0; 
}
.vth26-customlist li {
  padding-left: 1.5rem; 
  position: relative; 
  margin-bottom: 0.5rem; 
  font-weight: 300
}
.vth26-customlist li::before {
  content: ""; 
  position: absolute;
  left: 0;
  top: 0.4rem;
  width: 1rem; 
  height: 1rem; 
  background-image: url("../images/bullet-list-icon.svg"); 
  background-repeat: no-repeat;
}
/* =========================
   2. TYPOGRAPHY
   ========================= */
h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  line-height: 1.25;
  margin-bottom: 0.5rem;
  font-family:"halyard-display";
}

h1 { font-size: 2rem; }
h2 { 
  font-size: 2rem; 
  font-weight: 500;
}
h3 { font-size: 2.5rem; }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.1rem; }
h6 { font-size: 1rem; }

p {
  margin-bottom: 0.625rem;
  font-family:"halyard-display";
  font-size: 1rem;
}
span {
   font-family:"halyard-display";
}
a {
  color: #0066cc;
  text-decoration: none;
}

a:hover,
a:focus {
  text-decoration: underline;
}
ul, ol {
  list-style: none;
}
/* =========================
   3. MEDIA ELEMENTS
   ========================= */
img,
picture,
video,
canvas,
svg {
  max-width: 100%;
  height: auto;
  display: block;
}

/* =========================
   4. FORMS
   ========================= */
input,
textarea,
select,
button {
  font: inherit;
}

button {
  cursor: pointer;
  border: none;
  background: none;
}

input,
textarea,
select {
  width: 100%;
  padding: 0.6rem 0.75rem;
  border: 1px solid #ccc;
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: var(--primary-color);
}

/* =========================
   5. LAYOUT HELPERS
   ========================= */
.container {
  margin: 0 auto;
  position: relative;
  width: 100%;
  max-width: 90rem;
  padding: 0 5rem;
}
.section-space2 {
  padding: 5rem 0;
}
.section {
  padding: 2.5rem 0;
}
.bg-lightblue {
  background-color: var(--secondary-color);
}
/* =========================
   6. FLEX & GRID UTILITIES
   ========================= */
.dflex {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}

.dflex-center {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
}
.dflex-between {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.grid {
  display: grid;
  gap: 1.5rem;
}

.grid-2 {
  grid-template-columns: repeat(2, 1fr);
}

.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid-4 {
  grid-template-columns: repeat(4, 1fr);
}
.column-60 {
  width: 60%;
}
.column-40 {
  width: 40%;
}
/* =========================
   7. BUTTONS
   ========================= */
.btn {
  display: inline-block;
  padding: 1rem 1.125rem;
  border-radius: 2px;
  background-color: var(--primary-color);
  color: var(--white-color);
  font-weight: 300;
  text-align: center;
  font-size: 1.125rem;
  transition: 0.5s;
  min-height: 3.438rem;
  min-width: 11.25rem;
}

.btn:hover {
  background-color: #003a70;
  text-decoration: none;
}
.btn-arrow {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}
.btn-arrow img {
  margin-top: 0.35rem;
  transition: 0.5s;
  transform: translateX(0);  
}
.btn-arrow:hover img {
   transform: translateX(0.25rem);
}
/* =========================
   8. ACCESSIBILITY BASICS
   ========================= */
:focus-visible {
  outline: 2px solid #0066cc;
  outline-offset: 2px;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* =========================
   9. TEXT ALIGNMENTS
   ========================= */

.text-center {
  text-align: center;
}
.text-left {
  text-align: left;
}
.text-right {
  text-align: right;
}
/* =========================
   10. Margin styles
   ========================= */

.mb0 {
  margin-bottom: 0;
}

/* =========================
   10. RESPONSIVE BREAKPOINTS
   ========================= */
@media (max-width: 1024px) {
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 991px) {
  .container {
    padding: 0 2rem;
  }
}
@media (max-width: 767px) {
  .container {
    padding: 0 1.5rem;
  }
  .grid-3,
  .grid-2 {
    grid-template-columns: 1fr;
  }  
  .br-mobile-hide {
    display: none;
  }
}
