/* ==============================
Header and Main Navigation
================================= */
* {
    box-sizing: border-box;
  }
header {
    background-color: #b3595a;
    padding-top: 10px;
    position: fixed;
    width: 100%;
    margin: 0 auto;
    z-index: 1000;
}
.logo {
    max-width: 150px;
}
main {
    padding-top: 89px;
    padding-bottom: 5px;
  }
nav > ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
    font-weight: 400;
    line-height: 3.0;
  }
  .navtoggle li .icon {
    position: absolute;
    right: 0;
    top: 2px;
    margin-top: 13px;
  }
  .navtoggle li:not(:last-child) {
    display: none;
  }
  .navtoggle,
  .navtoggle.responsive {
    position: relative;
  }
  .navtoggle.responsive nav {
    padding: 24px 0 0;
  }
  .navtoggle.responsive li {
    display: block;
    padding: 10px 0;
  }
  .bar1, .bar2, .bar3 { 
    width: 35px; 
    height: 4px; 
    background-color: #ffffff; 
    margin: 6px 0; 
    border-radius: 4px; 
    transition: 0.4s; 
  } 
  .change .bar1 { 
    transform: translate(0, 10px) rotate(-45deg); 
  } 
  .change .bar2 {opacity: 0;} 
  .change .bar3 { 
    transform: translate(0, -10px) rotate(45deg); 
  }
/* ==============================
Hero Section
================================= */
.hero {
    position: relative;
    text-align: bottom-left;
    color: #ffffff;
}
.bottom-left {
    position: absolute;
    bottom: 30px;
    left: 16px;
}
.bottom-left h1 {
    font-size: 24;
    font-weight: 400;
    color: #ffffff;
    line-height: .3;
    margin-bottom: 30px;
}
/* ==============================
General Styles
================================= */
body {
    background-color: #ffffff;
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    font-weight: 400;
    font-style: normal;
    color: #383838;
    line-height: 1.5;
  }
h1, h2, h3, h4 {
    line-height: 1.4;
    margin: 5;
}
h1 {
    font-size: 24;
    font-weight: 500;
    color:#383838;
}
h2 {
    font-size: 20;
    font-weight: 500;
    color:#383838;
}
h3 {
    font-size: 16;
    font-weight: 500;
    color: #b3595a;
}
h4 {
    font-size: 14;
    font-weight: 500;
    color: #383838;
}
#heading {
    max-width: 1200px;
    padding-top: 15px;
    padding-right: 16px;
    padding-left: 16px;
    padding-bottom: 15px;
}
.about-heading h2 {
    line-height: .6;
}
hr { 
    margin-top: 30px;
    margin-bottom: 30px;
}
img {
    width: 100%;
    box-sizing: border-box;
}
a {
    color: #ffffff;
    text-decoration: none;
  }
.button {
    display: inline-block;
    background-color: #b3595a;
    color: #ffffff;
    font-weight: 400;
    padding: 8px;
    padding-right: 16px;
    padding-left: 16px;
    border-radius: 15px;
    text-decoration: none;
}
.button-secondary {
    display: inline-block;
    background-color: #ffffff;
    color: #b3595a;
    font-weight: 400;
    padding: 8px;
    padding-right: 16px;
    padding-left: 16px;
    margin-bottom: 20px;
    border-radius: 15px;
    border: 1px solid #b3595a;
    text-decoration: none;
}
.button-ghost-gray {
    display: inline-block;
    background-color: none;
    color: #383838;
    font-weight: 400;
    padding: 8px;
    padding-right: 16px;
    padding-left: 16px;
    border-radius: 15px;
    border: 1px solid #383838;
    text-decoration: none;
}
.button-white {
    display: inline-block;
    background-color: #ffffff;
    color: #b3595a;
    font-weight: 400;
    padding: 8px;
    padding-right: 16px;
    padding-left: 16px;
    border-radius: 15px;
    text-decoration: none;
}
.container {
    max-width: 1200px;
    padding: 5px 16px 10px 16px;
}
.benefits {
    max-width: 1200px;
    background: rgba(245, 190, 177, 0.5);
    border-radius: 15px;
    padding-top: 5px;
    padding-right: 16px;
    padding-left: 16px;
    padding-bottom: 30px;
}
footer {
    background-color: #b3595a;
    max-width: 1200px;
    padding: 5px 16px 10px 16px;
    margin: 0 auto;
    color: #ffffff;
}
footer h2 {
    color: #ffffff;
}
footer ul {
    list-style-type: none;
}
.footer a.menu.hotline {
    display:block;
    color: #ffffff;
    line-height: .3;
    list-style-type: none;
    padding-top: 5px;
  }
  .social > ul {
    list-style-type: none;
    padding: 5px;
    width: 100%;
  }
  .social > ul > li {
    display: inline-block;
  }
  #email-schedule {
    padding-right: 10px;
  }
  #email {
    padding-right: 10px;
  }
  #cashapp img {
    max-height: 27px;
    margin-bottom: -8px;
  }
.footer #copyright {
    font-size: 10px;
    padding-top: 60px;
}
/* ==============================
Menu Animation
================================= */
ul.navigation a.menu {
    color: #ffffff;
    padding: 10px 10px;
    position: relative;
  }
  ul.navigation a.menu:before,
  ul.navigation a.menu:after {
    position: absolute;
    opacity: 0;
    width: 0%;
    height: 1px;
    content: "";
    background: #ffffff;
    transition: all 0.3s;
  }
  ul.navigation a.menu:before {
    left: 0px;
    top: 0px;
  }
  ul.navigation a.menu:after {
    right: 0px;
    bottom: 0px;
  }
  ul.navigation a.menu:hover:before,
  ul.navigation a.menu:hover:after {
    opacity: 1;
    width: 100%;
  }

  ul.navigation a.menu.button-white {
    display: inline-block;
    background-color: #ffffff;
    color: #b3595a;
    font-weight: 400;
    padding: 0px 16px 0px 16px;
    text-decoration: none;
  }
  ul.navigation a.menu.hotline {
    display:block;
    color: #ffffff;
    line-height: .3;
  }