/*#region------------ root variables ------------*/
:root {
    /*============ COLORS ============*/
    --temp: #211959;
    --color-picker: rgb(241, 129, 42);

    --rgb-blue: 0, 147, 239;
    --rgb-mid-cyan: 12, 218, 228;
    --rgb-lime-yellow: 221, 228, 86; 

    --clr-blue: rgb(0, 147, 239, 1);
    --clr-mid-cyan: rgb(12, 218, 228, 1);
    --clr-lime-yellow: rgb(221, 228, 86, 1);

    --clr-text-light: rgb(255, 255, 255);
    --clr-text-dark: rgb(0, 0, 0);
    --clr-text-blue: rgb(0, 147, 239);

    --grad-blue-lime: linear-gradient(150deg, rgba(0,147,239,1) 10%, rgba(221,228,86,1) 75%);
    --grad-blue-cyan-lime: linear-gradient(150deg, rgba(0,147,239,1) 10%, rgba(12,218,228,1) 45%, rgba(221,228,86,1) 75%);


    
    /*============ FONT VARIABLES & SETTINGS ============*/
    font-size: 16px;
    --ff-primary: 'Quicksand', sans-serif;
    --ff-serif: Georgia, 'Times New Roman', Times, serif;
    --ff-sans-serif: 'Quicksand', Verdana, Geneva, Tahoma, sans-serif;
    --ff-monospace: 'Courier New', Courier, monospace;

    --ff-body: var(--ff-primary);
    --ff-heading: var(--ff-primary);
    --ff-button: var(--ff-primary);
    /*---------------------------------------------------*/
    --fw-super-light: 300;
    --fw-light: 300;
    --fw-regular: 400;
    --fw-semi-bold: 500;
    --fw-bold: 600;
    --fw-super-bold: 700;
    /*---------------------------------------------------*/
    --fs-800: 0.8rem;
    --fs-900: 0.9rem;
    --fs-1000: 1rem;
    --fs-1100: 1.1rem;
    --fs-1200: 1.2rem;
    --fs-1300: 1.3rem;
    --fs-1400: 1.4rem;
    --fs-1500: 1.5rem;
    --fs-1600: 1.6rem;
    --fs-1700: 1.7rem;
    --fs-1800: 1.8rem;
    --fs-1900: 1.9rem;
    --fs-2000: 2rem;
    --fs-2100: 2.1rem;
    --fs-2200: 2.2rem;
    --fs-2300: 2.3rem;
    --fs-2400: 2.4rem;
    --fs-2500: 2.5rem;
    --fs-3500: 3.5rem;

    --fs-primary-heading: var(--fs-2500);
    --fs-secondary-heading: var(--fs-1200);
    --fs-body: var(--fs-1000);
    --fs-button: var(--fs-1000);

    /*============ PAGE LAYOUT ============*/
    --page-margin: 5vw;
    --section-gap: 6rem;
    --topnav-height: 113px;
}
/* Variables for small screen sizes */
@media only screen and (max-width: 600px) {
  :root {
    --fs-primary-heading: var(--fs-1200);
    --fs-secondary-heading: var(--fs-1000);
  }
}

html {
	font-size: 100%;
	height: 100%;
	scroll-behavior: smooth;
	scroll-padding-top: 156px;
	}

/*============ UTILLITY CLASSES ============*/
/*------------ Text Utils ------------*/
.align-left {
    text-align: left;
}
.align-center {
    text-align: center;
}
.align-right {
    text-align: right;
}
.fs-800 {
    font-size: var(--fs-800);
}
.fs-900 {
    font-size: var(--fs-900);
}
.fs-1000 {
    font-size: var(--fs-1000);
}
.fs-1100 {
    font-size: var(--fs-1100);
}
.fs-1200 {
    font-size: var(--fs-1200);
}
.fs-1300 {
    font-size: var(--fs-1300);
}
.fs-1400 {
    font-size: var(--fs-1400);
}
.fs-1500 {
    font-size: var(--fs-1500);
}
.fs-2000 {
    font-size: var(--fs-2000);
}
.fs-2200 {
    font-size: var(--fs-2200);
}
.fs-2400 {
    font-size: var(--fs-2400);
}
.fs-3500 {
    font-size: var(--fs-3500);
}
.fw-300 {
    font-weight: 300;
}
.fw-400 {
    font-weight: 400;
}
.fw-500 {
    font-weight: 500;
}
.fw-600 {
    font-weight: 600;
}
.fw-700 {
    font-weight: 700;
}
.fw-800 {
    font-weight: 800;
}
.fw-900 {
    font-weight: 900;
}

/*------------ Layout Utils ------------*/
.auto-top {
    margin-top: auto;
}
.auto-inline {
    /*margin-inline: auto;*/
    margin-left: auto;
    margin-right: auto;
}
.do-not-display {
    display: none !important;
}

/*++++++++++++++++++++++++ CSS INCLUDES BELOW THIS LINE ++++++++++++++++++++++++ */
/*======================== dev.css ========================*/

.placeholder {
    color: cyan;
    background-color: magenta;
    /*outline: 1px solid yellow;*/
    font-family: 'Courier New', Courier, monospace;
}
.phpdevconsole {
    display: none;
    position: fixed;
    z-index: 100000;
    top: 0;
    left: 0;
    right: 0;
    height: 300px;
    overflow-y: scroll;
    padding: 1rem;
    color: green;
    background-color: black;
    /*outline: 1px solid yellow;*/
    font-family: 'Courier New', Courier, monospace;
}/*======================== toms-reset.css ========================*/
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: var(--ff-primary);
    text-decoration: none;
}
img {
    max-width: 100%;
    max-height: 100%;
}
p {
    max-width: 800px;
    line-height: 1.45;
    font-size: 1.1rem;
}/*main.css*/
* {
    scroll-padding-top: 95px;
    line-height: 1.45;
}

.button,
.button-alt {
    /*padding-block: 0.5rem;*/
    padding-top: 1rem;
    padding-bottom: 1rem;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    width: fit-content;
    background-color: var(--clr-blue);
    font-size: 1.1rem;
    color: white;
    display: block;
    cursor: pointer;
    transition: all 0.5s;
}
.button-alt {
    background-color: var(--clr-mid-cyan);
}
.button:hover,
.button-alt:hover {
    background-color: var(--clr-lime-yellow);
    /*background: var(--grad-blue-lime);*/
    color: black;
}

/* #region contact-bar */
.contact-bar {
    margin-top: var(--section-gap);
    padding-left: 5vw;
    padding-right: 5vw;
    background: var(--grad-blue-lime);
}
.contact-bar .inner {
    /*padding-block: 1.5rem;*/
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
    color: white;
    font-size: 1.1rem;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
}
.contact-bar .inner h2 {
    max-width: 100%;
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    text-wrap: balance;
    font-weight: 300;
}
.contact-bar .inner > *:not(:last-child){
    margin-bottom: 1rem;
}
.contact-bar .inner a:not(.button) {
    color: white;
}
.contact-bar .inner a:not(.button):hover {
    text-decoration: underline;
}
@media only screen and (min-width: 600px) {
    .contact-bar .inner {
        flex-direction: row;
        align-items: center;
    }
    .contact-bar .inner > *:not(:last-child){
        margin-top: auto;
        margin-bottom: auto;
    }
}

/* #endregion */

/* #region ethics */
.ethics {
    padding-left: 5vw;
    padding-right: 5vw;
    padding-top: 3rem;
    padding-bottom: 3rem;
    background-color: rgb(253,252,241);
}
.ethics .content-wrapper {
    padding-top: 3rem;
    padding-bottom: 3rem;
}
.ethics .content-wrapper > * {
    margin-left: auto;
    margin-right: auto;
}

/* #endregion */

/* #region footer */
.page-footer {
    padding-top: 3vw;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.page-footer .logo-wrapper {
    max-width: 300px;
}
.page-footer .contact-container {
    margin-left: auto;
    margin-right: auto;
    width: fit-content;
    display: flex;
    flex-direction: column;
}
.page-footer .contact-container > * {
    margin-bottom: 0.6rem;
}
.page-footer a {
    color: var(--clr-text-dark);
}
.page-footer a:hover {
    color: var(--clr-text-dark);
    text-decoration: underline;
}
.page-footer .inner {
    display: flex;
    flex-direction: column;
}
.page-footer .inner > * {
    margin-bottom: 1.5rem;
}
.link-container {
    order: 3;
    display: flex;
    flex-direction: column;
    align-items: left;
}
.link-container > * {
    margin-bottom: 0.6rem;
}
.page-footer .credit-bar {
    width: 100%;
    display: flex;
    justify-content: center;
    font-size: 0.8rem;
}
.page-footer .credit-bar p {
    font-size: 0.8rem;
}
@media only screen and (min-width: 900px) {
    .page-footer .inner{
        padding-left: 5vw;
        padding-right: 5vw;
        width: 100%;
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        align-items: top;
        justify-content: space-around;
    }
    .page-footer .logo-wrapper {
        width: 370px;
        max-width: 370px !important;
    }
    .page-footer .logo-wrapper img{
        margin-top: -10px;
    }
    .page-footer .contact-container {
        margin-left: unset;
        margin-right: unset;
    }
}



/**
* The edit link that appears when you are logged in.
* It is recommended that you implement an edit button 
* in your templates to make it easy to switch to and
* from the admin control panel when editing pages. 
*
*/


#editpage {
	position: fixed;
	bottom: 0;
	left: 0; 
	padding: 5px 6px; 
	background: #db1174; 
	color: #fff; 
	display: block;
	font-weight: bold; 
	}
#editpage:hover {
	background: #ffffcc;
	color: #000; 
	}



/* #endregion *//* home.css */

/* #region text-block */
/*NOTHING HERE*/

.p-home-privacy-policy p,
.p-home-privacy-policy ul,
.p-home-privacy-policy li,
.p-home-privacy-policy h2,
.p-home-terms-conditions p,
.p-home-terms-conditions ul,
.p-home-terms-conditions li,
.p-home-terms-conditions h2 {
    width: 100%;
    max-width: 800px;
    text-align: left;
}
.p-home-privacy-policy h2,
.p-home-terms-conditions h2 {
    font-size: 2rem;
}
.p-home-privacy-policy ul,
.p-home-terms-conditions ul {
    font-size: 1.1rem;
}

/* #end-region */.basic-page-content {
    /*padding-top: calc(var(--section-gap) + 80px);*/
    min-height: 70vh;
}
.basic-page-content h1 {
    font-size: clamp(2rem, 7vw, 3rem);
    text-wrap: balance;
}
.basic-page-content .text-block {
    font-size: clamp(2rem, 7vw, 3rem)
}
.basic-page-content .text-block > *{
    margin-bottom: 1rem;
}
/* navbar.css */
/* #region navbar */
.topnav {
    position: sticky;
    position: -webkit-sticky;
    top: 0;
    z-index: 1000;
    background-color: white;
    display: grid;
}
.topnav .logo-wrapper {
    max-width: 75vw;
}
.topnav .logo-wrapper img{
    width: 300px;
}
.top-bar {
    height: 10px;
    background: var(--grad-blue-lime);
}
.topnav nav {
    display: flex;
    justify-content: center;
    box-shadow: 0px 20px 20px 0px rgb(0 0 0 / 0.1);
}
.nav-toggle-wrapper {
    position: absolute;
    top: 21px;
    right: 20px;
    font-size: 2.5rem;
    color: var(--clr-text-blue);
    display: block;
}
.topnav nav ul{
    padding-top: 1.5rem;
    list-style-type: none;
    display: none;
}
.topnav nav li{
    margin-bottom: 1.5rem;
}
.topnav nav li a{
    font-weight: 500;
    font-size: 1.3rem;
    color: var(--clr-text-blue);
}
.topnav nav li a:hover{
    text-decoration: underline;
}
.nav-on-scroll .logo-wrapper {
    max-width: 250px !important;
}

/* corrections */
#navlinks li {
	/*width: auto;*/
	}

@media only screen and (min-width: 1030px) {
    .topnav {
        /*padding-bottom: 0.5rem;*/
        grid-template-columns: calc(5vw  + 300px) auto;
    }
    .top-bar {
        grid-column: span 2;
    }
    .nav-toggle-wrapper {
        display: none;
    }
    .topnav .logo-wrapper {
        padding-left: 5vw;
        max-width: 100%;
    }
    .topnav .logo-wrapper img{
        width: 300px;
    }
    .topnav nav {
        padding-right: 15vw;
        box-shadow: none;
        justify-content: flex-end;
        align-items: center;
    }
    .topnav nav ul{
        display: flex;
        /*column-gap: 1.5rem;*/
    }
    .topnav nav ul > * + * {
        margin-left: 1.5rem;
    }
    .topnav nav li{
        margin-bottom: 0;
    }
}


/* #endregion*//* === hero.css ===*/
/* #region hero*/
.hero {
    height: 300px;
    color: white;
    text-wrap: balance;
    background: var(--grad-blue-lime);
}
.hero .inner {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.hero .inner > *{
    margin-bottom: 0.7rem;
}
.hero p:first-of-type {
    font-size: clamp(2rem, 7vw, 2.7rem);
}

/* #endregion *//* === video.css ===*/
/* #region video-embed */
/*.video-embed {
    margin-top: var(--section-gap);
    display: flex;
    flex-direction: column;
    align-items: center;
}
.video-embed iframe {
    max-width: 100%;
    aspect-ratio: 16/9;
}*/

.video-embed-new {
    margin-top: var(--section-gap);
    margin-left: auto;
    margin-right: auto;
    max-width: 800px;
    display: flex;
    justify-content: center;
}
.video-embed-new .inner {
    margin-left: auto;
    margin-right: auto;
    position: relative;
    width: 100%;
    padding-top: 56.25%;
}
.video-embed-new iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/*  #endregion*//* === text-block ===*/
/* #region text-block */
.text-block {
    margin-top: var(--section-gap);
    padding-left: 5vw;
    padding-right: 5vw;
    font-size: 1.1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.text-block .inner{
    margin-left: auto;
    margin-right: auto;
    padding-left: 5vw;
    padding-right: 5vw;
}
.text-block .inner > *{
    margin-bottom: 1rem;
    max-width: 800px;
}
.text-block .inner > h2,
.text-block .inner > h1 {
    font-size: 1.4rem;
    font-size: clamp(1.4rem, 3vw, 2.2rem);
    color: var(--clr-text-blue);
    text-wrap: balance;
}
.text-block .inner .button{
    margin-top: 1rem;
    margin-left: auto;
    margin-right: auto;
}

/* strandoo */
.text-block ul {
	list-style-position: inside;
	margin-bottom: 1em;
	}
.text-block li {
	margin: 0 0 0.5em 0.2em;
	}
#navlinks {
	width: auto;
	}
#navlinks a {
	white-space: nowrap;
	}

#intro-text h2 {
    font-size: 1.4rem !important;
}

/*  #endregion*//* === about.css ===*/
/* #region about-us */
.about-us {
    margin-top: var(--section-gap);
    padding-top: 3rem;
    padding-left: 5vw;
    padding-right: 5vw;
    background-color: rgb(var(--rgb-mid-cyan), 0.1);
}
.about-us hr {
    margin-top: 1rem;
    margin-bottom: 2.5rem;
}
.about-us hr:last-of-type {
    display: none;
}
.team-member {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.team-member > * {
    margin-bottom: 1.5rem;
}
.team-member img {
    max-width: 300px;
    max-height: 500px;
    aspect-ratio: 1/1.2;
    object-fit: cover;
}
.team-member h2 {
    font-size: 1.4rem;
    font-size: clamp(1.4rem, 3vw, 2.2rem);
    color: var(--clr-mid-cyan);
}
.bio-container {
    /*max-height: 500px;
    overflow-y: scroll;*/
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}
.bio-container > * {
    margin-bottom: 1rem;
}
.bio-container > .inner {
    padding-right: 0.5rem;
    max-height: 370px;
    overflow-y: scroll;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}
.team-member:nth-of-type(2) .bio-container > .inner { /*About Danica scroll section height*/
    max-height: 390px;
}
.bio-container > .inner > * {
    margin-bottom: 1rem;
}
.bio-container .button-alt{
    margin-left: auto;
    margin-right: auto;
}
.bio-phone-number {
    display: none;
}
.bio-phone-number a {
    color: var(--clr-mid-cyan);
    color: var(--clr-text-dark);
    text-decoration: underline;
}
.btn-wrapper {
    flex-basis: 100%; 
    display: flex;
    flex-direction: column;
    justify-content: left;
    align-items: center;
}
.btn-wrapper > * {
    margin-top: 1.5rem;
}
@media only screen and (min-width: 900px) {
    .team-member {
        margin-left: auto;
        margin-right: auto;
        max-width: 1000px;
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
    }
    .team-member:nth-of-type(even) {
        flex-direction: row-reverse;
    }
    .bio-container {
        margin-left: 5vw;
        min-height: 360px;
    }
    .team-member:nth-of-type(even) .bio-container {
        margin-right: 5vw;
        margin-left: 0;
    }
    .bio-container .button-alt{
        margin-top: auto;
        margin-left: unset;
        margin-right: unset;
    }
    .btn-wrapper {
        flex-direction: row;
    }
    .btn-wrapper > * {
        margin-top: 0;
        margin-left: 1.5rem;
    }
}

/* #endregion*//* banner.css */

/* #region banner */
.banner {
    margin-top: var(--section-gap);
    padding-top: 3rem;
    padding-bottom: 3rem;
    background: var(--grad-blue-lime);
    color: white;
}
.banner .inner {
    margin-left: auto;
    margin-right: auto;
    max-width: min(800px, 90vw);
}
.banner .inner h2 {
    max-width: 100%;
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    text-wrap: balance;
    font-weight: 300;
}

/* #endregion */

/* #region gradient-banner */
.gradient-banner {
    background: var(--grad-blue-lime);
    color: white;
}

/* #endregion */

/* solid-banner.css */
/* #region solid-banner */
.solid-banner {
    background: rgb(var(--rgb-mid-cyan), 0.1);
    color: var(--clr-text-blue);
    font-size: 1.1rem;
}

/* #endregion *//* === contact.css ===*/
/* #region form-embed*/
.form-embed {
    margin-top: var(--section-gap);
}
.form-embed .inner {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}
.form-embed h2 {
    width: 100%;
    font-size: clamp(2rem, 7vw, 2.5rem);
    font-weight: 500;
    text-align: center;
}
.form-embed .contact-info {
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
    width: min(800px, 100%);
    max-width: 800px;
}
.form-embed .contact-info a {
    color: var(--clr-text-dark);
    
}
.form-embed .contact-info a:hover {
    text-decoration: underline;
}
.form-embed iframe {
    width: 800px !important;
    min-width: 300px !important;
    max-width: 90vw !important;
}
@media only screen and (max-width: 800px) {
    .form-embed .contact-info {
        padding-left: 5vw;
    }
}

/* #end-region */