
/* #region ============ RESET ============*/
html {
    /*Setting scroll behaviour breaks jquery animate scroll*/
    scroll-padding-top: calc(var(--navbar-height) + 32px); /* height of header */
    scroll-behavior: smooth;
}

section, 
article, 
div, 
header, 
footer {
    /*overflow: hidden;*/
}
/* https://piccalil.li/blog/a-modern-css-reset/ */
/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
  font-family: var(--ff-body);
}

h1,
h2,
h3,
h4 {
  letter-spacing: 0.05em;
  font-family: var(--ff-heading);
  font-weight: var(--fw-bold);
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

body {
    background-color: transparent !important;
}

h1 {
   font-size: var(--fs-primary-heading);
}

h2 {
    font-size: var(--fs-secondary-heading);
 }

p {
    font-weight: var(--fw-regular);
    max-width: 44rem;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul[role='list'],
ol[role='list'] {
  list-style: none;
  padding-inline-start: 0;
}

/* Set core root defaults */
html:focus-within {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* A elements that don't have a class get default styles */
/*
a:not([class]) {
  text-decoration-skip-ink: auto;
}
*/

/* Remove text decoration from A elements */
a {
  text-decoration: none;
  color: inherit;
}
a:visited {
  color: inherit;
}

/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  display: block;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Remove all animations, transitions and smooth scroll for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
   scroll-behavior: auto;
  }
  
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
/* #endregion */

/* #region ============ GENERAL UTILLITY CLASSES ============*/
.placeholder{
    color: red;
    background-color: cyan;
    font-family: monospace;
}
/*--------------------------------------------------------------------*/
.accented {
    color: rgb(var(--clr-highlight));
    font-size: var(--fs-secondary-heading);
}
/*--------------------------------------------------------------------*/
.blur {
    background-color: rgb(0, 0, 0, 0.3) !important;
    backdrop-filter: blur(2px);
}
/*--------------------------------------------------------------------*/
.button {
    min-width: fit-content;
    min-height: 48px;
    padding: 0.77rem 1rem;
    border: 2px solid rgb(var(--clr-accent));
    border-radius: 6px;
    color: rgb(var(--clr-text-light))!important;
    font-family: var(--ff-button);
    font-weight: var(--fw-bold);
    text-transform: uppercase;
    text-decoration: none;
    background: rgb(var(--clr-accent));
    display: inline-flex;
    justify-content: center;
}
.button:hover, .button:focus{
    color: rgb(var(--clr-accent)) !important;
    background: rgb(var(--clr-text-light));
    border-color: rgb(var(--clr-text-light));
    box-shadow: 3px 3px 6px 4px #0000001b;
}

.button-alt {
    min-width: fit-content;
    min-height: 48px;
    padding: 0.77rem 1rem;
    border: 2px solid rgb(var(--clr-text-dark));
    border-radius: 6px;
    color: rgb(var(--clr-text-dark))!important;
    font-family: var(--ff-button);
    font-weight: var(--fw-bold);
    text-transform: uppercase;
    text-decoration: none;
    background: rgb(var(--clr-secondary));
    display: inline-flex;
    justify-content: center;
}
.button-alt:hover, .button-alt:focus{
    color: rgb(var(--clr-text-dark)) !important;
    background: rgb(var(--clr-highlight));
    border-color: rgb(var(--clr-highlight));
    box-shadow: 3px 3px 6px 4px #0000001b;
}
/*--------------------------------------------------------------------*/
.disable-scrollbars {
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none;  /* IE 10+ */
}
.disable-scrollbars::-webkit-scrollbar {
    background: transparent; /* Chrome/Safari/Webkit */
    width: 0px;
    height: 0px;
}
/*--------------------------------------------------------------------*/
.emphasize {
    font-size: var(--fs-primary-heading);
}
.fs-300 {
    font-size: var(--fs-300);
}
.fs-600 {
    font-size: var(--fs-600);
}
.fs-700 {
    font-size: var(--fs-700);
}
.fs-800 {
    font-size: var(--fs-800);
}
.fs-1000 {
    font-size: var(--fs-1000);
}
.fs-1200 {
    font-size: var(--fs-1200);
}
.fs-1500 {
    font-size: var(--fs-1500);
}
.fs-2500 {
    font-size: var(--fs-2500);
}
/*--------------------------------------------------------------------*/
.full-width{
    width: 100%;
}
/*--------------------------------------------------------------------*/
.hide {
    display: none !important;
}
/*--------------------------------------------------------------------*/
.img-hover-zoom {

}
.img-hover-zoom img {
    transition: transform 1000ms ease;
}
.img-hover-zoom:hover img {
    transform: scale(1.1);
}
/*--------------------------------------------------------------------*/
.invisible {
    visibility: hidden !important;
}
/*--------------------------------------------------------------------*/
.line-break {
    margin: var(--section-gap) auto 0;
    width: 100%;
    height: 1px;
    background-color: #cdcdcd;
    display: inline-block;
  }
/*--------------------------------------------------------------------*/
@media screen and (min-width: 768px) {
    .mobile-only {
        display: none;
    }
}
/*--------------------------------------------------------------------*/
.nowrap {
  white-space: nowrap;
}
/*--------------------------------------------------------------------*/
.super-fast {
    transition: all 0s;
}
/*--------------------------------------------------------------------*/
/* #endregion*/

/* #region ============ SITE SEPCIFIC UTILLITY CLASSES ============*/




/* #endregion */

/* #region ============ SITE PAGE TEMPLATES =======================*/
    .main-content {
        margin-top: var(--navbar-height);
    }

    /*-------- Basic Page --------*/
    .basic-page-logo-section {
        margin-top: 2rem;
        display: flex;
        justify-content: center;
    }
    .basic-page-logo-section img {
        width: 100%;
    }
    .basic-page-content {
        min-height: 80vh;
        margin-top: 2rem;
        display: flex;
        justify-content: center;
    }
    .basic-page-content-inner > * {
        margin-bottom: 1rem;
    }
/* #endregion */

/*Iframe source need to have scrollbars removed*/
/*iframe*/ .isEmbeded::-webkit-scrollbar {
    width: 0;  /* Remove scrollbar space */
    background: transparent;  /* Optional: just make scrollbar invisible */
 }


 /* #region ============ COMPONENT OVERRIDES =======================*/
 .tc_hero-image-wrapper {
    background-position: center !important;
 }
 .tc_hero-content-container h1{
    font-weight: 400;
 }
 /* #endregion */

 .simple-google-map {
    margin-top: 3rem;
 }