.fl-container {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: auto;
  padding-bottom: 20px;
}

.logo-row-container {
  display: flex;
  flex-direction: row;
  justify-content: center;
  width: 100%;
  height: auto;
  padding-top: 20px;
}

.logo-left {
  max-width: 50%;
  flex: 1;
  height: 100px;
}

.platform-login-container {
  display: flex;
  flex-direction: row;
  width: 50%;
  justify-content: flex-end;
}

.platform-icon {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 70%;
  height: auto;
  margin-bottom: auto;
  margin-top: auto;
  padding-right: 5px;
  padding-bottom: 3px;
}

.platform-login-text {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: auto;
  height: auto;
  margin-bottom: auto;
  margin-top: auto;
  
}

.header-demo-request-container {
  width: 100%;
  display:flex;
  flex-direction: column;
  align-items: flex-end;
  height: auto;
}

.horz-line {
  display: flex;
  justify-content: flex-end;
  width: 100%;
  height: 58px;
  border-top: solid 1px;
}

.d-request-button {
  display: flex;
  align-items: flex-end;
  width: 245px;
  height: 57px;
  background-color: black;
  border: solid 0px;
  border-radius: 0px 0px 0px 10px;
}

.d-req-text {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: auto;
  color: white;
}

.d-req-text:hover {
    color: white;
    text-decoration: none;
}

.hidden-item {
  display: inline;
}  

#hamburger-menu {
  display: none;
}




/* Horizontal Menu
   ========================================================================== */

.hs-menu-wrapper.hs-menu-flow-horizontal ul {
/* Targets all unordered lists within horizontal menus */
  margin-top: -32px;


}
.hs-menu-wrapper.hs-menu-flow-horizontal ul li{
/* Targets all list items within horizontal menus */
    padding-right: 6%;
}
.hs-menu-wrapper.hs-menu-flow-horizontal ul li a{
/* Targets all links within horizontal menus */

}
.hs-menu-wrapper.hs-menu-flow-horizontal > ul {
/* Targets the top-level unordered list within horizontal menus */
}
.hs-menu-wrapper.hs-menu-flow-horizontal > ul li.hs-menu-depth-1 {
/* Targets top-level list items within the top-level unordered list */
}
.hs-menu-wrapper.hs-menu-flow-horizontal > ul li a {
/* Targets top-level list links within the top-level unordered list */
}
.hs-menu-wrapper.hs-menu-flow-horizontal > ul li.hs-item-has-children {
/* Targets list items with children with the top-level unordered list */

}
.hs-menu-wrapper.hs-menu-flow-horizontal.flyouts > ul li.hs-item-has-children ul.hs-menu-children-wrapper {
/* Targets second-level unordered lists when flyouts are enabled (for styling dropdowns) */
  margin-top: 7px;
  margin-bottom: 10px;
  padding-left: 10px;
  padding-bottom: 10px;
  padding-right: 10px;
  background-color: white;
  border-left: 6px solid black;
  border-bottom: 1px solid black;

}
.hs-menu-wrapper.hs-menu-flow-horizontal > ul li.hs-item-has-children ul.hs-menu-children-wrapper li a {
/* Targets links within second-level unordered lists  */
}
.hs-menu-wrapper.hs-menu-flow-horizontal.flyouts > ul li.hs-item-has-children ul.hs-menu-children-wrapper li.hs-item-has-children ul.hs-menu-children-wrapper {
/* Targets third-level unordered lists (for styling dropdowns)*/
}
.hs-menu-wrapper.hs-menu-flow-horizontal.flyouts > ul li.hs-item-has-children:hover > ul.hs-menu-children-wrapper {
/* Targets second-level unordered list when top-level menu item is hovered (use to reveal dropdowns) */
}
.hs-menu-wrapper.hs-menu-flow-horizontal > ul li.hs-item-has-children.active-branch{
/* Targets top-level active branch unordered list */
}
.hs-menu-wrapper.hs-menu-flow-horizontal > ul li.hs-item-has-children.active-branch > ul.hs-menu-children-wrapper {
/* Targets second-level unordered list within active branch */
}
.hs-menu-wrapper.hs-menu-flow-horizontal li.active a{
/* Targets the link within the active list item */
}
.hs-menu-wrapper.flyouts .hs-menu-children-wrapper a {
    display: block;
    white-space: nowrap;
    padding-left: 10px;
    padding-right: 10px;
    padding-top: 15px;
    margin-bottom: 10px;
}

@media screen and (max-width: 945px) {
.hs-menu-wrapper.hs-menu-flow-horizontal ul li{
/* Targets all list items within horizontal menus */
    padding-right: 2%;
}
}

/*//////////////////////////////// Tablet /////////////////////*/

@media screen and (max-width: 768px) {
  .menu-large {
  display: none;
  }
  #hamburger-menu {
    width: 20px;
    height: auto;
    background-color: #d6151e;
    border: none;
    color: white;
    font-size: 20px; /* Adjust the icon size */
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}

.logo-row-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  height: auto;
  padding-top: 20px;
}

.logo-left {
  max-width: 95%;
  justify-content: center;
  margin: auto;
}

.platform-login-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: auto;
  margin: auto;
}

.platform-icon {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 50%;
  height: auto;
  margin-bottom: auto;
  padding-right: 5px;
}

.platform-login-text {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: auto;
  height: auto;
  margin-bottom: auto;
}

.header-demo-request-container {
  width: 100%;
  display:flex;
  flex-direction: column;
  align-items: flex-end;
  height: auto;
}

.horz-line {
  display: flex;
  justify-content: flex-end;
  width: 100%;
  height: 57px;
  border-top: solid 1px;
}

.d-request-button {
  display: flex;
  align-items: center;
  margin: auto;
  width: 245px;
  height: 57px;
  background-color: black;
  border: solid 0px;
  border-radius: 0px 0px 10px 10px;
}

.d-req-text {
  display: flex;
  justify-content: center;
  align-items: center;
  width: auto;
  height: auto;
  margin: auto;
  color: white;
}  

.hs-menu-wrapper.hs-menu-flow-horizontal ul {  
  /* Targets all unordered lists within horizontal menus */
  display: flex;
  margin-top: 10px;
    text-decoration: none;
  text-decoration-color: #c81114;
  line-height: 1.7rem;
  padding: 15px;
}
  
  .hs-menu-wrapper.hs-menu-flow-horizontal.flyouts > ul li.hs-item-has-children ul.hs-menu-children-wrapper {
/* Targets second-level unordered lists when flyouts are enabled (for styling dropdowns) */
  margin-top: 2px;
  padding-left: 10px;
  background-color: transparent;
  box-shadow: 0px 0px 0px white;
  border-radius: 0px 0px 0px 0px;
  text-decoration: none;
  text-decoration-color: #c81114;
    padding: 0px;
}
.hs-menu-wrapper.flyouts .hs-menu-children-wrapper a {
    display: block;
    white-space: nowrap;
    padding-left: 15px;
    padding-right: 20px;
    padding-top: 0px;
    margin-bottom: 0px;
}

}

