*  { 
  -webkit-box-sizing: border-box; 
  -moz-box-sizing: border-box; 
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  position: relative;
}




/* default formatting   */
/* default formatting   */
/* default formatting   */
html, body, div, span, object, iframe, h1, h2, h3, 
h4, h5, h6, p, blockquote, pre, a, abbr, acronym, 
address, code, del, dfn, em, img, q, dl, dt, dd, 
ol, ul, li, fieldset, form, label, legend, table, 
caption, tbody, tfoot, thead, tr, th, td  {  border: 0 none;  margin: 0;  padding: 0;  vertical-align: baseline;}

.sr-only {
    display: none;
}

html  { 

  scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    position: relative;
    font-family: "DM Sans", Arial, Helvetica, sans-serif;
    font-optical-sizing: auto;
     text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
      color: #1F2022;
    opacity: 0;
    transition: opacity 0.2s ease-in-out;
}


body.fade-in {
  opacity: 1;
}


.container {
    width: 100%;
    margin: 0;
    position: relative;
}

.header-mobile {
  display: none;
  max-width: 768px;
}

.header {
    background-color: white;
    width: 260px;
    height: 100vh;
    position: fixed;
    top: 0;
    border-right: 1px solid #E8E9EB;
    z-index: 1;
}

.bgwrap {
    background-color: white;
    width: 100%;
    height: 100vh;
    position: relative;
    
}
.main {
    padding-left: 260px;
}

.content {
    padding: 48px;
}

.logo {
    padding: 24px 24px 0 24px;
    max-width: 100px;
}
.logo img {
    max-width: 100px;
}

.navigation {
    padding: 24px;
}

.navigation ul {
    margin: 0;
    padding: 0;
}
.navigation ul li {
    margin: 0;
    padding: 0 ;
    list-style-type: none;
}
.navigation ul li a {
    padding: 4px 0;
    color: #1F2022;
    text-decoration: none;
    display: block;
    font-size: 18px;
    font-weight: 600;
}

.navigation ul li a:hover {
    color: #708090;
}


.secondary-nav {
    border-top: 1px solid #E8E9EB;
    padding: 24px;
}

.secondary-nav ul {
    margin: 0;
    padding: 0;
}

.secondary-nav ul li {
    margin: 0;
    padding: 0 ;
    list-style-type: none;
}

.secondary-nav ul li a {
    padding: 4px 0;
    color: #1F2022;
    text-decoration: none;
    display: block;
    font-size: 14px;
}
.secondary-nav ul li a:hover {
    color: #708090;
}

.secondary-nav ul li a.active, .navigation ul li a.active {
  font-weight: bold;
}


p a {
    color: #E11F2E;
}


h1 {
    color: #708090;
}


h2 {
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 400;
    color: #708090;
    margin-top: 0;
}

p {
   font-size: 18px;
   line-height: 1.5;
}

.standard {
    font-size: 18px;
    font-weight: 600;
}

.large {
    font-size: 48px;
    color: #708090;
    font-weight: 600;
    line-height: 1.3;
}

.line {
    border-top:1px solid #E8E9EB;
    margin: 48px 0;
    display: block;
    width: 100%;
}

.thin {
    font-weight: 400;
}

.margin-bottom {
  margin-bottom: 48px!important;
}









.grid {
  display: grid;
  grid-gap: 24px;
  grid-template-columns: repeat(auto-fill, minmax(400px,1fr));
  grid-auto-rows: 20px;
}

.item {
  display: block;
}

.item.hidden {
  display: none;
}





.item {
  opacity: 1;
  transform: scale(1);
  transition: opacity 0.4s ease, transform 0.4s ease;
  will-change: opacity, transform;

}

.item.hidden {
  opacity: 0;
  transform: scale(0.95);
  pointer-events: none;
  height: 0;
  margin: 0;
  padding: 0;
  overflow: hidden;
}





.border {
  border: 1px solid #E8E9EB;
  text-align: center;
  margin-bottom: 8px;
  border-radius: 4px;
  padding: 36px;
  transition: 0.3s;
}

a:hover .border {
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.photothumb{
    width: 100%;
    margin: 0;
    max-width: 360px;
    max-height: 360px;
}

.item-content {
    margin-bottom: 48px;
}

.item-content h3 {
    margin: 0;
}

.item-content h3 a {
  font-size: 18px;
    color: #1F2022;

    text-decoration: none;
}

.item-content h3 a:hover {
    color: #708090;
}
.item-content h3 a:active {
    color: #E11F2E;
}


.item-content h4 {
  font-size: 16px;
    color: #708090;
     margin: 0;
}

.black {
    color: #1F2022;
}

.red {
    color: #E11F2E;
}


.iphone-wrapper {
  position: relative;
  width: 240px; /* adjust as needed */
  max-width: 100%;
  aspect-ratio: 1 / 1.85; /* approx iPhone screen ratio */
  margin: 0 auto 24px;
}

.iphone-video {
  position: absolute;
    top: 0;
    left: 5%;
    width: 90%;
    height: 100%;
  /*object-fit: cover;*/
  border-radius: 2rem; /* match screen corners */
  z-index: 1;
}

.iphone-frame {
  position: relative;
  width: 100%;
  display: block;
  z-index: 2;
  pointer-events: none;
}



.desktop-wrapper {
    position: relative;
    width: 600px;
    max-width: 100%;
    aspect-ratio: 2 / 1.5;
    margin: 0 auto 24px;
    overflow: hidden;
}

.desktop-video {
  position: absolute;
    top: -2%;
    left: -8%;
    width: 116%;
    height: 100%;
  /*object-fit: cover;*/
  border-radius: 2rem; /* match screen corners */
  z-index: 1;
}

.desktop-frame {
  position: relative;
  width: 100%;
  display: block;
  z-index: 2;
  pointer-events: none;
}




.tablet-iphone-video {
  position: relative;
  aspect-ratio: 2 / 1.5;
    width: 100%;
    height: 100%;
  /*object-fit: cover;*/
  border-radius: 8px; /* match screen corners */
  z-index: 1;

}







.youtube-wrap {
  border-radius: 12px;
    border: 1px;
    padding: 4px 4px 0;
    background-color: #E8E9EB;
}
.youtube-wrap iframe {
    aspect-ratio: 16 / 9;
    width: 100%;
    border-radius: 8px;
    margin: 0;
}






@media only screen and (max-width: 768px) {

.main {
    padding-left: 0;
}

.content {
    padding: 36px;
}

  .large {
    font-size: 36px;  
  }


.grid {
  grid-template-columns: repeat(auto-fill, minmax(280px,380px));
}


.header {
  display: none;
}

.header-mobile {
  display: block;
  max-width: 768px;
  padding: 36px 36px 0 36px;
}

.header-mobile .logo {
  display: block;
  padding: 0;
}

.nav .logo {
  padding: 36px;
}

.navigation, .secondary-nav {
    padding: 36px;
}



.margin-bottom {
  margin-bottom: 36px;
}


  /**  MOBILE MENU **/
  /**  MOBILE MENU **/
  /**  MOBILE MENU **/



  #toggle  { 
    display: none;
  }

  
  /**  Hamburger Icon **/
  .hamburger  { 
    position: relative;
    top: -26px;
    right: 0;
    margin-left:0;
    margin-top: 0;
    width: 24px;
    height: 3rem;
    z-index: 95;
    float: right;
  }

  .hamburger div  { 
    position: relative;
    width: 24px;
    height: 4px;
    border-radius: 3px;
    background-color: #333;
    margin-top: 6px;
    transition: all 0.3s ease-in-out;
  }

  


  /** Mobile Nav Styles  **/
  .nav  { 
    position: fixed;
    width: 100%;
    max-width: 768px;
    height: 100%;
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    background-color: var(--white);
    background:rgba(255,255,255,0.9);
    top: -100%; left: 0; right: 0; bottom: 0;
    overflow: hidden;
    transition: all 0.3s ease-in-out;
    transform: scaleY(0);
    z-index: 90; 
  }

  .nav-wrapper  { 
    position: relative;
    overflow: hidden;
    overflow-y: auto;
    height: 100%;
  }

  .mobilemenu  { 
    display: block;
    max-width: 768px;
    text-align: left;
  }


  .mobilenav ul  { 
    list-style-type: none;
  }


  .mobilenav ul li  { 
    margin-bottom: 2rem;
  }

  .mobilenav a  { 
    position: relative;
    text-decoration: none;
    font-size: 2rem;
    display: inline-block;
    transition: color 0.2s ease-in-out;
    letter-spacing: 1px;
  }

  .mobilenav a:before  { 
    content: '';
    height: 0;
    position: absolute;
    width: 0.25em;
    background-color: white;
    left: -0.5em;
    transition: all 0.2s ease-in-out;
  }

  .mobilenav a:hover  { 
    color: var(--red);
  }

  .mobilenav a:hover:before  { 
    height: 100%;
  }

  .hamburger div  { 
    margin-top: 4px;
    height: 3px;
  }



  /** Animations  **/
  #toggle:checked + .hamburger .top-bun  { 
    transform: rotate(-45deg);
    margin-top: 15px;
    background-color: #1F2022;
  }

  #toggle:checked + .hamburger .bottom-bun  { 
    opacity: 0;
    transform: rotate(45deg);
    background-color: #1F2022;
  }

  #toggle:checked + .hamburger .meat  { 
    transform: rotate(45deg);
    margin-top: -3px;
    background-color: #1F2022;
  }

  #toggle:checked + .hamburger + .nav  { 
    top: 0;
    transform: scale(1);
  }


}






@media only screen and (max-width: 425px) {
  .content {
      padding: 24px;
  }

  .large {
    font-size: 24px;  
  }

  .standard {
    font-size: 16px;
}

p {
font-size: 15px;
}
  .header-mobile {
      padding: 24px 24px 0 24px;
  }

  .nav .logo {
    padding: 24px;
  }

  .navigation, .secondary-nav {
    padding: 24px;
  }

  .margin-bottom {
    margin-bottom: 24px;
  }
}



@media only screen and (max-width: 400px) {
  .content {
      padding: 16px;
  }

p {
font-size: 14px;
}

  .header-mobile {
      padding: 16px 16px 0 16px;
  }

  .nav .logo {
    padding: 16px;
  }

  .navigation, .secondary-nav {
    padding: 16px;
  }

  .margin-bottom {
    margin-bottom: 16px;
  }


}

