:root {
    --color-base: #80c343;
}
*{
    box-sizing: border-box;
}
body{
    margin: 0;
    padding: 0;
    font-family: Verdana;
}
strong{
    font-weight: 600;
    color: var(--color-base);
}
a{
    color: #000000;
}
.text-left{
    text-align: left!important;
}
.wrap{}
.wrap__inner{}
.text{
    text-align: center;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 25px;
}
.text__h1{
    text-align: center;
    font-weight: 600;
    font-size: 28px;
    line-height: 34px;
    margin-bottom: 25px;
    margin-top: 0;
}
.text__h2{
    text-align: center;
    font-weight: 600;
    font-size: 26px;
    line-height: 32px;
    margin-bottom: 25px;
    margin-top: 30px;
}
.text__p{
    margin: 0 0 12px 0;
}
.content{
    position: relative;
    max-width: 100%;
    overflow: hidden;
}
.content:after{
    content: '';
    width: 420px;
    height: 420px;
    background-image: url("/f/after.webp");
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
    position: absolute;
    bottom: 60px;
    right: 50%;
    transform: translateX(170%);

}
.content:before{
    content: '';
    width: 420px;
    height: 420px;
    background-image: url("/f/before.webp");
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
    position: absolute;
    top: 60px;
    left: 50%;
    transform: translateX(-170%);

}
.content__inner{
    width: 100%;
    max-width: 800px;
    position: relative;
    margin: 50px auto 0 auto;
    padding: 0 20px;
    z-index: 9;
}
.wrap-btn{
    text-align: center;
    padding: 20px 0;
    margin-bottom: 30px;
}
.btn{
    text-transform: uppercase;
    font-size: 18px;
    padding: 15px 34px;
    border: 2px solid #000000;
    display: inline-block;
    border-radius: 26px;
    cursor: pointer;
    transition: 0.2s;
}
.btn:hover{
    background-color: var(--color-base);
    border-color: var(--color-base);
    color: #ffffff;
}
.reg-i, email-i{
    object-fit: contain;
    max-width: 100%;
}
.reg-i{
    cursor: pointer;
    height: 14px;
}
.email-i{
    height: 18px;
    padding-top: 4px;
}
.footer{
    background-color: #000000;
    color: #ffffff;
    padding: 20px 20px 0 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.footer__col{
    margin-bottom: 20px;
    min-width: 120px;
}
.footer__row{
    font-size: 14px;
    margin-bottom: 6px;
    cursor: pointer;
    color: #ffffff;
    text-decoration: none;
    display: block;
}
.footer__row:hover{
    text-decoration: underline;
}
.link{
    cursor: pointer;
    text-decoration: underline;
    transition: 0.3s;
}
.link:hover{
    text-decoration: none
}
.text_ul{
    margin-left: 18px;
    padding: 0;
    text-align: left;
}
.text_ul li{}
.text_ul li::marker{
    color: var(--color-base);
}

@media screen and (max-width: 800px) {
    .text{
        font-size: 14px;
        line-height: 20px;
        text-align: justify;
    }
    .content__inner{
        margin: 30px auto 50px auto;
    }
    .text__h1{
        font-size: 20px;
        line-height: 24px;
        margin-bottom: 15px;
    }
    .text__h2{
        font-size: 18px;
        line-height: 22px;
        margin-bottom: 20px;
    }
    .wrap-btn{
        position: sticky;
        bottom: 62px;
        background-color: #ffffff;
        z-index: 10;
        box-shadow: 0 -22px 53px -14px #000000;
        margin-bottom: 0;
        padding: 6px 0;
    }
    .btn{
        font-size: 16px;
        padding: 6px 34px;
        background-color: var(--color-base);
        border-color: var(--color-base);
        color: #ffffff;
        border-radius: 26px;
    }
}
@media screen and (min-width: 801px) {
    .wrap{
        padding-right: 4px;
    }
    *::-webkit-scrollbar{
        background-color: #f2f2f2;;
        width: 8px;
    }
    *::-webkit-scrollbar-thumb {
        background-color: #d5d7de;
        border-radius: 22px;
    }
    *::-webkit-scrollbar-thumb:hover{
        background-color: var(--color-base);
    }
    *::-webkit-scrollbar-thumb:active{
        background-color: var(--color-base);
    }
}

.tabmenu {
    width: 100%;
    display: flex;
    justify-content: space-around;
    border-top: 1px solid #808080; /* предполагая, что $gray = #808080 */
    background-color: #ffffff;
    padding-bottom: 12px;
    padding-top: 6px;
    position: sticky;
    bottom: 0;
    background-color: #ffffff;
    z-index: 10;
    box-shadow: 0 -22px 53px -14px #000000;
    margin-bottom: 0;
    padding: 6px 0;
  }
  @media screen and (max-width: 800px) {
    .tabmenu {
        padding: 6px 0;
        box-shadow: none;
    }
  }
    
  .tabmenu__item {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    color: #333; /* предполагая, что $txtColor = #333 */
    border-bottom: 2px solid transparent;
    transition: 0.6s;
    text-decoration: none;
  }
  
  .tabmenu__item .tabmenu__tab-img {
    width: 100%;
    display: flex;
    justify-content: center;
  }
  
  .tabmenu__item .tabmenu__tab-img:before {
    content: '';
    display: block;
    height: 30px;
    width: 30px;
    background-size: cover;
  }
  
  
  .tabmenu__item:hover {
    cursor: pointer;
    text-decoration: none;
  }
  
  .tabmenu__item_home .tabmenu__tab-img:before {
    background-image: url('/f/home2.svg');
  }
  
  .tabmenu__item_about .tabmenu__tab-img:before {
    background-image: url('/f/about.svg');
  }
  
  
  .tabmenu__item_rev .tabmenu__tab-img:before {
    background-image: url('/f/reviews.svg');
  }
  
  
  .tabmenu__item_cont .tabmenu__tab-img:before {
    background-image: url('/f/cont.svg');
  }
  
  
  .tabmenu__item_im .tabmenu__tab-img:before {
    background-image: url('/f/im.svg');
  }
  
  .tabmenu__item_im .tabmenu__tab-text {
    color: var(--color-base); 
  }
  .tabmenu__tab-text {
    width: 100%;
    white-space: nowrap;
    display: flex;
    justify-content: center;
    font-size: 14px;
    text-decoration: none;
  }
.reviews__general{
    margin-bottom: 20px;
    color:#ff0b0b;
}
.reviews__item{
    padding: 10px 15px;
    border: 2px solid var(--color-base);
    border-radius: 12px;
    margin-bottom: 20px;
}
.reviews__item-name{
    font-weight: bold;
    margin-bottom: 10px;
}
.reviews__item-body{
    font-style: italic;
    margin-bottom: 10px;
}
.reviews__item-body:before{
    content: "«";
}
.reviews__item-body:after{
    content: "»";
}
.reviews__footer{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    font-size: 14px;
    color: #808080;
}