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

/* header-footer section */
.top-section {
  width: 100%;
  min-height: 300px;
  background: #344756;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 0 20px;
}
.header-section {
  padding: 0;
  max-width: none;
  margin: 0 auto;
  width: auto;
  display: block;
  position: static;
  max-width: 1200px;
}    
#navigation {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 46px;
}    
#navigation .logo{
  position: absolute;
  left: 20px;
  top: 20px;
  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: #fff;
  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%;
  background-color: #F2F2F2;
  left: 0;
  margin-top: 0;
  box-shadow: 0 3px 30px hsla(0, 0%, 0%, .1);
  overflow: hidden;
  transition: all .3s ease-out;
  z-index: 10;
  max-height: 0;
  top: 45px;
  margin: 0;
}    
#navigation ul.menu-left li {
  display: flex;
  position: relative;
  transition: color .35s ease;
  color: #456;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 16px;
  justify-content: center;
  list-style: none;
  border-right: 1px solid #fff;
  text-align: center;
  padding: 0 15px;
  margin-bottom: 0;
}   
#navigation .menu-left li:hover {
  text-decoration: underline;
  color: white;
}    
#navigation .menu-left li a {
  color: #000;
  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;
}

/* footer section */
.footer {
  background: #F7F7F7;
  padding: 16px 6px 20px;
  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;
  text-decoration: none;
  color: #000;
  text-align: center;
  font-style: normal;
  font-weight: 300;
  font-size: 11px;
  line-height: 17px;
}
.footer ul li a {
  color: inherit;
  text-decoration: none;
}
.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 {
  border-radius: 40px 40px 0 0;
  margin-top: -133px;
  background-color: #fff;
  min-height: 100vh;
  padding: 0 25px;
}
.page-title {
  color: #FFF;
  font-size: 30px;    
  line-height: 30px;
  font-style: normal;
  font-weight: 500;
  text-align: center;
  margin: 39px 0 40px 0;
}
.acc-content{
  padding-left: 20px;
}

.unsub-copy {
  color: #666;
  text-align: center;
  font-family: "Public Sans";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 18px;
  display: block;
  margin: 110px auto 0;
}
@media screen and (min-width: 921px) {
  /* header-footer section */
  .top-section {
    min-height: 429px;
  }
  #navigation .logo{
    width: 225px;
    top: 58px;
    left: 0;
  }
  #navigation .hamburger{
    display: none;
  }
  #navigation ul.menu-left{
    display: flex ;
    padding: 0;
    text-align: center;
    align-items: center;
    justify-content: center;
    background: #2A3945;
    border-radius: 50px;
    max-width: 423px;
    position: unset;
    min-height: 56px;
    transition: none;
  }
  #navigation .menu-left li a{
    color: #fff;
    text-align: center;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 16px;
    text-decoration: none;
    padding: 0;
  }  
  #navigation a:hover {
    text-decoration: underline;
  }
  #navigation{
    padding: 41px 0;
    position: relative;
  }

  /* footer section */
  .footer {    
    padding: 29px 84px;
  }
  .footer ul li {    
    font-size: 16px;
    line-height: 22px;
  }
  .footer ul li:hover {
    text-decoration: underline;
  }
  /* header-footer section ends */

  /* legal pages common */
  .content-wrapper {
    border-radius: 80px 80px 0 0;
  }    
  .page-title {
    font-size: 72px;    
    line-height: 80px;
    margin: 39px 0 40px 0;
  }    
}