/* styles.css */
:root {
  /* Colors */
  --clr-primary: #0468B1;
  --clr-secondary: #93B741;
  --clr-text: #000000;
  --clr-white: #fff;

  /* Green Palette */
  --clr-green-100: var(--clr-secondary);
  --clr-green-200: #5C7F39;
  --clr-green-300: #81A43C;
  --clr-green-400: #9EBC2E;
  --clr-green-500: #C3D82E;
  --clr-green-600: #8DB836;
  --clr-green-700: #BCCD30;
  --clr-green-800: #53853D;
  --clr-green-900: #87B04A;
   
  /* Blue Palette */
  --clr-blue-100: #1A7B7D;  
  --clr-blue-200: #45A7AF;
  --clr-blue-300: #2D4AA1;
  --clr-blue-400: #2D67AB;
  --clr-blue-500: #377FD3;
  --clr-blue-600: #2d66ab;
  
  /* Purple Palette */
  --clr-purple-100: #512D7D;
  --clr-purple-200: #8B5FC1;

  /* Orange Palette */
  --clr-orange-100: #E47B3A;
  --clr-orange-200: #F0B357;
  --clr-orange-300: #E8D179;

  /* Yellow Palette */
  --clr-yellow-100: #DDB342;
  --clr-yellow-200: #FBB041;

  /* red Palette */
  --clr-red-100: #BD2227;
  

  /* Font sizes */
  --fs-base: 1rem;
  --fs-sm: 1rem;
  --fs-md: 1.35rem;
  --fs-lg: 1.7rem;

  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1.25rem; /* 20px */
  --spacing-md: 2rem;
  --spacing-lg: 4rem;

  /* Border radius */
  --radius: 0.5rem;
}

/* Responsive Font Sizes */
@media (min-width: 1500px) {
  :root {
    --fs-base: 1.29rem;
    --fs-sm: 0.875rem;
    --fs-md: 1.5rem;
    --fs-lg: 2.60rem;
  }
}


@media (min-width: 1600px) {
    .school-details ul {
        columns: 2;
        column-gap: 20px;
    }
    
}


@media (min-width: 1200px) {
  :root {
    --fs-base: 1.05rem;
    --fs-sm: 0.875rem;
    --fs-md: 1.5rem;
    --fs-lg: 2.10rem;
  }

  .list-icon-round-item .icon-item strong {
        font-size: 1.1rem !important;
    }
}



*,
*::before,
*::after {
  box-sizing: border-box;
  
}

html {
    margin-top: 0px !important;
}

body {
  margin: 0;
  font-family: "PT Sans", sans-serif;
  font-size: var(--fs-base);
  font-weight: 400;
  color: var(--clr-text);
  line-height: 1.4;
  background-color: var(--clr-white);
  height: 100%;
  min-width: 360px;
}

.screens p {
    font-size: var(--fs-base);
    line-height: 1.25;
}

.main-screen {
    background-image: url(../images/bg.jpg);
    background-size: cover;
    background-position: top center;
    min-height: 100vh;
    border: 10px solid var( --clr-blue-600);
    padding: 10px 0px 0 0px;
   position: relative;
   transition: .6s ease;
}


.main-screen.screen-3-active {
    background: white !Important;
}




h1 {
    font-size: var(--fs-lg);
    color: var(--clr-primary) ;
    line-height: 1;
    margin: 0;
    font-weight: 600;
}

h2 {
    font-size: var(--fs-md);
    color: var(--clr-primary) ;
    line-height: 1;
    font-weight: 600;
}


.screens {
  display: grid;
  grid-template: 1fr / 1fr;
  position: relative;
}

.screen {
  width: 100%;
  max-width: 1500px;
  margin: 20px auto;
  transition: .3s;
    grid-area: 1 / 1;
    position: relative;
    z-index: 800;
}

.screen-1 {
    z-index: 500;
}

.screen-1, .screen-2 {
    padding: 0 20px;
}

.screen-1 .column-right .map {
    position: absolute;
    width: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 100%;
    max-height: 100%;
}


.screen-2 {
    z-index: 600;
    display: none;
}

.screen-2 .column-left, .screen-2 .column-right {
    opacity: 0;
    transition: opacity 0.4s ease;
}

.column-right .desktop-map { 
    width: 100%;  
    height: 100%;
    position: relative; 
}


.screen-3 {
    z-index: 700;
    display: none;
    max-width: none;
    margin-top: -50px;
    margin-bottom: 0;
    opacity: 0;
    transition: opacity 0.4s ease;
    padding-bottom: 0px;
}

.screen-3 .col-left > * {
    position: relative;
    transition: .5s ease;
    right: 20px;
    opacity: 0
}
.screen-3 .col-50 {
    transition: .5s ease;
    opacity: 0;
    min-height: 100vh;
}
.screen-3 .col-right > * {
    position: relative;
    transition: .5s ease;
    left: 20px;
    opacity: 0
}



/* Marker animations */
@keyframes markerBounceFade {
    0% {
        opacity: 0;
        transform: scale(0.5);
    }
    50% {
        opacity: 1;
        transform: scale(1.3);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.column-right svg [id^="m-"] {
    transform-box: fill-box;   
    transform-origin: center;  
    opacity: 0.01; 
    cursor: pointer;
    transition: transform 1s ease;
}
.column-right svg [id^="m-"]:hover {
    transform: scale(1.3) !important;
}

.map svg {
    width: 100%;
    max-width: 1300px;
    height: auto;
    cursor: pointer;
}

/* Animation styles for smooth zoom effect */
.screen-2 .map-section {
    transition: all 0.55s cubic-bezier(0.165, 0.84, 0.44, 1);
    max-width: 90%;
    max-height: 100%;
}

.screen-1 {
    transition: opacity 0.4s ease;
}
    
.map svg path {
    transition-duration: 0.3s;
}
    
.map svg [id^="section-"]:hover {
    opacity: 80%;
    transition-duration: 0.3s;
}

/* top navigation */
.top-navigation {
    width: calc(100% - 40px);
    max-width: 1720px;
    margin: auto;
    position: relative;
    z-index: 900;
    padding: 0 20px 40px 20px;
    display: block;
    transition: all 0.3s ease;
}

.top-navigation.active {
    justify-content: space-between;
}

.top-navigation.active .back-button {
    display: block;
}

/* Sticky navigation styles */
.sticky-navigation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 20px 20px;
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transform: translateY(-100%);
    animation: slideDown 0.4s ease-out forwards;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 900;
    transition: all 0.3s ease;
}

.sticky-navigation .back-button {
    position: absolute;
    left: 20px;
    margin: 0;
}

.sticky-navigation .accessibility-btn {
    position: absolute;
    right: 20px;
    margin: 0;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }
    to {
        transform: translateY(0);
    }
}

.sticky-navigation.hide {
    animation: slideUp 0.3s ease-in forwards;
}

@keyframes slideUp {
    from {
        transform: translateY(0);
    }
    to {
        transform: translateY(-100%);
    }
}

.sticky-navigation button {
    font-weight: 700;
    text-decoration: none;
    font-size: var(--fs-base);
    background: none;
    padding: 0;
    border: 0;
    cursor: pointer;
    text-transform: uppercase;
}

.sticky-navigation .back-button {
    display: block;
    color: var(--clr-green-900);
}

.sticky-navigation .back-button img {
    width: 22px;
    margin-right: 5px;
}

.sticky-navigation .accessibility-btn {
    color: var(--clr-blue-600);
    text-decoration: underline;
}

.top-navigation button {
    font-weight: 700;
    text-decoration: none;
    font-size: var(--fs-base);
    background: none;
    padding: 0;
    border: 0;
    cursor: pointer;
    text-transform: uppercase;
    position: absolute;
}

.top-navigation .accessibility-btn {
    color: var(--clr-blue-600);
    text-decoration: underline;
    right: 10px;
}

.top-navigation .back-button {
    color: var(--clr-green-900);
    display: none;
    left: 10px;
}

.top-navigation .back-button img {
    width: 22px;
    margin-right: 5px;
}

/* two column */
.two-column-layout {
  display: flex;
flex-direction: column;
  gap: 20px;
      height: 100%;
}

.column-left {
    z-index: 100;
}

.column-left,
.column-right {
  width: 100%;
  padding: 20px;
}



.hide-content {
    opacity: 0 !important;
    transition: opacity 0.4s ease;
}
.show-content {
    opacity: 1 !important;
    transition: opacity 0.4s ease;
}



@media (min-width: 1000px) {

    .two-column-layout {
        flex-direction: row; /* Side-by-side layout */
    }

    .column-left {
        flex: 0 0 37%; /* 35% width */
        padding: 0px 20px;
    }

    .screen-1.column-left {
        flex: 0 0 33.2%; /* 35% width */
        padding: 0px 0 0 20px;
    }

    .column-right {
        flex: 1;
        padding: 0;
        margin-left: -10%;


        /*display: flex;
        align-items: center;*/
        
    }
}

/*
@media (min-width: 960px) and (max-width: 1083.98px) {
    .column-left {
        flex: 0 0 40%;
        padding: 0px 20px;
    }

    .parker-screen .single-map {
        margin-left: 0;
    }
 }
    */



/* left content */
.left-logo img {
    max-width: 180px;
    margin-top:0px;
    margin-bottom: 20px;
}

.left-text-content {
    border-bottom: 3px solid #ADC9DC;
}

.left-text-content h1 {
    margin-bottom: 10px;
}

.left-text-content p {
    margin-top: 0px;
} 

.mobile-map {
    height: auto;
}

.mobile-map .map svg {
    height: auto;
    margin-top: 0px;
}

.desktop-map .map svg {
    height: 0;
}


 .mobile-bond-listing {
    height: auto;
 }

.mobile-bond-listing ul {
    list-style: none;
    padding: 0;
}

.mobile-bond-listing ul li a {
    text-decoration: none;
    font-weight: bold;
    color: #000;
    font-size: 1.125rem;
}

.show-on-desktop {
    display: none;
}

.show-on-mobile {
    display: block;
}

.mobile-bond-listing .map {
    padding-top: 20px;
}

.mobile-bond-listing .link-item {
    padding: 5px 0;
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    cursor: pointer;
}

.mobile-bond-listing .link-item::before {
    content: "";
    display: inline-block;
    width: 50px;   /* Set desired width */
    height: 50px;  /* Set desired height */
    background-size: contain;
    background-repeat: no-repeat;
}

.mobile-bond-listing .link-item.west-link {
    color: var(--clr-blue-300);
}

.mobile-bond-listing .link-item.west-link:before {
    background-image: url(../images/icon-west.png);
}

.mobile-bond-listing .link-item.east-link {
    color: var(--clr-orange-100);
}

.mobile-bond-listing .link-item.east-link:before {
    background-image: url(../images/icon-east.png);
}

.mobile-bond-listing .link-item.parker-link {
    color: var(--clr-purple-100);
}

.mobile-bond-listing .link-item.parker-link:before {
    background-image: url(../images/icon-parker.png);
}

.mobile-bond-listing .link-item.castle-link {
    color: var(--clr-blue-200);
}

.mobile-bond-listing .link-item.castle-link:before {
    background-image: url(../images/icon-castle.png);
}


@media (max-width: 1200px) {

    .screen-3 .school-info-screen-container {
        flex-wrap: wrap;
    }
    .screen-3 .school-info-screen-container > div {
        width: 100%;
        flex: auto;
    }
    .screen-3 .col-50 {
        min-height: auto;
        padding: 60px 25px;
        max-width: 100%
    }
    .screen-3 .col-right {
        text-align: center;
        padding-bottom: 80px;
    }
    
    .screen-3 .school-name {
        justify-content: center;;
    }
    .screen-3 .school-lower-row {
        display: flex; 
    }
    .screen-3 .school-details {
        width: 40%;
        border-bottom: none;
    }
    .screen-3 .school-awards {
        width: 60%;
    }

    .screen-3 .tax-dollar-block {
        padding-top: 50px;
        text-align: center;
    }

    .screen-3 .district-list {
        columns: 3;
        column-gap: 20px;
        margin-bottom: 30px;;
        text-align: left;;
    }
    .screen-3 .list-icon-round-item {
        display: flex;
        justify-content: center;
    }
}



@media (max-width: 1000px) {

    .screen-3 .district-list {
        columns: 2;
    }

    
}




@media (max-width: 768px) { 

    .main-screen {
        padding: 10px 0 0 0 !important;
    }

    svg#main_region_map {
        max-width: 360px;
        margin: 0 auto;
        display: block;
    }

    .left-column-sub {
        display: block !important;
    }

    .mobile-bond-listing {
        width: 100% !important;
        margin: 20px 0 30px 0 !important;
    }
    .mobile-bond-listing .map {
        padding-top: 0px;
        width: 100% !important;
        margin: 0 auto 20px auto;
    }
    .mobile-bond-listing ul {
        margin-left: 10px;
    }

    .district-list {
        width: 100% !important;
    }

    .screen-2 .column-left .map {
        width: 60%;
        margin: auto;
        pointer-events: none;
    }




    .find-your-school {
        display: none;
    }

    .read-about {
        margin-top: 25px;
    }

    .list-of-school-on-mobile {
        margin-top: 30px;
    }

    .list-of-school-on-mobile h3 {
        font-size: 1.25rem;
        color: #000;
        margin-bottom: 30px;
    }

    .left-text-content p {
        font-size: 18px;
    }

    .screen-3 .school-lower-row {
        display: block !important;
    }
    .screen-3 .school-lower-row > div {
        width: 100% !important;
    }

    .screen-3 .district-list {
        columns: 1 !important;
    }

    .screen-3 .list-icon-round-item {
        display: block !important;
    }

}

@media (min-width: 768px) {
    .list-of-school-on-mobile {
        display: none;
    };

   
}

@media (min-width: 1000px) {

    .show-on-desktop {
        display: block;
    }
    
    .show-on-mobile {
        display: none;
    }

    .left-logo img {
        margin-top: 0px;
    }

    .screen-1 .desktop-map {
        padding-top: 40px;
        width: 100%;
        margin-right: 10px;
    }

    .desktop-map .map svg {
        height: auto;
    }

    .mobile-map {
        height: 0;
    }

    .mobile-map .map svg {
       height: 0;
       margin-top: 0px;
    }

    .mobile-bond-listing {
        height: 0px;
        overflow: hidden;
        width: 0% !important;
        margin-left: 0 !important;
    }

    .district-list {
        width: 100% !important;
    }

    
}



@media (min-width: 768px) {
    .mobile-bond-listing h3,
    .mobile-bond-listing ul {
        display: none;
    }
}


.left-column-sub {
	display: flex;
    flex-direction: row-reverse;
    width: 100%;
    align-items: center;
}


.left-column-sub .mobile-bond-listing {
	width: 70%;
    margin-left: -10%;
}

.left-column-sub .mobile-bond-listing h3 {
    font-size: 1.25rem;
    font-weight: 600;
}

.left-column-sub .district-list {
	width: 50%;
}


.district-list h2 {
    margin: 0 0 15px;
}

.district-list {
    margin-top: 20px;
}

.district-list-complete-title {
    display:none;
    font-size: 1.1rem;
    font-weight: bold;
    margin: 0;
    color: var(--clr-primary);
    margin: 20px 0 10px 0;
}



.district-list .district-item,
.district-list-complete .district-item {
    padding: 5px 0;
    display: flex;
    gap: 10px;
}

.district-list p,
.district-list-complete p {
    font-size: var(--fs-sm);
    color: #000;
    margin: 0;
    font-weight: bold;
}

.district-list p strong,
.district-list-complete p stront {
     font-size: var(--fs-base);
    display: block;
    line-height: 1;
}

/*
.district-list .district-item,
.district-list-complete  {
    padding: 5px 0;
}
*/

.screen-footer {  
    bottom: 0;
    position: absolute;
    text-align: center;
    z-index: 900;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
}

.screen-footer p {
    font-size: var(--fs-base);
}


.single-map {
    display: flex;
    justify-content: center;
    /*margin-left: -90px;*/
}
  
.single-map svg {
   max-width: 100%;
}


.find-your-school img {
    margin-top: 10px;
    max-width: 515px;
    display: block;
}

.list-icons-round {
    display: flex;
    flex-direction: column;
    gap: 15px;
 }

/* round icon item lists */
.list-icon-round-item  a {
    text-decoration: none;
}

.list-icon-round-item .icon-item {
    display: flex;
    align-items: center;
     gap: 10px;
}

.list-icon-round-item .icon-item p {
    margin: 0;
}

.list-icon-round-item .icon-item strong {
    font-size: 1.1rem;
    line-height: 1.2rem;
    font-weight: 600;
}

.list-icon-round-item .icon-item:hover strong:after {
    margin-left: 10px;

}


.list-icon-round-item .icon {
    width: 45px;
    height: 45px;
    aspect-ratio: 1 / 1; /* Maintains square shape */
    background: currentColor;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0; /* Prevent flexbox from shrinking it */
    flex-grow: 0;   /* Prevent flexbox from growing it */
}

.icon-item .icon img {
    width: 50%;
    margin: auto;
}
.icon-item .icon { text-align: center; }

.screen-2 .list-icon-round-item .icon:before {
    filter: brightness(0) invert(1);
    display: none;
}

.list-icon-round-item .icon-item strong:after {
    content: '';
    width: 33px;
    height: 16px;
    background-color: currentColor; /* Will follow .capital_renewal color */
    mask: url('../images/arrow-right.svg') no-repeat center;
    -webkit-mask: url('../images/arrow-right.svg') no-repeat center;
    mask-size: contain;
    -webkit-mask-size: contain;
    margin-left: 5px;
    display: inline-block;
    transition: 0.3s;
}

.list-icon-round-item .arrow-icon {
    display: none;
    width: 33px;
    height: 16px;
    background-color: currentColor; /* Will follow .capital_renewal color */
    mask: url('../images/arrow-right.svg') no-repeat center;
    -webkit-mask: url('../images/arrow-right.svg') no-repeat center;
    mask-size: contain;
    -webkit-mask-size: contain;
}

/* Tooltip for pins */
.custom-tooltip {
  position: absolute;
  background: rgba(0, 0, 0, 0.85);
  color: #fff;
  padding: 3px 10px;
  border-radius: 5px;
  font-size: 14px;
  pointer-events: none;
  white-space: nowrap;
  z-index: 9999;
  box-shadow: 0 4px 8px rgba(0,0,0,0.3);
  transform: translateY(-5px);
  transition: all 0.4s ease;
  top: 0;
}

.custom-tooltip.fade-in {
  opacity: 1;
  transform: translateY(0);
}

/* Marker Tooltip */
.marker-tooltip {
  position: absolute;
  background: white;
  border: 1px solid #ccc;
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: bold;
  z-index: 10000;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.2s ease;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  white-space: nowrap;
  top: 0;
}

.list-of-school-item {
    padding-left: 60px;
    padding-bottom: 15px;
    border-bottom: 3px solid #c4d7ed;
    background-size: 25px !important;
    background-repeat: no-repeat !important;
    background-position: 0px 5px !important;
}

.list-of-school-item ul {
    padding: 0;
    list-style: none;
    margin-top: 0;
}

.list-of-school-item ul li {
    padding: 5px 0;
}

.list-of-school-item ul li a {
    color: #000000;
    font-size: var(--fs-sm);
    text-decoration: none;
    font-weight: 600;
}

.list-of-school-item h3 {
    font-size: var(--fs-md);
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 5px;
}





.list-of-school-item.high-school,
.school-name.high-school .facility_type_pin {
    color: var(--clr-red-100);
    background: url(../images/pin/pin-high-school.png);
}

.list-of-school-item.middle-school,
.school-name.middle-school .facility_type_pin {
    color: var(--clr-yellow-100);
    background: url(../images/pin/pin-middle-school.png);
}

.list-of-school-item.elementary-school,
.school-name.elementary-school .facility_type_pin {
    color: var(--clr-green-200);
    background: url(../images/pin/pin-elementary-school.png);
}

.list-of-school-item.other-district-facilities,
.school-name.other-district-facilities .facility_type_pin {
    background: url(../images/pin/pin-other.png);
}

.list-of-school-item.alternative-school,
.school-name.alternative-school .facility_type_pin  {
    color: var(--clr-purple-100);
    background: url(../images/pin/alternative-schools.png);
}

.list-of-school-item.charter-school,
.school-name.charter-school .facility_type_pin {
    color: var(--clr-blue-200);
    background: url(../images/pin/pin-charter-school.png);
}

.list-of-school-item.terminal,
.school-name.terminal .facility_type_pin {
    color: var(--clr-orange-100);
    background: url(../images/pin/pin-bus-terminal.png);
}

.list-of-school-item.newconstruction,
.school-name.newconstruction .facility_type_pin {
    color: #4f4f4f;
    background: url(../images/pin/pin-stadiums.png);
}

.castle-rock-map svg {
    max-width: 100%;
}

.read-about {
    padding-top: 15px;
}

svg#East_Highlands_Ranch {
    max-width: 525px;
}

.screen.inner-screen .left-logo {
    padding-bottom: 10px;
}

svg#WEST_HIGHLANDS_RANCH_MAP {
    max-width: 679px;
}

@media (min-width: 960px) {
    svg#WEST_HIGHLANDS_RANCH_MAP {
        margin-top: -20px;
    }
}

svg#Parker-map {
    max-width: 660px;
    margin-top: -20px;
}

@media (max-width: 768px) {
    svg#Parker-map {
        margin-top: 0px;
    }
}

/* School info screen */


.school-info-screen-container {
    max-width: 1800px;
    margin: auto;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.col-25,
.col-50 {
  width: 100%;
  padding: 20px 40px 20px 40px;
  box-sizing: border-box;
}

.school-info-screen-container .top-navigation {
    padding-bottom: 0;
}

.school-logo {
    display: flex;
    justify-content: center;
    padding: 30px 30px 30px 30px;
    min-height: 75px;
}

.school-info {
   padding-top: 20px;
   
   
}

.school-name {
    display: flex;
    min-height: 90px;
    border-bottom: 2px solid #d9d9d9;
    padding-bottom: 20px;
}

.school-info .school-name h1 {
    font-size: 2.05rem;
    /*margin-left: 40px;*/
    color: var(--clr-primary);
    display: flex;
}

.school-info .facility_type_pin {
    width: 40px;
    height: 60px;
    background-size: 30px !important;
    background-repeat: no-repeat !important;
    background-position: 0px 5px !important;
    margin-right: 10px;
        flex: 0 0 auto;
}

.school-details ul {
    list-style: none;
    padding: 10px 0;
}

.school-details ul li {
    font-size: 18px;
    margin-bottom: 10px;
    line-height: 1.2;
    break-inside: avoid;
    page-break-inside: avoid; 
}

.school-details ul li a {
    color: var(--clr-text);
    overflow-wrap: break-word;
    word-wrap: break-word; /* Fallback for older browsers */
}

.school-details ul li strong {
    font-size: 20px;
    display: block;
    color: var(--clr-green-900);
}

.school-details {
    border-bottom: 2px solid #d9d9d9;
}

.school-awards {
    padding: 20px 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.school-award-item {
    background: #e6edf6;
    border-radius: 20px;
    padding: 12px 15px;
    box-shadow: 6px 6px #b6cae2;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
}

.school-round-icon {
    width: 50px;
    height: 50px;
    aspect-ratio: 1 / 1;
    background: var(--clr-blue-600);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0; 
    flex-grow: 0;   
}

.school-award-desc {
    width: 75%;
    font-weight: bold;
    font-size: 16px;
}

.school-round-icon img {
    filter: invert(1);
}

.school-award-desc p {
    margin: 0;
}

.added-bg {
    background-image: url(../images/bg.jpg);
    background-size: cover;
    background-position: top center;
}

.school-info-content {
    padding-top: 0px;
}

.school-info-content h2 {
    color: var(--clr-primary);
    font-size: 1.75rem;
    margin: 0 0 10px;
    line-height: 1.2;
}

.school-info-content h3 {
    color: var(--clr-primary);
    font-size: 1.6rem;
    line-height: 1.2;
    margin: 0 0 10px;
    font-weight: 600;
}

.school-info-content p {
    margin: 0 0 30px;
    font-size: 16px;
}

.tax-dollar-block {
    text-align: left;
}

.tax-dollar-block h2 {
    margin: 0;
    font-size: 1.75rem;
    color: var(--clr-primary);
    margin-bottom: 10px;
}

.tax-dollar-block .completion-target {
    font-size: 1.1rem;
    font-weight: bold;
    margin: 0;
    color: var(--clr-primary);
}

.box-list-image {
    margin-top: 15px;
}

.box-list-image img {
    width: 100%;
    max-width: 430px;
}

.screen-3 .list-icons-round {
    padding-top: 20px;
}

.screen-3 .list-icons-round .icon:before {
    filter: brightness(0) invert(1);
}

.overlay-bg {
    position: absolute;
    z-index: 10;
    top: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    transition: .6s ease;
    background: white;
    opacity: 0;;
}

@media (min-width: 960px) {

    .school-info-screen-container {
        flex-direction: row; /* Side-by-side layout */
    }

    .col-25 {
        flex: 0 0 auto;
        width: 24%;
    }

    .col-50 {
        flex: 1; 
        max-width: 52%;
        min-width: 0;
        overflow: hidden;
    }   

    .school-info-content {
        padding-top: 80px;
    }

    .tax-dollar-block {
        padding-top: 80px;
        color: var(--clr-primary);
    }


    .tax-dollar-block {
        text-align: center;
    }
}





.safari-mac .safariHelper-section-1 {
	background-image: url(../images/west_highlands_ranch.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
}
.safari-mac .safariHelper-section-1 svg > g > :not([id="PINS"]) {
  display: none !important;
  opacity: 0;
}
.safari-mac .safariHelper-section-2 {
	background-image: url(../images/east_highlands.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
}
.safari-mac .safariHelper-section-2 svg > g > :not([id="PINS"]) {
  display: none !important;
  opacity: 0;
}
.safari-mac .safariHelper-section-3 {
	background-image: url(../images/parker.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
}
.safari-mac .safariHelper-section-3 svg > g > :not([id="PINS"]) {
  display: none !important;
  opacity: 0;
}
.safari-mac .safariHelper-section-4 {
	background-image: url(../images/castle_rock.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
}
.safari-mac .safariHelper-section-4 svg > g > :not([id="PINS"]) {
  display: none !important;
  opacity: 0;
}
