* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "PT Sans", sans-serif;
    padding: 0;
    margin: 0;
}

.img{
    width: 100%;
    height: 100%;
}

.mb{
    margin-bottom: 100px;
}

a {
    text-decoration: none;
}

li {
    list-style: none;
    text-decoration: none;
}

.container {
    max-width: 1320px;
}

.container {
    margin-right: auto;
    margin-left: auto;
    padding-left: 15px;
    padding-right: 15px;
}

.menu{
    display: none;
}

.header{
    position: fixed;
    width: 100%;
    padding: 20px 0;
    background-color: transparent;
    z-index: 1000;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.header_catalog{
    position: fixed;
    width: 100%;
    padding: 20px 0;
    background-color: transparent;
    z-index: 1000;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    background: #FFFFFF;
}

.header.scrolled {
  background-color: white;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.logo {
  height: 40px;
  transition: filter 0.3s ease;
}

.header.scrolled .logo {
  filter: invert(0); /* или меняем src через JS */
}

.header_header{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header_menu ul{
    display: flex;
}

.header_link{
    margin-right: 30px;
    text-transform: uppercase;
    color: #FFFFFF;
    font-weight: 400;
    font-size: 16px;
    display: flex;
    align-items: center;
}

header.scrolled .header_link {
  color: #000000;
}

.header_link:hover{
    color: #4D994D;
    text-decoration: underline;
}

.main_banner{
    width: 100%;
    height: 100%;
}

header.scrolled .header_link:hover {
    color: #4D994D;
    text-decoration: underline;
}

.main_banner video{
    width: 100%;
    height: 100%;
    filter: brightness(0.7);
}

.banner_wrap {
    position: absolute;
    top: 35%;
    left: 0;
    width: 100%;
    transform: translateY(-50%);
    z-index: 1;
}

.banner_title {
    color: #FFFFFF;
    font-size: 50px;
    font-weight: 600;
    text-transform: uppercase;
    font-family: "Mulish", sans-serif;
    width: 52%;
    text-align: center;
}

.banner_text {
    color: #EBEBEB;
    font-size: 20px;
    font-weight: 400;
    text-align: center;
    width: 50%;
}

.banner_wrap button{
    color: #FFFFFF;
    font-size: 20px;
    font-weight: 400;
    background-color: #4D994D;
    border-radius: 12px;
    padding: 15px;
    border: 0;
    cursor: pointer;
}

.banner_wrap button:hover{
    color: #4D994D;
    background: #FFFFFF;
    transition: 0.2s;
    box-shadow: 0 0 2rem #4D994D;
    border:1px solid #4D994D;
}

.banner_content{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.floating-buttons{
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    z-index: 1000;
}

.main_about_title{
    color: #38362A;
    font-size: 40px;
    font-weight: 600;
    margin-bottom: 50px;
    font-family: "Mulish", sans-serif;
}

.main_about_grid{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
}

.main_about {
    border: 1px solid #CFCFCF;
    border-radius: 16px;
    padding: 30px 10px;
    display: flex;
    flex-direction: column;
    align-content: center;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

.main_about_name{
    color: #38362A;
    font-size: 21px;
    font-weight: 700;
    font-family: "Mulish", sans-serif;
}

.main_about_text{
    color: #555555;
    font-size: 15px;
    font-weight: 400;
    text-align: center;
    width: 60%;
}

.main_catalog_title{
    color: #38362A;
    font-size: 40px;
    font-weight: 600;
    margin-bottom: 50px;
    font-family: "Mulish", sans-serif;
}

.main_catalog_flex a{
    color: #FFFFFF;
    font-size: 20px;
    font-weight: 400;
    background-color: #4D994D;
    border-radius: 12px;
    padding: 15px;
    border: 0;
    cursor: pointer;
    text-align: center;
}

.main_catalog_flex a:hover{
    color: #4D994D;
    background: #FFFFFF;
    transition: 0.2s;
    box-shadow: 0 0 2rem #4D994D;
    border:1px solid #4D994D;
}


.main_catalog_flex{
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.main_catalog_grid{
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 142px;
}

.main_catalog {
  position: relative;
  width: 307px;
  padding: 15px;
  border: 1px solid #ddd;
  border-radius: 12px;
  transition: box-shadow 0.3s;
  overflow: visible;
}

.main_catalog:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.main_catalog_desc {
    position: absolute;
    left: -1px;
    right: 0;
    background: #fff;
    padding: 12px 14px;
    border-radius: 0 0 12px 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    opacity: 0;
    pointer-events: none;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 10;
    width: 307px;
    box-sizing: border-box;
    font-size: 14px;
    line-height: 1.4;
    border-left: 1px solid #ddd;
    border-right: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
}

.main_catalog:hover .main_catalog_desc {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.main_catalog_desc2 {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.4s ease, opacity 0.4s ease;
}

.main_catalog:hover .main_catalog_desc2 {
  max-height: 100%;
  opacity: 1;
  margin-top: 8px;
}

.main_catalog_desc3 {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.4s ease, opacity 0.4s ease;
}

.main_catalog:hover .main_catalog_desc3 {
  max-height: 100%;
  opacity: 1;
  margin-top: 8px;
}

.main_catalog_desc4 {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.4s ease, opacity 0.4s ease;
}

.main_catalog:hover .main_catalog_desc4 {
  max-height: 100%;
  opacity: 1;
  margin-top: 8px;
}


.main_catalog_name{
    color: #000000;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 10px;
}

.main_catalog_text{
    color: #555555;
    font-size: 14px;
    font-weight: 400;
}

.more_btn{
    display: flex;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(73%, 59%);
    z-index: 1;
}

.main_company_title{
    color: #000000;
    font-size: 40px;
    font-weight: 600;
    font-family: "Mulish", sans-serif;
}

.main_company_text{
    color: #555555;
    font-size: 20px;
    font-weight: 400;
}

.main_company{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.main_company_img{
    width: 45%;
}

.main_company_content{
    width: 50%;
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.main_company_btns a:nth-child(1){
    color: #FFFFFF;
    font-size: 20px;
    font-weight: 400;
    background-color: #4D994D;
    border-radius: 12px;
    padding: 15px;
    border: 0;
    cursor: pointer;
    margin-right: 40px;
}

.main_company_btns a:nth-child(1):hover{
    color: #4D994D;
    background: #FFFFFF;
    transition: 0.2s;
    box-shadow: 0 0 2rem #4D994D;
    border:1px solid #4D994D;
}

.main_company_btns a:nth-child(2){
    color: #3684FC;
    font-size: 20px;
    font-weight: 400;
    border-radius: 12px;
    padding: 15px;
    border: 0;
    cursor: pointer;
    border: 1px solid #3684FC;
}

.main_otzyv_title{
    color: #38362A;
    font-size: 40px;
    font-weight: 600;
    margin-bottom: 50px;
    font-family: "Mulish", sans-serif;
}

.otzyv_content{
    border: 1px solid #E6E6E6;
    border-radius: 16px;
    padding: 35px 25px;
}

.name_dop{
    color: #000000;
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 10px;
}

.text_dop p{
    color: #000000;
    font-size: 14px;
    font-weight: 400;
    background: #0064FF2E;
    border: 0;
    border-radius: 100px;
    padding: 10px 20px;
}

.text_dop{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
}

.otzyv_item{
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.otzyv_content img{
    margin-bottom: 20px;
}

.otzyv_name{
    color: #151515;
    font-size: 19px;
    font-weight: 700;
}

.otzyv_data{
    color: #949494;
    font-size: 16px;
    font-weight: 400;
}

.otzyv_text{
    color: #555555;
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 20px;
}

.slick-slide {
    padding: 0 10px;
    box-sizing: border-box;
}

.slick-prev {
    left: -50px;
}

.slick-next {
    right: -50px;
}

.slick-prev, .slick-next {  
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #fff;
    border: 0;
    width: 40px;
    height: 40px;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    /* z-index: 1000; */
    transition: 0.3s;
}

.main_contacty_title{
    color: #38362A;
    font-size: 40px;
    font-weight: 600;
    margin-bottom: 50px;
    font-family: "Mulish", sans-serif;
}

.main_contacty_block {
    background-image: url(/storage/app/media/main/contact_modal.png);
    width: 60%;
    height: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 40px;
}

.main_contacty_name{
    color: #FFFFFF;
    font-size: 36px;
    font-weight: 400;
    margin-bottom: 20px;
}

.main_contacty_text{
    color: #FFFFFF;
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 20px;
}

.form_input {
    margin-bottom: 20px;
    padding: 15px;
    border: none;
    background: #FFFFFF4D;
    color: #FFFFFF;
    font-size: 16px;
    outline: none;
    backdrop-filter: blur(7px);
    border-radius: 12px;
    padding: 20px;
}

.main_contacty_item  {
    width: 68%;
}

.dop{
    width: 100%;
}

.form_item {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 20px;
    justify-content: flex-start;
}

.form_input{
    margin-right: 15px;
    }

.main_contacty_content {
    background: #F7F7F7;
    padding: 50px;
    width: 40%;
    border-left: 10px solid #fff;
    border-radius: 10px;
    display: flex;
    justify-content: space-between;
}


.main_contacty_subtitle{
    color: #949494;
    font-size: 14px;
    font-weight: 400;
}

.main_contacty{
    display: flex;
}

.main_contacty_item button{
    color: #FFFFFF;
    font-size: 20px;
    font-weight: 400;
    background-color: #4D994D;
    border-radius: 12px;
    padding: 15px 35px;
    border: 0;
    cursor: pointer;
}

.main_contacty_item button:hover{
    color: #4D994D;
    background: #FFFFFF;
    transition: 0.2s;
    box-shadow: 0 0 2rem #4D994D;
    border:1px solid #4D994D;
}

.form_input:nth-child(1){
    width: 50%;
}

.form_input:nth-child(2){
    width: 40%;
}

.form_input::placeholder {
  color: white;
  opacity: 0.7; /* Чтобы был чуть светлее */
}

.main_contacty_address{
    color: #444444;
    font-size: 19px;
    font-weight: 400;
}

.main_contacty_address a{
    color: #444444;
    font-size: 19px;
    font-weight: 400;
}

.main_contacty_icons {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
    border-right: 1px solid #D7D7D7;
    padding-right: 15px;
}

.main_contacty_adr {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    padding-left: 15px;
}

.main_partner_title{
    color: #38362A;
    font-size: 40px;
    font-weight: 600;
    margin-bottom: 50px;
    font-family: "Mulish", sans-serif;
}

.partner_img {
    border: 1px solid #D7D7D7;
    border-radius: 12px;
    padding: 50px;
    width: 288px;
    height: 92px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer{
    background: #2A2A2A;
    padding: 50px 0px;
}

.footer_body {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #D7D7D7;
    padding-bottom: 30px;
}

.footer_menu ul{
    display: flex;
}

.footer_menu a{
    margin-right: 30px;
    text-transform: uppercase;
    color: #FFFFFF;
    font-size: 20px;
    font-weight: 400;
}

.footer_menu a:hover {
    color: #4D994D;
    text-decoration: underline;
}

.footer_btn a{
    color: #FFFFFF;
    font-size: 20px;
    font-weight: 400;
    background-color: #4D994D;
    border-radius: 12px;
    padding: 15px 45px;
    border: 0;
    cursor: pointer;
}

.footer_links{
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.footer_btns{
    margin-bottom: 1%;
}

.footer_name{
    color: #FFFFFF;
    font-size: 20px;
    font-weight: 400;
    padding-top: 30px;
}

.about_banner_title{
    color: #FFFFFF;
    font-size: 50px;
    font-weight: 600;
    font-family: "Mulish", sans-serif;
}

.about_banner{
    width: 100%;
    height: 100%;
}

.about_banner_content{
    position: absolute;
    top: 45%;
    left: 0;
    width: 100%;
    transform: translateY(-50%);
    z-index: 1;
}

.about_wrap{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
}

.site_link{
    color: #555555;
    font-size: 20px;
    font-weight: 400;
    text-align: start;
}

.about_about_title{
    color: #000000;
    font-size: 40px;
    font-weight: 600;
    font-family: "Mulish", sans-serif;
    margin-bottom: 20px;
}

.about_about_text{
    color: #555555;
    font-size: 20px;
    font-weight: 400;
}

.about_about_img{
    width: 46%;
}

.about_about_content{
    width: 48%;
}

.about_about{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.about_statistics_grid{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 20px;
    align-items: baseline;
}

.about_statistics_number{
    color: #4D994D;
    font-size: 106px;
    font-weight: 500;
    font-family: "Mulish", sans-serif;
    position: relative;
}

.about_statistics_number::before {
    content: "";
    position: absolute;
    top: -16px;
    left: -24px;
    width: 100%;
    height: 100%;
    background-image: url(/storage/app/media/green_line.png);
    background-repeat: no-repeat;
}

.about_statistics_text{
    color: #000000;
    font-size: 26px;
    font-weight: 400;
    font-family: "Mulish", sans-serif;
}

.about_statistics{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.about_history_title{
    color: #38362A;
    font-size: 40px;
    font-weight: 600;
    margin-bottom: 50px;
    font-family: "Mulish", sans-serif;
}

.about_history_timeline {
    position: relative;
}

.about_history_timeline::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    background: #4CAF50;
    transform: translateX(-50%);
    height: 75%;
    margin-top: 20px;
}

.about_history_timeline-item {
    position: relative;
    width: 50%;
    padding: 0px 40px;
    box-sizing: border-box;
}

.about_history_timeline-item::before {
    content: "";
    position: absolute;
    top: 22px;
    width: 14px;
    height: 14px;
    background: #4CAF50;
    border-radius: 50%;
    box-shadow: 0 0 0 2px #4CAF50;
}

.about_history_timeline-item.left {
    left: 50%;
}

.about_history_timeline-item.left::before {
    left: -7px;
}

.about_history_timeline-item.right {
    left: 0;
    text-align: right;
}

.about_history_timeline-item.right::before {
    right: -7px;
}

.content {
    background: white;
    padding: 15px;
    border-radius: 6px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.about_history_year{
    color: #000000;
    font-size: 40px;
    font-weight: 500;
    font-family: "Mulish", sans-serif;
}

.about_history_content p{
    color: #555555;
    font-size: 20px;
    font-weight: 400;
}

.about_block_title{
    color: #FFFFFF;
    font-size: 50px;
    font-weight: 600;
    font-family: "Mulish", sans-serif;
    margin-bottom: 70px;
}

.about_block_name{
    color: #FFFFFF;
    font-size: 31px;
    font-weight: 700;
    margin-bottom: 10px;
    line-height:1.1;
}

.about_block_text{
    color: #FFFFFF;
    font-size: 20px;
    font-weight: 400;
}

.about_block{
    width: 100%;
    height: 100%;
    position: relative;
}

.about_block_content{
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    transform: translateY(-50%);
    z-index: 1;
}

.about_block_wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    justify-content: center;
}

.about_block_flex{
    display: flex;
    gap: 10px;
}

.about_block_item img{
    margin-bottom: 10px;
}

.about_sertifikar_title{
    color: #38362A;
    font-size: 40px;
    font-weight: 600;
    margin-bottom: 50px;
    font-family: "Mulish", sans-serif;
}

.catalog_banner{
    width: 100%;
    height: 100%;
}

.catalog_banner_content{
    position: absolute;
    top: 45%;
    left: 0;
    width: 100%;
    transform: translateY(-50%);
    z-index: 1;
}

.catalog_wrap{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
}

.catalog_banner_title{
    color: #FFFFFF;
    font-size: 50px;
    font-weight: 600;
    font-family: "Mulish", sans-serif;
}

.catalog_grid {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.catalog {
position: relative;
  width: 307px;
  padding: 15px;
  border: 1px solid #ddd;
  border-radius: 12px;
  transition: box-shadow 0.3s;
  overflow: visible;
}

.catalog:hover .main_catalog_desc {
    max-height: 100%;
    opacity: 1;
    margin-top: 8px;
}

.catalog:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* .slick-prev, .slick-next {
        display: none !important;
    } */

.slick-dots {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex !important;
    justify-content: center;
    width: 100%;
}

.slick-dots li.slick-active button{
    background: #4D994D;
}

.slick-dots li button {
    font-size: 0;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #ccc;
    border: none;
    margin: 0 5px;
    padding: 0;
}

.main_product{
    width: 100px;
    height: 98px;
}

.header_link-link{
    color: #000000;
    margin-right: 30px;
    text-transform: uppercase;
    font-weight: 400;
    font-size: 16px;
    display: flex;
    align-items: center;
}

.catalog_site{
    background: #F7F7F7;
}

.mm{
    margin-top: 30px;
    margin-bottom: 70px;
}

.product_item {
    background: #FFFFFF;
    padding: 30px 15px;
    display: flex;
    flex-direction: column;
    gap: 9px;
    width: 30%;
    border-radius: 16px;
}

.product_flex{
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
    gap: 20px;
}

.product_img{
    width: 30%;
}

.product-nav_img{
    background: #FFFFFF;
    padding: 20px;
}

.product-nav_img img{
    width: 106px;
    object-fit: cover;
}

.product_slider-img{
    background: #FFFFFF;
    padding: 20px;
    margin-bottom: 20px;
}

.product_slider-img img{
    height: 359px;
    width: 292px;
    object-fit: cover;
}

.product_title{
    color: #000000;
    font-size: 32px;
    font-weight: 700;
}

.product_text{
    color: #555555;
    font-size: 16px;
    font-weight: 400;
}

.name_dop-dop{
    color: #000000;
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 10px;
}

.text_dop-dop p {
    color: #000000;
    font-size: 14px;
    font-weight: 400;
    background: #0064FF2E;
    border: 0;
    border-radius: 100px;
    padding: 10px 20px;
}

.text_dop-dop {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}

.product_art p:nth-child(1){
    color: #555555;
    font-size: 16px;
    font-weight: 400;
}

.product_art p:nth-child(2){
    color: #151515;
    font-size: 16px;
    font-weight: 400;
}

.product_art{
    display: flex;
    justify-content: space-between;
    width: 61%;
    margin-bottom: 10px;
}

.product_btn{
    color: #FFFFFF;
    font-size: 20px;
    font-weight: 400;
    background-color: #4D994D;
    border-radius: 12px;
    padding: 15px 40px;
    border: 0;
    cursor: pointer;
    width: 240px;
}

.product_content{
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.product_item-title{
    color: #151515;
    font-size: 16px;
    font-weight: 400;
}

.product_item-text{
    color: #555555;
    font-size: 16px;
    font-weight: 400;
    line-height: 20px;
    margin-top: 8px;
}

.border{
    border-bottom: 1px solid #DADADA;
    padding-bottom: 10px;
}

.product_item-item{
    margin-bottom: 20px;
}

.product_block{
    background: #FFFFFF;
    border-radius: 16px;
}

.product_block_title{
    color: #151515;
    font-size: 18px;
    font-weight: 400;
    padding: 50px 40px 20px;
}

.border_table{
    border-bottom: 1px solid #DEDEDE;
    margin-bottom: 20px;
}

.product_table{
    width: 100%;
    border-collapse: collapse;
}

.product_table-table{
    padding: 0px 40px 40px 40px;
}

.product_table td{
    border: 1px solid #EAEAEA;
    padding: 10px 15px;
    color: #000000;
    font-size: 16px;
    font-weight: 400;
}

.product_table-table td{
    border: 1px solid #EAEAEA;
    padding: 30px 15px;
    color: #000000;
    font-size: 16px;
    font-weight: 400;
    text-align: center;
}

.product_table-table th{
    border: 1px solid #EAEAEA;
    padding: 30px 15px;
    color: #000000;
    font-size: 16px;
    font-weight: 400;
    text-align: center;
}

.product_table-table {
    width: 100%;
    border-collapse: collapse;
}

.product_table-table{
    overflow: auto;
}

.product_block_text{
    color: #555555;
    font-size: 16px;
    font-weight: 400;
    padding: 0px 40px 40px 40px;
}

.product_product_title{
    color: #38362A;
    font-size: 40px;
    font-weight: 600;
    margin-bottom: 50px;
    font-family: "Mulish", sans-serif;
}

.product_catalog_flex{
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.product_catalog{
    position: relative;
    width: 307px;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 12px;
    transition: box-shadow 0.3s;
    overflow: visible;
    background: #fff;
}

.product_catalog:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.product_catalog_name{
    color: #000000;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 10px;
}

.product_catalog_text{
    color: #555555;
    font-size: 14px;
    font-weight: 400;
}

.product_catalog_desc {
    position: absolute;
    left: -1px;
    right: 0;
    background: #fff;
    padding: 12px 14px;
    border-radius: 0 0 12px 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    opacity: 0;
    pointer-events: none;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 10;
    width: 307px;
    box-sizing: border-box;
    font-size: 14px;
    line-height: 1.4;
    border-left: 1px solid #ddd;
    border-right: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
}


.product_catalog:hover .product_catalog_desc {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.catalog:hover .main_catalog_desc {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.uslugi_banner{
    width: 100%;
    height: 100%;
}

.uslugi_banner_content {
    position: absolute;
    top: 45%;
    left: 0;
    width: 100%;
    transform: translateY(-50%);
    z-index: 1;
}

.uslugi_wrap {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
}
.uslugi_about.reverse {
    flex-direction: row-reverse;
}
.uslugi_banner_title{
    color: #FFFFFF;
    font-size: 50px;
    font-weight: 600;
    font-family: "Mulish", sans-serif;
}

.uslugi_item-title{
    color: #000000;
    font-size: 40px;
    font-weight: 600;
    font-family: "Mulish", sans-serif;
    margin-bottom: 20px;
    line-height:1.1;
}

.uslugi_item-text{
    color: #555555;
    font-size: 20px;
    font-weight: 400;
}

.uslugi_about{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.uslugi_img{
    width: 46%;
}

.uslugi_item{
    width: 48%;
}

.primus_title {
    color: #38362A;
    font-size: 40px;
    font-weight: 600;
    margin-bottom: 50px;
    font-family: "Mulish", sans-serif;
}

.primus_grid{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
}

.primus_block {
    border: 1px solid #CFCFCF;
    padding: 50px;
    display: flex;
    justify-content: center;
    align-content: center;
    align-items: center;
    flex-direction: column;
    gap: 20px;
    border-radius: 16px;
}

.primus_name{
    color: #38362A;
    font-weight: 700;
    font-size: 21px;
    font-family: "Mulish", sans-serif;
    text-align: center;
}

.primus_text{
    text-align: center;
    color: #555555;
    font-weight: 400;
    font-size: 15px;
    width: 65%;
}

.escort_title {
    color: #38362A;
    font-size: 40px;
    font-weight: 600;
    margin-bottom: 50px;
    font-family: "Mulish", sans-serif;
}

.escort_grid{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
}

.escort_block {
    border: 1px solid #CFCFCF;
    padding: 50px;
    display: flex;
    justify-content: center;
    align-content: center;
    align-items: center;
    flex-direction: column;
    gap: 20px;
    border-radius: 16px;
}

.escort_name{
    color: #38362A;
    font-weight: 700;
    font-size: 21px;
    font-family: "Mulish", sans-serif;
    text-align: center;
}

.escort_text{
    text-align: center;
    color: #555555;
    font-weight: 400;
    font-size: 15px;
    width: 65%;
}

.contact_banner{
    width: 100%;
    height: 100%;
}

.contact_banner_content {
    position: absolute;
    top: 45%;
    left: 0;
    width: 100%;
    transform: translateY(-50%);
    z-index: 1;
}

.contact_wrap {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
}

.contact_banner_title {
    color: #FFFFFF;
    font-size: 50px;
    font-weight: 600;
    font-family: "Mulish", sans-serif;
}

.contact_map{
    width: 60%;
}

.contact_flex {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
}

.contact_item {
    width: 35%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.contact_content {
    border: 1px solid #D7D7D7;
    border-radius: 16px;
    display: flex;
    align-items: center;
}

.contact_icons{
    display: flex;
    align-items: center;
    flex-direction: column;
    padding: 35px;
    gap: 20px;
    border-right: 1px solid #D7D7D7;
}

.contact_links{
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 0px 35px 0px 28px;
}

.contact_name{
    color: #666666;
    font-size: 17px;
    font-weight: 400;
}

.contact_links a{
    color: #000000;
    font-size: 17px;
    font-weight: 400;
}

.link{
    color: #000000;
    font-size: 17px;
    font-weight: 400;
}

.gis{
    color: #777777;
    font-size: 17px;
    font-weight: 400;
}

.contact_icons img{
    width: 21px;
}

.otzyv_banner{
    width: 100%;
    height: 100%;
}

.otzyv_banner_content {
    position: absolute;
    top: 45%;
    left: 0;
    width: 100%;
    transform: translateY(-50%);
    z-index: 1;
}

.otzyv_wrap {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
}

.otzyv_banner_title {
    color: #FFFFFF;
    font-size: 50px;
    font-weight: 600;
    font-family: "Mulish", sans-serif;
}

.otzyv_grid{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
}

.otzyv_block{
    border: 1px solid #E6E6E6;
    border-radius: 16px;
    padding: 35px 25px;
}

.otzyv_modal.open {
    visibility: visible;
    opacity: 1;
}

.otzyv_modal {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100vh;
    z-index: 9998;
    background-color: rgba(0, 0, 0, .3);
    display: grid;
    align-items: center;
    justify-content: center;
    overflow-y: auto;
    visibility: hidden;
    opacity: 0;
    transition: opacity .4s, visibility .4s;
}

.otzyv_modal.open .modal_box {
    transform: scale(1);
}

.modal_box {
    position: relative;
    max-width: 500px;
    z-index: 1;
    background-color: #fff;
    margin: 30px 15px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    transform: scale(0);
    transition: transform .4s;
    height: auto;
}

.modal-content {
    display: flex;
    width: 100%;
    background: #fff;
    height: auto;
    flex-direction: row;
    justify-content: space-between;
    position: relative;
    pointer-events: auto;
    border-radius: 20px;
    outline: 0;
}

.modal-body{
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    }
    
.modal-img{
    width: 50%;
    }
    
.form_title {
    color: #38362A;
    font-size: 31px;
    font-weight: 500;
    font-family: "Mulish", sans-serif;
    text-align: center;
    text-transform: uppercase;
    margin-bottom: 20px;
}
    
.form_text{
    color: #555555;
    font-size: 16px;
    font-weight: 400;
    text-align: center;
    margin-bottom: 25px;
    }
    
.form_text span{
    color: #4D994D;
    text-decoration: underline;    
    }
    
    .cl-btn-7 {
    font-size: 44px;
    font-weight: 600;
    color: #151515;
}

.modal-btn button {
    border: 0;
    background: none;
}

.modal__input input {
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 18px;
    line-height: 120%;
    color: #151515;
    background-color: transparent;
    padding-bottom: 10px;
    border: 0;
}

.modal__input input {
    border-bottom: 1px solid #9f9f9f !important;
}

.modal__input button{
    color: #FFFFFF;
    font-size: 20px;
    font-weight: 400;
    background-color: #4D994D;
    border-radius: 12px;
    padding: 15px 35px;
    border: 0;
    cursor: pointer;
    margin-top: 20px;
    }
    
.modal__input button:hover {
    color: #4D994D;
    background: #FFFFFF;
    transition: 0.2s;
    box-shadow: 0 0 2rem #4D994D;
    border: 1px solid #4D994D;
}

.modal__input{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.modal-header{
    display: flex;
    justify-content: flex-end;
    padding: 10px;
    }
    
.close_modal{
    font-size: 23px;
    font-weight: 700;
    color:#2A2A2A;
    }
    
.modal-header button{
    border: 0;
    background: #fff;
    }
    
.modal_content{
    padding: 25px;
    }
    
.otzyv_btn{
    border: 0;
    background: #fff;
}

.modal-btn{
    padding: 10px;
    }
    
.header-lang {
    position: relative;
    font-weight: 500;
    color: #999;
    margin-right: 20px;
}

.lang-active {
    display: flex;
    align-items: center;
    color: #fff;
    gap: 4px;
}

.lang-active-lang{
    display: flex;
    align-items: center;
    color: #000000;
    gap: 4px;
}

.header-lang:hover ul.lang-list {
    display: block;
}

ul.lang-list {
    position: absolute;
    top: 100%;
    list-style: none;
    padding: 15px;
    border-radius: 5px;
    box-shadow: 0 0 18px 0 #00000047;
    background: #fff;
    left: 29px;
    display: none;
}

.lang-list_list{
    margin-bottom: 10px;
    }
    
.lang-list a{
    font-size: 16px;
    font-weight: 500;
    color: #151515;
    }
    
.lang-list a:hover{
    color: #0693E3;
    text-decoration: underline;
    }
    
.lang-active img{
    margin-right: 2px;
    }
    
.menu_lang {
    display: flex;
    width: 100%;
    justify-content: space-evenly;
    border-top: 1px solid white;
    padding: 20px;
}

header.scrolled .lang-active {
    color: #000000;
}

.alert button{
    background-color: transparent;
    }
.main_contacty_icons img:nth-child(1){
    position: relative;
    top: 8px;
    }
    
.main_contacty_icons img:nth-child(2){
    position: relative;
    top: 10px;
    }
    
.main_contacty_icons img:nth-child(4){
    position: relative;
    top: 15px;
    }

.main_partner_text {
    margin: 30px 0 0;
    font-size: 18px;
    line-height: 1.4;
    text-align: center;
}

.sertifikat_slider img{
    width: 100%;
    height: 100%;
    border: 5px solid #38362A;
    }
    
.footer_btn a:hover {
    color: #4D994D;
    background: #FFFFFF;
    transition: 0.2s;
    box-shadow: 0 0 2rem #4D994D;
    border: 1px solid #4D994D;
}

.about_about-flex{
    display: flex;
    align-items: center;
    justify-content: space-between;
    }
    
.about_block_grid{
    display:grid;
    grid-template-columns:1fr 1fr 1fr;
    gap:50px;
    }
    
.about_block-block{
    width: 100%;
    height: 100%;
    position: relative;
}

p {
    margin: 0px 0px 10px 0px;
}

.about_about_text li {
    margin: 0px 0px 5px 0px;
}

.tab-links{
    display: flex;
    justify-content: space-between;
    padding: 20px 0px;
    border-bottom: 1px solid #555555;
    }
    
.tab-link {
  background: none;
  border: none;
  color: #aaa;
  font-size: 16px;
  padding-bottom: 5px;
  cursor: pointer;
  position: relative;
}

.tab-link.active {
    color: #4CAF50;
    border-bottom: 2px solid #4CAF50;
}

.tab-panel {
  display: none;
}

.tab-panel.active {
  display: block;
}

.filter{
    filter: brightness(0.5);
    }
    
.contact_modal_banner{
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    transform: translateY(-50%);
}

.contact_banner_text{
    color: #CFCFCF;
    font-size: 22px;
    font-weight: 400;
    }
    
.contact_banner_wrap{
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    gap:10px;
    }
    
.contact_form_first input{
    width: 100% !important;
    margin:0px;
}

.contact_form_last textarea.form_input {
    width: 100% !important;
    height: 172px;
    resize: none;
    padding: 20px;
    font-size: 16px;
    line-height: 80px;
    margin:0px;
}

.contact_form_first{
    display: flex;
    width: 100%;
    justify-content: space-between;
    gap: 20px;
    }
    
.forma{
    width:50%;
    }
    
.contact_form{
    display: flex;
    flex-direction: column;
    gap: 20px;
    }
    
.contact_form_btn{
    display: flex;
    justify-content: flex-end;
    }
    
.contact_form_btn button {
    color: #FFFFFF;
    font-size: 20px;
    font-weight: 400;
    background-color: #4D994D;
    border-radius: 12px;
    padding: 15px;
    border: 0;
    cursor: pointer;
}

.contact_form_btn button:hover {
    color: #4D994D;
    background: #FFFFFF;
    transition: 0.2s;
    box-shadow: 0 0 2rem #4D994D;
    border: 1px solid #4D994D;
}

.main_catalog_catalog{
    display: flex;
    justify-content: center;
    margin-bottom: 50px;
    }
    
.main_catalog_catalog a {
    color: #FFFFFF;
    font-size: 20px;
    font-weight: 400;
    background-color: #4D994D;
    border-radius: 12px;
    padding: 15px;
    border: 0;
    cursor: pointer;
    margin-right: 40px;
}

.main_catalog_catalog a:hover {
    color: #4D994D;
    background: #FFFFFF;
    transition: 0.2s;
    box-shadow: 0 0 2rem #4D994D;
    border: 1px solid #4D994D;
}

.about_block-block img{
    filter: brightness(0.5);
    }
    
.about_block img{
    filter: brightness(0.5);
    } 
    
.category_title{
    color: #38362A;
    font-size: 40px;
    font-weight: 600;
    margin-bottom: 50px;
    font-family: "Mulish", sans-serif;
    }
    
.product_btn:hover {
    color: #4D994D;
    background: #FFFFFF;
    transition: 0.2s;
    box-shadow: 0 0 2rem #4D994D;
    border: 1px solid #4D994D;
}