@font-face {
  font-family: 'crimson text';
  src: url('webfonts/CrimsonText-Regular.ttf') format('truetype'),
       url('webfonts/CrimsonText-Regular.woff2') format('woff2');
  font-style: normal;
  font-weight: 400;
  /*font-display: swap;*/
}

@font-face {
  font-family: 'crimson text';
  src: url('webfonts/CrimsonText-Bold.ttf') format('truetype'),
       url('webfonts/CrimsonText-Bold.woff2') format('woff2');
  font-style: normal;
  font-weight: 700;
  /*font-display: swap;*/
}

@font-face {
  font-family: 'crimson text';
  src: url('webfonts/CrimsonText-Italic.ttf') format('truetype'),
       url('webfonts/CrimsonText-Italic.woff2') format('woff2');
  font-style: italic;
  font-weight: 400;
  /*font-display: swap;*/
}

@font-face {
  font-family: 'crimson text';
  src: url('webfonts/CrimsonText-BoldItalic.ttf') format('truetype'),
       url('webfonts/CrimsonText-BoldItalic.woff2') format('woff2');
  font-style: italic;
  font-weight: 700;
  /*font-display: swap;*/
}

@font-face {
  font-family: 'crimson text';
  src: url('webfonts/CrimsonText-SemiBold.ttf') format('truetype'),
       url('webfonts/CrimsonText-SemiBold.woff2') format('woff2');
  font-style: normal;
  font-weight: 600;
  /*font-display: swap;*/
}

@font-face {
  font-family: 'crimson text';
  src: url('webfonts/CrimsonText-SemiBoldItalic.ttf') format('truetype'),
       url('webfonts/CrimsonText-SemiBoldItalic.woff2') format('woff2');
  font-style: italic;
  font-weight: 600;
  /*font-display: swap;*/
}

html{
  scroll-behavior: smooth;
}

:root {
  --body-color: #ffffff;
  --nav-color: #ffffff;
  --text-color: rgb(0, 0, 0);
  --side-nav: rgb(82, 82, 186);
  --search-bar: #;
  --search-text: #;
}

strong {
  font-weight: 700;
}

em {
  font-style: italic;
}

body{
  font-family: 'crimson text';
  color: var(--text-color);
  min-height: 100vh;
  padding-top: 60px;
  margin: 0;
  padding-left: 0;
  padding-right: 0;
  background-color: var(--body-color);
  overflow-x: hidden;
  max-width: 100vw;
}

main{
  text-align: center;
}

nav{
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  height: 70px;
  width: 100%;
  background-color: var(--nav-color);
}

nav .nav-bar{
  position: relative;
  height: 100%;
  max-width: 1000px;
  width: 100%;
  background-color: var(--nav-color);
  margin: 0 auto;
  padding: 0 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

nav .nav-bar .menu .nav-list li {
  position: relative;
}

nav .nav-bar .menu .nav-list li .arrow{
  display: inline-block;
  margin-left: -10px;
  color: var(--text-color);
  font-size: 10px;
  transition: all 0.2s ease;
}

nav .nav-bar .menu .nav-list li .arrow:hover{
  cursor: pointer;
  transform: rotate(180deg);
}

nav .nav-bar .menu .nav-list .sub-menu{
  position: absolute;
  top: 100%;
  left: -16px;
  white-space: nowrap;
  line-height: 40px;
  background-color: var(--body-color);
  padding: 0px;
  margin: 0px;
  box-shadow: 0 1.5px 5px rgba(0,0,0,0.1);
  border-radius: 0 0 4px 4px;
  display: none;
}


nav .nav-bar .menu .nav-list .sub-menu li {
  padding: 0 10px;
}

nav .nav-bar .menu .nav-list .sub-menu li a{
  font-size: 15px;
  font: 500;
}

nav .nav-bar .menu .nav-list li:hover > .arrow {
  transform: rotate(180deg);
}

nav .nav-bar .menu .nav-list li:hover > .sub-menu {
  display: block;
}

nav .nav-bar .sidebarOpen{
  display: none;
  color: var(--text-color);
  font-size: 25px;
  padding: 5px;
  cursor: pointer;
}

.menu .logo-toggle{
  display: none;
}

.nav-bar .nav-list{
  display: flex;
  align-items: center;
}

.nav-bar .nav-list li{
  list-style: none;
  margin: 0 5px;
}

.nav-list li a{
  position: relative;
  text-decoration: none;
  font-size: 17px;
  font-weight: 500;
  color: rgb(0, 0, 0);
  padding: 10px;
}

.nav-list li a::before{
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  height: 4px;
  width: 4px;
  border-radius: 50%;
  background-color: var(--text-color);
  opacity: 0;
  transition: all 0.3s ease;
}

nav .nav-bar .menu .nav-list .sub-menu li a::before {
  display: none;
  content: none;
}

nav .nav-bar .menu .nav-list > li:nth-child(2) > a::before {
  display: none;
  content: none;
}

.nav-list li a:hover::before{
  opacity: 1;
}


.header{
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  /*If you put "flex:1" then its like putting fr1, it split the remaining space like a ratio*/
  
  position: fixed;
  background-color: rgb(114, 151, 255);
  top: 0;
  left: 0;
  right: 0;
  height: 70;
  box-shadow: 0 4 10 rgba(0, 0, 0, 0.1);

  z-index: 1000;
}

.HeaderLogo{
  height: 70px;
}

.HeaderLogo:hover{
  cursor: pointer
}



.FutureText{
  margin: 50px 20px -20px 75px;
  display: flex;
  word-spacing: 7px;
  letter-spacing: 3px;
}

.intro-text{
  position: absolute;
  top: 100px;
  left: 50px;
  display: flex;
  flex-direction: column;
}

.ProductivityText{
  font-size: 100px;
  margin-top: 0;
}

.IntroDiv{
  margin: 100px 20px 30px 0px;
  display: flex;
  justify-content: center;
  flex-direction: column;
}

.IntroTextandImageDiv{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
  margin-bottom: 20px;
  position: relative;
}

.sectioner{
  position: absolute;
  top: -50px;
  width: 0.5px;        
  height: 390px;            
  background: #222;      
  margin: 0 auto 24px auto; 
  border-radius: 2px;
}

.FirstMailingListDiv{
  background-color: transparent;
  margin-top: 150px;
  margin-left: 900px;
  width: 600px;
  position: relative;
  z-index: 20;
}

.HearFromUsText{
  position: absolute;
  top: -90px;
  left: 60px;
  font-size: 40px;
  color: rgb(0, 0, 0);
}

.arrow-down{
  position: absolute;
  top: -22px;
  left: 470px;
  width: 50px;
  height: 50px;
} 

.star{
  position: absolute;
  top: -90px;
  left: 0px;
  width: 50px;
  height: 50px;
}

.star2{
  position: absolute;
  top: 62px;
  left: 332px;
  width: 50px;
  height: 50px;
}

#first_mc_embed_signup{
  background: rgb(128, 128, 128);
  clear:left;
  font:14px Helvetica,Arial,sans-serif;
  color:rgb(0, 0, 0);
  width: 600px;

  clear:left; 
  font:14px Helvetica,Arial,sans-serif; 
  color:rgb(255, 255, 255); 
  width: 600px;
}

.MailingSubmitbutton{
  background-color: rgb(64, 60, 189);
  color: white;
  border: none;
  cursor: pointer;
  margin-bottom: 15px;
  margin-top: 0px !important;
  padding: 10px 15px;
  border-radius: 6px;
  width: 200px !important;
}
  
.MailingSubmitbutton:hover{
  background-color: rgb(50, 47, 148);
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.2)
}

.first-section{
  background-color: black;
  width: 100%;
  height: 285px;
  margin-top: 0px;
  margin-left: 20px;
  position: relative;
  overflow: hidden;
}



.IntroHeading{
  font-size: 50px;
  font-style: italic;
}

.boardwidthdiv{
  width: 100%;
  height: 20px;
  max-width: 800px;
  background-image: url('Images/Product Images/widthcropnobg.png');
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 500px;
}

.StartJourney{
  position: absolute;
  color: var(--body-color);
  font-size: 25px;
  top: 80px;
  font-weight: 400;
}

.WhiteDownArrow{
  position: absolute;
  top: 95px;
  width: 50px;
  height: 50px;
  left: 375px;
  z-index: 4;
}

.WhiteDownArrowlink{
  display: inline-block;
}

.boardwidthdiv:hover{
  cursor: pointer;
}

.boardwidth{
  width: 100%;
  max-width: 800px;
  z-index: 3;
}

.BoardStars{
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  object-fit: cover;
}

#WhatIsStridaText {
text-align: center;
padding-top: 300px;
  font-size: 30px;
  color: var(--body-color);
  transition: opacity 0.3s ease-out;
}


/* 
.boardwidth:hover{
  max-width: 900px;
  transition: all 0.3s ease;
  z-index: 10;
} */

.SecondSection{
  height: 2200px;
  width: 100%;
  background: linear-gradient(#0c0f19, #4063ff);
  position: relative;
  overflow: hidden;
}

#BackgroundStars{
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
  object-position: right;
  pointer-events: none;
  width: 3700px;
}

#ShootStar{
  position: absolute;
  top: 200px;
  width: 200px;
  rotate: 45deg;
}

#cloud1{
  position: absolute;
  width: 300px;
  top: 1200px;
  left: 200px;
  pointer-events: none;
}

#cloud2{
  position: absolute;
  width: 300px;
  top: 1220px;
  left: 900px;
  pointer-events: none;
}

#cloud3{
  position: absolute;
  width: 550px;
  top: 413px;
  left: 320px;
  z-index: 2;
  pointer-events: none;
}

#cloud4{
  position: absolute;
  width: 480px;
  top: 400px;
  z-index: 2;
  pointer-events: none;
} 

#WhatIsStridaHeading{
  font-weight: 600;
  text-align: center;
  color: var(--body-color);
padding-top: 410px;
  left: 550px;
  font-size: 70px;
}

#WhatIsStridaDiv{
  margin-bottom: 400px;
}

.roof1{
  height: 150px;
  background-color: transparent;
  position: relative;
  z-index: 10;
  margin-top: -30px;
}

.roof1Image{
  width: 100%;
  overflow: visible;
  position: relative;
  z-index: 7;
}

#FeaturesDiv{
  padding-top: 80px;
  margin-bottom: 0px;
  position: relative;
  background-image: url('../Images/Others/LivingRoom.jpg');
  height: 1080px;
}

.FeaturesHeading{
  font-weight: 600;
  font-size: 40px;
  margin-bottom: 80px;
  margin-top: 0px;
  padding-top: 140px;
  color: var(--body-color);
}

model-viewer{
  width: 100%;
  height: 600px;
  margin-top: 20px;
  z-index: 20;
  position: relative;
}

.SmartPath{
  font-weight: 800;
  font-size: 22px;
  color: var(--body-color);
  text-decoration: none;
}

.SmartPathDiv{
  background-color: rgba(0, 0, 0, 0.274);
  width : 550px;
  height: 26px;
  border-radius: 6px;
  position: absolute;
  left: 10px;
  top: 450px;
  padding: 5px 5px;
  z-index: 30;
}

.SmartPathDiv:hover{
  cursor: pointer;
  background-color: rgba(0, 0, 0, 0.627);
}

.Calendar2{
  font-weight: 800;
  font-size: 22px;
  z-index: 30;
  color: var(--body-color);
  text-decoration: none;
}

.Calendar2Div{
  position: absolute;
  background-color: rgba(0, 0, 0, 0.274);
  width : 500px;
  height: 26px;
  border-radius: 6px;
  padding: 5px 5px;
  z-index: 30;
  right: 40px;
  top: 450px;
}

.Calendar2Div:hover{
  cursor: pointer;
  background-color: rgba(0, 0, 0, 0.627);
}

.Flow{
  font-weight: 800;
  font-size: 22px;
  z-index: 30;
  color: var(--body-color);
  text-decoration: none;
}

.FlowDiv{
  position: absolute;
  background-color: rgba(0, 0, 0, 0.274);
  width : 400px;
  height: 26px;
  border-radius: 6px;
  padding: 5px 5px;
  z-index: 30;
  left: 152px;
  bottom: 460px;
}

.FlowDiv:hover{
  cursor: pointer;
  background-color: rgba(0, 0, 0, 0.627);
}

.AndMore{
  font-weight: 800;
  font-size: 22px;
  z-index: 30;
  color: var(--body-color);
  text-decoration: none;
  width: 150px;
}

.AndMoreDiv{
  position: absolute;
  background-color: rgba(0, 0, 0, 0.274);
  width : 150px;
  height: 26px;
  border-radius: 6px;
  padding: 5px 5px;
  z-index: 30;
  right: 390px;
  bottom: 460px;
}

.AndMoreDiv:hover{
  cursor: pointer;
  background-color: rgba(0, 0, 0, 0.627);
}

/*Not sure wtf is happening here man
For some reason the margin is not working*/

.DirtSection{
  margin-top: 0px;
  height: 1283px;
  background-image: url('../Images/Others/dirt.jpg');
}

.foundation{
  color: var(--body-color);
  font-weight: 600;
  font-size: 40px;
  margin-top: 0px;
  padding-top: 80px;
  padding-bottom: 80px;
}

.FoundationSections{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: 300px;
  gap: 20px;
  margin-top: 20px;
}

.OurStory{
  height: 100%;
  padding-left: 80px;
  padding-right: 80px;
}

.OurStoryTitle{
  font-weight: 800;
  color: var(--body-color);
  font-size: 40px;
}

.OurStoryText{
  font-size: 22px;
  color: var(--body-color);
  line-height: 1.6;
}

.QuoteL{
  width: 70px;
  position: relative;
  left: -330px;
  top: 70px;
}

.QuoteR{
  width: 65px;
  position: relative;
  left: 330px;
  top: -296px;
}

.OpenToHelp{
  height: 100%;
}

.HelpHeading{
  font-weight: 800;
  color: var(--body-color);
  font-size: 40px;
  margin-top: 550px;
  padding-bottom: 60px;
}

.GrowWithUsTitle{
  font-weight: 600;
  font-size: 20px;
  color: var(--body-color);
}

.GrowWithUsText{
  font-size: 18px;
  color: var(--body-color);
  line-height: 1.6;
  padding-left: 40px;
  padding-right: 40px;
}

.CommunityDrivenTitle{
  font-weight: 600;
  font-size: 20px;
  color: var(--body-color);
}

.CommunityDrivenText{
  font-size: 18px;
  color: var(--body-color);
  line-height: 1.6;
  padding-left: 40px;
  padding-right: 40px;
}

.LinksSection{
  padding-top: 400px;
  margin-left: 40px;
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  margin-top: 50px;
}

.FollowUsTitle{
  font-size: 22px;
  font-weight: 600;
  color: var(--body-color);
}

.Links{
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.Links a{
  display: flex;
  text-decoration: none;
  color: var(--body-color);
  font-size: 18px;
  text-decoration: none;
}

.Links i{
  margin-right: 10px;
  font-size: 20px;
}

.AIpoweredDiv{
  margin-bottom: 300px;
}

.TopLeft1{
  width: 850px;
}

.TopLeft1Div{
  display: flex;
  flex-direction: row;
  justify-content: center;
}

.board-interactive{
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
  height: 500px;
}

.AIpoweredHeading{
  font-weight: 400;
  margin-bottom: 90px;
}

.BuiltOnEvidenceDiv{
  margin-bottom: 300px;
}

.BuiltOnEvidenceHeading{
  font-weight: 400;
  margin-bottom: 90px;
}

.OurStoryDiv{
  margin-bottom: 200px;
}

.OurStoryHeading{
  font-weight: 400;
  margin-bottom: 90px;
}

.KickstarterSupportDiv{
  margin-bottom: 300px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

.KickstarterSupport{
  padding-top: 500px;
  width: 200px;
}

.KickstarterSupport:hover{
  cursor: pointer;
}

.mailing-list {
  font-size: 18px;
  margin-top: 20px;
  padding: 10px 15px;
  border-radius: 6px;
  border: 1px solid #ccc;
  width: 100%;
  max-width: 300px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.MailingListDiv{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 100px;
}



.submit-button{
  background-color:rgb(114, 36, 36);
  /*Check why the background of this component doesn't show up*/
  color: white;
  border: none;
  padding-top: 5px;
  padding-bottom: 5px;
  padding-left: 10px;
  padding-right: 10px;
  border-radius: 2px;
  cursor: pointer;
  display: inline-block;
}
  
.submit-button:hover{
  background-color: blue;
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.2)
}
  
.submit-button:active{
  background-color: green;
  box-shadow: none;
}

.strida-link{
  display: inline-block;
}
  
.strida-link:hover{
  text-decoration: underline;
  cursor: pointer;
  
}

.google-link{
  font-size: 15px;
  display: block;
  margin-bottom: 15px;
}


footer {
  padding-block: 2rem;
  opacity: 0.5;
}


@media (max-width: 1540px){
  .sectioner {
    display: none;
  }
}

@media (max-width: 1024px) {
  .FirstMailingListDiv {
    margin-left: auto;
    margin-right: auto;
    left: 0;
    right: 0;
  }

  .HearFromUsText {
    left: 20px;
  }

  .arrow-down {
    left: auto;
    right: 50px;
  }

  .star2 {
    left: -200px;
  }

  #WhatIsStridaHeading {
    left: 50%;
    transform: translateX(-50%);
  }

  #WhatIsStridaText {
    left: 100px;
  }

  .FoundationSections {
    gap: 30px;
    padding: 0 40px;
  }

  .QuoteL {
    left: -250px;
  }

  .QuoteR {
    left: 250px;
  }
}



@media (max-width: 790px){

  body {
    overflow-x: hidden;
    max-width: 100vw;
  }

  nav .nav-bar{
    justify-content: center;
  }

  nav .nav-bar .sidebarOpen{
    display: block;
    position: absolute;
    left: 30px;
  }

  .menu{
    position: fixed;
    height: 100%;
    width: 320px;
    left: -100%;
    top: 0;
    background-color: var(--side-nav);
    padding: 20px;
    z-index: 100;
    transition: all 0.4s ease;
  }

  nav.active .menu{
    left: -0%;
  }

  nav.active .nav-bar .navLogo{
    opacity: 0;
    transition: all 0.3s ease;
  }

  nav .nav-bar .navLogo{
    padding-right: 20px;
  }

  .menu .logo-toggle{
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
  }

  .logo-toggle .sidebarClose{
    color: var(--body-color);
    font-size: 24px;
    cursor: pointer;
    padding-top: 30px;
  }

  .nav-bar .nav-list{
    flex-direction: column;
    padding-top: 30px;
    padding-left: 0px;
  }

  .nav-list li a::before{
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    height: 4px;
    width: 4px;
    border-radius: 50%;
    background-color: var(--body-color);
    opacity: 0;
    transition: all 0.3s ease;
  }

  .nav-bar li a{
    display: block;
    margin-top: 20px;
    color: var(--body-color);
    letter-spacing: 1px;
  }

  nav .nav-bar .menu .nav-list .sub-menu {
    position: static;
    display: none;
    box-shadow: none;
    margin: 0;
    border-radius: 0;
    line-height: 2;
    white-space: normal;
    background-color: rgba(255,255,255,0.08);
    padding-left: 0px;
  }

  nav .nav-bar .menu .nav-list li:hover > .sub-menu {
    display: block;
  }

  nav .nav-bar .menu .nav-list .sub-menu li a {
    font-size: 15px;
    padding-top: 10px;
    line-height: 10px;
  }

  nav .nav-bar .menu .nav-list li .arrow {
    color: #fff;
    font-size: 14px;
    margin-left: 0px;
    margin-top: 18px;
    position: relative;
    top: 1px;
  }

  nav .nav-bar .menu .nav-list li {
    display: block;
  }

  nav .nav-bar .menu .nav-list li:has(.sub-menu) {
    display: block;
    align-items: stretch;
  }

  .menu-link-row {
    display: flex;
    align-items: center;
    gap: 0px;
    padding-left: 40px;
  }

  nav .nav-bar .menu .nav-list li:hover > .sub-menu {
    display: block;
  }

  .nav-list li a::before{
    display: none;
    content: none;
  }

  .intro-text {
    position: static;
    padding: 20px;
    text-align: center;
  }

  .FutureText {
    font-size: 32px;
    margin: 20px 10px 0 10px;
    word-spacing: 3px;
    letter-spacing: 1px;
  }

  .ProductivityText {
    font-size: 48px;
    margin-top: 10px;
  }

  .IntroDiv {
    margin: 50px 10px 20px 10px;
  }

  .sectioner {
    display: none;
  }

  .FirstMailingListDiv {
    margin-top: 50px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    padding: 20px;
    position: static;
    text-align: center;
  }

  .HearFromUsText {
    position: static;
    font-size: 28px;
    display: block;
    margin-bottom: 20px;
  }

  .arrow-down {
    position: static;
    display: inline-block;
    margin: 10px auto;
  }

  .star, .star2 {
    display: none;
  }

  #mc_embed_signup, #first_mc_embed_signup {
    width: 100% !important;
    max-width: 320px;
    margin: 0 auto;
  }

  #mc_embed_signup input[type="email"],
  #first_mc_embed_signup input[type="email"] {
    max-width: 100%;
    width: 100% !important;
  }

  .first-section {
    height: 200px;
    margin-left: 0;
  }

  .boardwidthdiv {
    position: static;
    margin: 30px auto;
    max-width: 90%;
  }

  .StartJourney {
    position: static;
    display: block;
    margin-top: 20px;
    font-size: 20px;
  }

  .WhiteDownArrow {
    position: static;
    display: block;
    margin: 10px auto;
    left: auto;
  }

  #WhatIsStridaHeading {
    position: static;
    font-size: 40px;
    padding: 40px 20px 20px 20px;
  }

  #WhatIsStridaText {
    position: static;
    font-size: 20px;
    padding: 20px;
    line-height: 1.6;
  }

  #WhatIsStridaText br {
    display: none;
  }

  .SecondSection {
    height: auto;
    min-height: 600px;
    padding-bottom: 50px;
  }

  #BackgroundStars {
    width: 200%;
  }

  #Cloud1, #Cloud2, #Cloud3, #Cloud4 {
    display: none;
  }

  model-viewer {
    height: 400px;
  }

  .SmartPath, .Calendar2, .Flow, .AndMore {
    position: static;
    display: block;
    margin: 20px auto;
    padding: 10px 20px;
    font-size: 16px;
    text-align: center;
  }

  .board-interactive {
    flex-direction: column;
    height: auto;
  }

  .roof1 {
    margin-top: -15px;
  }

  .DirtSection {
    height: auto;
    padding-bottom: 50px;
  }

  .foundation {
    font-size: 32px;
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .FoundationSections {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
    gap: 40px;
    padding: 0 20px;
  }

  .OurStory {
    padding-left: 20px;
    padding-right: 20px;
  }

  .OurStoryTitle {
    font-size: 32px;
  }

  .OurStoryText {
    font-size: 18px;
  }

  .QuoteL {
    display: none;
  }

  .QuoteR {
    display: none;
  }

  .HelpHeading {
    font-size: 32px;
    margin-top: 0;
    padding-bottom: 30px;
  }

  .LinksSection {
    padding-top: 50px;
    margin-left: 20px;
  }

  .FollowUsTitle {
    font-size: 20px;
  }

  .Links {
    gap: 15px;
  }
}

@media (max-width: 480px) {
  body {
    padding-top: 60px;
    overflow-x: hidden;
    max-width: 100vw;
  }

  nav {
    height: 60px;
  }

  nav .nav-bar {
    padding: 0 15px;
  }

  .HeaderLogo {
    height: 55px;
  }

  .FutureText {
    font-size: 24px;
  }

  .ProductivityText {
    font-size: 36px;
  }

  .HearFromUsText {
    font-size: 22px;
  }

  #mc_embed_signup, #first_mc_embed_signup {
    max-width: 280px !important;
    width: 280px !important;
    margin: 0 auto;
    padding: 0 10px;
  }

  #mc_embed_signup input[type="email"],
  #first_mc_embed_signup input[type="email"] {
    max-width: 100%;
    width: 100% !important;
  }

  .first-section {
    height: 150px;
  }

  .boardwidthdiv {
    max-width: 95%;
  }

  .WhiteDownArrowlink {
    width: 100%;
    text-align: center;
  }

  #WhatIsStridaHeading {
    font-size: 32px;
    padding: 30px 15px 15px 15px;
  }

  #WhatIsStridaText {
    font-size: 18px;
    padding: 15px;
  }

  .FeaturesHeading {
    font-size: 28px;
  }

  model-viewer {
    height: 300px;
  }

  .foundation {
    font-size: 28px;
  }

  .OurStoryTitle, .HelpHeading {
    font-size: 28px;
  }

  .OurStoryText {
    font-size: 16px;
  }

  .GrowWithUsText, .CommunityDrivenText {
    font-size: 16px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .GrowWithUsTitle, .CommunityDrivenTitle {
    font-size: 18px;
  }

  .FoundationSections {
    padding: 0 15px;
  }

  .OurStory {
    padding-left: 15px;
    padding-right: 15px;
  }

  .QuoteL, .QuoteR {
    display: none;
  }
}

.WipBody {
  background-color: #ffffff;
}

.construction {
  text-align: center;
  margin-top: 120px;
}

.WipText {
  font-size: 50px;
  margin-top: 20px;
  color: rgb(0, 0, 0);
  font-weight: 1000;
}

.ConstructionImg {
  margin-top: 120px;
  width: 700px;
}

.backgroundTape{
  z-index: -1;
  position: absolute;
  top: 0;
}