:root {
  --pink: #F49AC1;
  --green: #8BCDCB;
  --purple: #CFBADB;
  --lime: #E0E881;
  --peach: #FF7D63;
  --grey: #BCBDC0;
  --beige: #F0E7D8;
  --black: #333333;
}

* {
  box-sizing: border-box;
}

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
  font-size: 1em;
  font-family: "Arial", sans-serif;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

img {
  display: block;
  height: 100%;
  width: 100%;
}

em {
  font-style: italic;
}

strong {
  font-weight: 900;
}

a {
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6, p {
  margin: 0;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 900;
  font-family: "Inter", sans-serif;
}

h1 span, h2 span, h3 span, h4 span, h5 span, p span {
  border-bottom: 0.1em solid;
}

h1 {
  font-size: 4.5rem;
  line-height: 130%;
  padding: 5rem 0 1rem;
}

h2 {
  font-size: 3rem;
  line-height: 130%;
  padding-bottom: 1rem;
}

h3 {
  font-size: 1.5rem;
  line-height: 140%;
}

h4 {
  font-size: 1.25rem;
  line-height: 140%;
}

h5 {
  font-size: 1rem;
  line-height: 150%;
}

p {
  font-size: 1.25rem;
  padding-bottom: 2.5rem;
  line-height: 150%;
}

.m-show {
  display: none;
}

.m-hide {
  display: block;
}

body {
  font-size: 1em;
  color: var(--black);
  font-family: "Open Sans", sans-serif;
}

.bttn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.5rem;
  padding: 0 2rem;
  min-width: 10.1875rem;
  color: #fff;
  background-color: #333333;
  font-size: 1.2rem;
  font-weight: bold;
  height: 3rem;
  transition: all 0.3s;
  cursor: pointer;
}
.bttn:hover {
  background-color: #fff;
  border: 0.125rem solid;
  color: var(--black);
}

.bttn_white {
  display: inline-flex;
  height: 2.8em;
  border-radius: 3em;
  padding: 0 2em;
  color: #004D80;
  background-color: #fff;
  font-size: 1.2em;
  align-items: center;
  font-weight: bold;
}

.flex {
  display: flex;
}

header {
  position: fixed;
  z-index: 99;
  top: 0;
  left: 0;
  width: 100%;
  padding: 0 4vw;
}
header .menubttn {
  display: none;
}
header .main_logo {
  width: 11.51162624rem;
  height: 3rem;
  background-image: url(images/Reframe_logo.svg);
  text-indent: -9999%;
  overflow: hidden;
  background-size: contain;
  background-repeat: no-repeat;
}
header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 90rem;
  margin: 0 auto;
  height: 6rem;
}
header .container .menucontain {
  display: flex;
  align-items: center;
  gap: 2rem;
}
header .container .menucontain ul {
  display: flex;
  gap: 1.8rem;
}
header .container .menucontain ul li {
  position: relative;
}
header .container .menucontain ul a {
  color: var(--black);
  font-weight: 900;
  white-space: nowrap;
}
header .menucontain > ul > li > a {
  padding: 1rem 0;
  display: block;
}
header .menucontain > ul > li:hover > a {
  border-bottom: 0.2rem solid;
  padding-bottom: 0.8rem;
}
header .sub-menu {
  position: absolute;
  left: -1.5rem;
  top: 99%;
  padding-top: 2rem;
  display: none;
}
header .sub-menu ul {
  background-color: #fff;
  border-radius: 0.5rem;
  flex-direction: column;
  padding: 0.5rem;
  gap: 0.5rem !important;
}
header .sub-menu ul a {
  padding: 1rem 2rem 1rem 1rem;
  display: block;
}
header .sub-menu ul a:hover {
  background-color: var(--pink);
  border-radius: 0.25rem;
}
header li:hover > .sub-menu {
  display: block;
  transition: all 0.3s;
}
header li.submenu {
  background-image: url(images/dropdown.svg);
  padding-right: 1rem;
  background-position: right center;
  background-repeat: no-repeat;
  transition: all 0.3s;
}

header.active {
  background-color: #fff;
  transition: all 0.3s;
}
header.active .main_logo {
  width: 11.51162624rem;
  height: 3rem;
  background-image: url(images/Reframe_logo_w.svg);
}

section {
  padding: 5rem 4vw;
}
section .container {
  max-width: 90rem;
  margin: 0 auto;
}
section .sec-head {
  text-align: center;
}

#heroarea {
  background-color: var(--pink);
  min-height: 39rem;
  display: flex;
  align-items: center;
}
#heroarea .herocontent {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
#heroarea .herocontent p {
  font-weight: 900;
}
#heroarea .herocontent h1 {
  max-width: 60rem;
}

#lead_ins_grid {
  background-color: var(--peach);
}
#lead_ins_grid .sec-head p {
  max-width: 55rem;
  margin-left: auto;
  margin-right: auto;
}
#lead_ins_grid .sec-head.sectop p {
  max-width: 57rem;
  margin-left: auto;
  margin-right: auto;
}
#lead_ins_grid .sectop {
  padding-bottom: 2rem;
}
#lead_ins_grid .iconarea {
  height: 12rem;
  display: flex;
  width: 100%;
  justify-content: center;
  align-items: center;
}
#lead_ins_grid .iconarea img {
  height: 6rem;
  width: auto;
}
#lead_ins_grid a {
  color: var(--black);
  display: block;
}
#lead_ins_grid a .contentarea {
  padding: 2rem 1.5rem 2.5rem;
}
#lead_ins_grid a .contentarea p {
  padding: 0;
}
#lead_ins_grid .imgarea {
  height: 18rem;
}
#lead_ins_grid .imgarea img {
  object-position: center;
  object-fit: cover;
}
#lead_ins_grid .lead_ins {
  display: flex;
  gap: 1em;
}
#lead_ins_grid .lead_ins li {
  flex: 1;
  background-color: rgba(255, 255, 255, 0.5333333333);
  border-radius: 0.5rem;
  overflow: hidden;
}
#lead_ins_grid .lead_ins li h3 {
  padding-bottom: 1rem;
}
#lead_ins_grid .lead_ins.statistics li {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.5333333333);
}
#lead_ins_grid .lead_ins.statistics .contentarea {
  text-align: center;
  padding-top: 2rem;
  padding: 2rem 3rem;
}
#lead_ins_grid .lead_ins.statistics .contentarea h3 {
  font-size: 3rem;
  padding-top: 0;
}
#lead_ins_grid .lead_ins.statistics .contentarea h3 span {
  border-bottom: none;
  font-size: 1.5rem;
}
#lead_ins_grid .lead_ins.statistics .contentarea p {
  padding: 0;
}
#lead_ins_grid .numbers h3 {
  margin-bottom: 0rem;
  padding-bottom: 0rem !important;
  line-height: 100%;
}
#lead_ins_grid .lead_ins.icons .contentarea {
  padding-top: 0;
  text-align: center;
  padding-bottom: 3.5rem;
}
#lead_ins_grid .lead_ins.icons h3 {
  font-size: 2rem;
  line-height: 130%;
  padding-bottom: 1rem;
}
#lead_ins_grid .lead_ins.cta_no_image .contentarea {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 3rem 2.5rem;
  text-align: center;
}
#lead_ins_grid .lead_ins.cta_no_image .contentarea h3 {
  font-size: 2rem;
}
#lead_ins_grid .bttn {
  margin-top: 1rem;
}
#lead_ins_grid span.bttn {
  margin-top: 2rem;
}

#lead_ins_grid.beige {
  background-color: var(--beige);
}

#lead_ins_grid.purple {
  background-color: var(--purple);
}

#lead_ins_grid.lime {
  background-color: var(--lime);
}

#lead_ins_grid.green {
  background-color: var(--green);
}

#lead_ins_grid.casestudies {
  background-color: var(--purple);
}
#lead_ins_grid.casestudies .contentarea {
  padding: 2rem 0 2.5rem;
}
#lead_ins_grid.casestudies .lead_ins li {
  flex: 1;
  background-color: transparent;
  border-radius: 0.5rem;
  overflow: hidden;
}
#lead_ins_grid.casestudies .imgarea {
  position: relative;
  aspect-ratio: 1/1;
  height: auto;
  width: 100%;
  border-radius: 0.5rem;
  overflow: hidden;
}
#lead_ins_grid.casestudies .imgarea img {
  object-fit: cover;
  object-position: center;
}
#lead_ins_grid.casestudies .imgarea .imgoverlay {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}
#lead_ins_grid.casestudies .imgarea .imgoverlay img {
  height: 5rem;
  width: 5rem;
}

#benefits .sec-head p {
  margin-left: auto;
  margin-right: auto;
  max-width: 55rem;
}
#benefits ul {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
#benefits ul li {
  width: calc(33.333% - 1rem);
  max-width: calc(33.333% - 1rem);
  min-height: 8rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  border-radius: 0.5rem;
  background-color: rgba(240, 231, 216, 0.5647058824);
  padding-left: 1rem;
  padding-right: 1rem;
}
#benefits ul li img {
  display: block;
}
#benefits ul li i {
  padding: 0 0.5rem;
}
#benefits ul li i img {
  height: 4rem;
  width: auto;
}
#benefits ul li h3 {
  font-size: 1.25rem;
}

#casestudyleadin {
  background-color: var(--purple);
}
#casestudyleadin .container {
  display: flex;
  gap: 2rem;
  align-items: center;
}
#casestudyleadin h2 {
  font-size: 1.25rem;
}
#casestudyleadin h3 {
  font-size: 3rem;
  padding-bottom: 1rem;
}
#casestudyleadin div {
  flex: 1;
}
#casestudyleadin .imgarea {
  position: relative;
  aspect-ratio: 1/0.85;
  height: auto;
  width: 100%;
  border-radius: 0.5rem;
  overflow: hidden;
}
#casestudyleadin .imgarea > img {
  object-fit: cover;
  object-position: center;
}
#casestudyleadin .imgarea .imgoverlay {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}
#casestudyleadin .imgarea .imgoverlay img {
  height: 5rem;
  width: 5rem;
}

#faqs {
  background-color: var(--green);
}
#faqs .sec-head p {
  max-width: 55rem;
  margin-left: auto;
  margin-right: auto;
}
#faqs .faq-wrapper {
  display: flex;
  width: 100%;
  gap: 1rem;
}
#faqs .faq-wrapper .faq-col {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex: 1;
}
#faqs .faq-wrapper h5 {
  padding: 0;
  font-size: 1.25rem;
}
#faqs h2 {
  max-width: 50rem;
  margin: 0 auto;
}
#faqs .faq-answer {
  display: none;
  background: #fff;
  border-bottom-left-radius: 0.5rem;
  border-bottom-right-radius: 0.5rem;
}
#faqs .faq-answer div {
  display: block;
  padding: 0 1.5rem 1.5rem;
}
#faqs .faq-answer p {
  padding-bottom: 1.5rem;
}
#faqs .faq-question {
  width: 100%;
  text-align: left;
  background: #fff;
  border: none;
  padding: 1.2rem 1.5rem;
  cursor: pointer;
  font-weight: bold;
  font-size: 1.2rem;
  border-radius: 0.5rem;
  position: relative;
  display: flex;
  align-items: center;
}
#faqs .faq-question::after {
  width: 1rem;
  background-color: var(--black);
  height: 0.2rem;
  border-radius: 0.25rem;
  content: "";
  display: block;
  position: absolute;
  right: 1.6rem;
}
#faqs .faq-question::before {
  height: 1rem;
  background-color: var(--black);
  width: 0.2rem;
  border-radius: 0.25rem;
  content: "";
  display: block;
  position: absolute;
  right: 2rem;
}
#faqs .faq-question.active + .faq-answer {
  display: block;
}
#faqs .faq-question.active {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
#faqs .faq-question.active::before {
  display: none;
}
#faqs .bttn {
  border: 0.125rem solid #333333;
}

#usp {
  background-color: var(--green);
}
#usp .sec-head p {
  max-width: 55rem;
  margin-left: auto;
  margin-right: auto;
}
#usp ul {
  padding-top: 1rem;
}
#usp ul li {
  width: 100%;
  text-align: left;
  background: #fff;
  border: none;
  padding: 1.2rem 1.5rem;
  cursor: pointer;
  font-weight: bold;
  font-size: 1.2rem;
  border-radius: 0.5rem;
  position: relative;
  display: flex;
  gap: 1rem;
}
#usp ul li h5 {
  font-size: 1.25rem;
}
#usp ul li p {
  padding: 0;
  font-size: 1rem;
  font-weight: 400;
}
#usp .faq-wrapper {
  display: flex;
  column-gap: 1rem;
}
#usp .faq-wrapper .faq-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
#usp .faq-wrapper .faq-col i {
  width: 2.4rem;
  display: flex;
  justify-content: center;
  padding-top: 0.3rem;
  width: auto;
}
#usp .faq-wrapper .faq-col img {
  display: block;
  height: 1.85rem;
  width: auto;
}

#feedback_area {
  background-color: var(--beige);
}
#feedback_area .stars {
  height: 1.5rem;
  margin-bottom: 1rem;
}
#feedback_area .reviews {
  display: flex;
}
#feedback_area .reviews .IWGC_logo {
  margin: 1.8rem 4rem;
  float: left;
  min-width: 12.9375rem;
}
#feedback_area .reviews .IWGC_logo img {
  display: block;
  max-width: 12.9375rem;
  height: auto;
}
#feedback_area .reviews .reviewsarea {
  padding: 0 0 5rem;
  margin-left: 2rem;
}
#feedback_area .reviews .reviewsarea .reviewfeed {
  background-color: rgba(255, 255, 255, 0.5333333333);
  border-radius: 0.5em;
}
#feedback_area .reviews .reviewsarea .reviewfeed p {
  padding-bottom: 1rem;
}
#feedback_area .reviews .reviewsarea .reviewfeed li {
  padding: 3rem 4rem;
  text-align: center;
}
#feedback_area .reviews .reviewsarea .reviewfeed li .date {
  font-size: 1em;
  font-weight: bold;
  margin-bottom: 0;
  padding-bottom: 0;
}
#feedback_area .slick-slider {
  min-width: 0;
}
#feedback_area .logoslider {
  display: flex;
  gap: 1rem;
}
#feedback_area .logoslider div {
  flex: 1;
  height: 8rem;
  background-color: rgba(255, 255, 255, 0.5333333333);
  border-radius: 0.5rem;
}
#feedback_area .logoslider div img {
  object-fit: cover;
  height: 100%;
  width: 100%;
  object-position: center;
}

#feedback_area.nologos .reviews .reviewsarea {
  padding-bottom: 0;
}

#full_width_image {
  padding: 0;
  min-height: 30.625em;
  overflow: hidden;
  width: 100%;
  height: 35vw;
}
#full_width_image img {
  object-fit: cover;
  object-position: center;
}

#cta {
  background-color: var(--lime);
  text-align: center;
}

footer {
  background-color: var(--black);
  color: #fff;
  padding: 5rem 4vw;
}
footer .footersmall {
  font-size: 0.875rem;
}
footer .container {
  display: flex;
  gap: 27vw;
  max-width: 90rem;
  margin: 0 auto;
}
footer .container div {
  flex: 1;
}
footer .logo {
  max-height: 3rem;
  width: 11.51162624rem;
  display: block;
  margin-bottom: 1.5rem;
}
footer .logo img {
  object-fit: cover;
  object-position: center;
}
footer p, footer li, footer a {
  font-size: 1rem;
}
footer h4 {
  font-size: 1.25rem;
  padding-bottom: 0.5rem;
}
footer .footleft .flex {
  padding-bottom: 2.8rem;
  column-gap: 8rem;
}
footer .footleft p {
  padding-bottom: 1.6rem;
}
footer li {
  line-height: 150%;
}
footer a {
  color: #fff;
}
footer a:hover {
  text-decoration: underline;
}
footer .footimage {
  width: 8.5rem;
  background-color: #fff;
  border-radius: 0.25rem;
  overflow: hidden;
  margin-bottom: 1rem;
  padding: 1rem 0;
}
footer .footimage img {
  object-fit: contain;
}
footer .footimages {
  display: flex;
  gap: 0.5rem;
  padding-bottom: 2rem;
}
footer .footimages li {
  background-color: #fff;
  border-radius: 0.25rem;
  width: 20%;
  padding: 0.3rem 0.5rem;
  height: 3.4rem;
  display: flex;
  justify-content: center;
}
footer .footimages li img {
  width: auto;
  height: auto;
}
footer .socialfooter {
  display: flex;
  gap: 0.25rem;
}
footer .socialfooter img {
  width: 1.5rem;
  height: auto;
}
footer .footright p {
  padding-bottom: 1.8rem;
}
footer .footpad {
  padding-right: 20%;
}

@media screen and (max-width: 56.25rem) {
  h1 {
    font-size: 2.5rem;
    line-height: 130%;
    padding: 5rem 0 1rem;
  }
  h2 {
    font-size: 2.25rem;
    line-height: 130%;
    padding-bottom: 1rem;
  }
  h3 {
    font-size: 1.25rem;
    line-height: 140%;
  }
  .icons h3, .cta_no_image h3 {
    font-size: 1.8rem;
    line-height: 140%;
    padding-bottom: 1rem;
  }
  h4 {
    font-size: 1.25rem;
    line-height: 140%;
  }
  h5 {
    font-size: 1rem;
    line-height: 150%;
  }
  p {
    font-size: 1.25rem;
    padding-bottom: 2.5rem;
    line-height: 150%;
  }
  #lead_ins_grid .lead_ins {
    display: flex;
    gap: 1em;
    flex-direction: column;
  }
  #faqs .faq {
    display: flex;
    grid-template-columns: auto;
    gap: 1rem;
    flex-direction: column;
  }
  header .container .menucontain ul {
    display: none;
    gap: 1.8rem;
  }
  .imgarea {
    max-height: 20rem;
    overflow: hidden;
  }
  .imgarea img {
    object-fit: cover;
    object-position: center;
  }
  #feedback_area .reviews {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  #feedback_area .logoslider {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
  }
  #feedback_area .logoslider div {
    flex: 0 1 calc(50% - 0.5rem);
    height: 10rem;
  }
  section .sec-head {
    text-align: center;
    padding: 0 1rem;
  }
  header .container {
    padding: 0 4vw;
  }
  .loginbutton {
    display: none;
  }
  header .menubttn {
    width: 2rem;
    height: 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
  }
  header .menubttn span {
    display: block;
    width: 100%;
    height: 0.3rem;
    border-radius: 0.5rem;
    background-color: var(--black);
  }
  header .menubttn::before {
    content: "";
    display: block;
    width: 100%;
    height: 0.3rem;
    border-radius: 0.5rem;
    background-color: var(--black);
  }
  header .menubttn::after {
    content: "";
    display: block;
    width: 100%;
    height: 0.3rem;
    border-radius: 0.5rem;
    background-color: var(--black);
  }
  #feedback_area .reviews .reviewsarea {
    margin-left: 0;
  }
  footer .container {
    display: flex;
    gap: 7vw;
    margin: 0 auto;
    flex-direction: column;
  }
  .socialfooter {
    padding-bottom: 2rem;
  }
  .m-show {
    display: block;
  }
  .m-hide {
    display: none;
  }
  #faqs .faq-wrapper {
    display: flex;
    width: 100%;
    gap: 1rem;
    flex-direction: column;
  }
  #benefits ul {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    flex-direction: column;
  }
  #benefits ul li {
    width: 100%;
    max-width: 100%;
  }
  #casestudyleadin .container {
    display: flex;
    gap: 3.4rem;
    align-items: center;
    flex-direction: column;
  }
  #usp .faq-wrapper {
    display: flex;
    gap: 1rem;
    flex-direction: column;
  }
  #usp .faq-wrapper .faq-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  body.menu-on .menucontain > ul {
    display: flex;
    gap: 0.5rem;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    flex-direction: column;
    background-color: var(--pink);
    z-index: 5;
    padding: 2rem;
    align-items: center;
    padding-top: 7rem;
  }
  header .menucontain > ul > li:hover > a {
    border-bottom: none;
    padding-bottom: 1.5rem;
  }
  li:hover .submenu {
    display: block;
    position: inherit;
  }
  header .sub-menu {
    position: inherit;
    top: 0;
    left: 0;
    right: 0;
    padding: 0 0 1rem;
  }
  header .sub-menu li, header .sub-menu ul {
    padding: 0 !important;
    margin: 0 !important;
  }
  header .sub-menu li a {
    background-color: rgba(244, 154, 193, 0.1882352941);
    margin: 0;
  }
  header .container .menucontain ul li {
    position: relative;
    background-color: #fff;
    width: 100%;
    border-radius: 0.5rem;
    padding: 0 0.5rem;
    overflow: hidden;
  }
  header .container .menucontain ul .sub-menu ul {
    display: flex;
    position: inherit;
  }
  .menucontain > ul > li > a {
    padding-left: 1rem !important;
  }
  header .menucontain > ul > li > a {
    padding: 1.5rem 0;
  }
  .menucontain a {
    font-size: 1rem;
  }
  header li.submenu {
    background-image: none;
    padding-right: 1rem;
    background-position: right center;
    background-repeat: no-repeat;
    transition: all 0.3s;
  }
  header li.submenu > a {
    background-image: url(images/dropdown.svg);
    background-position: 94.7% center;
    background-repeat: no-repeat;
    background-size: 1.2rem;
  }
  .menu-on .loginbutton {
    display: flex;
    z-index: 5;
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    right: 2rem;
    padding: 1.5rem;
    height: auto;
  }
  .menu-on header .menubttn {
    width: 2rem;
    height: 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    z-index: 5;
    position: relative;
  }
  .menu-on header .menubttn span {
    display: none;
  }
  .menu-on header .menubttn::before {
    content: "";
    display: block;
    width: 100%;
    height: 0.3rem;
    border-radius: 0.5rem;
    background-color: var(--black);
    transform: rotate(45deg);
    position: absolute;
  }
  .menu-on header .menubttn::after {
    content: "";
    display: block;
    width: 100%;
    height: 0.3rem;
    border-radius: 0.5rem;
    background-color: var(--black);
    transform: rotate(-45deg);
    position: absolute;
  }
  .menubttn {
    cursor: pointer;
  }
}
