/* Mob Menu disappears at >1170px */
@media only screen and (min-width: 1170px) {
  #mobNav{
    display: none;
  }
}

.ld-text-center{
text-align: center;
}

.ld-flex{
display: flex;
}
.ld-inline-flex{
display: inline-flex;
}
.ld-wrap{
flex-wrap: wrap;
}
.ld-statement-box{
background: var(--custom-1);
padding: 16px;
color: #fff;
border-radius: 16px;
}

.sidenav {
  height: 100%;
  width: 0;
  position: fixed;
  z-index: 2;
  top: 0;
  left: 0;
  background-color: #fff;
  overflow-x: hidden;
  transition: 0.5s;
  padding-top: 24px;
}

.sidenav a {
  padding: 8px 8px 8px 32px;
  text-decoration: none;
/* font-size: 25px; */
  color: #fff;
  display: block;
  transition: 0.3s;
}

.sidenav a:hover {
  color: #f1f1f1;
}

.sidenav .closebtn {
  position: absolute;
  top: 0;
  right: 25px;
  font-size: 36px;
  margin-left: 50px;
}

@media screen and (max-height: 450px) {
  .sidenav {padding-top: 15px;}
  .sidenav a {font-size: 18px;}
}

.mob-icon::after{
content: '\276F';
align-content: center;
  margin-left: 18px;
  font-size: x-large;
  color: #0b213d;
	margin-right: 6px;

}

.mob-sub-item{
margin-bottom: 16px;
border-bottom: 1.5px solid #e6eaf8;
padding-bottom: 16px;	
}

.mob-sub-item-copy{
font-size: small;
line-height: 1.3;
margin-bottom: 0px;
}
.mob-sub-item-btns{
align-items: baseline;
justify-content: space-between;
}

.mob-sub-item-ctnr{
display: flex;
flex-wrap: nowrap;padding:;
gap: 16px;
}
/*------------------------*/
/*
 * Made by Erik Terwan
 * 24th of November 2015
 * MIT License
 *
 *
 * If you are thinking of using this in
 * production code, beware of the browser
 * prefixes.
 */





* {
  scroll-behavior: smooth;
}

/* Menu code starts here */

#menuToggle
{
  display: block;
  /* You can also use relative/absolute here if you want to stay on the top */
  position: fixed;
  top: 50px;
  left: 50px;
  
  z-index: 1;
  
  -webkit-user-select: none;
  user-select: none;
}

#menuToggle a
{
  text-decoration: none;
  color: #232323;
  
  transition: color 0.3s ease;
}

#menuToggle a:hover
{
  color: tomato;
}


#menuToggle input
{
  display: block;
  width: 40px;
  height: 32px;
  position: absolute;
  top: -7px;
  left: -5px;
  
  cursor: pointer;
  
  opacity: 0; /* hide this */
  z-index: 2; /* and place it over the hamburger */
  
  -webkit-touch-callout: none;
}

/*
 * Just a quick hamburger
 */
#menuToggle span
{
  display: block;
  width: 33px;
  height: 4px;
  margin-bottom: 5px;
  position: relative;
  
  background: #cdcdcd;
  border-radius: 3px;
  
  z-index: 1;
  
  transform-origin: 4px 0px;
  
  transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
              background 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
              opacity 0.55s ease;
}

#menuToggle span:first-child
{
  transform-origin: 0% 0%;
}

#menuToggle span:nth-last-child(2)
{
  transform-origin: 0% 100%;
}

/* 
 * Transform all the slices of hamburger
 * into a crossmark.
 */
#menuToggle input:checked ~ span
{
  opacity: 1;
  transform: rotate(45deg) translate(-2px, -1px);
  background: #232323;
}

/*
 * But let's hide the middle one.
 */
#menuToggle input:checked ~ span:nth-last-child(3)
{
  opacity: 0;
  transform: rotate(0deg) scale(0.2, 0.2);
}

/*
 * Ohyeah and the last one should go the other direction
 */
#menuToggle input:checked ~ span:nth-last-child(2)
{
  transform: rotate(-45deg) translate(0, -1px);
}

/*
 * Make this absolute positioned
 * at the top left of the screen
 */

#menuToggle input:checked ~ #menuToggle ul,
#menuToggle input:checked ~ ul.menu {
  transform: none;
}







.ham {
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  transition: transform 400ms;
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.hamRotate.active {
  transform: rotate(45deg);
}

.line {
  fill:none;
  transition: stroke-dasharray 400ms, stroke-dashoffset 400ms;
  stroke:#0b213d;
  stroke-width:5;
  stroke-linecap:round;
}

.ham4 .top {
  stroke-dasharray: 40.01 121;
}
.ham4 .bottom {
  stroke-dasharray: 40.01 121;
}
.ham4.active .top {
  stroke-dashoffset: -68px;
}
.ham4.active .bottom {
  stroke-dashoffset: -68px;
}


/* ----------- */
 /* Style the buttons that are used to open and close the accordion panel */
.accordion {
  background-color: #fff;
  color: #0b213d;
  cursor: pointer;
  padding: 0;
  width: 100%;
  text-align: left;
  border: none;
  outline: none;
  transition: 0.4s;
  -webkit-tap-highlight-color: transparent;
}

/* Add a background color to the button if it is clicked on (add the .active class with JS), and when you move the mouse over it (hover) */
.activeAcc, .accordion:hover {
  background-color: #fff;
	color: #0b213d;
}

/* Style the accordion panel. Note: hidden by default */
.panel {
  padding-top: 16px;
  background-color: white;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out;

} 

.accordion:after {
  content: '\276F'; /* Unicode character for "plus" sign (+) */
  font-size: var(--h3fontsize);
  color: #0b213d;
  float: right;
  margin-left: 5px;
  margin-right: 6px;
  rotate: 90deg;
  transition: rotate 0.4s ease-in-out;
}

.activeAcc:after {
  /*content: "\2796"; /* Unicode character for "minus" sign (-) */
  rotate: 270deg;
  transition: rotate 0.4s ease-in-out;
}