.glow-on-hover {
  width: 220px;
  height: 50px;
  border: none;
  outline: none;
  color: #fff;
  background: #111;
  cursor: pointer;
  position: relative;
  z-index: 0;
  border-radius: 10px;
  margin-top: 40px;
  font-size: 12px;
}

.glow-on-hover:before {
  content: '';
  background: linear-gradient(45deg, #ff0000, #ff7300, #fffb00, #48ff00, #00ffd5, #002bff, #7a00ff, #ff00c8, #ff0000);
  position: absolute;
  top: -2px;
  left:-2px;
  background-size: 400%;
  z-index: -1;
  filter: blur(5px);
  width: calc(100% + 4px);
  height: calc(100% + 4px);
  animation: glowing 20s linear infinite;
  opacity: 0;
  transition: opacity .3s ease-in-out;
  border-radius: 10px;
}

.glow-on-hover:active {
  color: #000
}

.glow-on-hover:active:after {
  background: transparent;
}

.glow-on-hover:hover:before {
  opacity: 1;
}

.glow-on-hover:after {
  z-index: -1;
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: #111;
  left: 0;
  top: 0;
  border-radius: 10px;
}

@keyframes glowing {
  0% { background-position: 0 0; }
  50% { background-position: 400% 0; }
  100% { background-position: 0 0; }
}
/***** rest of the css *****/
.raleway-body {
  font-family: "Raleway", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  margin: 0;
}

.homepage {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  height: 100%;
  background-color: #FFFFFF;
  overflow-x: hidden;
}

.topbar {
  display: flex;
  /* background-color: transparent; */
  background-color: #FFFFFF;
  width: 100%;
  height: 80px;
  align-items: center;
  justify-content: space-between;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 2;
  opacity: 0.7;
}

.topbar:hover {
  opacity: 1;
}

.logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.logo-image {
  width: 260px;
  height: 60px;
}

.logo span {
  width: 270px;
  font-size: 14px;
  padding-left: 30px;
}

.sections {
  margin-right: 100px;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.sections a {
  position: relative;
  display: inline-block;
  padding: 10px 20px;
  text-decoration: none;
  color: black;
  cursor: pointer;
  margin-right: 20px;
}

.sections a::before {
  top: 0;
  left: 0;
  content: "";
  position: absolute;
  width: 0;
  height: 1px;
  background: black;
  box-sizing: border-box;
  transition: all 0.3s ease;
}

.sections a::after {
  bottom: 0;
  left: 0;
  content: "";
  position: absolute;
  width: 0;
  height: 1px;
  background: black;
  box-sizing: border-box;
  transition: all 0.3s ease;
}

.sections a:hover::before, a:hover::after {
  width: 100%;
}

.marketing {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
}

.demo-bg {
  opacity: 0.5;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  /* height: auto; */
  height: 100vh;
}

.marketing-content {
  position: relative;
  display: flex;
  align-items: center;
  flex-direction: column;
  /* height: 670px; */
  margin-top: 50px;
  height: 100vh;
  width: 100%;
  /* padding: 20px 20px 20px 50px; */
}

.marketing-span-headline {
  margin-top: 180px;
  font-size: 40px;
  font-weight: 600;
  font-style: normal;
  margin-bottom: 50px;
  font-family: "Jost", sans-serif;
  font-optical-sizing: auto;
}

.marketing-span {
  font-size: 18px;
  font-weight: 500;
}

.down-arrow {
  position: absolute;
  bottom: 2%;
  left: 50%;
  transform: translateX(-50%); 
  z-index: 1000;
  animation: bounce-horizontal 1s infinite;
  cursor: pointer;
  font-size: 30px;
}

.homepage-body {
  display: flex;
  flex-direction: column;
  width: 100%;
  background-color: #FFFFFF;
  margin: 200px 20px 20px 20px;
}

.homepage-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  padding: 10px;
}

.section-title {
  font-size: 26px;
  margin-bottom: 20px;
  font-weight: 600;
  font-style: normal;
}

.section-sub-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}

.section-description {
  display: flex;
  flex-direction: column;
  width: 45%;
  padding: 10px;
}

.one-section {
  display: flex;
  width: 90%;
  justify-content: space-between;
  margin-bottom: 150px;
}

.image-div {
  width: 600px;
  height: 300px;
}

.image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.footbar {
  display: flex;
  align-items: center;
  position: relative;
  width: 100%;
  height: 180px;
  background-color: #000000ca;
  font-size: 14px;
}

.bizsafe {
  position: absolute;
  color: white;
  bottom: 0;
  right: 0;
  margin: 20px 60px 60px 20px;
}

.bizsafe-size {
  width: 140px;
  height: 70px;
}

.copyright {
  position: absolute;
  color: white;
  bottom: 0;
  right: 0;
  margin: 20px;
}

.address {
  display: flex;
  padding: 5px;
  flex-direction: column;
  position: absolute;
  bottom: 0;
  left: 0;
  margin: 10px 10px 20px 20px;
  color: white;
}

.email {
  color: gold;
  text-decoration: underline;
  cursor: pointer;
}

.email:hover {
  color: rgba(255, 217, 0, 0.847);
}

/* animation */
@keyframes bounce-horizontal {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* screen responsiveness */
@media only screen and (max-width: 600px) {
  .topbar {
    height: 60px;
  }

  .logo {
    display: flex;
    align-items: center; 
    justify-content: center; 
  }

  .logo img{
    width: 120px;
    height: 30px;
  }

  .logo span {
    width: 120px;
    font-size: 8px;
    text-align: center;
    display: flex;
    padding-left: 10px;
  }

  .sections {
    margin-right: 10px;
  }

  .sections a {
    padding: 0px;
    font-size: 8px;
  }

  .one-section {
    flex-direction: column;
  }

  .section-title {
    font-size: 14px;
  }

  .section-sub-title {
    font-size: 12px;
  }

  .section-description {
    max-width: 100%;
    width: 100%;
    font-size: 10px;
  }

  .image-div {
    max-width: 100%;
    width: 100%;
  }

  .homepage-body {
    margin: 100px 5px 20px 5px;
  }

  .homepage-section {
    padding: 0px;
  }

  .one-section {
    margin-bottom: 50px;
  }

  .footbar {
    display: flex;
    flex-direction: column;
  }

  .address {
    padding: 0;
    margin: 5px;
    width: 100%;
    font-size: 9px;
    top: 0;
    left: 0;
  }

  .copyright {
    font-size: 9px;
    bottom: 0;
    left: 0;
    margin: 5px;
    padding: 0;
  }

  .bizsafe {
    position: absolute;
    color: white;
    bottom: 0;
    right: 0;
    margin: 20px 10px 40px 20px;
  }
  
  .bizsafe-size {
    width: 100px;
    height: 50px;
  }
  
}

@media only screen and (min-width: 1900px) {
  .marketing {
    overflow: hidden;
    position: relative;
    width: 100%;
    height: 700px;
    background-color: rgba(113, 108, 108, 0.857);
  }
  
  .demo-bg {
    opacity: 0.5;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 700px;
  }
  
  /* .marketing-content {
    position: relative;
    display: flex;
    justify-content: flex-start;
    flex-direction: column;
    height: 700px;
    width: 750px;
    max-width: 750px;
  } */
  
  .marketing-span-headline {
    margin-top: 140px;
    font-size: 50px;
    font-weight: 600;
    font-style: normal;
    margin-bottom: 30px;
  }
  
  .marketing-span {
    font-size: 26px;
    font-weight: 400;
    display: flex;
    text-align: left;
    margin-bottom: 10px;
  }

  .down-arrow {
    bottom: 6%; /* Adjust vertical position as needed */
    font-size: 30px;
  }

  .btn {
    font-size: 1em;
    line-height: 2em;
    letter-spacing: 0.04em;
    display: inline-block;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
    margin-top: 40px;
  }  

  .one-section {
    margin-bottom: 50px;
  }

  .section-title {
    font-size: 33px;
  }

  .section-sub-title {
    font-size: 26px;
  }

  .section-description {
    font-size: 20px;
  }

  .footbar {
    height: 260px;
  }

  .address {
    font-size: 20px;
  }

  .copyright {
    font-size: 18px;
  }

  .bizsafe {
    position: absolute;
    color: white;
    bottom: 0;
    right: 0;
    margin: 20px 30px 80px 20px;
  }
  
  .bizsafe-size {
    width: 200px;
    height: 100px;
  }


}

@media only screen and (min-width: 1000px) and (max-width: 1300px) {

  .sections {
    margin-right: 20px;
  }

  .sections a {
    padding: 0px;
    font-size: 14px;
    margin-right: 50px;
  }

  .marketing {
    overflow: hidden;
    position: relative;
    width: 100%;
    height: 500px;
    background-color: rgba(113, 108, 108, 0.857);
  }
  
  .demo-bg {
    opacity: 0.5;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 500px;
  }

  .down-arrow {
    bottom: 8%;
    font-size: 22px;
  }
  
  /* .marketing-content {
    position: relative;
    display: flex;
    justify-content: flex-start;
    flex-direction: column;
    height: 680px;
    width: 450;
    max-width: 450px;
  } */
  
  .marketing-span-headline {
    margin-top: 80px;
    font-size: 30px;
    font-weight: 600;
    font-style: normal;
    margin-bottom: 30px;
  }
  
  .marketing-span {
    font-size: 18px;
    font-weight: 400;
    display: flex;
    text-align: left;
    margin-bottom: 10px;
  }

  /* .down-arrow {
    position: absolute;
    margin-left: 530px;
    margin-bottom: 30px;
    font-size: 22px;
    color: #ffffff;
    animation: bounce-horizontal 1s infinite;
  } */

  .btn {
    font-size: 16px;
  }

  .one-section {
    margin-bottom: 50px;
  }

  .section-title {
    font-size: 22px;
  }

  .section-sub-title {
    font-size: 18px;
  }

  .section-description {
    max-width: 100%;
    width: 100%;
    font-size: 15px;
  }

}

@media only screen and (min-width: 1301px) and (max-width: 1380px) {

  .sections {
    margin-right: 50px;
  }

  .sections a {
    padding: 0px;
    font-size: 14px;
    margin-right: 50px;
  }

  .marketing {
    overflow: hidden;
    position: relative;
    width: 100%;
    height: 950px;
    background-color: rgba(113, 108, 108, 0.857);
  }
  
  .demo-bg {
    opacity: 0.5;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 950px;
  }
  
  /* .marketing-content {
    position: relative;
    display: flex;
    justify-content: flex-start;
    flex-direction: column;
    height: 950px;
    width: 600;
    max-width: 600px;
  } */
  
  .marketing-span-headline {
    margin-top: 160px;
    font-size: 42px;
    font-weight: 600;
    font-style: normal;
    margin-bottom: 30px;
  }
  
  .marketing-span {
    font-size: 24px;
    font-weight: 400;
    display: flex;
    text-align: left;
    margin-bottom: 10px;
  }

  .down-arrow {
    bottom: 5%; /* Adjust vertical position as needed */
    font-size: 30px;
  }

  .btn {
    font-size: 16px;
  }

  .one-section {
    margin-bottom: 50px;
  }

  .section-title {
    font-size: 26px;
  }

  .section-sub-title {
    font-size: 20px;
  }

  .section-description {
    /* max-width: 100%;
    width: 100%; */
    font-size: 16px;
  }

}

@media only screen and (min-width: 1301px) and (max-width: 1380px) and (max-height: 800px) {

  .sections {
    margin-right: 50px;
  }

  .sections a {
    padding: 0px;
    font-size: 14px;
    margin-right: 50px;
  }

  .marketing {
    overflow: hidden;
    position: relative;
    width: 100%;
    height: 670px;
    background-color: rgba(113, 108, 108, 0.857);
  }
  
  .demo-bg {
    opacity: 0.5;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 670px;
  }
  
  /* .marketing-content {
    position: relative;
    display: flex;
    justify-content: flex-start;
    flex-direction: column;
    height: 670px;
    width: 600;
    max-width: 600px;
  } */
  
  .marketing-span-headline {
    margin-top: 140px;
    font-size: 42px;
    font-weight: 600;
    font-style: normal;
    margin-bottom: 30px;
  }
  
  .marketing-span {
    font-size: 24px;
    font-weight: 400;
    display: flex;
    text-align: left;
    margin-bottom: 10px;
  }

  .down-arrow {
    bottom: 5%; /* Adjust vertical position as needed */
    font-size: 30px;
  }

  .btn {
    font-size: 16px;
  }

  .one-section {
    margin-bottom: 50px;
  }

  .section-title {
    font-size: 26px;
  }

  .section-sub-title {
    font-size: 20px;
  }

  .section-description {
    /* max-width: 100%;
    width: 100%; */
    font-size: 16px;
  }

}

@media only screen and (min-width: 300px) and (max-width: 360px) {

  .sections {
    margin-right: 5px;
  }

  .sections a {
    margin-right: 10px;
    font-size: 8px;
  }

  .logo img {
    width: 120px;
    height: 30px;
  }

  .logo span {
    width: 120px;
    font-size: 8px;
    padding-left: 10px;
  }

  .marketing {
    overflow: hidden;
    position: relative;
    width: 100%;
    height: 580px;
    background-color: rgba(113, 108, 108, 0.857);
  }
  
  .demo-bg {
    opacity: 0.5;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 580px;
  }

  .marketing-span-headline {
    margin-top: 180px;
    font-size: 18px;
    font-weight: 600;
    font-style: normal;
    margin-bottom: 30px;
    margin-left: 20px;
  }
  
  .marketing-span {
    font-size: 12px;
    font-weight: 400;
    display: flex;
    text-align: left;
  }

  .down-arrow {
    bottom: 5%; /* Adjust vertical position as needed */
    font-size: 20px;
  }
  
  .btn {
    font-size: 12px;
  }

  .footbar {
    display: flex;
    flex-direction: column;
  }

  .address {
    padding: 0;
    margin: 5px;
    width: 100%;
    font-size: 11px;
    top: 0;
    left: 0;
  }

  .copyright {
    font-size: 11px;
    bottom: 0;
    left: 0;
    margin: 5px;
    padding: 0;
  }

  .bizsafe {
    position: absolute;
    color: white;
    bottom: 0;
    right: 0;
    margin: 20px 10px 40px 20px;
  }
  
  .bizsafe-size {
    width: 100px;
    height: 50px;
  }
}

@media only screen and (min-width: 361px) and (max-width: 410px) {

  .sections {
    margin-right: 5px;
  }

  .sections a {
    margin-right: 15px;
    font-size: 10px;
  }

  .logo img {
    width: 120px;
    height: 30px;
  }

  .logo span {
    width: 120px;
    font-size: 8px;
    padding-left: 10px;
  }

  .marketing {
    overflow: hidden;
    position: relative;
    width: 100%;
    height: 680px;
    background-color: rgba(113, 108, 108, 0.857);
  }
  
  .demo-bg {
    opacity: 0.5;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 680px;
  }
  
  .marketing-span-headline {
    margin-top: 220px;
    font-size: 20px;
    font-weight: 600;
    font-style: normal;
    margin-bottom: 20px;
    margin-left: 30px;
  }
  
  .marketing-span {
    font-size: 14px;
    font-weight: 400;
    display: flex;
    text-align: left;
  }

  .down-arrow {
    bottom: 5%; /* Adjust vertical position as needed */
    font-size: 20px;
  }

  .glow-on-hover {
    width: 200px;
    height: 40px;
    border: none;
    outline: none;
    color: #fff;
    background: #111;
    cursor: pointer;
    position: relative;
    z-index: 0;
    border-radius: 10px;
    margin-top: 30px;
    font-size: 12px;
  }

  .section-title {
    font-size: 18px;
  }

  .section-sub-title {
    font-size: 14px;
  }

  .section-description {
    /* width: 320px;
    max-width: 320px; */
    width: 90%;
    max-width: 90%;
    padding: 10px;
    font-size: 12px;
  }

  .footbar {
    display: flex;
    flex-direction: column;
  }

  .address {
    padding: 0;
    margin: 5px;
    width: 100%;
    font-size: 11px;
    top: 0;
    left: 0;
  }

  .copyright {
    font-size: 11px;
    bottom: 0;
    left: 0;
    margin: 5px;
    padding: 0;
  }

  .bizsafe {
    position: absolute;
    color: white;
    bottom: 0;
    right: 0;
    margin: 20px 10px 40px 20px;
  }
  
  .bizsafe-size {
    width: 100px;
    height: 50px;
  }
}

@media only screen and (min-width: 411px) and (max-width: 550px) {

  .sections {
    margin-right: 5px;
  }

  .sections a {
    margin-right: 15px;
    font-size: 10px;
  }

  .logo img {
    width: 120px;
    height: 30px;
  }

  .logo span {
    width: 120px;
    font-size: 8px;
    padding-left: 10px;
  }

  .marketing {
    overflow: hidden;
    position: relative;
    width: 100%;
    height: 740px;
    background-color: rgba(113, 108, 108, 0.857);
  }
  
  .demo-bg {
    opacity: 0.5;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 740px;
  }
  
  /* .marketing-content {
    position: relative;
    display: flex;
    justify-content: flex-start;
    flex-direction: column;
    height: 620px;
    width: 300px;
    max-width: 300px;
  } */
  
  .marketing-span-headline {
    margin-top: 250px;
    font-size: 22px;
    font-weight: 600;
    font-style: normal;
    margin-bottom: 20px;
    margin-left: 30px;
  }
  
  .marketing-span {
    font-size: 14px;
    font-weight: 400;
    display: flex;
    text-align: left;
  }

  .down-arrow {
    bottom: 5%; /* Adjust vertical position as needed */
    font-size: 20px;
  }

  .glow-on-hover {
    width: 200px;
    height: 40px;
    border: none;
    outline: none;
    color: #fff;
    background: #111;
    cursor: pointer;
    position: relative;
    z-index: 0;
    border-radius: 10px;
    margin-top: 30px;
    font-size: 12px;
  }

  .section-title {
    font-size: 18px;
  }

  .section-sub-title {
    font-size: 14px;
  }

  .section-description {
    /* width: 320px;
    max-width: 320px; */
    width: 90%;
    max-width: 90%;
    padding: 10px;
    font-size: 12px;
  }

  .footbar {
    display: flex;
    flex-direction: column;
  }

  .address {
    padding: 0;
    margin: 5px;
    width: 100%;
    font-size: 11px;
    top: 0;
    left: 0;
  }

  .copyright {
    font-size: 11px;
    bottom: 0;
    left: 0;
    margin: 5px;
    padding: 0;
  }

  .bizsafe {
    position: absolute;
    color: white;
    bottom: 0;
    right: 0;
    margin: 20px 10px 40px 20px;
  }
  
  .bizsafe-size {
    width: 100px;
    height: 50px;
  }
}

@media only screen and (min-width: 551px) and (max-width: 609px) {

  .topbar {
    height: 70px;
  }

  .sections {
    margin-right: 20px;
  }

  .sections a {
    margin-right: 20px;
    font-size: 12px;
  }

  .logo img {
    width: 160px;
    height: 40px;
  }

  .logo span {
    width: 160px;
    font-size: 11px;
    padding-left: 12px;
  }

  .down-arrow {
    font-size: 14px;
    bottom: 7%;
  }

  .marketing {
    overflow: hidden;
    position: relative;
    width: 100%;
    height: 340px;
    background-color: rgba(113, 108, 108, 0.857);
  }
  
  .demo-bg {
    opacity: 0.5;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 340px;
  }
  
  /* .marketing-content {
    position: relative;
    display: flex;
    justify-content: flex-start;
    flex-direction: column;
    height: 280px;
    width: 300;
    max-width: 300px;
  } */
  
  .marketing-span-headline {
    margin-top: 60px;
    font-size: 16px;
    font-weight: 600;
    font-style: normal;
    margin-bottom: 20px;
  }
  
  .marketing-span {
    font-size: 12px;
    font-weight: 400;
    display: flex;
    text-align: left;
    margin-bottom: 5px;
  }

  .glow-on-hover {
    width: 200px;
    height: 40px;
    border: none;
    outline: none;
    color: #fff;
    background: #111;
    cursor: pointer;
    position: relative;
    z-index: 0;
    border-radius: 10px;
    margin-top: 30px;
    font-size: 12px;
  }

  .footbar {
    display: flex;
    flex-direction: column;
  }

  .address {
    padding: 0;
    margin: 5px;
    width: 100%;
    font-size: 11px;
    top: 0;
    left: 0;
  }

  .copyright {
    font-size: 11px;
    bottom: 0;
    left: 0;
    margin: 5px;
    padding: 0;
  }

  .bizsafe {
    position: absolute;
    color: white;
    bottom: 0;
    right: 0;
    margin: 20px 10px 40px 20px;
  }
  
  .bizsafe-size {
    width: 100px;
    height: 50px;
  }

  .homepage-body {
    margin: 100px 0px 20px 0px;
  }

  .homepage-section {
    padding: 0px;
  }

  .one-section {
    margin-bottom: 50px;
  }

  .section-title {
    font-size: 15px;
  }

  .section-sub-title {
    font-size: 13px;
  }

  .section-description {
    max-width: 100%;
    width: 100%;
    font-size: 11px;
  }
}

@media only screen and (min-width: 610px) and (max-width: 700px) {

  .topbar {
    height: 70px;
  }

  .sections {
    margin-right: 20px;
  }

  .sections a {
    margin-right: 20px;
    font-size: 12px;
  }

  .logo img {
    width: 160px;
    height: 40px;
  }

  .logo span {
    width: 160px;
    font-size: 11px;
    padding-left: 12px;
  }

  .down-arrow {
    font-size: 11px;
    bottom: 2%;
  }

  .marketing {
    overflow: hidden;
    position: relative;
    width: 100%;
    height: 380px;
    background-color: rgba(113, 108, 108, 0.857);
  }
  
  .demo-bg {
    opacity: 0.5;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 380px;
  }

  .marketing-span-headline {
    margin-top: 80px;
    font-size: 18px;
    font-weight: 600;
    font-style: normal;
    margin-bottom: 20px;
  }
  
  .marketing-span {
    font-size: 12px;
    font-weight: 400;
    display: flex;
    text-align: left;
    margin-bottom: 5px;
  }

  .down-arrow {
    bottom: 5%; /* Adjust vertical position as needed */
    font-size: 20px;
  }

  .btn {
    font-size: 10px;
  }

  .footbar {
    display: flex;
    flex-direction: column;
  }

  .address {
    padding: 0;
    margin: 5px;
    width: 100%;
    font-size: 11px;
    top: 0;
    left: 0;
  }

  .copyright {
    font-size: 11px;
    bottom: 0;
    left: 0;
    margin: 5px;
    padding: 0;
  }

  .bizsafe {
    position: absolute;
    color: white;
    bottom: 0;
    right: 0;
    margin: 20px 10px 40px 20px;
  }
  
  .bizsafe-size {
    width: 100px;
    height: 50px;
  }

  .homepage-body {
    margin: 100px 0px 20px 0px;
  }

  .homepage-section {
    padding: 0px;
  }

  .one-section {
    margin-bottom: 50px;
  }

  .section-title {
    font-size: 15px;
  }

  .section-sub-title {
    font-size: 13px;
  }

  .section-description {
    max-width: 100%;
    width: 100%;
    font-size: 11px;
  }
}

@media only screen and (min-width: 701px) and (max-width: 790px) {

  .topbar {
    height: 70px;
  }

  .sections {
    margin-right: 20px;
  }

  .sections a {
    margin-right: 20px;
    font-size: 12px;
  }

  .logo img {
    width: 160px;
    height: 40px;
  }

  .logo span {
    width: 160px;
    font-size: 11px;
    padding-left: 12px;
  }

  .marketing {
    overflow: hidden;
    position: relative;
    width: 100%;
    height: 430px;
    background-color: rgba(113, 108, 108, 0.857);
  }
  
  .demo-bg {
    opacity: 0.5;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 430px;
  }
  
  /* .marketing-content {
    position: relative;
    display: flex;
    justify-content: flex-start;
    flex-direction: column;
    height: 350px;
    width: 300;
    max-width: 300px;
  } */
  
  .marketing-span-headline {
    margin-top: 80px;
    font-size: 18px;
    font-weight: 600;
    font-style: normal;
    margin-bottom: 20px;
  }
  
  .marketing-span {
    font-size: 14px;
    font-weight: 400;
    display: flex;
    text-align: left;
    margin-bottom: 5px;
  }

  .down-arrow {
    bottom: 5%; /* Adjust vertical position as needed */
    font-size: 20px;
  }

  .btn {
    font-size: 12px;
  }

  .footbar {
    display: flex;
    flex-direction: column;
  }

  .address {
    padding: 0;
    margin: 5px;
    width: 100%;
    font-size: 11px;
    top: 0;
    left: 0;
  }

  .copyright {
    font-size: 11px;
    bottom: 0;
    left: 0;
    margin: 5px;
    padding: 0;
  }

  .bizsafe {
    position: absolute;
    color: white;
    bottom: 0;
    right: 0;
    margin: 20px 10px 40px 20px;
  }
  
  .bizsafe-size {
    width: 100px;
    height: 50px;
  }

  .homepage-body {
    margin: 100px 0px 20px 0px;
  }

  .homepage-section {
    padding: 0px;
  }

  .one-section {
    margin-bottom: 50px;
  }

  .section-title {
    font-size: 15px;
  }

  .section-sub-title {
    font-size: 13px;
  }

  .section-description {
    max-width: 100%;
    width: 100%;
    font-size: 11px;
  }
}

@media only screen and (min-width: 791px) and (max-width: 809px) {

  .topbar {
    height: 70px;
  }

  .sections {
    margin-right: 20px;
  }

  .sections a {
    margin-right: 10px;
    font-size: 12px;
  }

  .logo img {
    width: 160px;
    height: 40px;
  }

  .logo span {
    width: 160px;
    font-size: 11px;
    padding-left: 12px;
  }

  .marketing {
    overflow: hidden;
    position: relative;
    width: 100%;
    height: 380px;
    background-color: rgba(113, 108, 108, 0.857);
  }
  
  .demo-bg {
    opacity: 0.5;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 380px;
  }
  
  /* .marketing-content {
    position: relative;
    display: flex;
    justify-content: flex-start;
    flex-direction: column;
    height: 350px;
    width: 300;
    max-width: 300px;
  } */
  
  .marketing-span-headline {
    margin-top: 60px;
    font-size: 18px;
    font-weight: 600;
    font-style: normal;
    margin-bottom: 20px;
  }
  
  .marketing-span {
    font-size: 14px;
    font-weight: 400;
    display: flex;
    text-align: left;
    margin-bottom: 5px;
  }

  .down-arrow {
    bottom: 5%; /* Adjust vertical position as needed */
    font-size: 20px;
  }

  .btn {
    font-size: 12px;
  }

  .footbar {
    display: flex;
    flex-direction: column;
  }

  .address {
    padding: 0;
    margin: 5px;
    width: 100%;
    font-size: 11px;
    top: 0;
    left: 0;
  }

  .copyright {
    font-size: 11px;
    bottom: 0;
    left: 0;
    margin: 5px;
    padding: 0;
  }

  .bizsafe {
    position: absolute;
    color: white;
    bottom: 0;
    right: 0;
    margin: 20px 10px 40px 20px;
  }
  
  .bizsafe-size {
    width: 100px;
    height: 50px;
  }

  .homepage-body {
    margin: 100px 0px 20px 0px;
  }

  .homepage-section {
    padding: 0px;
  }

  .one-section {
    margin-bottom: 50px;
  }

  .section-title {
    font-size: 18px;
  }

  .section-sub-title {
    font-size: 15px;
  }

  .section-description {
    max-width: 100%;
    width: 100%;
    font-size: 13px;
  }
}

@media only screen and (min-width: 810px) and (max-width: 900px) {

  .topbar {
    height: 70px;
  }

  .sections {
    margin-right: 20px;
  }

  .sections a {
    margin-right: 20px;
    font-size: 12px;
  }

  .logo img {
    width: 160px;
    height: 40px;
  }

  .logo span {
    width: 160px;
    font-size: 11px;
    padding-left: 12px;
  }

  .marketing {
    overflow: hidden;
    position: relative;
    width: 100%;
    height: 350px;
    background-color: rgba(113, 108, 108, 0.857);
  }
  
  .demo-bg {
    opacity: 0.5;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: auto;
  }
  
  /* .marketing-content {
    position: relative;
    display: flex;
    justify-content: flex-start;
    flex-direction: column;
    height: 350px;
    width: 300;
    max-width: 300px;
  } */
  
  .marketing-span-headline {
    margin-top: 60px;
    font-size: 18px;
    font-weight: 600;
    font-style: normal;
    margin-bottom: 20px;
  }
  
  .marketing-span {
    font-size: 14px;
    font-weight: 400;
    display: flex;
    text-align: left;
    margin-bottom: 5px;
  }

  .down-arrow {
    bottom: 5%; /* Adjust vertical position as needed */
    font-size: 20px;
  }
  
  .btn {
    font-size: 12px;
  }

  .footbar {
    display: flex;
    flex-direction: column;
  }

  .address {
    padding: 0;
    margin: 5px;
    width: 100%;
    font-size: 11px;
    top: 0;
    left: 0;
  }

  .copyright {
    font-size: 11px;
    bottom: 0;
    left: 0;
    margin: 5px;
    padding: 0;
  }

  .bizsafe {
    position: absolute;
    color: white;
    bottom: 0;
    right: 0;
    margin: 20px 10px 40px 20px;
  }
  
  .bizsafe-size {
    width: 100px;
    height: 50px;
  }

  .homepage-body {
    margin: 100px 0px 20px 0px;
  }

  .homepage-section {
    padding: 0px;
  }

  .one-section {
    margin-bottom: 50px;
  }

  .section-title {
    font-size: 15px;
  }

  .section-sub-title {
    font-size: 13px;
  }

  .section-description {
    max-width: 100%;
    width: 100%;
    font-size: 11px;
  }
}

@media only screen and (min-width: 901px) and (max-width: 999px) {

  .topbar {
    height: 70px;
  }

  .sections {
    margin-right: 20px;
  }

  .sections a {
    margin-right: 20px;
    font-size: 12px;
  }

  .logo img {
    width: 160px;
    height: 40px;
  }

  .logo span {
    width: 160px;
    font-size: 11px;
    padding-left: 12px;
  }

  .marketing {
    overflow: hidden;
    position: relative;
    width: 100%;
    height: 380px;
    background-color: rgba(113, 108, 108, 0.857);
  }
  
  .demo-bg {
    opacity: 0.5;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 380px;
  }
  
  /* .marketing-content {
    position: relative;
    display: flex;
    justify-content: flex-start;
    flex-direction: column;
    height: 350px;
    width: 400;
    max-width: 400px;
  } */
  
  .marketing-span-headline {
    margin-top: 60px;
    font-size: 22px;
    font-weight: 600;
    font-style: normal;
    margin-bottom: 20px;
  }
  
  .marketing-span {
    font-size: 16px;
    font-weight: 400;
    display: flex;
    text-align: left;
    margin-bottom: 5px;
  }

  .down-arrow {
    bottom: 5%; /* Adjust vertical position as needed */
    font-size: 20px;
  }

  .btn {
    font-size: 14px;
  }

  .footbar {
    display: flex;
    flex-direction: column;
  }

  .address {
    padding: 0;
    margin: 5px;
    width: 100%;
    font-size: 11px;
    top: 0;
    left: 0;
  }

  .copyright {
    font-size: 11px;
    bottom: 0;
    left: 0;
    margin: 5px;
    padding: 0;
  }

  .bizsafe {
    position: absolute;
    color: white;
    bottom: 0;
    right: 0;
    margin: 20px 10px 40px 20px;
  }
  
  .bizsafe-size {
    width: 100px;
    height: 50px;
  }

  .homepage-body {
    margin: 100px 0px 20px 0px;
  }

  .homepage-section {
    padding: 0px;
  }

  .one-section {
    margin-bottom: 50px;
  }

  .section-title {
    font-size: 15px;
  }

  .section-sub-title {
    font-size: 13px;
  }

  .section-description {
    max-width: 100%;
    width: 100%;
    font-size: 11px;
  }
}