@import "fonts.css";

.placeholder::-webkit-input-placeholder {
  color: #5a5a5a;
}

.placeholder::-moz-placeholder {
  color: #5a5a5a;
}
.price-line{
    display:flex;
    width:100%;
    overflow:hidden;
    border-radius:8px;
    font-family:Arial,sans-serif;
    margin:0;
    line-height:1.1;
}

.price-block{
    flex:1;
    padding:12px 20px;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    text-align:center;
}

.price-block span{
    font-size:13px;
    color:#fff;
    opacity:.9;
    margin-bottom:5px;
}

.price-block b{
    font-size:24px;
    color:#fff;
    font-weight:700;
}

.old{
    background:#2a2a2a;
}

.old b{
    text-decoration:line-through;
    opacity:.85;
}

.new{
    background:#d89b00;
}

.new-wrap{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:8px;
}

.new small{
    background:rgba(255,255,255,.22);
    color:#fff;
    padding:4px 7px;
    border-radius:4px;
    font-size:11px;
    font-weight:700;
}
.placeholder:-moz-placeholder {
  color: #5a5a5a;
}

.placeholder:-ms-input-placeholder {
  color: #5a5a5a;
}

.placeholder:focus::-webkit-input-placeholder {
  color: transparent;
}

.placeholder:focus::-moz-placeholder {
  color: transparent;
}

.placeholder:focus:-moz-placeholder {
  color: transparent;
}

.placeholder:focus:-ms-input-placeholder {
  color: transparent;
}

.placeholder:focus {
  outline: none;
}

:focus {
  outline: none;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
}

b, strong {
  font-weight: 700;
}

body {
  width: 100%;
  padding: 0;
  margin: 0;
  font-family: 'Museo Sans', Arial, Helvetica, sans-serif;
  font-weight: 400;
  font-size: 17px;
  line-height: 150%;
  color: #000;
  background: #1c1c1c;
}

.wrap {
  position: relative;
  width: 480px;
  min-height: 100vh;
  margin: 0 auto;
  background: #fff;
}

section {
  margin: 10px 0;
}

button,
textarea,
input {
  font-family: 'Museo Sans', sans-serif;
}

/*   video   */

.video-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  background: #333;
}
.venom-benefits {
    padding: 35px 16px;
    background: #fafafa;
}

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

.venom-header {
    text-align: center;
    margin-bottom: 25px;
}

.venom-badge {
    display: inline-block;
    padding: 8px 16px;
    background: #fff5df;
    color: #d79b15;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .5px;
    margin-bottom: 15px;
}

.venom-header h2 {
    margin: 0;
    font-size: 32px;
    line-height: 1.15;
    color: #1e1e1e;
    font-weight: 800;
}

.venom-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
}

.venom-product {
    text-align: center;
}
.active-components {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.active-components li {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  background: #fff;
  border: 1px solid #f3e5cb;
  border-radius: 14px;
  padding: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  min-height: 140px;
}

.active-components .icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: #fff7ea;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.active-components h3 {
  margin: 0 0 4px;
  font-size: 14px;
  line-height: 1.3;
  color: #1f1f1f;
  font-weight: 700;
}

.active-components p {
  margin: 0;
  font-size: 12px;
  line-height: 1.45;
  color: #666;
}

/* Mobile */
@media (max-width: 480px) {
  .active-components {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }

  .active-components li {
    padding: 10px;
    border-radius: 12px;
    min-height: 130px;
  }

  .active-components .icon {
    width: 36px;
    height: 36px;
    font-size: 16px;
    border-radius: 10px;
  }

  .active-components h3 {
    font-size: 13px;
  }

  .active-components p {
    font-size: 11px;
    line-height: 1.4;
  }
}
.venom-product img {
   
    filter: drop-shadow(0 15px 30px rgba(0, 0, 0, .15));
}

.venom-list {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.venom-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;

    background: #ffffff;
    padding: 18px;

    border-radius: 18px;

    box-shadow:
        0 4px 12px rgba(0, 0, 0, .05),
        0 1px 3px rgba(0, 0, 0, .03);

    transition: all .25s ease;
}

.venom-item:hover {
    transform: translateY(-3px);
    box-shadow:
        0 10px 25px rgba(0, 0, 0, .08),
        0 4px 10px rgba(0, 0, 0, .05);
}

.venom-icon {
    flex-shrink: 0;

    width: 40px;
    height: 40px;

    border-radius: 50%;

    background: #fff5df;
    color: #d79b15;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 20px;
    font-weight: 700;
}

.venom-text h4 {
    margin: 0 0 5px;

    font-size: 16px;
    line-height: 1.3;

    color: #1f1f1f;
    font-weight: 700;
}

.venom-text p {
    margin: 0;

    font-size: 14px;
    line-height: 1.5;

    color: #666666;
}

/* МОБИЛЬНА АДАПТАЦІЯ */

@media (max-width: 480px) {

    .venom-benefits {
        padding: 30px 14px;
    }

    .venom-header h2 {
        font-size: 27px;
    }

    .venom-badge {
        font-size: 11px;
        padding: 7px 14px;
    }

    

    .venom-item {
        padding: 15px;
        border-radius: 16px;
        gap: 12px;
    }

    .venom-icon {
        width: 34px;
        height: 34px;
        font-size: 16px;
    }

    .venom-text h4 {
        font-size: 15px;
    }

    .venom-text p {
        font-size: 13px;
    }
}
.video-container iframe,
.video-container object,
.video-container embed,
.video-container .youtube {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.m-button {
  display: block;
  background: #d76502;
  height: 54px;
  line-height: 54px;
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  font-family: 'Proxima Nova', sans-serif;
  padding: 0 10px;
  white-space: nowrap;
  text-align: center;
  text-decoration: none;
  border: 0;
  border-radius: 6px;
  cursor: pointer;
}

.m-button i {
  font-size: 0.8em;
  font-style: normal;
  text-transform: uppercase;
}

.m-button--mini {
  height: 46px;
  line-height: 46px;
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.m-button--big {
  width: 360px;
  height: 60px;
  line-height: 60px;
  margin: 0 auto;
  letter-spacing: 1px;
  margin-top: 10px;
}

h2.title {
  font-size: 32px;
  font-weight: 700;
  line-height: 110%;
  text-align: center;
  padding: 0 20px;
}

h2.title span {
  color: #ff5a00;
}

h2.title span.gray {
  color: #a3a3a3;
}

h2.title--margin {
  margin-bottom: 30px;
}

.sub-title {
  color: #ff5a00;
  font-size: 30px;
  font-weight: 400;
  line-height: 120%;
  letter-spacing: 1px;
  text-align: center;
  margin-top: 10px;
  margin-bottom: 30px;
  padding: 0 15px;
}

/*   offer   */

.offer__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 96px;
  padding: 0 20px;
}

.offer__head--bottom {
  justify-content: center;
  height: auto;
  padding: 35px 20px 30px;
}

.offer__head--shadow {
  position: relative;
  z-index: 2;
  box-shadow: 0 4px 13px rgba(0, 0, 0, .15);
}

.offer__title {
  font-family: 'Yaro Rg', sans-serif;
  font-size: 28px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  line-height: 100%;
  font-weight: 900;
}

.offer__title--big {
  font-size: 50px;
  text-align: center;
}

.offer__title span {
  display: block;
  font-size: 11px;
  line-height: 100%;
  letter-spacing: .7px;
  text-transform: none;
}

.offer__title--big span {
  font-size: 19px;
}

.offer__box {
  position: relative;
}





.offer__bullet {
  position: absolute;
  left: 20px;
  top: 20px;
  display: flex;
  align-items: center;
  width: 350px;
  font-size: 15px;
  line-height: 120%;
}

.offer__bullet:before {
  flex-shrink: 0;
  display: block;
  width: 54px;
  height: 54px;
  background: url("../img/icon1.png") 50% 50% no-repeat #00b7a7;
  border-radius: 50%;
  margin-right: 10px;
  content: '';
}

.offer__bullet b{
  display: block;
}


.benef_item{
  position: absolute;
  top: 140px;
  left: 10px;
}

/*   s1   */

.s1 {
  margin-top: 15px;
}

.s1 h2.title{
  font-size: 32px;
  text-transform: uppercase;
}

.s1__box {
  display: flex;
  justify-content: space-between;
}

.s1__product {
  display: block;
  margin-top: -10px;
  width: 250px;
}

.bullet {
  margin-right: 10px;
  margin-left: 10px;
}

.bullet__item {
  position: relative;
  padding-left: 25px;
  font-size: 17px;
  line-height: 120%;
}

.bullet__item:before {
  position: absolute;
  left: -5px;
  top: 0;
  display: block;
  background: url("../img/check-icon.png") 0 0 no-repeat;
  width: 28px;
  height: 31px;
  content: '';
}

.bullet__item:not(:last-child) {
  margin-bottom: 30px;
}

/*   order   */

.order {
  background: #ffebd1;
  padding: 20px 0;
  margin: 30px 20px 0;
  border-radius: 20px;
  box-shadow: 0 0 21px rgba(0, 0, 0, .21);
}

.order--bottom {
  margin-top: 30px;
  margin-bottom: 40px;
}

.order__product {
  display: flex;
  justify-content: center;
  margin-bottom: 25px;
}

.order__product img {
  display: block;
  width: 146px;
  border-radius: 6px;
  box-shadow: 0 0 21px rgba(76, 76, 76, .23);
  margin: 0 20px;
}

.order__text {
  font-family: 'Proxima Nova', sans-serif;
  text-align: center;
  margin-bottom: 30px;
}

.order__text h3 {
  font-size: 24px;
  font-weight: 700;
  line-height: 100%;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.order__text p {
  font-size: 20px;
  line-height: 120%;
}

/*   price   */

.price {
  display: flex;
  justify-content: center;
  font-family: 'Proxima Nova', sans-serif;
  background: url("../img/price-arrow.png") 50% 50% no-repeat;
}

.price__item {
  margin: 0 35px;
}

.price__label {
  font-size: 14px;
  margin-bottom: 3px;
}

.price__value {
  font-size: 30px;
  font-weight: 700;
  line-height: 100%;
}

.price__value--old {
  text-decoration: line-through;
}

.price__value--new {
  color: #ff5a00;
}

/*   m1-form   */

.m1-form {
  padding: 0 40px;
  margin-top: 30px;
}

.m1-form__input {
  display: block;
  width: 100%;
  height: 70px;
  color: #000;
  font-size: 18px;
  text-align: center;
  padding: 0 20px;
  background: #fff;
  border: 1px solid #fb1945;
  border-radius: 6px;
  margin-bottom: 15px;
}

.m1-form .m-button {
  width: 100%;
  height: 70px;
  line-height: 70px;
  text-transform: uppercase;
}

.date-sale {
  font-family: 'Proxima Nova', sans-serif;
  font-size: 16px;
  line-height: 140%;
  text-align: center;
  margin-top: 15px;
}

.description {
  padding: 50px 0;
}

.description .title span{
  display: block;
  color: #ff5a00;
  font-size: 43px;
}

.description__box {
  background: #e6e4e5;
  margin-top: 40px;
}

.description__photo {
  display: block;
  margin-bottom: 25px;
}

.description p {
  font-size: 20px;
  line-height: 30px;
  padding: 0 20px;
  text-align: center;
  margin-bottom: 25px;
}

video.video {
  display: block;
  width: 100%;
}

.result {
  display: flex;
  background: url("../img/result-30.webp") 50% 0 no-repeat;
  width: 480px;
  height: 400px;
}

.result > span {
  width: 50%;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 20px;
}

.description .alert{
  background: #bd2117;
  color: #fff;
  text-transform: uppercase;
  font-size: 20px;
  line-height: 1.3em;
  text-align: center;
  padding: 15px 10px;
}

.result > span:nth-child(1) {
  padding-right: 30px;
}

.result > span:nth-child(2) {
  padding-left: 30px;

  font-weight: 700;
  font-size: 16px;
  line-height: 1.3em;
}

.gif {
  margin-bottom: 20px;
}

.gif img {
  display: block;
  margin-bottom: -30px;
}

.gif .m-button{
  position: relative;
}

.blogger__box {
  position: relative;
  background: url("../img/blogger-bg.jpg") 50% 0 no-repeat;
  height: 712px;
  padding-top: 15px;
}

.blogger__hit {
  font-size: 30px;
  font-weight: 700;
  color: #fb1945;
  line-height: 100%;
  text-align: center;
  margin-top: 20px;
}

.blogger__hit span {
  display: inline-block;
  height: 54px;
  line-height: 44px;
  padding: 0 40px;
  border: 5px solid #fb1945;
  border-radius: 27px;
}

.blogger__text {
  position: absolute;
  top: 315px;
  right: 0;
  width: 120px;
  font-size: 16px;
  line-height: 130%;
}

.blogger__quote {
  position: absolute;
  left: 20px;
  top: 485px;
  width: 400px;
  font-size: 18px;
  line-height: 140%;
}

/* specialist_block */
.specialist_block .title{
  font-size: 32px;
}
.spec_author{
  background: url(../img/spec_author.jpg) 50% 0 no-repeat;
  min-height: 346px;
  padding-bottom: 50px;
}
.spec_author .text{
  padding: 90px 10px 0 285px;
}
.spec_author .text:after{
  content: '';
  width: 89px;
  height: 29px;
  background: url(../img/signature.png);
  display: block;
  margin: 5px 0 0;
}
.spec_author .text h4{
  font-weight: 700;
  font-size: 28px;
  line-height: 1.3em;
  margin-bottom: 10px;
}
.spec_author .text p{
  font-size: 16px;
  line-height: 1.4em;
}
.container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 30px;
}
.text {
  width: 50%;
}
.image {
  width: 50%;
}
img {
  width: 100%;
  height: auto;
}
.spec_text{
  max-width: 450px;
  margin: -5px auto 0;
  background: #ffedd7;
  padding: 25px 20px;
  border-radius: 10px;
  position: relative;
  line-height: 1.3em;
}
.spec_text p{
  margin-bottom: 20px;
}
.spec_text p:last-child{
  margin-bottom: 0;
}
.spec_text:before{
  content: '';
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 20px 20px 20px;
  border-color: transparent transparent #c7e9b6 transparent;
  position: absolute;
  top: -19px;
  left: 45px;
}

.spec_certificate{
  display: flex;
  padding: 0 10px;
  margin-top: 20px;
}
.spec_certificate img{
  flex-shrink: 0;
}
.spec_certificate .text{
  color: #044483;
  font-size: 14px;
  line-height: 1.3em;
  padding-left: 10px;
}
.spec_certificate .text b{
  text-transform: uppercase;
}
.spec_certificate .text img{
  display: block;
  margin: 0 0 15px;
}
.specialist_block .m-button{
  margin-top: 15px;
}


/*   benefits   */
.benefits {
  padding: 50px 0;
}

.benefits__list {
  margin-bottom: 40px;
}

.benefits__item {
  display: flex;
  align-items: center;
  padding: 0 20px;
  margin-bottom: 35px;
}

.benefits__item:last-child {
  margin-bottom: 0;
}

.benefits__item:nth-child(odd) .benefits__image {
  margin-right: 20px;
}

.benefits__item:nth-child(even) .benefits__image {
  order: 2;
  margin-left: 20px;
}

.benefits__image {
  flex-shrink: 0;
  display: block;
  width: 194px;
  border-radius: 50%;
  box-shadow: 0 10px 35px rgba(157, 154, 154, .7);
}

.benefits__text {
  font-size: 20px;
  line-height: 28px;
}

.benefits__text>p>b{
  text-transform: uppercase;
  display: block;
}


/*   reviews   */

.reviews {
  margin-bottom: 50px;
}

.reviews__list {
  padding: 0 50px;
}

.reviews__item {
  background: #fff;
  margin-bottom: 40px;
  border-radius: 30px;
  box-shadow: 0 0 21px rgba(157, 157, 157, .6);
  padding: 25px 20px;
}

.rev_author{
  display: flex;
  align-items: center;
}
.rev_author > img {
  border-radius: 15%;
  flex-shrink: 0;
  width: 150px;
}
.rev_author p{
  font-size: 18px;
  line-height: 1.3em;
  padding-left: 20px;
}
.rev_author p b{
  display: block;
}

.rev_img_list{
  display: flex;
}
.rev_img_list img{
  border-radius: 15px;
}

.reviews__text {
  padding: 20px 0;
  font-size: 18px;
  line-height: 25px;
}

.reviews__text img {
  display: block;
}


/*   order-steps   */
.order-steps {
  min-height: 895px;
}

.order-steps .sub-title{
  font-size: 28px;
  color: #7bb700;
}

.order-steps__list {
  padding: 0 20px;
  margin: 80px 0 0;
}

.order-steps__item {
  display: flex;
  align-items: center;
  min-height: 165px;
  position: relative;
  background: #fff;
  margin-bottom: 70px;
  border-radius: 20px;
  box-shadow: 0 6px 35px rgba(0, 0, 0, .14);
}

.order-steps__num {
  position: absolute;
  left: calc(50% - 30px);
  top: -30px;
  width: 60px;
  height: 60px;
  line-height: 60px;
  font-size: 30px;
  font-weight: 700;
  color: #fff;
  background: #7bb700;
  text-align: center;
  border-radius: 50%;
}

.order-steps__left {
  flex-shrink: 0;
  width: 170px;
}

.order-steps__left--padding {
  padding-left: 15px;
}

.order-steps__left > img {
  display: block;
}

.order-steps__button {
  position: relative;
}

.order-steps__button:after {
  position: absolute;
  right: 10px;
  bottom: -40px;
  display: block;
  background: url("../img/cursor.png") 0 0 no-repeat;
  width: 40px;
  height: 50px;
  content: '';
}

.order-steps__text {
  flex-grow: 1;
  font-size: 19px;
  line-height: 26px;
  padding: 15px;
}

.order-steps__item:nth-child(3){
  background: url(../img/order2.jpg) 0 50% no-repeat;
}

.offer__title b{
  color: #ff5a00;
}



.bottom .offer__box--hit:after{
  bottom: 0;
}

.order.order--bottom{
  margin-top: 5px;
  position: relative;
}


.footer {
    background: linear-gradient(180deg, #fffdf8 0%, #fff6e8 100%);
    padding: 40px 20px 30px;
    border-top: 1px solid #f1dfbb;
    font-family: Arial, sans-serif;
    color: #2b2b2b;
}

.footer__container {
    max-width: 1100px;
    margin: 0 auto;
}

.footer__pay {
    width: 100%;
    max-width: 320px;
    display: block;
    margin: 0 auto 30px;
    object-fit: contain;
}

.footer__top {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid #f1dfbb;
}

.footer__brand h2 {
    margin: 0 0 8px;
    font-size: 28px;
    color: #d79b24;
    font-weight: 700;
    letter-spacing: 1px;
}

.footer__brand p {
    margin: 0;
    font-size: 14px;
    color: #666;
    max-width: 320px;
    line-height: 1.5;
}

.footer__contacts {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer__contacts a {
    color: #2b2b2b;
    text-decoration: none;
    font-size: 15px;
    transition: 0.3s;
}

.footer__contacts a:hover {
    color: #d79b24;
}

.footer__info {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px 20px;
    margin-bottom: 25px;
}

.footer__info p {
    margin: 0;
    font-size: 14px;
    color: #555;
    line-height: 1.5;
}

.footer__links {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 25px;
}

.footer__links a {
    color: #7a7a7a;
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s;
}

.footer__links a:hover {
    color: #d79b24;
}

.footer__copy {
    margin: 0;
    padding-top: 20px;
    border-top: 1px solid #f1dfbb;
    text-align: center;
    font-size: 13px;
    color: #999;
}
.guarantee {
    padding: 60px 20px;
    background: linear-gradient(180deg, #fffdf8 0%, #fff5e7 100%);
}

.guarantee__container {
    max-width: 1100px;
    margin: 0 auto;
}

.guarantee__top {
    text-align: center;
    margin-bottom: 40px;
}

.guarantee__label {
    display: inline-block;
    padding: 8px 16px;
    border-radius: 50px;
    background: #fff2d7;
    color: #d4941f;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 16px;
}

.guarantee__title {
    margin: 0 0 14px;
    font-size: 42px;
    line-height: 1.1;
    color: #1f1f1f;
}

.guarantee__subtitle {
    max-width: 700px;
    margin: 0 auto;
    font-size: 17px;
    line-height: 1.6;
    color: #666;
}

.guarantee__content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.guarantee__card {
    background: #fff;
    border-radius: 24px;
    padding: 32px;
    border: 1px solid #f2dfbe;
    box-shadow: 0 10px 30px rgba(0,0,0,0.04);
}

.guarantee__icon {
    width: 60px;
    height: 60px;
    border-radius: 18px;
    background: #fff6e7;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 22px;
}

.guarantee__card p {
    margin: 0 0 18px;
    font-size: 17px;
    line-height: 1.8;
    color: #444;
}

.guarantee__card p:last-child {
    margin-bottom: 0;
}

/* Mobile */
@media (max-width: 768px) {

    .guarantee {
        padding: 40px 16px;
    }

    .guarantee__title {
        font-size: 30px;
    }

    .guarantee__subtitle {
        font-size: 15px;
    }

    .guarantee__content {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .guarantee__card {
        padding: 22px;
        border-radius: 18px;
    }

    .guarantee__icon {
        width: 52px;
        height: 52px;
        font-size: 24px;
        margin-bottom: 18px;
    }

    .guarantee__card p {
        font-size: 15px;
        line-height: 1.7;
        margin-bottom: 16px;
    }
}
/* Mobile */
@media (max-width: 768px) {

    .footer {
        padding: 30px 16px 24px;
    }

    .footer__top {
        flex-direction: column;
        gap: 20px;
    }

    .footer__brand h2 {
        font-size: 24px;
    }

    .footer__info {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .footer__links {
        flex-direction: column;
        gap: 10px;
    }

    .footer__links a {
        font-size: 13px;
    }

    .footer__contacts a,
    .footer__info p {
        font-size: 13px;
    }

    .footer__pay {
        max-width: 260px;
        margin-bottom: 24px;
    }
}

.benefits1 {
  padding: 0 0;
}

#menu__toggle {
  opacity: 0;
}

#menu__toggle:checked ~ .menu__btn > span {
  transform: rotate(45deg);
}
#menu__toggle:checked ~ .menu__btn > span::before {
  top: 0;
  transform: rotate(0);
}
#menu__toggle:checked ~ .menu__btn > span::after {
  top: 0;
  transform: rotate(90deg);
}
#menu__toggle:checked ~ .menu__box {
  visibility: visible;
  left: 0;
}

.menu__btn {
  display: flex;
  align-items: center;
  position: fixed;
  top: 20px;
  left: 20px;

  width: 26px;
  height: 26px;

  cursor: pointer;
  z-index: 1;
}

.menu__btn > span,
.menu__btn > span::before,
.menu__btn > span::after {
  display: block;
  position: absolute;

  width: 100%;
  height: 2px;

  background-color: #616161;

  transition-duration: .25s;
}
.menu__btn > span::before {
  content: '';
  top: -8px;
}
.menu__btn > span::after {
  content: '';
  top: 8px;
}

.menu__box {
  display: block;
  position: fixed;
  visibility: hidden;
  top: 0;
  left: -100%;

  width: 300px;
  height: 100%;

  margin: 0;
  padding: 80px 0;

  list-style: none;

  background-color: #ECEFF1;
  box-shadow: 1px 0 6px rgba(0, 0, 0, .2);

  transition-duration: .25s;
}

.menu__item {
  display: block;
  padding: 12px 24px;

  color: #333;

  font-family: 'Roboto', sans-serif;
  font-size: 20px;
  font-weight: 600;

  text-decoration: none;

  transition-duration: .25s;
}
.menu__item:hover {
  background-color: #CFD8DC;
}