body{
    overflow-x: hidden;
}
#body-wrapper{
    /* max-width: 1200px; */
    margin: auto;
    font-family: 'Raleway', sans-serif;
    font-size: 110%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;

}
header, .header{
    padding: 10px 0;
    justify-content: space-between;
}

.resize-image-50pc {
    width: 50%;
}

.resize-image-75pc {
    width: 75%;
}

.logo-wrapper{
}

.logo-wrapper a {
    text-decoration: none;
}
.logo{
    width: 46px;
    height: 46px;
    background-image: url("../media/logo-200.png");
    background-size: cover;
}
.logo-text{
    background: -webkit-linear-gradient(-89deg, #7C3570, #DF8C86 57%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 0;
    font-weight: 700;
    font-size: 115%;
    
}
.inline-block{
    display: inline-block;
}
.flex{
    display: flex;
}
.flex-rows{
    flex-direction: column;
}
.wrap{
  flex-wrap: wrap;
}
.flex-1{
    flex: 1;
}
.align-center{
    align-items: center;
}
.align-baseline{
  align-items: baseline;
}
.justify-left{
  justify-content: flex-start;
}
.justify-center{
  justify-content: center;
}
.justify-end{
  justify-content: flex-end;
}
.justify-space-between{
    justify-content: space-between;
}
.gap-10{
    gap:10px
}
.gap-20{
    gap:20px
}
.gap-30{
    gap:30px
}
.gap-40{
    gap:40px
}
.h-spacer{
    width:10px;
}
.v-spacer-2x{
    height:60px;
}
.v-spacer-1x{
    height:30px;
}
.v-spacer-0-5x{
  height:10px;
}
.v-spacer-3x{
    height:90px;
}
.w-100perc{
    width: 100%;
}
.m-right-auto{
  margin-right: auto;
}
.m-left-auto{
  margin-left: auto;
}

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


nav{
}

.nav-ul{
    list-style: none;
    align-items: center;
}
.nav-ul li{
    margin: 0px 30px;
}

.nav-ul a{
    text-decoration: none;
    color: #000;
    font-size: 110%;
}
.active-nav-link{
    font-weight: 800;
    color: #7c356f !important;
}
.action-items{
}

.nav-action-button{

}

a {
  text-decoration: none;
}
  .hover-underline-animation {
    color: #fff;
    /* text-transform: uppercase; */
    text-decoration: none;    
    display: inline-block;
    position: relative;
  }
  .hover-underline-animation:after{    
    background: none repeat scroll 0 0 transparent;
    bottom: -8px;
    content: "";
    display: block;
    height: 2px;
    left: 50%;
    position: absolute;
    background: #7c356f;
    transition: width 0.3s ease 0s, left 0.3s ease 0s;
    width: 0;
  }
  .hover-underline-animation:hover:after{ 
    width: 140%; 
    left: -20%; 
  }
  .underline-active{
    width: 140%; 
    left: -20%; 
  }
  


  .action-item {
    border-radius: 3px;
    display: block;
    background: linear-gradient(to right, #7c3570 50%, white 50%);
    background-size: 200% 100%;
    background-position: right bottom;
    transition: all .2s ease-out;
    cursor: pointer;
  }
  
  .action-item:hover {
    background-position: left bottom;
  }
  
  .nav-action-button {
    text-align: center;
    font-size: 16px;
    line-height: 30px;
    color: black;
    transition: all .6s ease-out;
    display: block;
    padding: 8px 19px 8px 19px;
    box-shadow: 0 15px 30px 0 rgb(124 53 112 / 15%);
    border: solid 1px #7c3570;
    color: #7c3570;
    font-weight: 600;
    border-radius: 3px;
  }
  
  .nav-action-button:hover {
    color: white;  
  }

  .section-shadow{
    box-shadow: 0px 10px 15px rgba(0, 0, 0, 0.07);
  }


  h1{
    font-family: Raleway;
    font-style: normal;
    font-weight: 800;
    font-size: 311%;
    line-height: 133%;
    color: #150312;
    margin-top: 20px;
    margin-bottom: 10px;
  }

  .smaller-heading{
  font-size: 220%;
  }

  h2{
    font-family: Raleway;
    font-style: normal;
    font-weight: 500;
    font-size: 125%;
    line-height: 28px;
    /* identical to box height, or 140% */
    
    
    /* #4E494D */
    
    color: #4E494D;

  }

  .top-video-wrapper{
    box-sizing: border-box;
    resize: horizontal;
    overflow: auto;
    max-width: 100%;
    /*padding-bottom: 56.25%;*/
    /*background-color: #E59187;*/
    justify-content: center;
    overflow: visible;
  }

  .top-video{
    display: block;
    /*width: 100%;*/
    background-color: #fff;
    width: 608px;
    height: 342px;
    position: relative;
    z-index: 1;
    overflow: visible;
  }
.top-video iframe {
    z-index: 1;
}
  .m-top-3x{
    margin-top: 90px;
  }
  .m-top-2x{
    margin-top: 45px;
  }
  .m-top-1x{
    margin-top: 25px;
  }
  .m-bottom-3x{
    margin-bottom: 90px;
  }
  .m-bottom-2x{
    margin-bottom: 45px;
  }
  .m-bottom-1x{
    margin-bottom: 30px;
  }
  .m-bottom-0-5x{
    margin-bottom: 15px;
  }

  .m-left-3x{
    margin-left: 90px;
  }
  .m-left-2x{
    margin-left: 45px;
  }
  .m-left-1x{
    margin-left: 30px;
  }


    .p-top-3x{
        padding-top: 90px;
    }
    .p-bottom-3x{
        padding-bottom: 90px;
    }

    .p-right-0-5x{
      padding-right: 15px;
    }
    .p-right-1x{
      padding-right: 30px;
    }
    .p-right-2x{
        padding-right: 45px;
        position: relative;
    }
    .p-left-2x{
        padding-left: 45px;
    }
    .p-left-3x{
      padding-left: 60px;
    }


    .p-2x{
      padding: 45px;
    }

  .main-download-button{
    border-radius: 3px;
    display: inline-block;
    background-color: #7c3570;
    background-size: 200% 100%;
    cursor: pointer;
    overflow: hidden;
    margin-top: 10px;
  }

.send-message-button{

    border-radius: 3px;
    display: inline-block;
    background-color: #7c3570;
    background-size: 200% 100%;
    background-position: right bottom;
    cursor: pointer;
    overflow: hidden;
}

  .main-download-button-inner{
    border-radius: 3px;
    display: inline-block;
    background-color: #7c3570;
    background-size: 200% 100%;
    background-position: right bottom;
    cursor: pointer;
    text-align: center;
    font-size: 16px;
    line-height: 30px;
    color: white;
    transition: all .6s ease-out;
    padding: 10px 60px 10px 60px;
    box-shadow: 0 15px 30px 0 rgb(124 53 112 / 15%);
    border: solid 1px #7c3570;
    font-weight: 600;
    text-transform: uppercase;
    overflow: hidden;
  }



  .main-download-button-inner-top{
    border-radius: 3px;
    display: inline-block;
    background-color: #7c3570;
    background-size: 200% 100%;
    background-position: right bottom;
    cursor: pointer;
    text-align: center;
    font-size: 100%;
    line-height: 30px;
    color: white;
    transition: all .6s ease-out;
    padding: 10px 156px 10px 156px;
    box-shadow: 0 15px 30px 0 rgb(124 53 112 / 15%);
    border: solid 1px #7c3570;
    font-weight: 600;
    border-radius: 3px;
    text-transform: uppercase;
    overflow: hidden;
    position: absolute;
    margin: auto;
  }
    .main-download-button-inner-top:focus {
      outline: 0;
    }
    .main-download-button-inner-top:before {
      content: "";
      display: block;
      position: absolute;
      background: rgba(255, 255, 255, 0.5);
      width: 60px;
      height: 500px;
      left: 0;
      top: 0;
      opacity: 0.5;
      filter: blur(30px);
      transform: translateX(-130px) skewX(-15deg);
      overflow: hidden;
    }
    .main-download-button-inner-top:after {
      content: "";
      display: block;
      position: absolute;
      background: rgba(255, 255, 255, 0.4);
      width: 30px;
      height: 500px;
      left: 30px;
      top: 0;
      opacity: 0;
      filter: blur(5px);
      transform: translateX(-130px) skewX(-15deg);
      overflow: hidden;

    }
    .main-download-button-inner-top:hover {
      background: #9f4690;
      border-color: #9f4690;
      cursor: pointer;
    }
    .main-download-button-inner-top:hover:before {
      transform: translateX(380px) skewX(-15deg);
      opacity: 0.7;
      transition: 0.7s;
    }
    .main-download-button-inner-top:hover:after {
      transform: translateX(380px) skewX(-15deg);
      opacity: 1;
      transition: 0.7s;
    }
  .mast{
      background-image: url(../media/mast.png);
      background-size: 100% 100%;
  }

  
  .centered-max-width{
      margin:auto;
      max-width: 1200px;
      padding: 0 5%;
      position: relative;
  }

/*DECORATIONS AND RELATED */

.dots {
    box-sizing: border-box;
    position: absolute;
    background-image: url("../media/dots.svg");
    background-repeat: no-repeat;
    height: 150px;
    width: 150px;
    opacity: 60%;
    z-index: 0;
    left: -75px;
    top: -75px;
    overflow: visible;
}

.dots-right {
    box-sizing: border-box;
    position: absolute;
    background-image: url("../media/dots.svg");
    background-repeat: no-repeat;
    height: 150px;
    width: 150px;
    opacity: 60%;
    z-index: 0;
    bottom: -75px;
    right: -75px;
    overflow: visible;
}
.random-dots {
    box-sizing: border-box;
    position: absolute;
    background-image: url("../media/random-dots.svg");
    background-repeat: no-repeat;
    height: 150px;
    width: 150px;
    opacity: 60%;
    z-index: 0;
    left: -195px;
    top: -35px;
    overflow: visible;
}

.triangle {
    background-repeat: no-repeat;
    background-image: url("../media/triangle.svg");
    width: 45px;
    height: 45px;
    position: absolute;
    left: -90px;
    top: -30px;
}

.triangle2 {
    background-repeat: no-repeat;
    background-image: url("../media/triangle.svg");
    width: 45px;
    height: 45px;
    position: absolute;
    right: -150px;
    top: -200px;
}
.triangle-faq {
    background-repeat: no-repeat;
    background-image: url("../media/triangle.svg");
    width: 45px;
    height: 45px;
    position: absolute;
    left: -230px;
    top: 435px;
}

.zigzag-faq {
    background-repeat: no-repeat;
    background-image: url("../media/zigzag.svg");
    width: 450px;
    height: 45px;
    position: absolute;
    top: 0px;
    left: -371px;
}
.zigzag-up-right {
    background-repeat: no-repeat;
    background-image: url("../media/zigzag.svg");
    width: 350px;
    height: 45px;
    position: absolute;
    right: -330px;
    bottom: 90px;
}
.zig-zag-title{
    background-repeat: no-repeat;
    background-image: url(../media/zigzag.svg);
    width: 350px;
    height: 45px;
    position: absolute;
    right: -280px;
    top: 90px;
}

.circles {
    background-repeat: no-repeat;
    background-image: url("../media/circles.svg");
    width: 45px;
    height: 45px;
    position: absolute;
    left: -50px;
    top: 340px;
}
.circles-mid {
    background-repeat: no-repeat;
    background-image: url("../media/circles.svg");
    width: 35px;
    height: 35px;
    position: absolute;
    left: -140px;
    bottom: 120px;
}

.random-dots-edge {
    box-sizing: border-box;
    position: absolute;
    background-image: url("../media/random-dots.svg");
    background-repeat: no-repeat;
    height: 150px;
    width: 150px;
    opacity: 60%;
    right: -80px;
    top: -50px;
    overflow: visible;
    z-index: 5;
}

.random-dots-win {
    box-sizing: border-box;
    position: absolute;
    background-image: url("../media/cross.svg");
    background-repeat: no-repeat;
    height: 150px;
    width: 150px;
    opacity: 60%;
    left: -165px;
    top: -80px;
    z-index: 5;
}

.video-right, .video-left {
    position: relative;
    overflow: visible;
}

.cross-right {
    box-sizing: border-box;
    position: absolute;
    background-image: url("../media/cross.svg");
    background-repeat: no-repeat;
    transform: rotate(-5deg);
    height: 150px;
    width: 150px;
    opacity: 60%;
    overflow: visible;
    right: -170px;
    top: -20px;
    z-index: 5;
}
.cross-left {
    box-sizing: border-box;
    position: absolute;
    background-image: url("../media/cross.svg");
    background-repeat: no-repeat;
    height: 150px;
    width: 150px;
    opacity: 60%;
    overflow: visible;
    left: -90px;
    bottom: 0px;
    z-index: 5;
}
.cross-faq {
    position: absolute;
    background-image: url("../media/cross.svg");
    background-repeat: no-repeat;
    height: 150px;
    width: 150px;
    opacity: 60%;
    overflow: visible;
    z-index: 5;
    right: -400px;
    top: 145px;
}



  .centered-max-width-900{
    margin:auto;
    max-width: 900px;
    padding: 0 5%;
}
  .gallery{
    justify-content: center;
    display: flex;
    flex-wrap: wrap;
    position: relative;
  }
  .gallery-item-wrapper{
      display: flex;
      flex-basis: 33%;
      margin-bottom: 30px;
  }
  .gallery-item{
    background: #FFFFFF;
    border: 1px solid #EEEEEE;
    box-sizing: border-box;
    border-radius: 10px;
    text-align: center;
    padding: 20px 30px;
    line-height: 120%;
    margin: 0px 15px;
    transition-duration: 0.2s;
 
  }
  .gallery-item:hover{
    box-shadow: 0px 20px 55px rgba(21, 3, 18, 0.1);
  }

  .gallery-item-icon{
    background: linear-gradient(180deg, rgb(229,145,135, 0.25) 0%, rgb(255 250 250) 100%);
            /* border: 1px solid #000000; */
    box-sizing: border-box;
    box-shadow: 0px 2px 2px rgb(0 0 0 / 5%);
    border-radius: 50px;
    width: 90px;
    height: 90px;
    text-align: center;
    margin: 15px auto;
    border: 1px rgba(0,0,0,0.05) solid;
    justify-content: center;
    align-items: center;
  }
  .gallery-item-icon-inner{
      background-size: 100%;
      width: 100%;
      height: 100%;
      background-repeat: no-repeat;
      width: 45%;
      height: 45%;

  }
  .gallery-item-text{
    color: #150312;
    font-weight: 600;
  }

  .gallery-icon-web{
    background-image: url("../media/web.svg");
  }
  .gallery-icon-lock{
    background-image: url("../media/lock.svg");
  }
  .gallery-icon-click{
    background-image: url("../media/click.svg");
  }
  .gallery-icon-download{
    background-image: url("../media/download.svg");
  }
  .gallery-icon-backup{
    background-image: url("../media/backup.svg");
  }

/* detauls section */

.details-section{
    background-color: 	rgba(229,145,135, 0.07);
}
.details-video-wrapper{
    box-sizing: border-box;
    resize: horizontal;
    overflow: visible;
    position: relative;
    max-width: 93%;
    /*padding-bottom: 56.25%;*/
    background-color: #E59187;
    box-shadow: 0px 10px 15px rgba(0, 0, 0, 0.15);
}

.margin-right-40 {
    margin-right:40px;
}
.margin-left-40 {
    margin-left:40px;
}
.margin-left-60 {
    margin-left:60px;
}

h3{
    font-style: normal;
    font-weight: 900;
    font-size: 170%;
    line-height: 47px;
    color: #150312;
}
h4{
    font-family: Raleway;
    font-style: normal;
    font-weight: 500;
    font-size: 115%;
    line-height: 145%;
    color: #4E494D;
}
.p-right-2x > h3, .p-left-2x > h3 {
    margin-bottom: 15px;
}
h5{
    font-style: normal;
    font-weight: 900;
    font-size: 190%;
    line-height: 47px;
    color: #150312;
}

.text-center{
    text-align: center;
}
.text-left{
  text-align: left;
}
.system-list{
    justify-content: center;
    flex-wrap: wrap;
}
.system-item{
    background: #FFFFFF;
    box-shadow: 0px 20px 55px rgb(21 3 18 / 10%);
    border-radius: 10px;
    padding: 10px;
    height: 46px;
    background-repeat: no-repeat;
    margin: 0 10px;
    /* text-align: center; */
    background-position: 50%;
    background-size: 44%;


}
.system-item-wrapper{
    flex-basis: 20%;
    position: relative;

}

.system-windows{
    background-image: url("../media/windows-10.png");

}
.system-chrome{
    background-image: url("../media/chrome.png");

}
.system-firefox{
    background-image: url("../media/firefox.png");
    position: relative;
    z-index: 10;
}
.system-edge{
    background-image: url("../media/edge.png");
    position: relative;
    z-index: 10;
}

/* faq */
.orange-bg{
    background-color: 	rgba(229,145,135,0.07);
}
.faq-list{
    max-width: 800px;
    margin: auto;
    position: relative;
}
.faq-item-wrapper{

}
.faq-item{
    background: #FFFFFF;
    border: 1px solid #DDDDDD;
    box-sizing: border-box;
    border-radius: 5px;
    min-height: 60px;
    margin-bottom: 25px;
    justify-content: flex-start;
    font-weight: 600;
    line-height: 34px;
    font-size: 110%;
    color: #80777e;
    transition-duration: 0.2s;
    cursor: pointer;
    flex-shrink: 0;
}
.faq-item:hover{
  color: #000;
}
.faq-dot{
    background-color: #E59187;
    border-radius: 10px;
    height: 10px;
    width: 10px;
    margin:0 20px;
    flex-shrink: 0;
}
.faq-title{
  text-align: left;
  line-height: 130%;
    
}
.faq-toggle{
    margin-left: auto;
    padding-right: 20px;
    padding-left: 15px;

    
}
.faq-toggle > svg{
    cursor: pointer;
    transition-duration: 0.4s;
    transform-origin: center;
}
.faq-text{
    text-align: left;
    padding: 0 50px 0px;
    color: #150312;
    line-height: 150%;
    max-height: 0;
    overflow: hidden;
    transition-duration: 0.25s;
}
/* footer first part */
.social-item-wrapper{
  height: 40px;
  width: 40px;
  border-radius: 20px;
  background-color: #E59187;
  cursor: pointer;
}
/* footer */
footer{
  font-family: Raleway;
  font-style: normal;
  font-weight: 500;
  font-size: 85%;
  line-height: 27px;
  color: #FFFFFF;
  background: #4E494D;
  padding: 10px 0;
}
.link-items{

}
.link-item a{
  text-decoration: none;
  color: #FFF;
}

/* how to */
p{
  line-height: 160%;
  color: #4E494D;
  font-size: 100%;
}
.faq-h2{
  font-weight: 800;
  font-size: 120%;
  line-height: 160%;
  color: #7C356F;
}

.faq-h3{
    font-weight: 600;
    font-size: 110%;
    line-height: 140%;
    color: #7C356F;
}

.step-section{
  padding: 45px 90px;
}
.small{
  font-weight: normal;
  font-size: 100%;
  line-height: 150%;
  color: #4E494D;
}
.issue-item{
  margin: 30px 0px;
}
.issue-dot{
  background-color:#DF8C86;
  height: 12px;
  width: 12px;
  border-radius: 10px;
  margin-right: 20px;
  flex-shrink: 0;
}
.issue-text{
  line-height: 140%;

}


/* contact */

.top-image{
  background-image: url(../media/illustration-contact-us-page.svg);
  height: 500px;
  background-size: contain;
  background-repeat: no-repeat;
}

.contact-bg{
  background-color: #FFE0D9;
}

input, textarea{
  background: #FFFFFF;
  border-radius: 5px;
  border: 0;
  height: 40px;
  width:100%;
  padding:10px;
  font-size: 110%;
}
textarea{
  height: 100px;
}
.max-width-500{
  max-width: 500px;
}
textarea, input{
  font-family: Raleway;
font-style: normal;
font-weight: 600;
font-size: 100%;
line-height: 19px;
/* identical to box height */


color: #5e5d5d;
}
::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: #afafb1;
  opacity: 1; /* Firefox */
}

.max-width-1880{
  max-width: 1880px;
}
.margin-auto{
  margin:auto;
}

strong {
    font-weight: bold;
}

ul {
    list-style-type: disc;
}
ul > li > p {
    line-height: 200%;
}
ul > li {
    margin-top: 10px;
    margin-bottom: 10px;
    margin-left: 20px;
}

.privacy p {
    line-height: 200%;
    margin-bottom: 10px;
}

.privacy h4 {
    font-weight: 600;
    font-size: 100%;
    line-height: 200%;
    color: #000000;
    margin-top: 20px;
    margin-bottom: 10px;
}


/* get-video*/


#loadingGraphics, #downloadableContent, #error-message{
    transition-duration: 0.3s;
}
#downloadableContent, #error-message{
    display: none;
    opacity: 0;
}
.preparing-video{
    font-size:135%;
    font-weight: 500;
}

.lds-dual-ring,
.lds-dual-ring:after {
    box-sizing: border-box;
}
.lds-dual-ring {
    display: inline-block;
    width: 80px;
    height: 80px;
}
.lds-dual-ring:after {
    content: " ";
    display: block;
    width: 64px;
    height: 64px;
    margin: 8px;
    border-radius: 50%;
    border: 6.4px solid #7c3570;
    border-color: #7c3570 transparent #7c3570 transparent;
    animation: lds-dual-ring 1.2s linear infinite;
}
@keyframes lds-dual-ring {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}




.download-section{
    min-height: 172px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 10px #0000001c;
    border: 1px solid #474ae62b;
    margin-top: 70px;
    max-width: 1000px;
    margin-right: auto;
    margin-left: auto;
}
.poster{
    max-width: 400px;
    min-width: 200px;
    min-height: 150px;
    background-image: url(/media/poster.jpg);
    background-repeat: no-repeat;
    background-size: contain;
    border-radius: 8px;

}
.title{
    font-size: 140%;
    font-weight: 500;
    margin-top: 10px;
    align-items: center;
}

.download-item{
    border-radius: 5px;
    border: 1px solid #477dac5c;
    padding: 20px;
    background: linear-gradient(180deg, rgb(229, 145, 135, 0.25) 0%, rgb(255 250 250) 100%);
}

.audio-video-button, .copyurl-button{
    width: 320px;
    padding: 0px 19px 0px 19px;
}
.preview-img{
    max-width: 320px;
    border-radius: inherit;
    max-height: 450px;
}
#download-title{
    display: none;
}
.download-description{
    display: flex;
    align-items: center;
    gap: 20px;
    font-weight: 500;
    margin-left: 10px;
}
.download-icon{
    background-repeat: no-repeat;
    height: 40px;
    width: 40px;
    background-size: contain;
}
.download-text{
    font-weight: 600;
}
.tag{
    background-color: #ffffff;
    padding: 3px 5px;
    border-radius: 4px;
    color: #3b3b3b;
    border: 1px solid #ddd;
}

.video-icon{
    background-image: url(/media/video-icon.svg);
}
.sound-icon{
    background-image: url(/media/sound.svg);
}
.share-icon{
    background-image: url(/media/share.svg);
}

#download-preview{
    padding-left: 20px;
    padding-right: 20px;
    border-radius: 5px;
}




/* m's edits*/

.social-label {
    font-family: Tomorrow;
    text-transform: uppercase;
    font-size: 18px;
    letter-spacing: 3px;
    font-weight: 400;
}

.main-heading {
    max-width: 450px;
}
.main-subheading {
    max-width: 400px;
}

.char-spacing-1 {
    letter-spacing: 1px;
}

.max-w-455 {
    max-width: 455px;
}

.superscript {
    font-size: 35%;
    vertical-align: super;
}

.negative-vertical-m-50 {
    margin-top: -50px;
}

.extra-spacing {
    line-height: 160%;
}



/* media queries */

@media only screen and (max-width: 450px) {
    .top-video {
        width: 320px;
        height: 180px;
    }
}

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

}

@media only screen and (min-width: 800px)  {
  #body-wrapper{
    font-size: 100%;
  }
  .nav-ul li{
    margin: 0px 10px;
  }

}
@media only screen and (min-width: 1260px)  {
  #body-wrapper{
    font-size: 100%;
  }
  .nav-ul li{
    margin: 0px 10px;
  }
  .centered-max-width{
    padding:0;
  }

}



@media only screen and (min-width: 1700px) {
  .v-spacer-width-dependant{
    /* height:300px; */
  }
  .top-image{
    height: 700px;
  }

}
@media only screen and (max-width: 1260px) {
    h1 {
        font-size: 190%;
    }
    .main-subheading {
        font-size: 100%;
    }
    .social-label {
        display: none;
    }
    .main-download-button-inner-top {
        padding: 10px 60px 10px 60px;
    }
}


@media only screen and (max-width: 1080px) {
  .top-image{
    display: none;
  }
  .contact-form{
    flex-basis: 100%;
    justify-content: center;
    text-align: center;
    /* margin: auto; */
    display: flex;
    margin-left: 5%;
    margin-right: 5%;
  }
  .top-video {
      width: 512px;
      height: 288px;
  }
}

@media only screen and (max-width: 945px) {
    .top-video {
        width: 448px;
        height: 252px;
    }
}
@media only screen and (max-width: 870px) {
    .top-video {
        width: 384px;
        height: 216px;
    }
}


@media only screen and (max-width: 830px) {
  .top-video-wrapper {
        display: none;
    }
    .main-download-button-inner-top {
        left: auto;
        right: auto;
    }
    #body-wrapper{
    font-size: 90%;
  }
  .half{
    flex-basis: 100%;
  }
  .details-video-wrapper{
    margin-right: 0;

  }
  .mast-half{
    text-align: left;
  }
  .main-download-button {
      text-align: left;
  }

  .mast-half .p-right-2x{
    padding-right: 0;
  }
  .p-top-3x {
    padding-top: 60px;
  }
  .mast-half:first-child{
    margin-bottom: 90px;
  }
  .gallery-item-wrapper {
    flex-basis: 90%;
  }
  .system-item-wrapper{
    flex-basis: 70%;
    margin-bottom: 20px;
  }
  .system-item{
    background-size: 29%;
  }
  .faq-list{
    max-width: 90%;
  }
  .faq-item{
    padding: 10px 0;
  }

  .action-items{
    display: none;
  }
  .nav-ul li{
    margin: 0px 10px;
  }
  .nav{
    justify-content: flex-end;
  }

  .p-left-2x{
    padding-left: 0;
  }
  .m-left-1x{
    margin-left: 0;
  }
  .details{
    text-align: center;
    margin-top: 30px;
  }
  .p-right-2x{
    padding-right: 0;
  }
  .details-2{
    margin-bottom: 30px;
  }
  .v-spacer-3x{
    height: 60px;
  }
  .p-bottom-3x{
    padding-bottom: 60px;
  }
  .details-section{
    margin-bottom: 0;
    padding-bottom: 0 !important;
  }

  .details-2{
    order: 1;
  }

}

@media only screen and (max-width: 730px){
    .download-item{
        flex-direction: column;
        gap: 20px;
    }
}


@media only screen and (max-width: 630px){
  .link-items{

  }
  .header{
    flex-wrap: wrap;
  }
  .footer-item{
    justify-content: center;
    width: 100%;
  }
  .faq-title{
    font-size: 95%;
  }
  .step-section{
    padding: 45px 5%;
  }
  .v-spacer-2x {
    height: 30px;
  }
    .centered-max-width{
        padding: 0 1%;
    }

    .video-item{
        margin-left: 20px;
        margin-right: 20px;

    }
}




@media only screen and (min-width: 630px) and (max-width:1000px) {
  .gallery-item-wrapper {
    flex-basis: 50%;
  }
}




@media only screen and (max-width: 500px){
  .logo-wrapper, nav{
    flex-basis: 100%;
    justify-content: center;
    margin-bottom: 15px;
  }
  .header{
    flex-wrap: wrap;
  }
  .nav {
    justify-content: center;
  }
  .link-items{
    flex-basis: 100%;
    justify-content: center;
  }
  h1{
    margin-bottom: 24px;
  }
  .main-download-button-inner-top{
    padding: 8px 19px 8px 19px;
  }
  .faq-dot{
    margin: 0 10px;
  }
  .faq-title{
    padding-right: 10px;
    font-size: 95%;
  }
  .faq-toggle{
    display: none;
  }

}


@media only screen and (max-width: 475px){
    .top-video {
        width: 320px;
        height: 180px;
    }
    .audio-video-button, .copyurl-button{
        width: auto;
    }

}


@media only screen and (max-width: 400px){
    #body-wrapper{
        font-size: 80%;
    }
    .top-video {
        width: 256px;
        height: 144px;
    }
}








