  .container {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 20px; /* Adjust the gap as needed */
    align-items: start;
  }
.social-media-icons-container {
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  height: 60px;
  padding-left: 40px !important;
  background-color: #FF9332;
  padding-right: 150px;
  width: 100%;
  z-index: 999; /* Adjust the z-index as needed */
}

.social-media-icons {
    display: inline-flex;
}

.social-media-icon {
  position: relative;
width: 30px;
    height: 30px;
    margin-right: 10px;

}

.circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: #eeeeee;
}

.social-media-icon svg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 10px;
  height: 10px;
  fill: #FF9332;
}

.contact-info a {
  color: white;
}
.rich-text {
  position: absolute;
  top: 50%;
  right: 150px;
  transform: translateY(-50%);
  color: white;
  font-size: 16px;
  text-align: right;
  padding-top: 10px;
}

.site-header {
  position: fixed;
  top: 60px; /* Add a margin value to create space */
  left: 0;
  right: 0;
  z-index: 998;
  background-color: #fff;
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 10px 20px;
  background-color: #fff;
}

.site-header__center {
  display: flex;
  align-items: center;
}

.site-header__left {
  display: flex;
  align-items: center;
  margin-right: auto;
  margin-left: 0;
}

.site-header__logo img {
    
    max-width: 11.3636363636em;
    height: auto;
    margin-left: -5px;
}

.site-header__right {
  display: flex;
  align-items: center;
}

.site-header__main-menu {
  margin-left: 10px;
}


.site-header__cta-btn {
  margin-left: 10px;
}

.site-header__main-menu {
  margin-right: 10px;
}
.site-header__menu-item {
  margin-left: 10px;
}

.site-header__menu-link {
  display: flex;
  align-items: center;
  color: #ffffff;
  text-decoration: none;
}

.site-header__menu-link svg {
  width: 12px;
  height: 12px;
  fill: #ffffff;
  margin-right: 5px;
}

.cta-btn {
  display: inline-block;
  padding: 15px 25px; /* Adjust the padding values to control the button size */
  line-height: 0.9; /* Adjust the line-height value to control the button height */
  background-color: #0032A0;
  color: #FFFFFF !important; /* Set the font color to white */
  text-decoration: none;
  font-size: 20px;
}

.cta-btn:hover {
  background-color: #001F63;
  color: #FFFFFF; /* Set the font color to white on hover */
}
.cta-btn {
  margin-left: 10px; /* Add margin between menu and CTA button */
}


/* Main Menu Styles */
.main-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex; /* Change to flex */
}

.main-menu.open {
  display: block;
}

.main-menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.main-menu li {
  margin-right: 10px; /* Add margin between menu items */
}

.main-menu a {
  display: flex;
  padding: 5px 10px;
  color: #000;
  text-decoration: none;
}
@media (max-width: 768px) {
  .burger-menu-btn {
    display: flex;
  }
  
  .site-header__right {
    display: none;
  }
  
  .main-menu {
    display: none;
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    padding-top: 10px;
    background-color: #fff;
    z-index: 99;
  }
  
  .main-menu.open {
    display: block;
  }
}

/* Media query for desktop devices */
@media (min-width: 769px) {
  .burger-menu-btn {
    display: none;
  }

  .site-header__right {
    display: flex;
  }

  .main-menu {
    display: block;
    position: static;
    padding-top: 0;
    background-color: transparent;
    z-index: auto;
  }
}

/* Mobile styles */
@media (max-width: 768px) {
  .burger-menu-btn {
    display: block !important;
    /* Styles specific to the burger button on mobile */
  }

  .site-header__cta-btn {
    display: none;
  }
}

/* Hide the existing main menu on mobile */
@media (max-width: 767px) {
  .site-header__main-menu {
    display: none;
  }

  .burger-menu {
    display: block;
  }

  .burger-menu-btn {
    width: 25px;
    height: 3px;
    background-color: #000;
    margin-bottom: 5px;
  }

  .burger-menu-btn:before,
  .burger-menu-btn:after {
    content: none;
    display: block;
    width: 100%;
    height: 3px;
    background-color: #000;
    margin-bottom: 5px;
  }

  .burger-dropdown active {
   
    /* Add the following styles to override the display property */
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
  }

  /* Add your styles for the dropdown container */
}

.burger-line {
  display: block;
  width: 25px;
  height: 3px;
  background-color: #FF9332; /* Update to the desired orange color */
  margin-bottom: 5px;
}

.burger-menu-btn {
  border: none;
  background-color: transparent;
  padding: 0;
  width: 30px;
  height: 14px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
}

.burger-dropdown.active {
  display: block;
}

.mobile-menu-1.open {
  display: block !important;
  visibility: visible !important;
}
@media (max-width: 768px) {
  /* Styles for mobile devices */
  
  .rich-text {
    justify-content: flex-start;
    font-size: smaller;
    font-family: FKDisplay-RegularAlt;
    Margin-right: -100px;
    padding-top: 50px;
    padding-right: 0px !important;

  }
.rich-text span{
    color: #ffffff;
    font-size: 13px;
  font-weight: bold;
}
  
.mobile-menu-1 {
  display: none; /* Initially hide the mobile menu */
  position: absolute;
  top: 60px;
  left: 0;
  right: 0;
  padding-top: 10px;
  background-color: #fff;
  z-index: 99;
}

.mobile-menu-1.open {
  display: block; /* Show the mobile menu when the 'open' class is applied */
  background-color: #021d44; 
      top: 100%;
      text-align: left;
}
  
  .site-header ul li {
    display: block;
        border-bottom: 1px solid #4f5361;
        margin-top: 15px;
        margin-left: 15px;
}
  .site-header a {
    color:#ffffff;
        font-size: 20px;
    font-weight: bold;
}
 .hs-menu-item .hs-menu-depth-2 a {
    font-weight: normal;
    font-size: 16px;
   padding-bottom: 10px;
}
  
 .hs_cos_wrapper_type_inline_rich_text h6 {
  text-align: left;
    margin-left: 10px;

}

  @media (max-width: 768px){
.mobile-menu-1.active {
    display: flex;
  }
.social-media-icons-container {
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  height: 80px;
  padding-left: 50px;
  background-color: #FF9332;
  padding-right: 60px!important;
  width: 100%;
  z-index: 999; /* Adjust the z-index as needed */
      justify-content: center;
  padding-bottom: 15px;
}

.social-media-icon {
    position: sticky;
    width: 30px;
    height: 30px;
    margin-right: 11px;
    display: inline-flex;
}
  
  .container {
    display: block;
    padding: 0;
  }
  
  .site-header {
    padding-top: 30px !important;
}
    .social-media-icons {
    margin-right: -30px;
      margin-top: -20px;
}

  }

  
