*{
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
  }


@media screen and (min-width: 769px){
  #mobile-nav-bar{
    display: none !important
  }
  
  #desktop-nav-bar{
      position: fixed;
      top: 0;
      width: 100%;
      height: 64px;
      background: #FFFFFF;
      box-shadow: 0px 0px 12px 2px rgba(0, 0, 0, 0.2);
      z-index: 1;
      transition: top 0.3s;
  }

  .nav-wrapper{
      max-width: 1200px;
      margin: 0 auto;
      height: 64px;
      display: flex;
      justify-content: space-between;
  }

  #nav-logo{
      display: inline-block;
      margin: 0;
      width: 226px;
      height: 64px;
  }

  #nav-logo img{
      height: 40px;
      width: 226px;
      margin: 12px;
  }

  .nav-link-container{
      height: 64px;
  }

  .nav-link-container ul{
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin: 0 auto;
      height: fit-content;
      width: fit-content;
  }

  .nav-link-container ul li{
      font-family: 'Montserrat';
      font-style: normal;
      font-weight: 500;
      font-size: 16px;
      padding-top: 22px;
      line-height: 20px;
      text-align: center;
      color: #000000;
      transition: transform 0.3s;
      margin-right: 28px;
  }

  .nav-link-container ul li:hover{
      color: #0267B1;
      font-weight: 900;
      transform: scale(1.1);
  }
  body{
      margin-top: 64px;
  }
  #hero-product-section{
      padding-top: 25px;
      height: 90vh;
      min-height: 900px;
      width: 100%;
  }

  .section-wrapper{
      max-width: 1200px;
      margin: auto;
  }

  #hero-product-section > div {
      display: flex;
      flex-wrap: nowrap;
      align-items: flex-start;
      justify-content: space-between;
  }

  .section-heading{
      font-family: 'Montserrat';
      font-style: normal;
      font-weight: 700;
      font-size: 24px;
      line-height: 36px;
      margin-bottom: 5px;
      text-align: left;
  }

  #hero-product-section > div > h1{
    display: none !important;
  }

  .product-title{
      font-family: 'Montserrat';
      font-style: normal;
      font-weight: 900;
      font-size: 36px;
      line-height: 42px;
      margin-bottom: 25px;
      text-align: left;
  }

  .section-content{
      font-family: 'Montserrat';
      font-style: normal;
      font-weight: 400;
      font-size: 16px;
      line-height: 24px;
  } 

  .product-info{
      padding: 25px;
      font-family: 'Montserrat';
      font-style: normal;
      font-weight: 400;
      font-size: 16px;
      line-height: 24px;
      width: 480px;
  }


  /* Position the image container (needed to position the left and right arrows) */
  .container {
      position: relative;
      max-width: 600px;
      height: 700px;
      overflow: hidden;
      background-color: #fefefe;
      border-radius: 25px;
      box-shadow: 1px 1px 5px #f9f9f9;
    }
    
    /* Hide the images by default */
    .mySlides {
      display: flex;
      align-items: center;
      justify-content: center;
      display: none;
      height: 520px;
      width: 600px;
      padding: 25px;
  }

  .mySlides img{
      display: block;
      height: auto;
      object-fit: contain;
      width: 80%;
      max-width: 600px;
      max-height: 520px;
      margin: auto; 
  }
    
    /* Add a pointer when hovering over the thumbnail images */
    .cursor {
      cursor: pointer;
    }
    
    /* Next & previous buttons */
    .prev,
    .next {
      cursor: pointer;
      position: absolute;
      top: 40%;
      width: auto;
      padding: 16px;
      margin-top: -50px;
      color: #000000;
      font-weight: bold;
      font-size: 20px;
      border-radius: 0 3px 3px 0;
      user-select: none;
      -webkit-user-select: none;
    }
    
    /* Position the "next button" to the right */
    .next {
      right: 0;
      border-radius: 3px 0 0 3px;
    }
    
    /* On hover, add a black background color with a little bit see-through */
    .prev:hover,
    .next:hover {
      background-color: rgba(2, 103, 177, 0.8);
    }
    
    /* Number text (1/3 etc) */
    .numbertext {
      color: #000000;
      font-family: 'Montserrat';
      font-size: 16px;
      padding: 8px 12px;
      position: absolute;
      top: 0;
    }
    
    /* Container for image text */
    .caption-container {
      text-align: center;
      background-color: #222;
      padding: 2px 16px;
      color: white;
    }
    
    .row:after {
      content: "";
      display: table;
      clear: both;
    }
    
    /* Six columns side by side */
    .column {
      float: left;
      width: 12.5%;
      display: flex;
      align-items: center;
      justify-content: center;
      height: 100px;
    }
    
    /* Add a transparency effect for thumnbail images */
    .demo {
      opacity: 0.6;
      height: auto;
      max-height: 100px;
      object-fit: contain;
      width: 100%;
    }
    
    .active,
    .demo:hover {
      opacity: 1;
    }


    .pricing-table{
      margin-bottom: 40px;
      text-align: center;
      font-family: 'Montserrat';
      font-style: normal;
      font-weight: 500;
      font-size: 14px;
      line-height: 18px;
      min-width: 200px;
      width: 100%;
    }

    .pricing-table td, .pricing-table th{
      padding: 5px;
    }

  .pricing-table th{
      text-align: center;
      font-weight: 900;
  }

    .pricing-table tr:nth-of-type(2n+1){
      background-color: #b1cde3;
    }

    .pricing-table tr:nth-of-type(2n){
      background-color: #d7ecfc;
    }


    #bottom-navigation-section{
      width: 100%;
      height: 100px;
      background-color: #0294ff;
  }

  .bottom-bar-wrapper{
      margin: auto;
      height: 100%;
      max-width: 1200px;
      display: flex;
      align-items: center;
      justify-content: space-between;
  }

  .copyright-text{
      font-family: 'Montserrat';
      font-style: normal;
      font-weight: 900;
      font-size: 14px;
      line-height: 29px;
      text-align: left;
      color: #ffffff;
  }

  #brand-logos-container{
      min-width: 500px;
      height: 90px;
  }
  .brands-logo-images-conatiner{
      display: flex;
      align-items: center;
      justify-content: space-between;
      width: fit-content;
      min-width: 450px;
  }

  .brand-logo-image img{
      height: auto;
      object-fit: contain;
      height: 28px;
      margin: auto;
      margin-right: 32px;
  }
  .brands-text{
      font-family: 'Montserrat';
      font-style: normal;
      font-weight: 900;
      font-size: 18px;
      line-height: 28px;
      text-align: center;
      color: #ffffff;
      margin-bottom: 12px;
  }

  .social-icons{    
      margin-bottom: 15px;
  }

  .social-icons a img{
      height: 46px;
      width: 46px;
      margin-left: 20px;
      border-radius: 100%;
      border: 0.1px solid #cecece;
      box-shadow: 1px 1px 3px #cecece;
  }

  a{
      text-decoration: none;
  }
}

@media screen and (max-width: 768px){
  #desktop-nav-bar{
    display: none !important;
  }

  .overlay {
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 99999;
    top: 0;
    left: 0;
    background: #0294ff;
    overflow-x: hidden;
    transition: 0.5s;
    padding-top: 50px;
}

.overlay-content {
    width: 100%;
    text-align: center;
    padding-top: 30px;
}

.overlay-content a {
    margin-top: 15px;
    padding: 8px;
    text-decoration: none;
    font-family: 'Montserrat';
    font-weight: 900;
    font-size: 24px;
    line-height: 38px;
    text-align: center;
    color: #FFFFFF;
    display: block;
    transition: 0.3s;
}

.overlay a:hover, .overlay a:focus {
    color: #f1f1f1;
}

.overlay .closebtn {
    width: 100%;
    text-align: center;
    font-size: 60px;
    text-decoration: none;
    color: #f1f1f1;
}

#mobile-nav-bar-box{
    width: 100%;
    height: 62px;
    background-color: #ffffff;
    position: fixed;
    top: 0;
    left: 0;
    box-shadow: 0px 1px 4px rgba(0, 0, 0, 0.25);
    min-width: 375px;
    margin-bottom: 10px;
    transition: top 0.3s;
    z-index: 9999;
}

#nav-bar-icon{
    height: 40px;
    width: 40px;
    cursor: pointer;
    position: fixed;
    right: 10vw;
    top: 10px;
    z-index: 1;
    transition: top 0.3s;
    border: 2px solid #FFFFFF;
    border-radius: 3px;
}



#mobile-nav-logo{
    position: fixed;
    top: 10px;
    left: 5vw;
    z-index: 1;
    padding-left: 10px;
    transition: top 0.3s;
}

#mobile-nav-logo img{
    width: 205px;
    height: 40px;
}

  body{
      margin-top: 64px;
  }
  #hero-product-section{
      padding-top: 25px;
      height: fit-content;
      min-height: 900px;
      width: 100%;
  }

  .section-wrapper{
    min-width: 260px;
    width: 100%;
    margin: auto;
  }

  .section-heading{
      font-family: 'Montserrat';
      font-style: normal;
      font-weight: 700;
      font-size: 24px;
      line-height: 36px;
      margin-bottom: 5px;
      text-align: left;
  }

  .product-title{
      font-family: 'Montserrat';
      font-style: normal;
      font-weight: 900;
      font-size: 36px;
      line-height: 42px;
      margin-bottom: 30px;
      text-align: center;
  }

  .section-content{
      font-family: 'Montserrat';
      font-style: normal;
      font-weight: 400;
      font-size: 16px;
      line-height: 24px;
  } 

  .product-info{
      padding: 25px;
      font-family: 'Montserrat';
      font-style: normal;
      font-weight: 400;
      font-size: 16px;
      line-height: 24px;
      max-width: 600px;
      min-width: 340px;
      width: calc(95% - 50px);
  }

  .product-info .product-title{
    display: none !important;
  }


  /* Position the image container (needed to position the left and right arrows) */
  .container {
      position: relative;
      margin: auto;
      max-width: 600px;
      min-width: 360px;
      width: 100%;
      height: 700px;
      overflow: hidden;
      background-color: #fefefe;
      border-radius: 25px;
      box-shadow: 1px 1px 5px #f9f9f9;
    }
    
    /* Hide the images by default */
    .mySlides {
      display: flex;
      align-items: center;
      justify-content: center;
      display: none;
      height: 520px;
      max-width: 600px;
      min-width: 360px;
      width: 100%;
      padding: 5px;
  }

  .mySlides img{
      display: block;
      height: auto;
      object-fit: contain;
      width: 80%;
      max-width: 600px;
      max-height: 520px;
      margin: auto; 
  }
    
    /* Add a pointer when hovering over the thumbnail images */
    .cursor {
      cursor: pointer;
    }
    
    /* Next & previous buttons */
    .prev,
    .next {
      cursor: pointer;
      position: absolute;
      top: 40%;
      width: auto;
      padding: 16px;
      margin-top: -50px;
      color: #000000;
      font-weight: bold;
      font-size: 20px;
      border-radius: 0 3px 3px 0;
      user-select: none;
      -webkit-user-select: none;
    }
    
    /* Position the "next button" to the right */
    .next {
      right: 0;
      border-radius: 3px 0 0 3px;
    }
    
    /* On hover, add a black background color with a little bit see-through */
    .prev:hover,
    .next:hover {
      background-color: rgba(2, 103, 177, 0.8);
    }
    
    /* Number text (1/3 etc) */
    .numbertext {
      color: #000000;
      font-family: 'Montserrat';
      font-size: 16px;
      padding: 8px 12px;
      position: absolute;
      top: 0;
    }
    
    /* Container for image text */
    .caption-container {
      text-align: center;
      background-color: #222;
      padding: 2px 16px;
      color: white;
    }
    
    .row:after {
      content: "";
      display: table;
      clear: both;
    }
    
    /* Six columns side by side */
    .column {
      float: left;
      width: 12.5%;
      display: flex;
      align-items: center;
      justify-content: center;
      height: 100px;
    }
    
    /* Add a transparency effect for thumnbail images */
    .demo {
      opacity: 0.6;
      height: auto;
      max-height: 100px;
      object-fit: contain;
      width: 100%;
    }
    
    .active,
    .demo:hover {
      opacity: 1;
    }


    .pricing-table{
      margin-bottom: 40px;
      text-align: center;
      font-family: 'Montserrat';
      font-style: normal;
      font-weight: 500;
      font-size: 14px;
      line-height: 18px;
      min-width: 200px;
      width: 100%;
    }

    .pricing-table td, .pricing-table th{
      padding: 5px;
    }

  .pricing-table th{
      text-align: center;
      font-weight: 900;
  }

    .pricing-table tr:nth-of-type(2n+1){
      background-color: #b1cde3;
    }

    .pricing-table tr:nth-of-type(2n){
      background-color: #d7ecfc;
    }


    #bottom-navigation-section{
      width: 100%;
      height: fit-content;
      min-height: 360px;
      background-color: #0294ff;
  }

  .bottom-bar-wrapper{
      padding-top: 25px;
      margin: auto;
      height: 100%;
      width: 100%;
  }

  .copyright-text{
      font-family: 'Montserrat';
      font-style: normal;
      font-weight: 900;
      font-size: 14px;
      line-height: 29px;
      text-align: center;
      color: #ffffff;
      margin-top: 15px;
  }

  .brands-text{
      font-family: 'Montserrat';
      font-style: normal;
      font-weight: 900;
      font-size: 24px;
      line-height: 28px;
      text-align: center;
      color: #ffffff;
  }

  .social-icons{    
      margin-bottom: 15px;
      display: flex;
      align-items: center;
      justify-content: center;
  }

  #brand-logos-container{
      align-items: center;
      width: 100%;
      padding-top: 32px;
      text-align: center;
  }

  .brand-logo-image{
      width: fit-content;
      margin: auto;
  }

  .brand-logo-image img{
      height: auto;
      object-fit: contain;
      height: 28px;
      margin: 10px 0;
  }

  .social-icons a img{
      height: 46px;
      width: 46px;
      margin-left: 20px;
      border-radius: 100%;
      border: 0.1px solid #cecece;
      box-shadow: 1px 1px 3px #cecece;
  }

  a{
      text-decoration: none;
  }
}