﻿
@media (min-width: 1920px) {
    .container {
        max-width: 1899px;
        margin: 0px;
    }
}

@media (min-width: 1920px) {
    .container-fluid.limited {
        max-width: 1899px;
        margin: auto;
    }
}

html, body {
    max-width: 100%;
    overflow-x: hidden;
}

html {
    overflow-y: auto;
    overflow-x: hidden;
    scroll-padding-top: 90px;
    scroll-behavior: smooth;
}

html, body {
    height: 100%;
  
    padding: 0;
    font-size: 1em;



    width: 100% !important;
    overflow-x: hidden !important;
    overflow-y: auto !important;
    scrollbar-gutter: auto !important;
    background: #fff !important; /* pick your real site background */
}

body {
 
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    margin: 0;
    padding: 0;
    font-size: 1rem;
    font-family: Roboto, arial, sans-serif;
    line-height: 1.7em;
    color: #111;
    overflow-y: scroll;
    height: 100%;
}

.container {
    width: 1920px;
    margin: 0px auto;
    text-align: left;
    zoom: 1;
}

/*=========================
    anchor links to get to the point
    ========================*/

.anchor-target::before {
    content: "";
    display: block;
    height: 120px;
    margin-top: -120px;
    pointer-events: none;
    visibility: hidden;
}



#form1 {
    max-width: 100% !important;
    overflow-x: hidden;
}
@media (max-width: 576px) {
    .container {
        max-width: 100% !important;
        width: 100% !important;
    }
}
h1 {
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    font-size:35px;
    color: #444;
    margin: 1rem 0;
    letter-spacing: 1.1px;
    font-weight: 400;
}

h2, h3 {
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    font-size: 30px;
    color: #0354A5;
    margin: 1rem 0;
    letter-spacing: 0.9px;
    font-weight: 400;
}

h4, h5, h6 {
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    color: #0354A5;
    letter-spacing: 0.9px;
    margin: 1rem 0;
    font-weight: 400;
}
.Oswald {
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1.1px;
    font-weight: 400;
}
.site-header {
    box-shadow: 0 2px 4px 0 rgba(0,0,0,.1);
}

.text-info {
    color: #1590a3 !important;
}
/*a:link {
    color: #0a3170;
    text-decoration: none;
}

a:visited {
    color: #0a319a;
    text-decoration: none;
}

a:hover {
    color: #662D91;
    text-decoration: none;
}*/

a {
    color: #0354A5; /*blue*/
    outline: none;
    text-decoration: none;
}

    a:visited {
        color: #0354A5; /*blue*/
        text-decoration: none;
    }

    a:hover {
        opacity: 80%;
        text-decoration: none;
    }

.text-hover {
    opacity: 80%;
    text-decoration: none;
}








.DeepPurple {
    background-color: #4F2270;
}
.Purple {
    color: #4F2270;
}
.Ochre {
    background-color: #E19600;
}

.Orange {
    background-color: #f7941d;
}

.grassGreen {
    background-color: #8dc63f;
}

.w-60 {
    width: 60% !important;
}
/*.map-height {
    width: 100%;
    height:600px;
}*/

/*full width 5 columns */
.col-xs-4ths,
.col-sm-4ths,
.col-md-4ths,
.col-lg-5ths {
    position: relative;
    min-height: 1px;
    padding-right: 15px;
    padding-left: 15px;
}

.col-xs-4ths {
    width: 20%;
    float: left;
}

@media (min-width: 768px) {
    .col-sm-5ths {
        width: 25%;
        float: left;
    }
}

@media (min-width: 992px) {
    .col-md-4ths {
        width: 25%;
        float: left;
    }
}

@media (min-width: 1200px) {
    .col-lg-4ths {
        width: 25%;
        float: left;
    }
}
/*end full width 4 columns */

/* ===================================
   BACK TO TOP — TEAL GLASS (single source of truth) 
    ================================== */
#btn-back-to-top {
    position: fixed !important;
    right: 25px !important;
    bottom: 120px !important;
    z-index: 2147483647 !important;
    width: 60px !important;
    height: 60px !important;
    /* force perfect circle even with Bootstrap/MDB btn styles */
    padding: 0 !important;
    min-width: 60px !important;
    min-height: 60px !important;
    border-radius: 9999px !important;
    line-height: 0 !important;
    flex: 0 0 60px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
 
    background: rgba(14, 74, 172,0.95) !important;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.45) !important;
    box-shadow: 0 10px 22px rgba(0,0,0,0.35), inset 0 0 0 1px rgba(255,255,255,0.15);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(10px) scale(.95);
    transition: opacity .25s ease, transform .25s ease, visibility .25s ease, background-color .2s ease, box-shadow .2s ease;
}

    #btn-back-to-top.is-visible {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateY(0) scale(1);
    }

    #btn-back-to-top:hover {
        background: rgba(9, 57, 221, 0.95) !important;
        transform: translateY(-2px) scale(1.08);
        box-shadow: 0 14px 30px rgba(0,0,0,0.45), inset 0 0 0 1px rgba(255,255,255,0.25);
    }

    #btn-back-to-top:focus {
        outline: none !important;
        box-shadow: 0 0 0 3px rgba(0, 170, 160, 0.45), 0 14px 30px rgba(0,0,0,0.45);
    }

    #btn-back-to-top:active {
        transform: scale(.96);
    }

    /* icon */
    #btn-back-to-top i {
        color: #fff !important;
        font-size: 23px !important;
        line-height: 1 !important;
    }

/* mobile size */
@media (max-width: 576px) {
    #btn-back-to-top {
        right: 16px !important;
        bottom: 90px !important;
        width: 45px !important;
        height: 45px !important;
        min-width: 45px !important;
        min-height: 45px !important;
        flex: 0 0 45px !important;
    }
}
/*===============
    finish back to top

================*/

/* ================================
   TEXT SIZES AND TEXT COLORS
    ===============================*/
.text-primary {
    color: #0354A5 !important;
}

.text-danger {
    color: #DA4838 !important;
}

.text-dark {
    color: #111 !important;
}

.text-light {
    color: #ddd !important;
}

.text-light1 {
    color: #999 !important;
}

.text-light3 {
    color: #666 !important;
}

.text-light2 {
    color: #ccc !important;
}

.text-black {
    color: #000 !important;
}


.text-teal {
    color: #00bfaa;
}

.text-purple {
    color: #662d91 !important;
}

.text-grey {
    color: #666;
}

.text-grey1 {
    color: #444;
}

.text-grey2 {
    color: #999;
}


.font-8 {
    font-size: 8px;
}

.font-9 {
    font-size: 9px;
}

.font-10 {
    font-size: 10px;
}

.font-12 {
    font-size: 12px;
}

.font-13 {
    font-size: 13px;
}

.font-14 {
    font-size: 14px;
}

.font-15 {
    font-size: 15px;
}

.font-16 {
    font-size: 16px;
}

.font-18 {
    font-size: 18px;
}

.font-17 {
    font-size: 17px;
}

.font-19 {
    font-size: 19px;
}

.font-20 {
    font-size: 20px;
}

.font-23 {
    font-size: 23px;
}

.font-25 {
    font-size: 25px;
}

.font-27 {
    font-size: 27px;
}

.font-30 {
    font-size: 30px;
}

.font-35 {
    font-size: 35px;
}

.font-40 {
    font-size: 40px;
}

.font-45 {
    font-size: 45px;
}

.font-50 {
    font-size: 50px;
}

.font-60 {
    font-size: 60px;
}

.font-70 {
    font-size: 70px;
}
.font-300 {
    font-weight: 300 !important;
}

.font-400 {
    font-weight: 400 !important;
}
.font-500 {
    font-weight: 500 !important;
}

.font-400 {
    font-weight: 400 !important;
}

.font-600 {
    font-weight: 600;
}
/*=============
    end. text colors and sizes
============*/

/* ======================
   BACKGROUNDS
   ====================== */

.bg-tarawera {
    background-color: #0a314d !important;
}
.bg-dark2 {
    background-color: #111 !important;
}

.bg-light-dark {
    background-color: #777 !important;
}

.bg-dark {
    background-color: #333;
}

.bg-light2 {
    background-color: #ccc;
}

.bg-light3 {
    background-color: #999;
}

.bg-light4 {
    background-color: #e7e7e9;
}
.bg-light5 {
    background-color: #dedfe7 !important;
}


.bg-Purple {
    background-color: #662D91 !important;
}

.bg-Lilac {
    background-color: #dcd5e2 !important;
}

.bg-blue-purple {
    background-color: #3e4b85 !important;
}

.bg-mist {
    background-color: #E7F1FB !important;
}

.bg-water {
    background-color: #94bee5 !important;
}

.bg-chart {
    background-color: #6d6e71 !important;
}

.bg-light-teal {
    background-color: #d8edea !important;
}

.bg-teal {
    background-color: #00bfaa !important;
}

.bg-ANSI-Red {
    background-color: #E66F5B !important;
}

.bg-ANSI-Yellow {
    background-color: #F0B833 !important;
}

.bg-ansi-grey {
    background-color: #666 !important;
}

.bg-5E9FE0 {
    background-color: #5E9FE0 !important;
}

.bg-2d9c94 {
    background-color: #2d9c94 !important;
}

.bg-072947 {
    background-color: #072947 !important;
}


.bg-5297b0 {
    background-color: #5297b0 !important;
}

.bg-89c040 {
    background-color: #89c040 !important;
}

.bg-f6d30b {
    background-color: #f6d30b !important;
}

.bg-66328a {
    background-color: #66328a !important;
}

.bg-7dc5e1 {
    background-color: #7dc5e1 !important;
}

.bg-29ace4 {
    background-color: #29ace4 !important;
}

.bg-pattern {
    background-image: url(/images/pattern2.webp);
}

.bg-what-we-do1 {
    background-color: #E19600 !important;
}

.bg-what-we-do2 {
    background-color: #444 !important;
}

.bg-what-we-do3 {
    background-color: #DA4838 !important;
}

.bg-what-we-do4 {
    background-color: #4F2270 !important;
}

.bg-what-we-do5 {
    background-color: #0354A5 !important;
}

.bg-yellow {
    background-color: #FFD966 !important;
}

.bg-hover:hover {
    background: #444;
    color: white
}

.border {
    border: 1px solid #ddd !important;
}

/*===============
    end. BACKGROUNDS
    =============*/

/*added the same classes from webstore for consistancy between websites*/

.bg-light {
    background-color: #ddd !important;
}

.bg-light2 {
    background-color: #eee !important;
}

.bg-light3 {
    background-color: #999 !important;
}

.bg-light4 {
    background-color: #f5f5f5 !important;
}

.bg-primary {
    background-color: #0075bf !important;
}

.text-light {
    color: #ddd !important;
}

.text-light1 {
    color: #999 !important;
}

.text-light3 {
    color: #666 !important;
}

.text-light2 {
    color: #ccc !important;
}

.text-black {
    color: #000 !important;
}

.text-primary {
    color: #0075bf !important;
}

.text-teal {
    color: #00bfaa;
}

.text-purple {
    color: #662d91 !important;
}

.text-grey {
    color: #666;
}

.text-grey1 {
    color: #444;
}

.text-grey2 {
    color: #888;
}

.text-hover:hover {
    opacity: 80%;
    text-decoration: none;
}

.text-primary-hover:hover {
    color: #0075bf !important;
    text-decoration: none;
}

.font-12 {
    font-size: 12px;
}

.font-13 {
    font-size: 13px;
}

.font-14 {
    font-size: 14px;
}

.font-15 {
    font-size: 15px;
}

.font-16 {
    font-size: 16px;
}

.font-18 {
    font-size: 18px;
}

.font-17 {
    font-size: 17px;
}

.font-19 {
    font-size: 19px;
}

.font-20 {
    font-size: 20px;
}

.font-23 {
    font-size: 23px;
}

.font-25 {
    font-size: 25px;
}

.font-27 {
    font-size: 27px;
}

.font-30 {
    font-size: 30px;
}

.font-35 {
    font-size: 35px;
}

.font-40 {
    font-size: 40px;
}

.bg-teal {
    background-color: #00bfaa;
}

.text-bold {
    font-weight: 600;
}

.font-bold {
    font-weight: 600;
}

.font-500 {
    font-weight: 500;
}

.text-500 {
    font-weight: 500;
}

.w-95 {
    width: 95% !important;
}

.w-80 {
    width: 80% !important;
}

.w-40 {
    width: 40% !important;
}

.w-60 {
    width: 60% !important;
}

.w-35 {
    width: 35% !important;
}

.w-30 {
    width: 30% !important;
}

.w-25 {
    width: 25% !important;
}

.py-10 {
    padding-top:60px;
    padding-bottom:60px;
}

/* Base: desktop + big tablets (incl iPad Pro) */
#chartdiv.map-height {
    width: 100%;
    height: 520px;
    margin: 0;
    padding: 0;
}

/* “All others” tablets (smaller than iPad Pro landscape width) */
@media (max-width: 1024px) {
    #chartdiv.map-height {
        height: 380px;
    }
}

/* Smaller tablets */
@media (max-width: 768px) {
    #chartdiv.map-height {
        height: 300px;
    }
}

/* Phones */
@media (max-width: 576px) {
    #chartdiv.map-height {
        height: 230px;
        margin-top: 0 !important;
        margin-bottom: 0 !important;
        padding-top: 0 !important;
        padding-bottom: 0 !important;
    }
}

/*===========tagle hamburger=======*/
.fancy-toggler {
    border: none;
    background: transparent;
    width: 30px;
    height: 22px;
    position: relative;
    padding: 0;
}

    .fancy-toggler span {
        display: block;
        height: 2px;
        width: 100%;
        background: #333; /* adjust color */
        position: absolute;
        left: 0;
        transition: all 0.35s ease;
    }

        .fancy-toggler span:nth-child(1) {
            top: 0;
        }

        .fancy-toggler span:nth-child(2) {
            top: 10px;
        }

        .fancy-toggler span:nth-child(3) {
            top: 20px;
        }

    /* animated state */
    .fancy-toggler[aria-expanded="true"] span:nth-child(1) {
        transform: rotate(45deg);
        top: 10px;
    }

    .fancy-toggler[aria-expanded="true"] span:nth-child(2) {
        opacity: 0;
    }

    .fancy-toggler[aria-expanded="true"] span:nth-child(3) {
        transform: rotate(-45deg);
        top: 10px;
    }

.navbar-toggler i {
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.navbar-toggler:hover i {
    transform: scale(1.15);
    opacity: 0.7;
}
