* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body,
input,
button,
textarea,
h1,
p {
  font-family: 'Libre Franklin', sans-serif;
}

body{
  background: #F9F9F7;
}

input::placeholder, textarea::placeholder, select::placeholder,
input:focus, textarea:focus, select:focus{
  font-family: 'Libre Franklin', sans-serif;
  font-size: inherit;
  color: #6B6B6B;
}
select{
  font-family: 'Libre Franklin', sans-serif;
}

.container {
  margin: 0 auto;
  max-width: 1200px;
}

/* header-footer section */
.header-section {
  padding: 0 20px;
  max-width: none;
  margin: 0;
  width: auto;
  display: flex;
  position: static;
  justify-content: space-around;
}

#navigation {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 46px;
}

#navigation .logo {
  width: 180px;
  height: auto;
}

#navigation .hamburger {
  display: flex;
  flex-direction: column;
  cursor: pointer;
  position: absolute;
  top: 19px;
  right: 20px;
  z-index: 1000;
}

#navigation .hamburger span:nth-child(2) {
  margin: 4px auto;
}

#navigation .hamburger span {
  width: 20px;
  height: 2.18px;
  background-color: #013C5A;
  transition: all 0.3s ease;
  border-radius: 5px;
}

#navigation .hamburger.open span:nth-child(1) {
  transform: rotate(45deg);
  position: relative;
  top: 5px;
}

#navigation .hamburger.open span:nth-child(2) {
  opacity: 0;
}

#navigation .hamburger.open span:nth-child(3) {
  transform: rotate(-45deg);
  position: relative;
  top: -8px;
}

#navigation ul.menu-left {
  position: absolute;
  margin-right: 0;
  display: block;
  width: 100%;
  left: 0;
  margin-top: 0;
  overflow: hidden;
  transition: all .3s ease-out;
  z-index: 10;
  max-height: 0;
  top: 45px;
}

#navigation ul.menu-left li {
  display: flex;
  transition: color .35s ease;
  color: #456;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 16px;
  justify-content: center;
  list-style: none;
  text-align: center;
  position: relative;
}

#navigation ul.menu-left li:last-child{
  margin-bottom: 0;
}

#navigation ul.menu-left li:not(:last-child)::after {
  content: '/';
  padding: 0 15px;
}

#navigation .menu-left li a:hover {
  text-decoration: underline;
}

#navigation .menu-left li a {
  color: #013C5A;
  text-align: center;
  text-decoration: none;
  padding: .5em 0;
  font-size: 18px;
  font-weight: 500;
  line-height: 16px;
}

#navigation .menu-left li:last-child {
  border: 0;
}

#navigation ul.menu-left.collapse {
  max-height: 15em;
  background: #d3d3d3;
}

/* footer */
.footer {
  background: #F7F7F7;
  padding: 16px 10px 3px;
  border-top: 1px solid rgba(162, 160, 160, 0.5);
}

.footer ul {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.footer ul li {
  list-style: none;
  color: #000;
  text-align: center;
  font-size: 12px;
  font-style: normal;
  font-weight: 300;
  line-height: 21px;
}

.footer ul li a {
  color: inherit;
  text-decoration: none;
}

.footer ul li:hover {
  text-decoration: underline;
}

.footer ul li::after {
  content: "|";
  margin: 0 3px;
  color: #000;
  font-size: inherit;
  font-family: inherit;
}

.footer ul li:last-child::after {
  display: none;
}
/* header-footer section end */

/* legel pages common */
.content-wrapper {
  min-height: 100vh;
  max-width: 1200px;
  width: calc(100% - 40px);
  margin: 0 auto;
}
.wrapper.legalpages .content-wrapper{
  margin-bottom: 30px;
}
.legal-content-container{
  border-radius: 40px;
  background-color: #fff;
  padding: 30px 25px;
}
.page-title {
  color: #013C5A;
  font-size: 30px;    
  line-height: normal;
  font-style: normal;
  font-weight: 700;
  text-align: center;
  margin: 39px 0 40px 0;
}
.acc-content{
  padding-left: 20px;
}
@media screen and (min-width: 921px) {
  /* top section */
  #navigation{
    min-height: auto;
    padding: 43px 0;
  }
  #navigation .logo {
    width: 225px;
  }

  #navigation .hamburger {
    display: none;
  }

  #navigation ul.menu-left {
      display: flex;
      padding: 0;
      text-align: center;
      align-items: center;
      justify-content: right;
      position: unset;
      min-height: 56px;
      transition: none;
  }

  #navigation ul.menu-left li{
    margin-bottom: 0;
  }

  #navigation .menu-left li a {
    font-size: 16px;
    padding: 0;
  }

  #navigation a:hover {
    text-decoration: underline;
  }

  .footer ul li{
    font-size: 16px;
  }
  .footer{
    padding: 30px 10px;
  }

  /* header-footer section ends */

  /* legal pages common */
  .legal-content-container {
    padding: 40px 40px;
  }    
  .page-title {
    font-size: 40px;    
    line-height: normal;
    margin: 0px 0 42px 0;
  }    
}

@media screen and (max-width: 921px) {
  #navigation ul.menu-left li:not(:last-child)::after{
    display: none;
  }
}