@charset "UTF-8";
/* CSS Document */

:root {
  --background-color: #101010;
  --background-color: #000000;
}

* {
	 /*border: 1px solid red;*/ 
	 box-sizing: border-box;
}
/*


*/
html {
   overflow-x: hidden !important;
  overflow-y: visible !important;
  max-width: 100vw;
}


html, body {
  height: 100%;
  margin: 0;
  padding: 0;
}

body {
	background-color: var(--background-color);
	color: #FFFFFF;
	width: 100vw;	
	position: relative;
	display: block;
	margin: 0;
  padding: 0;
 

	
/*
  background-image: 
    radial-gradient(rgba(255, 255, 255, 0.03) 2px, transparent 2px),
    radial-gradient(rgba(255, 255, 255, 0.03) 2px, transparent 2px);
  background-size: 5px 5px;
  background-position: 0 0, 2px 2px;*/

	
	
}




body:has(header.homepage) {
  height: 100vh;
  overflow: hidden;
  animation: body-homepage 0.5s ease 1.5s forwards;
}


@keyframes body-homepage {
     0% { height: 100vh; overflow: hidden; }
   100% { height: none; overflow: visible; } 
}







main {
  background: var(--background-color);
	position: relative !important;
	display: block;
}
section {
  position: relative;
  display: block;
}



.skipnav {
  overflow: visible;
  position: relative;
  display: block;
	max-width: 100vw;
  z-index: 605; }
  .skipnav .order-1 {
    order: 1; }
  .skipnav .order-2 {
    order: 2; }
  .skipnav .order-3 {
    order: 3; }
  @media (max-width: 575.98px) {
    .skipnav .row .col-12 {
      padding: 0; }
      .skipnav .row .col-12 .container {
        padding: 0; }
        .skipnav .row .col-12 .container img {
          position: absolute;
          right: 0; } }
  .skipnav a.aslink img.img-fluid {
    max-width: 300px;
    opacity: 0.5; }
    @media (max-width: 575.98px) {
      .skipnav a.aslink img.img-fluid {
        max-height: 36px; } }

  .skipnav a.access {
    font-size: 0.57rem;
    line-height: 0.5rem;
    letter-spacing: 1px;
    color: #000000 !important;
    background-color: #FFFFFF !important;
    font-weight: 600;
    padding-right: 0.25rem;
    position: absolute;
    transform: translateY(-110%); }
    .skipnav a.access:focus {
      color: #000000 !important;
      background-color: #FFFFFF !important;
      display: inline-block;
      margin-left: auto;
      margin-top: 1.5rem;
      position: relative;
      z-index: 500;
      background: #FFFFFF;
      padding: 0.25rem;
      opacity: 1; }
    .skipnav a.access span {
      color: #000000 !important;
      background-color: #FFFFFF !important; }


.container {
	max-width: 1700px;
	--bs-gutter-x: 8rem;
    --bs-gutter-y: 0;
}


@media (max-width: 1799.98px) {
  .container {
    max-width: 1550px;
    --bs-gutter-x: 10rem;
    --bs-gutter-y: 0;
  }
}

@media (max-width: 767.98px) {
	.container {
		--bs-gutter-x: 6rem;
	}
}

@media (max-width: 575.98px) {
	.container {
		--bs-gutter-x: 2rem;
	}
}

header {
  height: 45vw;
  max-height: 800px;
  width: 100vw;
  display: block;
  position: relative;
  overflow-x: clip;
  overflow-y: visible;
}
@media (min-width: 1800px) {
  header {
    height: 50vw;
    max-height: 900px;
  }
}
@media (max-width: 1399.98px) {
  header {
    height: 60vw;
    max-height: 800px;
  }
}
@media (max-width: 1199.98px) {
  header {
    height: 70vw;
    max-height: 800px;
  }
}

@media (max-width: 991.98px) {
  header {
    height: 120vw;
    max-height: 800px;
  }
}

header.homepage {
  height: 100vh;
  min-height: 800px;
  max-height: none;
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: min-height 1s ease;
}

@media (max-width: 1599.98px) {
  header.homepage {
    min-height: 1000px;
  }
}

@media (max-width: 1399.98px) {
  header.homepage {
    min-height: 800px;
  }
}



header:not(.homepage) .hero {
  position: absolute;
  top: 0;
  margin-left: auto;
  margin-right: auto;
  display: block;
  width: 100%;
  height: 100%;
}

header.homepage .hero {
  position: relative;
  flex: 1;
  display: flex;
  align-items: flex-end;
  width: 100vw;
  height: 100vh; /* Full screen */
  overflow: hidden;
}

@media (max-width: 991.98px) {
  header.homepage {
    height: auto;
    min-height: clamp(120vw, 100vh, auto);
    display: block;
    transition: none;
    transition: height 1s ease;
  }
  header.homepage .hero {
    position: relative;
    display: block;
    width: 100vw;
    height: 100vh; 
    max-height: 900px;
    overflow: hidden;
  }
}

@media (max-width: 767.98px) {
  header.homepage .hero {
    position: relative;
    display: block;
    width: 100vw;
    height: 100vh; 
    max-height: 900px;
    overflow: hidden;
  }
}

@media (max-width: 575.98px) {
  header.homepage .hero {
    height: clamp(100vw, calc(100vh - 200px), 80vh); 
    max-height: 900px;
    overflow: hidden;
  }
}

/* Background Video - Centered & Cover Full Hero */
.hero video {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 100%;
  object-fit: cover; /* Ensures video fills the hero section */
  object-position: center top;
  visibility: hidden;
}

@media (max-width: 575.98px) {
  .hero video {
    animation: mobile-video 1s forwards 6s;
  }
}

@keyframes mobile-video {
  0%   { top: 0; }
  100% { top: 80px; }
}


.hero .video-wrap {
    display: block;
    position: absolute;
    top: 0;
    left: 50%;
   transform: translateX(-50%);
    height: 100%;
    width: 100%;
    max-width: clamp(600px, 100vw, 2300px);
}

.hero .video-wrap::before,
.hero .video-wrap::after,
.hero .picture-wrap::before,
.hero .picture-wrap::after {
  content: '';
  position: absolute;
  top: -1px;
  left: -100px;
  height: calc(100% + 2px);
  width: calc(100% + 200px);  
  box-shadow:  
    inset 0 0 0 5px var(--background-color),      
    inset 0 0 30px var(--background-color),     
    inset 0 0 60px var(--background-color),      
    inset 10px 10px 60px var(--background-color),
    inset -10px -10px 60px var(--background-color),
    inset 10px 10px 90px var(--background-color),
    inset -10px -10px 90px var(--background-color);
}

@media (min-width: 2000px) {
  .hero .video-wrap::after, 
  .hero .picture-wrap::after {
     left: -1px;
     width: calc(100% + 2px); 
  }
}


/*
.hero .video-wrap::before {
  left: -1px;
  background-image: radial-gradient(transparent 30%, var(--background-color) 60%);
  background-position: left center;
}

.hero .video-wrap::after {
  right: -1px;
  background-image: radial-gradient(transparent 30%, var(--background-color) 60%);
  background-position: right center;
}
*/



#pause-btn {
  position: absolute;
  display: block;
  bottom: auto;
  right: 2rem;
  z-index: 3000 !important;
  border-radius: 50%;
  padding: 1.5rem;
  border-color: #FFFFFF;
  background: rgba(0,0,0,0.8);
  cursor: pointer;
  top: calc(100vh - 17rem);
  
}

/*
animation: pause 1s forwards 1.25s;
@keyframes pause {
  0%   { bottom: 0; }
  100% { bottom: 50px; }
}
*/

@media (max-width: 1199.98px) {
  #pause-btn {
    top: calc(100vh - 22rem);
  }
}
@media (max-width: 991.98px) {
  #pause-btn {
    top: calc(100vh - 22rem);
  }
}m

@media (max-width: 767.98px) {
  #pause-btn {
    right: 1rem;
  }
}
@media (max-width: 575.98px) {
  #pause-btn {
    right: 1rem;
   top: calc(100vh - 20rem);
  }
}

#pause-btn svg {
  fill: #FFFFFF;
}



.hero picture {
  position: absolute;
  top: calc(50% + 5rem);
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero picture img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.texture-overlay {
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    transition: all 0.9s ease-in-out;
    transition-timing-function: cubic-bezier(0.1, 0.7, 1, 0.4, 0.1);
   /*animation: background 2s ease-out 1;
    animation-delay: 0.1s;
    animation-fill-mode: forwards; */
    background-color: #000000;
	  background-image:
      radial-gradient(rgba(0,0,0,0.2) 50%, rgba(0,0,0,0.8) 80%), /* vignette */
      linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.4)); /* overall darken */
  /*
    background-image: 
    url("https://as.sdsu.edu/thebackdoorstudio/images/hero/vignette.jpg"),
    linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.4));
*/
    background-repeat: no-repeat, no-repeat;
    background-position: center center, top;
    background-size: 100% 100%, 100% 100%;
  	mix-blend-mode: normal;
    overflow: hidden;
}


@media (max-width: 1399.98px) {
  .texture-overlay {
    background-size: 180% 100%;
  }
}


.texture {
  position: fixed;
  display: block;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  z-index: 1;
}
main + .texture {
  opacity: 0.8;
}

.texture-overlay::before, .texture::after {
  	background: url(https://as.sdsu.edu/calcoast/images/home/grain2.png);
  	background-size: 8%;
  	background-repeat: repeat;
  	background-position: top left;
  	height: 200%;
  	width: 200%;
  	top: -70%;
  	left: -70%;
  	position: absolute;
  	animation: grain 5s steps(10) infinite;
  	animation-delay: 0;
  	content: ''; 
}

@keyframes grain {
  0%, 100% { transform: translate(0, 0); }
  10% { transform: translate(-5%, -10%); }
  20% { transform: translate(-12%, 5%); }
  30% { transform: translate(3%, -5%); }
  40% { transform: translate(-5%, 5%); }
  50% { transform: translate(-15%, 10%); }
  60% { transform: translate(0%, 0%); }
  70% { transform: translate(0%, 10%); }
  80% { transform: translate(3%, -5%); }
  90% { transform: translate(-10%, 10%); } 
}

/* Hero Content - Aligned to Bottom */


  


.navbar {
  position: absolute;
  width: 100vw;
  top: 0;
  left: 0;
  margin: 0;
  z-index: 1000; /* Keeps it above other elements */
  background: var(--background-color) !important;
}

@media (max-width: 575.98px) {
  .navbar {
    position: absolute;
  }
}


.navbar-toggler-icon {
	background-image: none;
	width: 42px;
	height: 4px;
	border-radius: 5px;
	background-color: #FFFFFF;
	position: relative;
	vertical-align: middle;
	margin-top: 0;
	padding-top: 0;
	transition: all 0.7s ease-in-out;
}

.navbar-toggler-icon::before, .navbar-toggler-icon::after {
	content: '';
	position: absolute;
	top: -13px;
	left: 0;
	width: 42px;
	height: 4px;
	border-radius: 5px;
	background-color: #FFFFFF;
	transition: all 0.7s ease-in-out;
}

.navbar-toggler:not(.collapsed) .navbar-toggler-icon {
	background-color:  transparent;
}

.navbar-toggler.collapsed .navbar-toggler-icon {
	background-color: #FFFFFF;
}

.navbar-toggler:not(.collapsed) .navbar-toggler-icon::before {
	transform-origin: 3px 3px;
	transform: rotateZ(45deg) translateX(3px) translateY(-3px);
}

.navbar-toggler.collapsed .navbar-toggler-icon::before {
	transform-origin: 3px 3px;
	transform: rotateZ(0deg);
}

.navbar-toggler:not(.collapsed) .navbar-toggler-icon::after {
	transform-origin: 3px 3px;
	transform: rotateZ(-45deg) translateX(4px) translateY(3px);
}

.navbar-toggler.collapsed .navbar-toggler-icon::after {
	transform-origin: 3px 3px;
	transform: rotateZ(0deg);
}

.navbar-toggler-icon::after {
	top: 13px;
}



.navbar-brand {
  margin-bottom: -20px;
  width: clamp(200px, 100%, 290px);
  height: auto;
  display: block;
}


@media (max-width: 575.98px) {
  .navbar-brand {
    margin-bottom: 0;
    width: 220px;
  }
  .navbar-brand img {
    max-height: 60px;
  }
}

header.homepage .navbar {
  margin-top: -100px;
  animation: navbar-margin 2s ease 1s forwards;
}

.navbar::before, main::before {
  content: '';
  position: absolute;
  left: 0;
  top: calc(100% - 1px);
  width: 100%;
  height: 10vh;
  pointer-events: none;
  background: linear-gradient(to bottom, var(--background-color) 0%, transparent 15%);
  background-repeat: no-repeat;
  background-size: 100% 200%;
  background-position: top;
  z-index: 1;
}
@media (min-width: 1200px) and (max-width: 1343.98px) { 
  #navbarNav {
    margin-bottom: -20px;
    min-height: 80px;
  }
}

main::before {
  background: radial-gradient(at top, transparent 0%, transparent 70%, var(--background-color) 100%),
              linear-gradient(to top, var(--background-color) 0%, transparent 15%);
  top: calc(-10vh + 1px);
  z-index: 0;
}

@keyframes navbar-margin {
  0%   { margin-top: -100px; }
  100% { margin-top: 0; }
}
 .nav-item {
    margin-left: 0.5rem;
   margin-right: 0.5rem;
}
.nav-link {
	font-family: "noka", sans-serif;
	font-weight: 500;
	font-style: normal;
	color: #FFFFFF;
	margin-left: 1.15rem;
	margin-right: 1.15rem;
	letter-spacing: 1px;
}
.nav-link:hover {
	color: #00ac9c;
}

@media (max-width: 1199.98px) {
  .navbar {
    position: absolute;
  }
  .navbar-nav {

    padding-top: 2rem;
    padding-bottom: 3rem;
  }
  
  .nav-item {
    margin-top: 1.5rem;
  }
  
  .nav-item a.nav-link {
    margin-left: 0;
    margin-right: 0;
    display: inline;
  }
  .nav-item a.nav-link:hover::after {
    width: 
  }
  
  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(40px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  /* Apply animation base */
  .navbar-nav .nav-item {
    opacity: 0;
    animation: fadeInUp 0.5s ease forwards;
  }


  .navbar-nav .nav-item:nth-child(1) { animation-delay: 0.1s; }
  .navbar-nav .nav-item:nth-child(2) { animation-delay: 0.2s; }
  .navbar-nav .nav-item:nth-child(3) { animation-delay: 0.3s; }
  .navbar-nav .nav-item:nth-child(4) { animation-delay: 0.4s; }
  
  
}

nav ul li a, nav ul li a:after{
  transition: all .5s;
}

nav ul li {
  position: relative;
}
nav ul li a:after {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 0%;
  content: '.';
  color: transparent;
  background: #00ac9c;
  height: 1px;
}
nav ul li a:hover::after {
  width: 100%;
}
header:not(.homepage) div.hero-logo {
  display: none; 
}
header.homepage div.hero-logo {
  opacity: 1;
  width: 100vw;
  height: 100vh;
  position: absolute;
  top: 0;
  left: 0;
}
header.homepage div.hero-logo::before {
  content: "";
  position: absolute;
  width: 100vw;
  height: 110vh;
  top: 0;
  left: 0;
  background: var(--background-color);
  animation: logo-before 4s linear 0.5s forwards;
}

@keyframes logo-before {
  0%   { opacity: 1; }
  40%   { opacity: 0.6; }
  100% { opacity: 0; }
}


svg.hero-logo {
  width: 60vw;
  height: auto;
  position: absolute;
  margin-top: -100px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

@media (max-width: 575.98px) {
  svg.hero-logo {
    width: 85vw;
    height: auto;
    position: absolute;
    margin-top: -100px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
}


svg.hero-logo .logo-stroke-sm, svg.hero-logo .logo-stroke-md {
  stroke-width: 1.3px;
  fill: none;
  stroke: #FFFFFF;
  /*stroke-miterlimit: 10; */
}
svg.hero-logo .logo-stroke-md {
  stroke-width: 1.4px;
}
svg.hero-logo .logo-backdoor {
  stroke-width: 1.3px;
  fill: var(--background-color);
  stroke: #FFFFFF;
  /*stroke-miterlimit: 10; */
}

h1 {
	font-family: "noka", sans-serif;
	font-weight: 800;
	font-style: normal;
	font-size: clamp(2.5rem, 5vw, 4.2rem);
  font-size: clamp(2.5rem, 5vw, 4.2rem);
  margin-bottom: 1rem;
}
h2 {
	font-family: "noka", sans-serif;
	font-weight: 800;
	font-style: normal;
	font-size: clamp(2.5rem, 5vw, 4.2rem);
	margin-bottom: 1rem;  
}
@media (max-width: 991.98px) {
  h2 {
    font-size: clamp(2.5rem, 7vw, 3.5rem);
  }
}

h5, .h5 {
  font-family: "noka", sans-serif;
  font-family: "montserrat", sans-serif;
  color: #00ac9c;
  font-size: 2.1rem;
  font-weight: 500;
  line-height: 1.5;
}
@media (max-width: 575.98px) {
  h5, .h5 {
    font-size: 1.6rem;
  }
  .more {
    font-size: clamp(2rem, 7vw, 2.5rem);
  }
}

header.homepage .hero-content {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;	
	padding-top: 2rem;
  width: 100%;
  background-color: var(--background-color);
  color: white; 
  transition: all 1s ease;
  height: 10rem; 
 
}

@media (min-width: 1800px) {
  header.homepage .hero-content {
    height: 10rem; 
    animation: none !important;
  }
}

@media (max-width: 1499.98px) {
  .hero-content {
    height: 10rem; 
  }
}

@media ( max-width: 1199.98px) {
  header.homepage .hero-content {
    display: block;
    height: auto; 
  }
}

@media (min-width: 1650px) and (max-width: 1799.98px) { 

}


.hero-content::before {
  content: '';
  position: absolute;
  top: -30vh; /* positions it above the box */
  left: 0;
  width: 100%;
  height: 30vh;
  pointer-events: none;

  
  
  /* background: radial-gradient(transparent 0%, transparent 70%, var(--background-color) 80%),
              linear-gradient(to top, var(--background-color) 0%, transparent 15%);
 
  background-repeat: no-repeat;
  background-size: 100% 200%;
  background-position: bottom;
   */
  
  z-index: 0;
}

.octopus-wrap {
  position: relative;
  width: 100vw;
  max-width: 100vw;
  overflow-y: visible;
  overflow-x: clip;
}
 
.hero-octopus {
  z-index: 5;
  display: block;
  position: absolute;
  bottom: 5vw;
  right: -5vw;
  left: auto;
  top: auto;
  width: clamp(200px, 35vw, 500px);
  height: auto;
  overflow: visible;
  will-change: transform;
}
  
@media (min-width: 1200px) and (max-width: 1799.98px) {   
  .hero-octopus {
    width: clamp(200px, 35vw, 500px);
  } 
}
  
@media (min-width: 992px) and (max-width: 1199.98px) { 
  .hero-octopus {
    width: 40vw;
  }
}
  
@media (max-width: 991.98px) {
  .hero-octopus {
    top: clamp(calc(80vh - 50vw), 80vw, calc(800px - 30vw));
    z-index: 5000;
    right: -5vw !important;
    left: auto;
    bottom: auto !important;
  }
  
  header:not(.homepage) .hero-octopus { 
    top: clamp(calc(120vw - 50vw), 70vw, calc(800px - 30vw));
  }
}

@media (min-width: 768px) and (max-width: 991.98px) { 
  .hero-octopus {
    width: 45vw;
  }
}  
  
@media (max-width: 767.98px) {
  .hero-octopus {
    width: 55vw;
  }
}
  
@media (max-width: 575.98px) {  
  .hero-octopus {
    width: 50vw;
  }
}




#octopus_headphones {
  position:relative;
  display: block;
  margin: 20px auto;
  width:100%;
  height: 100%;
}

#octopus_headphones .end, #octopus_headphones .middle {
  visibility:hidden;
}

  #octopus_headphones .st0 {
        stroke-width: 4px;
      }

      #octopus_headphones .st0, .st1, .st2, .st3, .st4, .st5, .st6 {
        fill: none;
      }

      #octopus_headphones .st0, .st1, .st2, .st3, .st4, .st5, .st6, .st7, .st8, .st9 {
        stroke-linecap: round;
        stroke-linejoin: round;
      }

      #octopus_headphones .st0, .st1, .st2, .st3, .st4, .st5, .st8, .st9 {
        stroke: #ee403d;
      }

     #octopus_headphones  .st1 {
        stroke-width: 7px;
      }

     #octopus_headphones  .st2 {
        stroke-width: 5px;
      }

     #octopus_headphones  .st3 {
        stroke-width: 3px;
      }

     #octopus_headphones  .st4, .st6, .st7 {
        stroke-width: 2px;
      }

     #octopus_headphones  .st6, .st7 {
        stroke: #FFFFFF;
      }

     #octopus_headphones  .st7 {
        fill: #000;
      }

     #octopus_headphones  .st8 {
        stroke-width: 6px;
      }

      #octopus_headphones  .st8, .st9 {
        fill: rgba(0, 0, 0, 1);
      }

      #octopus_headphones .st9 {
        stroke-width: 8px;
      }
  
    #octopus_headphones  .st10 {
        stroke: none;
      }

  
  
  
  
  
  #octopus_headphones .st0 {
        stroke-width: 1.2px;
      }

      #octopus_headphones .st0, #octopus_headphones .st1, #octopus_headphones .st2, #octopus_headphones .st3 {
        stroke: red;
        stroke-linecap: round;
        stroke-linejoin: round;
      }

      #octopus_headphones .st0, #octopus_headphones .st2, #octopus_headphones .st3 {
        fill: none;
      }

      #octopus_headphones .st1 {
        fill: #000000;
      }
  
      #octopus_headphones .st1, #octopus_headphones .st3 {
        stroke-width: 7px;
      }


      #octopus_headphones .st2 {
        stroke-width: 3px;
      }
  
  




.animated-title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: "noka", sans-serif;
	font-weight: 800;
	font-style: normal;
  width: 60vw;
  font-size: 4.85vw;
  margin-top: 10rem;
  text-align: center;
  text-wrap: nowrap;
  line-height: 1;
  color: #FFFFFF;
  text-shadow: #000 1px 0 10px;
  visibility: hidden;
}

.animated-title div{
  
  will-change: transform, opacity;
  display: inline-block;
  transform-origin: center bottom;
 
}

.hero-content {
  height: 0;
  animation: hero-content 2s linear 0s forwards;
}

@keyframes hero-content {
  0%   { height: 0; margin-top: 10rem; }
  70%  { height: 0; margin-top: 10rem; }
  100% { height: 10rem; margin-top: 0; }
}






@media (max-width: 991.98px) {
  .animated-title {
    margin-top: 10rem;
  }
  @keyframes hero-content {
    0%   { height: 0; margin-top: 16rem; }
    70%  { height: 0; margin-top: 16rem; }
    100% { height: 16rem; margin-top: 0; }
  }
}

@media (max-width: 767.98px) {
  @keyframes hero-content {
    0%   { height: 0; }
    70%  { height: 0; }
    100% { height: auto; }
  }
}

@media (max-width: 575.98px) {
  .animated-title {
    width: 85vw;
    font-size: 15vw;
    margin-top: calc(25vw - 30px);
  }
}


/*
.animated-title-wrap:has(.animated-title) {
  width: 100%;
  position: relative;
  height: 10rem;
  max-height: 10rem;
  animation: h1-wrap 2s linear 3s forwards;
}
.animated-title {
  transition: font-size 3s ease;
  overflow: visible;
  white-space: nowrap;
}

@media (max-width: 991.98px) {
  .animated-title {
    white-space: normal;
  }
}

.animated-title.active {
  font-size: clamp(2.5rem, 5vw, 4.2rem);
  opacity: 1;
  margin-left: 0;
  margin-right: auto;
  text-align: left;
  transition: font-size 3s ease;
  vertical-align: top;
}
@media (min-width: 1800px) {
  .animated-title {
    font-size: clamp(2.5rem, 3.8vw, 4.8rem);
  }
}
@media (max-width: 991.98px) {
  .animated-title {
    font-size: clamp(2.5rem, 7vw, 5rem);
  }
}




/*
.animated-title {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  font-size: clamp(2.5rem, 5vw, 4.2rem);
  overflow: visible;
}
*/

h1.title {
  text-align: left;
  font-size: clamp(2.5rem, 5vw, 4.2rem);
  width: fit-content;
 
  /*margin: 0 auto; 
  /* animation: h1 4s linear 0.1s forwards;
  white-space: nowrap;
  transition: all 2s ease; */
}

h1.title::before, h1.title::after {
  content: '';
  position: absolute;
  display: block;  
  top: -1rem;
  left: -2rem;
  width: calc(100% + 2rem);
  height: 50%;
  opacity: 0.8;
  border-radius: 5rem;
  color: transparent;
  background: #000000;
  filter: blur(1.5rem);
  z-index: -1;
  /*
  text-shadow: 0 0 10px #000000, 0 0 20px #000000, 0 0 40px #000000, 0 0 80px #000000, 0 0 80px #000000, 0 0 100px #000000, 0 0 120px #000000, 0 0 140px #000000;
  
  
  transform: skewY(15deg);
  */
}
h1.title::after {
  top: calc(33% - 1rem);
  width: calc(100% + 4rem);
}

.row-title {
  flex-direction: column;
  display: flex;
  position: relative;
}


.description-contact ul li {
  
}

.row-title .h1-title {
  position: absolute;
  bottom: 2rem;
  left: 0;
}
ul.description-contact {
  background: #FFFFFF;
  border-radius: 2rem;
  padding: 1rem 2rem;
  min-height: 4rem;
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  position: absolute;
  bottom: 2rem;
  z-index: 200;
}

ul.description-contact li {
  position: relative;
  display: inline-block;
  color: #000000;
  font-size: 0.95rem;
  font-weight: 700;
}

@media (min-width: 1800px) {
  .row-title{
    flex-direction: row;
  }
  .row-title .h1-title {
    width: calc(100% - 700px);
  }

  ul.description-contact {
    width: calc(100% - 550px);
    margin-left: 550px;
  }
  
}

@media (min-width: 1700px) and (max-width: 1799.98px) {
  .row-title{
    flex-direction: row;
  }
  .row-title .h1-title {
    width: calc(100% - 450px);
  }

  ul.description-contact {
    width: calc(100% - 450px);
    margin-left: 450px;
  }
  
}

@media (max-width: 1699.98px) { 
  .row-title{
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
  }
  .row-title .h1-title {
    width: 400px;
  }

  ul.description-contact {
    width: 600px;
    flex-wrap: wrap;
  }
  ul.description-contact li {
    box-sizing: border-box;
  }
  
  ul.description-contact li:nth-child(odd) {
    flex: 0 0 40%;
  }

  ul.description-contact li:nth-child(even) {
    flex: 0 0 60%;
  }
  
}


@media (max-width: 1199.98px) {
  header.homepage .hero-content {
    padding-bottom: 2rem;
  }
  .container:has(.row-title) {
    height: 100%;
  }
  .row-title{
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    height: 100%;
  }
  .row-title .h1-title {
    width: 370px;
  }

  ul.description-contact {
    width: 400px;
    flex-wrap: wrap;
  }
  ul.description-contact li {
    box-sizing: border-box;
    flex: 0 0 100%;
  }
  
  ul.description-contact li:nth-child(odd) {
    flex: 0 0 100%;
  }

  ul.description-contact li:nth-child(even) {
    flex: 0 0 100%;
  }
}


@media (max-width: 767.98px) {
  .row-title, .row-title ul.description-contact, .row-title .h1-title {
     position: relative;
     display: block;
     width: 100%;
  }
  .row-title ul.description-contact {
    flex-wrap: wrap;
    display: flex;
  }
   ul.description-contact li:nth-child(odd) {
    flex: 0 0 40%;
  }

  ul.description-contact li:nth-child(even) {
    flex: 0 0 60%;
  }
  
  
  
}

@media (min-width: 576px) and (max-width: 749.98px) {
  ul.description-contact li:nth-child(odd) {
    flex: 0 0 100%;
  }

  ul.description-contact li:nth-child(even) {
    flex: 0 0 100%;
  }
}




@media (max-width:  575.98px) { 
   .row-title, .row-title ul.description-contact, .row-title .h1-title {
     position: relative;
     display: block;
     width: 100%;
  } 
  .row-title ul.description-contact {
    padding-left: 1.5rem;
    padding-right: 0;
  }
  .row-title ul.description-contact li {
    width: 100%;
    display: block;
  }
}



/*
.row-title .h1-title {
  width: 100%;
  animation: h1-title-width 2s linear 4s forwards;
}

@keyframes h1-title-width {
  0%   { width:100%; }
  100% { width: calc(100% - 720px); }
}

@media (max-width: 1199.98px) { 
  @keyframes h1-title-width {
    0%   { width:100%; }
    100% { width:100%; }
  }
}


.row-title .h1-description {
  /* width: 0;
  animation: h1-description-width 1s linear 2.5s forwards; 
}
@keyframes h1-description-width {
  0%   { width: 100%; }
  100% { width: 700px; }
}

*/
/*

.h1-title {
  width: 100%;
  
}
/*

*/
.h1-description {
  margin-top: 0.75rem;
  width: 650px;
  opacity: 1;  
}


.row-title.flex-row-column .h1-description {
  opacity: 1;
}



/*
@keyframes h1-wrap {
  0%   {width:100; }
  100% {width: auto; display: inline-block; float: left;}
}
@keyframes h1 {
  0%   {opacity: 0; left: 50%;transform: translateX(-50%); font-size: clamp(3.2rem, 7.5vw, 9rem); }
  1%  {opacity: 1; left: 50%;transform: translateX(-50%); font-size: clamp(3.2rem, 7.5vw, 9rem); }
  70%  {opacity: 1; left: 0;transform: translateX(0%); font-size: clamp(3.2rem, 7.5vw, 9rem); float: none;}
  99% {opacity: 1; left: 0;transform: translateX(0%); font-size: clamp(2.5rem, 6vw, 4.2rem); float: left; }
  100% {opacity: 1; left: 0;transform: translateX(0%); font-size: clamp(2.5rem, 6vw, 4.2rem); float: left; }
}

.h1-description {
	opacity: 0;
  overflow: visible;
  padding-left: 2rem;
  animation: h1-description 1s linear 7s forwards;
}

@keyframes h1-description {
  0%   {opacity: 0; }
  99% {opacity: 1;}
  100% {opacity: 1;}
}


@media (min-width: 1500px) and (max-width: 1799.98px) { 
  .hero-content .row-title .col-xxl-6 {
    width: 58%;
  }
  .h1-description {
    width: 42%;
  }
  .h1-description .row .col-6 {
   width: 100%; 
  }
}


@media (min-width: 1400px) and (max-width: 1499.98px) { 
  .hero-content .row-title .col-xxl-6 {
    width: 60%;
  }
  .h1-description {
    width: 40%;
  }
  .h1-description .row .col-6 {
    width: 100%;
  }
  .h1-description .row .col-6:nth-of-type(2) p:nth-of-type(2), .h1-description .row .col-6:nth-of-type(2) p:nth-of-type(3) {
    display: inline-block;
  }
}

@media (max-width: 1399.98px) { 
  .hero-content .row-title .col-xxl-6 {
    margin-bottom: 0 !important;
  }
}

@media (min-width: 1400px) {
  .row-title .col {
    margin-bottom: -100%;
    position: relative;
  }
}

.col:has(h1) {
	overflow: visible;
}
*/

h6, .h6 {
	font-size: 1.2rem;
	font-weight: 600;
	font-family: "noka", sans-serif;
}
.accordion-item {
  --bs-accordion-color: transparent;
  border-radius: 0 !important;
}

.accordion-item {
  background: transparent;
  border-top-color: #00b3a1;
  border-bottom-color: #00b3a1;
  border-left: 0;
  border-right: 0;
  border-radius: 0 !important;
}

.accordion-header {
  background: transparent;
  color: #FFFFFF;
}

.accordion-header h3, .accordion-header h3 button, .accordion-button {
  font-family: "noka", sans-serif;
  font-weight: 600;
  color: #FFFFFF;
  background: transparent;
  padding-left: 0;
}

.accordion-button:not(.collapsed) {
  background: transparent;
  color: #00b3a1;
}

.accordion-button {
  font-size: 1.6rem;
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}

.accordion-button:not(.collapsed) {
  border-bottom: 2px solid var(--background-color) !important; /* customize as needed */
  border-bottom: none !important;
  box-shadow: none !important;
}

.accordion-body {
  color: #FFFFFF;
  padding-left: 0;
  padding-top: 0;
  padding-bottom: 3.5rem;
}

.accordion-button::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-plus' viewBox='0 0 16 16'%3E%3Cpath d='M8 4a.5.5 0 0 1 .5.5v3h3a.5.5 0 0 1 0 1h-3v3a.5.5 0 0 1-1 0v-3h-3a.5.5 0 0 1 0-1h3v-3A.5.5 0 0 1 8 4z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 2.5rem;
  transition: background-image 0.1s; /* No spin transition */
}
.accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-dash' viewBox='0 0 16 16'%3E%3Cpath d='M4 8a.5.5 0 0 1 .5-.5h7a.5.5 0 0 1 0 1h-7A.5.5 0 0 1 4 8z'/%3E%3C/svg%3E");
}

.sticky-prep {
  transform: translateY(0);
  transition: transform 0.5s ease-out;
}

.sticky {
  position: sticky;
  top: 0;
}


.btn {
	font-weight: 700;
	font-family: "noka", sans-serif;
	letter-spacing: 1px;
}
.btn-lg {
	font-size: 1.5rem;
	padding: 0.75rem 1.5rem;
	font-weight: 600;
	background: #AC202D;
	color: #FFFFFF;
	border-radius: 1rem;
}

@media (max-width: 575.98px) {
  .btn-lg {
    font-size: 1.3rem;
    padding: 0.75rem 1rem;
  }
}

.btn-danger {
	
}


p, li {
	font-family: "montserrat", sans-serif;
	font-weight: 400;
	font-style: normal;
  color: #DFDFDF;
}

li.h6 {
  margin-top: 1.2rem;
  margin-bottom: 1.2rem;
}

li.h6 a {
  color: #919191;
  text-decoration: none;
  transition: all 0.5s ease;
}
li.h6 a .icon-wrap {
  display: inline-block;
  background: var(--background-color);
}

li.h6 a .icon-wrap::after {
  content: '';
  position: absolute;
  display: block;
  height: 1.8rem;
  width: 1.8rem;
  top: 0;
  left: 0;
  background-color: #00b3a1;
  mix-blend-mode: darken;
  opacity: 1;
  transition: all 0.75s ease;
}

li.h6 a.active, li.h6.text-white a {
  color: #FFFFFF;
}

li.h6 a.active .icon-wrap::after, li.h6.text-white a .icon-wrap::after  {
  background-color: #FFFFFF;
}

li.h6 a:hover {
  color: #00ac9c;
}

li.h6 a:hover::after {
  content: ' ';
  display: inline-block;
  border-bottom: 2px solid #00b3a1;
  border-right: 2px solid #00b3a1;
  border-left: 0;
  border-top: 0;
  height: 8px;
  width: 8px;
  transform: rotate(-45deg);
  margin-left: 3px;
  margin-bottom: 2px;
}

li.h6 a:hover .icon-wrap::after, li.h6 a.active .icon-wrap::after  {
  /* opacity: 0; */
 }  

.small li {
  font-size: 0.8rem;
}

.bg-black h1, .bg-black h2, .bg-black h3, .bg-black h4, .bg-black h5, .bg-black h6, .bg-black p, .bg-black li {
	color: #FFFFFF;
}

.card {
	background-color: transparent; 
	color: #FFFFFF;
  border: 0;
}
.card, .card-img-top {
	border-radius: 1.5rem !important;
}
.card-body {
	padding-left: 0;
	padding-right: 0;
}

.card-title {
	font-size: 2rem;
	font-weight: 700;
}


.item-wrap {
    position: relative;
    overflow: hidden;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.image-wrap {
    overflow: hidden;
    display: flex;
    justify-content: center;
		width: 100%;
	height: auto;
	border-radius: 15px;
	max-height: 60vh;
}

.item-wrap-2 {
	height: 0;
	width: 0;
}
.item-wrap-3 {
	height: 0;
	width: 0;
}

.item-wrap img {
    width: 100%;
    transition: all 0.5s ease-in-out;
}

.img-wrap {
	height: auto;
	width: 100%;
	min-height: 20vw;
	max-height: 100vh;
	overflow: hidden;
	align-content: center;
} 

.img-wrap img {
	object-fit: cover;
	width: 100%;
}

.img-wrap img + img {
	position: absolute;
  left: 0;
  top: 0;
}


img.rounded {
	border-radius: 2rem !important;
}

img.icon {
	height: 1.7rem;
	width: 1.7rem;
	display: inline-block;
  margin-right: 0.25rem;
  margin-bottom: 0.25rem;
}
img.img-fluid.h-100 {
	object-fit: cover;
}


p:has(img.icon) {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem; /* adds space between the icon and the text */
}

p img.icon {
  height: 1.5rem;
  width: 1.5rem;
  flex-shrink: 0; /* prevents shrinking */
  vertical-align: top;
}

p a, li a {
  color: #FFFFFF;
  font-weight: 600;
  text-decoration: none;
  margin-left: 5px;
  position: relative;
  display: inline;
  cursor: pointer;
}
@media (max-width: 575.98px) {
  .lead {
    font-size: 1.1rem;
  }
}

h3 a {
  color: #FFFFFF;
  font-weight: 600;
  text-decoration: none;
}

main ul:not(.list-unstyled) a::before {
  position: absolute;
  content: "";
  display: block;
  bottom: -1px;
  left: 0;
  width: calc(100% - 20px);
  height: 1px;
  border-bottom: 1px solid #00ac9c;
}

main a {
  color: #FFFFFF;
  font-weight: 700;
}

main a:hover, main a.btn:hover {
  cursor: pointer;
}

main a::after {
  position: relative;
  content: "";
  display: inline-block;
  top: -1px;
  left: 4px;
  width: 0.5rem;
  height: 0.5rem;
  border-right: 3px solid #FFFFFF;
  border-top: 3px solid #FFFFFF;
  transform: rotate(45deg);
  margin-right: 10px;
  border-radius: 2px;
}

a.btn-lg::before  {
  content: none;
}
a.btn-lg::after, h3 a::after   {
  width: 0.85rem;
  height: 0.85rem;
}

.small li img.icon {
  height: 1rem;
  width: 1rem;
}

a:has(.career-advantage-logo) {
  width: 200px;
  height: 80px;
  display: block;
  position: relative;
}

.career-advantage-logo {
	max-width: 200px;
  display: block;
}
.career-advantage-logo::before {
  max-width: 500px;
  width: 100%;
  height: 1px;
  content: '';
  top: 0;
  left: 0;
  border-top: 1px solid #212529;
}
a:has(img)::after {
	content: none;
}


.corner-border-lines {
  transition: background-size 1s cubic-bezier(0.455, 0.03, 0.515, 0.955);
  background: linear-gradient(to right, #00AC9C 2px, transparent 2px) 0 0, linear-gradient(to bottom, #00AC9C 2px, transparent 2px) 0 0, linear-gradient(to left, #00AC9C 2px, transparent 2px) 100% 0, linear-gradient(to bottom, #00AC9C 2px, transparent 2px) 100% 0, linear-gradient(to left, #00AC9C 2px, transparent 2px) 100% 100%, linear-gradient(to top, #00AC9C 2px, transparent 2px) 100% 100%, linear-gradient(to right, #00AC9C 2px, transparent 2px) 0 100%, linear-gradient(to top, #00AC9C 2px, transparent 2px) 0 100%;
  background-repeat: no-repeat;
  background-size: 8px 8px;
  position: relative;
  padding-top: 5px;
}

.corner-border-lines:hover {
  background-size: 100% 100% !important; 
}

.corner-border-lines ul.list-unstyled {
  padding-top: 1rem;
  padding-left: 1.5rem;
  padding-bottom: 1rem;    
}

.description {
  width: calc(100% - 300px);
  display: inline-block;
  position: relative;
  vertical-align: top;
}

.description-contact {
  width: 290px;
  display: inline-block;
  position: relative;
  vertical-align: top;
}
@media (min-width: 1800px) {
  .description-contact {
    float: right;
  }
}

.description,
.description-contact ul {
  /*visibility: hidden;*/
}

.description-contact li, .description-contact li a, .description-contact li a:link {
  color: #000000 !important;
  font-size: 0.95rem !important;
  font-weight: 700 !important;
}

.row.headshots .col {
	display: inline-block;
	padding: 10px;
	box-shadow: inset 0 2px 5px rgba(0,0,0,.6),0 5px 2px rgba(0,0,0,.1), 0 10px 20px rgba(0,0,0,.8);
	position: relative;
	overflow: hidden;
}

.row.headshots .col img {
	width: calc(100% - 1rem);
	border-width: 4px;
	border-style: solid;
	border-color: #BBBAB4 #C7C7BF #E5E4DF #C7C7BF;
	box-shadow:  0 -1px 1px rgba(0,0,0,.1), 0 1px 1px 1px rgba(255,255,255,.7);
}
@media (max-width: 1399.98px) {
  .row.headshots {
    padding: 2rem;
  }
}

@media (max-width: 991.98px) {
  .row.headshots {
    padding-top: 0;
    padding-right: 0;
    padding-left: 0;
    padding-bottom: 0;
  }
}

@media (max-width: 767.98px) {
  .row.headshots {
    padding-top: 3rem;
    padding-right: 0;
    padding-left: 0;
    padding-bottom: 0;
  }
}


.octopus-sign {
  position: absolute;
  display: block;
  width: 20vw;
  height: 20vw;
  right: 0;
  bottom: 0;
}
@media (max-width: 991.98px) {
  .octopus-sign {
    width: 40vw;
    height: 40vw;
    bottom: -15vw;
  }
}

.hr-bubbles {
	position: relative;
	display: block;
	padding-top: 5rem;
	padding-bottom: 5rem;
	margin-bottom: 5rem;
  margin-top: 7rem;
	opacity: 0;
	max-width: 100vw;
  overflow-x: clip;
	width: 100%;
	height: auto;
  z-index: 5;
}

.hr-bubbles:has(.bubble-line-still) {
  margin-bottom: 2rem;
  margin-top: 4rem;
}

@media (max-width: 767.98px) {
  .hr-bubbles {
    margin-top: 1rem;
    margin-bottom: 1rem;
  }  
}

@media (max-width: 575.98px) {
  .hr-bubbles {
    margin-top: 1rem;
    margin-bottom: -1rem;
  }  
}


.bubble-contact-wrap {
  overflow-x: clip;
  overflow-y: visible;
  width: 100%;
  max-width: 100vw;
  display: block;
  position: absolute;
}

.bubble-line, .bubble-contact, .bubble-line-still {
	overflow: visible;
	margin-top: 5rem;
	margin-bottom: 5rem;
	position: absolute; top: 0; left: 0; width: 100%; height: auto;
}

.bubble-line-still {
  margin-top: 0;
}

.bubble-contact {
	margin-top: 4rem;
}

.bubble-line path.bubble, .bubble-contact path.bubble, .bubble-line-still path.bubble {
	fill: var(--background-color);
	stroke: #00ac9c;
	stroke-width: 1.5px;
	vector-effect: non-scaling-stroke;
}




@media (max-width: 1499.98px) {
	.bubble-line, .bubble-line-still, .bubble-contact {
		width: 124%;
    margin-left: -1.5%;
	}
	.hr-bubbles g.browserxl, .bubble-contact g.browserxl {
		display: none;
	}

}




@media (max-width: 1199.98px) {
	.bubble-line, .bubble-line-still, .bubble-contact {
		width: 200%;
    margin-left: -2%;
	}
	.hr-bubbles g.browser, .hr-bubbles g.browserxl, .bubble-contact g.browser, .bubble-contact g.browserxl {
		display: none;
	}
  
}


@media (max-width: 767.98px) {
	.bubble-line, .bubble-line-still, .bubble-contact {
		width: 290%;
    	margin-left: -5%;
	}
	.hr-bubbles g.tablet, .hr-bubbles g.browser, .hr-bubbles g.browserxl, .bubble-contact g.tablet, .bubble-contact g.browser, .bubble-contact g.browserxl {
		display: none;
	}
}


@media (max-width: 575.98px) {
  .hr-bubbles:has(.bubble-line-still) {
    padding-bottom: 0;
    margin-bottom: 0rem;
    margin-top: 2rem;
  }
}


#hr_bubbles_footer {
  margin-bottom: -4.5rem;
  padding-bottom: 0;
}

.list-group-item  {
  background: transparent;
  padding-top: 4rem;
  padding-bottom: 4rem;
  border-bottom-color: #00B3A1;
}


.list-group-item .card.shadow-sm img {
  max-width: calc(100% - 2rem);
}

.list-group-item h2 {
  margin-bottom: 3rem;
}

.list-group-item p {
  max-width: 350px;
}

@media (min-width: 992px) and (max-width: 1199.98px) {
  .list-group-item p {
    max-width: 100%;
  }
}
@media (max-width: 767.98px) {
  .list-group-item p {
    max-width: 100%;
  }
}

@media (max-width: 991.98px) {
  .scroll-up {
    margin-top: 0 !important;
  }
}

.max-width-300 { max-width: 300px; }
.max-width-400 { max-width: 400px; }
.max-width-500 { max-width: 500px; }
.max-width-600 { max-width: 600px; }
.max-width-700 { max-width: 700px; }
.max-width-800 { max-width: 800px; }

.max-height-300 { max-height: 300px; }
.max-height-400 { max-height: 400px; }
.max-height-500 { max-height: 500px; }
.max-height-600 { max-height: 600px; }
.max-height-700 { max-height: 700px; }
.max-height-800 { max-height: 800px; }

.text-light {
	color: #969696!important;
}

.text-info {
	color: #00B3A1!important;
}

section, h1, h2, h3, h4, h5, h6, p, li, small, span, a, button, .accordion, .accordion-button {
  position: relative;
  z-index: 100 !important;
}



footer {
	position: relative;
	display: block;
  background-color: var(--background-color);
  z-index: 200;
}

footer .footer-bubble-content {
	margin-top: 5.5vw;
}

.footer-container {
	
}

footer .container {
	position: relative;
  display: block;
}

footer .container .col {
	max-width: 35rem;
  padding-left: 2rem;
}

footer .container .col h2 {
  font-size: clamp(2.5rem, 3.5vw, 4rem);
}

footer ul.contact-list li {
	font-size: 1.2rem;
	font-weight: 600;
	font-family: "noka", sans-serif;
}

@media (max-width: 575.98px) {
  footer ul.contact-list li {
    font-size: 1rem;
  }
}

footer ul.parent-list {
	border-top: 2px solid #00AC9C;
  padding-top: 1rem;
}

footer ul.parent-list li {
	font-size: 0.8rem;
	font-family: "montserrat", sans-serif;
}
footer ul.parent-list li a {
  color: #FFFFFF;
  padding-top: 0.1rem;
  padding-bottom: 0.1rem;
}


.footer-bubble-wrap {
	position: absolute;
	top: 0;
	left: 0;
	margin-bottom: 1rem;
	width: 100%;
	height: 100%;
	z-index: 199;
	display: block;
}

.footer-bubble-wrap svg {
	position: relative;
	display: block;
	margin-bottom: 0;
	margin-top: 0;
}

footer #footerSVG {
  position: absolute; 
  top: 0; 
  left: 0;
  height: auto;
}


footer #footerText {
  font-size: 3vw;
 
  top: 0; 
  left: 0; 
  width: 600px; 
  padding-top:2rem; 
  padding-bottom: 2rem;   
  margin-top: 12rem; 
}

@media (min-width: 1600px) and (max-width: 1799.98px) {
  footer #footerText {
    margin-top: 10rem;
  }
}

@media (min-width: 1500px) and (max-width: 1599.98px) {
  footer #footerText {
    margin-top: 9rem;
  }
}


@media (max-width: 1399.98px) {
  footer #footerText {
    margin-top: 10rem;
  }
}

@media (max-width: 767.98px) {
  footer .container .col {
    max-width: calc(100% - 3rem); 
    margin-left: 1rem;
    margin-right: 1rem;
  }
  
  footer #footerText {
    width: calc(100% - 2rem); 
    left: 1rem; 
  }
}

@media (max-width: 575.98px) {
  footer .row {
    margin-right: 0;
    width: 100vw;
  }
  footer #footerText {
    width: calc(100% + 1rem);
    max-width: calc(100% + 1rem);
    margin-left: 0;
    margin-right: 0;
    padding-left: 1rem;
  }
}

svg.bubble-contact-top {
	margin-top: 0;
}
svg.bubble-contact-middle {
	margin-top: -1.8vw;
}
svg.bubble-contact-extension {
	margin-top: -1.8vw;
}
svg.bubble-contact-bottom {
	margin-top: -2.9vw;
}



g.mobile { }

g.browser { }

g.left { }

g.left-1-of-2 { }

g.left-2-of-2 { display: none; }

g.right { }

g.right-1-of-5 { }

g.right-2-of-5 { }

g.right-3-of-5 { }

g.right-4-of-5 { }

g.right-5-of-5 { }


g.test path.bubble, g.white path.bubble {
	fill: #000000;
	stroke: #FFFFFF;
}



.reveal, .reveal2 {
  opacity: 0;
  visibility: hidden;
  transform: translate(0px, 200px);
}


/* Back to Top */
#backtotop {
  display: none; 
  position: fixed; 
  bottom: 20px; 
  right: 20px; 
  z-index: 99999; 
  cursor: pointer; 
	opacity: 0.3;
	padding: 0 2px;
	-webkit-transition: opacity 0.3s ease-out, block 0.3s ease-out, font-size 0.3s ease-out, right 0.3s ease-out, bottom 0.3s ease-out;
  -moz-transition: opacity 0.3s ease-out, block 0.3s ease-out, font-size 0.3s ease-out, right 0.3s ease-out, bottom 0.3s ease-out;
  -o-transition: opacity 0.3s ease-out, block 0.3s ease-out, font-size 0.3s ease-out, right 0.3s ease-out, bottom 0.3s ease-out;
  transition: opacity 0.3s ease-out, block 0.3s ease-out, font-size 0.3s ease-out, right 0.3s ease-out, bottom 0.3s ease-out;
}

img#backtotop {
	width: 20%;
	height: 20%;
	min-height: 30px;
	min-width: 30px;
	max-height: 40px;
	max-width: 40px;
}

#backtotop:hover {
  opacity: 0.8;
	font-size:300%;
	right: 20px;
	bottom: 20px;
	padding: 0 4px;
}

