.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
  margin-bottom: .5rem;
  font-family: inherit;
  font-weight: 500;
  line-height: 1.2;}
  
  .lc-nav-header * p, .lc-header * p, .lc-wrapper * p {margin-top: 0; margin-bottom: 1rem;}

.lc-nav-header, .lc-nav-header * {box-sizing:border-box}

.uspstrap {
  display: none !important;
}

/* #wrapper-inner {
  margin-top: 10px;
} */

/* Search Icon */
 
#wrapper .cg-header__search__submit {
  top:0;
}

/* Style the header */

.lc-nav-header {
    padding: 10px 16px;
    background: #1C1E24;
    color: #FFF;
    height: 42px;
    font-size: 14px;
    position: relative;
    /* JS */
    margin-top: 0;
}
.ln-holder{
    display: flex;
    justify-content: space-between;
    align-items: left;
}
.ln-holder li img{
    display: inline;
    padding: 0 10px;
    vertical-align: middle;
}
.ln-holder li a{
    color: #FFF;
    text-decoration: none;
    display: block;
    font-weight: bold;
}

.hover-underline-animation {
  display: inline-block;
  position: relative;
  color: #FFF;
}

.hover-underline-animation::after {
  content: '';
  position: absolute;
  width: 100%;
  transform: scaleX(0);
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: #FFF;
  transform-origin: bottom right;
  transition: transform 0.25s ease-out;
}

.hover-underline-animation:hover::after {
  transform: scaleX(1);
  transform-origin: bottom left;
}

  /* The sticky class is added to the header with JS when it reaches its scroll position */
.lc-sticky {
    position: fixed;
    top: 0;
    width: 99%;
    max-width: 1400px;
    z-index: 1000;
}
  
  /* Add some top padding to the page content to prevent sudden quick movement (as the header gets a new position at the top of the page (position:fixed and top:0) */
.lc-sticky + .content {
    padding-top: 102px;
}


  
  .ln-dropdown {
    float: left;
    overflow: hidden;
  }
  
  .ln-dropdown .dropbtn {
    cursor: pointer; 
    border: none;
    outline: none;
  }
  
  .dropdown-content {
    display: none;
    position: absolute;
    background-color: #1C1E24;
    color: #FFF;
    min-width: 160px;
    z-index: 1;
    margin: 11px 0 0 -14px;
  }
  
  .dropdown-content a {
    float: none;
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: left;
  }
  
  .dropdown-content a:hover {
    background-color: #ddd;
  }

  .show {
    display: block;
  }

  .ln-holder li.start-btn a, .start-btn-mob a{
    background-color: #FFF;
    color: #1C1E24;
    /* padding: 5px 20px; */
    padding: 2px 20px;
    border: 1px solid #FFF;
    border-radius: 20px;
    cursor: pointer;
    margin: -5px 10px 0 80px;
    transition: all .3s ease-in-out;
    text-decoration: none;
  }

  /* .ln-holder li.start-btn a:hover, .start-btn-mob a:hover{
    background-color: #1C1E24;
    color: #FFF;
    border: 1px solid #FFF;
    text-decoration: none;
  } */
  .ln-holder li.start-btn a:hover, .start-btn-mob a:hover {
    /* background-color: #1C1E24; */
    color: #1C1E24;
    /* border: 1px solid #FFF; */
    text-decoration: none;
    background-color: #e3e3e3;
    border: 1px solid #e3e3e3;
}

    li.start-btn-mob a{
        display: none;
    }



  /* ADDITIONAL GLOBAL STYLES */

.lc-wrapper{
    width: 95%;
    margin: 0 auto;
}
h2.lc-section-title {
    font-size: 25px;
    color: #000;
    text-align: center;
    margin: 30px 0 30px 0;
    font-weight: normal;
}
.lc-order-banner{
    width: 100%;
    margin: 0 auto;
    margin-top: 100px;
}
.lc-order-banner img{
    width: 100%;
}

a.lc-btn {
    background-color: #1C1E24;
    color: white;
    padding: 8px 20px;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    margin:auto;
    margin-top: 50px;
    transition: all .3s ease-in-out;
    text-decoration: none;
    display: block;
    width: fit-content;
    border: 1px solid #1C1E24;
}
a.lc-btn:hover{
    background-color: #F7F7F7;
    color: #1C1E24;
  }

  .video-section{
    width: 100%;
    margin: 0 auto;
    margin-top: 50px;
  }
  .video-section video{
    width: 100%;
    height: auto;
  }

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

    .burger-icon, .start-btn-mob a{
        display: none;
    }
  @media (width <= 1250px) {
    .ln-holder li.start-btn a {
        margin: -5px 10px 0 0px;
    }
    .ln-holder li img{
        display: none;
    }
  }
  @media (width <= 850px) {
    .burger-icon{
        display: flex;
    }
    .start-btn{
        display: none;
    }
    .start-btn-mob a{
        display: block;
        position: absolute;
        right: 10px;
        top: 10px;
    }
    .lc-nav-header{
        /* margin-top: 73px; */
        margin-top: 0;
    }
    .lc-nav-header.lc-sticky{
      width: 96%;
      margin: auto;
      margin-top: 73px;
    }
    .ln-holder{
        position: absolute;
        display: block;
        background-color: #1C1E24;
        width: auto;
        padding: 20px;
        z-index: 10;
        left: -100%;
        transition: left 0.3s ease-in-out;
    }
    .ln-holder.show-menu{
        left: 0;
    }
    .ln-holder li{
        margin: 0 0px 15px 10px;
        width: 100%;
    }
    .ln-dropdown{
        float:none;
        overflow: visible;
    }
    .dropdown-content{
        position: relative;
        margin: 0;
        background-color: transparent;
    }
    a.lc-btn {
      margin-top: 10px;
    }
  }