


svg.socialicon {
    width: 20px;
    height: 20px;
    margin-left: 15px;
}

svg.socialicon.donotmove {
    width: 20px;
    height: 20px;
    margin-left: 5px;
}
.instagram {
  fill:#C13584}

.facebook {
  fill:#1877f2}

.linkedin {
  fill:#0073b1}
.socialfoot svg.socialicon {
  fill:#fff;}
span.socialmedia {

    padding-top: 10px;
}

span.portals {
    padding-top: 10px;
}
span.portals {
    padding-top: 10px;
 position:relative
 width:120px;
}

span.portals svg {
    position: absolute;
}


.buttongrid {

    display: grid;
    grid-template-columns: 200px 1fr;
    justify-content: center;
    align-items: center;
}


.bbutton {
    display: grid;
    justify-content: left;
    padding-left: 40px;
}

.newsection h3 {
    text-transform:initial !important;
    max-width:70%;
    margin-top:20px;}

     .newsection h1 {
    font-size: 2rem;
    font-weight: 700;
    position:relative;
    display:inline-block;
    margin-bottom:25px;
}

.newsection h3 {
    display:none;
}

@media only screen and (min-width:1024px){

 .newsection h1 {
    font-size: 4rem;
  
}
.newsection h3 {
    display:block;
}

}


.newsection h1::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  bottom: -12px;         /* Distance between text and line */
  
  /* Line Dimensions & Style */
  width: 70px;           /* Custom line width */
  height: 4px;           /* Line thickness */
  background-color: #ffffff; /* Line color */
  border-radius: 2px;    /* Optional: slightly rounded ends */
}


.earlyh2 img {
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.earlyh2 h2 {
    background: #fff;
    display: block;
    padding: 10px;
       border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    border:none;
}

.earlyh2 p {
    margin:0;
}

.earlyh2 h2 {
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 16px 20px;
    border-radius: 0 0 10px 10px;
    border: none;
    margin: 0;
}

.earlyh2 h2::after {
    content: '';
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: #222;
    /* Inline white arrow centered inside the circle */
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='5' y1='12' x2='19' y2='12'%3E%3C/line%3E%3Cpolyline points='12 5 19 12 12 19'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 18px 18px;
    display: inline-block;
    transition: transform 0.2s ease, background-color 0.2s ease;
}

.earlyh2:hover h2::after {
    transform: translateX(4px);
}

/* Establish positioning context */
.earlyh2 {
    position: relative;
    cursor: pointer;
}

/* Stretch the link over the entire card */
.earlyh2 a::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
}

/* Ensure the image block doesn't collapse or overflow */
.earlyh2 img {
    display: block;
    width: 100%;
}


.c-icon-lead {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    max-width: 1300px;
    margin-inline: auto;
}

/* The circular icon badge */
.c-icon-lead::before {
    content: '';
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: #0b0c0c;
    /* Inline Users SVG icon */
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M16 21v-2a4 4 0 0 0-4-4H6a4 4 0 0 0-4 4v2'/%3E%3Ccircle cx='9' cy='7' r='4'/%3E%3Cpath d='M22 21v-2a4 4 0 0 0-3-3.87'/%3E%3Cpath d='M16 3.13a4 4 0 0 1 0 7.75'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 24px 24px;
}

/* Ensure DNN content pane and editor text fit cleanly */
.c-icon-lead > div {
    flex: 1;
}

.c-icon-lead p {
    margin: 0;
    line-height: 1.5;
}

.c-scheme-card__bg div div {
    display:grid;
    align-items:center;
    justify-content: center;

    h2 {
        font-size:20px;
    }
}



/* Container holding the image and text */
.container-card {
  position: relative;
  text-align: center;
  color: white;
  display: inline-block; /* or block, ensures container hugs the image */
  overflow: hidden;      /* keeps overlay within container boundaries */
}

/* Ensure the image behaves properly */
.container-card img {
  display: block;
  width: 100%;
  height: auto;
}

/* Dark pseudo-element overlay */
.container-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.45); /* Adjust opacity as needed */
  z-index: 1;
  pointer-events: none;
}

/* Centered text sitting on top of the overlay */
.container-card h2 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  color: #d2e04a;
  z-index: 2; /* Ensures text stays above ::after (z-index: 1) */
  margin: 0;
}

.early-lead-title h1 {

    font-size:2.5rem !important;
}
.early-lead-title h1 span {
    color:#fff !important;
}

.early-lead-title p {
  color: #d2e04a;
  font-size:1.5rem;
}

.early-lead-title-h2 h2{

    font-size:2.5rem !important;
    margin-bottom:1.5rem;
}
.early-lead-title-h2 h2 span {
    color:#fff !important;
}





.icon-spllit {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    color: #fff;
}

/* The circle wrapper */
.icon-spllit .icon-wrap {
    flex-shrink: 0;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    border: 2px solid #a3b827; /* Accent ring */
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden; /* Clips the uploaded image inside the circle */
}

/* The image output by <dnn:ICON /> */
.icon-spllit .icon-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Centers & scales uploaded image properly */
    display: block;
}

.icon-spllit .content-wrap {
    flex: 1;
}

.icon-spllit .content-wrap h2 {
    margin: 0 0 0.5rem 0;
    color: #d2e04a;
}

.h2-white-h3-green h2 span{
color:#fff;
font-size:2rem;

}

.h2-white-h3-green h3 {
    color: #d2e04a;
    font-size:2rem;
    margin-bottom:1.5rem;
}




/* Each module row */
.things-row-module {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
    color: #fff;
}

/* Icon circle ring */
.things-row-module .things-icon-wrap {
    flex-shrink: 0;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 1.5px solid #a3b827;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Selected icon image inside the circle */
.things-row-module .things-icon-wrap img {
    width: 24px;
    height: 24px;
    object-fit: contain;
    display: block;
}

/* Module content wrapper (DNN ContentPane) */
.things-row-module .things-content-wrap {
    flex: 1;
}

.things-row-module .things-content-wrap p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.45;
    color: #f1f1f1;
}


/* Container title layout */
.heading-line-container .title-with-line {
    display: flex;
    align-items: center;
    gap: 1.5rem;             /* Space between text and the line */
    margin: 0 0 1rem 0;
    color: #d2e04a;          /* Lime green text */
    font-size: 1.25rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    white-space: nowrap;     /* Keeps heading text on one line */
}

/* The expanding accent line */
.heading-line-container .title-with-line::after {
    content: "";
    flex: 1;                 /* Fills all remaining width */
    height: 2px;             /* Line thickness */
    background-color: #a3b827; /* Lime line color */
}

/* Ensure DNN title link/span inherits font styles */
.heading-line-container .title-with-line a,
.heading-line-container .title-with-line span {
    color: inherit;
    text-decoration: none;
}

.why-cta {
    font-size:3rem;
}

.container-card .Normal h2 {
    color: #d2e04a;
}

