html {
  height: 100%;
  width: 100%;
  overflow-x: hidden;
  font-family: Poppins, sans-serif;
}
:root {
  --theme-color: #ff7a18;
  --theme-black: #262626;
  --theme-light: #ffdca5;
}

body {
  margin: 0;
  padding: 0;
  width: 100vw;
  height: 100vh;
  position:relative;
  overflow-x: hidden;
  font-family: Poppins, sans-serif;
  background-color: var(--theme-light);
  color: --theme-black;
}
#header {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1000;
  width: 100%;
  align-items: center;
  justify-content: space-between;
}
#header:has( .show, .collapsing) {
  background-color: var(--theme-light);
  
}

.navbar-collapse.collapsing {
  
  border-radius: 10px;
}


.navbar-collapse.collapse {
  background-color: linear-gradient(341deg, var(--theme-color) 0%, #feb086 100%);
}

.navbar-collapse.collapsing {
   background-color: linear-gradient(341deg, var(--theme-color) 0%, #feb086 100%);
}


#main{
}

.navbar-brand {
  font-weight: 800;
  font-size: 1.5rem;
}

/* make background underlay navigation */
#landing .container{
  position: relative;
  top: 140px;
  padding-bottom: 140px;
}



h3 {
  font-size: calc(1rem + .4vw);
}

.h-thick{
  font-weight: 800;
  
}

.h-semi-thick{
  font-weight: 700;

}

img {
  max-width: 100%;

  height: auto;
}

.mock-img-overlap{

  margin-top: -30px;
} 

.value-props {
  width: 70px;

}
.nav-logo {
  width: 200px;
}

.navbar {
  padding-top: 1.2rem;
  padding-bottom: 1.2rem;
}

.theme-color {
  color: var(--theme-color);
}
/* -------- buttons ---------------- */
.btn-primary{
  color: #fff!important;
  border-color: var(--theme-color) !important;
  background-color: var(--theme-color) !important;
}

a {
  color: var(--theme-color);
}

@media (min-width: 576px) {

}


@media (min-width: 768px) { 

}


@media (min-width: 992px) {   
  body {
    font-size: 1.4rem;
    line-height: 1.57;

    font-family: Poppins, sans-serif;
    background-color: var(--theme-light);
    color: --theme-black;
  }
  .blob{
    position: absolute;

    fill: var(--theme-color);
    width: 50%;
    z-index: -1;
    animation: move 20s ease-in-out infinite;
    transform-origin: 20% 20%;
  }
  .mock-img-overlap{
                            
    margin-left: -150px;
    margin-top: 50px;
  } 
}


@media (min-width: 1200px) {
  h3 {
    font-size: 1.35rem;
  }
}


@media (min-width: 1400px) { }


