:root {
    --color: #19315B;
    --font_color: #19315B;
    --bg_color:#FAFAFC;
}

*, ::after, ::before {
    box-sizing: border-box;
}
:focus { outline: none; }
a,p {
    text-decoration: none;
    color:var(--color); 
}
ul, li {
    list-style: none;
}
::placeholder { 
    color: #707070;
    opacity: 1; 
    font-weight: 300;
    font-size: 18px;
}
:-ms-input-placeholder { 
    color: #707070;
    font-weight: 300;
    font-size: 18px;
} 
::-ms-input-placeholder { 
    color: #707070;
    font-weight: 300;
    font-size: 18px;
}
.no-scroll {
    overflow: hidden;
}
svg path {
   
}
button{
    cursor: pointer;
}
img {
    max-width: 100%;
    height: auto;
}
.img-100 {
    width:100%;
}
body {
    font-family: 'Nunito', sans-serif;
    padding:0;
    margin:0;
    background: #fff;
}
.d-flex {
    display:flex;
    align-items: center;
}
.justify-content-between {
    justify-content: space-between;
}
.justify-content-center {
    justify-content: center;
}
.justify-content-end {
    justify-content: flex-end;
}
.text-center{
    text-align: center;
}
.mt-1 {
    margin-top:1em;
}
.mt-2 {
    margin-top:2em;
}
.mt-3 {
    margin-top:3em;
}
.mb-1 {
    margin-bottom: 1em;
}
.mb-2 {
    margin-bottom: 2em;
}
.mb-3 {
    margin-bottom: 3em;
}
.mb-15{
    margin-bottom:15px;
}
.w-100 {
    width:100%;
}
.gap-15 {
    gap:0 15px;
}
.container-min{
    max-width: 1100px;
}
body.page {
    margin-top: 118px;
}
header {
    padding-top:2em;
    padding-bottom: 2em;
    box-shadow: 0px 1px 11px rgba(197, 197, 197, 0.54);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background: #fff; 
    height: 118px;
}
.logo p {
    font-size: 14px;
    color: #AAA;
    font-weight: 400;
    line-height: 18px;
    margin:0;
    max-width: 200px;
    margin-left:30px;
}

.right {
    gap:0 15px;
}
.right-top-blocks{
    gap:0 35px;
}
.lang {
    position: relative;
    transition: .4s all ease-out;
    display: flex;
    align-items: center;
}
.right-top-blocks:before {
    content:'';
    width:1px;
    height: 15px;
    background: #707070;
    display: flex
}
.dropdown-content {
    display: none;
    position: absolute;
    background-color: #fff;
    width: 100%;
    left: 0;
    z-index: 123123;
    border: 1px solid #F1F1F1;
    top: 39px;
}
.lang a.actives:after {
    content: '';
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6' fill='none'%3E%3Cpath d='M10 0.809879L9.19012 0L5 4.18725L0.809879 0L0 0.809879L5 5.81275L10 0.809879Z' fill='%23767494'/%3E%3C/svg%3E");
    width: 10px;
    height: 6px;
    background-repeat: no-repeat;
}
.lang a.actives {
    box-shadow: 0px 2px 12px 0px rgba(20, 20, 43, 0.08);
    border-radius: 4px;
    background: #FFF;
    position: relative;
    display: flex;
    align-items: center;
    padding: 6px 12px;
    font-weight: 300;
    font-size: 18px;
    line-height: 26px;
    color: var(--font_color);
    gap: 0 10px;
    transition: .4s all ease-out;
}
.lang:hover .dropdown-content {
    display: flex;
    flex-direction: column;
}

.dropdown-content a {
    padding: 6px 12px;
    font-family: var(--oswald);
    font-weight: 700;
    font-size: 18px;
    line-height: 17px;
    color: var(--font_color);
    border-bottom: 1px solid #F1F1F1;
    transition: .4s all ease-out;
}



.menu ul {
    display:flex;
    align-items: center;
    justify-content: space-between;
    gap:15px;
    margin:0;
    padding:0;
}
.menu li a {
    font-weight: 700;
    font-size: 18px;
    line-height: 18px;
    color:var(--color);
    transition: all 0.4s ease-in-out 0s;
    position: relative;
    display: flex;
}
.menu li a:hover {
    color:var(--color);
}
.menu li a:hover:before {
    visibility: visible;
    transform: scaleX(1);
}
.menu li a:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: 0;
    margin: -5px 0;
    background-color:var(--color);
    visibility: hidden;
    transform: scaleX(0);
    transition: all 0.4s ease-in-out 0s;
}
.menu li {
    position: relative;
}

.menu li:hover > .sub_menu {
    visibility: visible;
    opacity: 1;
    transform: translateY(10px);
}
.sub_menu li a {
    font-weight: 500;
    font-size: 14px;
    line-height: 36px;
    border-bottom: 0.6px solid #c4c4c4;
    background: #fff;
    padding: 0 15px;
    width: 100%;
    display: block;
    transition: .4s all ease-out;
    text-align: left;
}
.sub_menu li {
    width: 100% !important;
}
.sub_menu li a:before,
.sub_menu li a:after {
    display: none !important;
}

.sub_menu {
    border-radius: 4px;
    min-width:220px;
    position: absolute;
    left: -1px;
    z-index: 5;
    visibility: hidden;
    opacity: 0;
    transform: translateY(20px);
    transition: .3s ease-in-out;
    display: flex;
    flex-direction: column;
    align-items: flex-start !important;
    justify-content: flex-start !important;
    background: #fff !important;
    gap: 0 !important;
    
}

.menu li.first a:after {
    content:"";
    background-repeat: no-repeat;
    background-position: center;
    background-image: url("data:image/svg+xml,%3Csvg width='15px' height='15px' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5.70711 9.71069C5.31658 10.1012 5.31658 10.7344 5.70711 11.1249L10.5993 16.0123C11.3805 16.7927 12.6463 16.7924 13.4271 16.0117L18.3174 11.1213C18.708 10.7308 18.708 10.0976 18.3174 9.70708C17.9269 9.31655 17.2937 9.31655 16.9032 9.70708L12.7176 13.8927C12.3271 14.2833 11.6939 14.2832 11.3034 13.8927L7.12132 9.71069C6.7308 9.32016 6.09763 9.32016 5.70711 9.71069Z' fill='%230F0F0F'/%3E%3C/svg%3E");
    width: 20px;
    height: 20px;
    display: flex;
    gap:0 10px;
    align-items: center;
}



.social {
    gap:0 12px;
}
.social svg path {
    fill:var(--color)
}

.social a {
    background: #F2F2F2;
    border-radius: 8px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .4s all linear;
}
.social a:hover {
    background: var(--color);
}
.social a:hover svg path {
    fill:#fff;
}
.total-title {

    font-size: 32.286px;
    font-weight: 500;
    line-height: 42.07px;
    margin-bottom:35px
}
.btn{
    border-radius: 5.077px;
    border: 1.269px solid #FFF;
    background: #FFFFFF;
    font-weight: 400;
    font-size: 16px;
    line-height: 18px;
    color:var(--color);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px 15px;
    transition: .2s all linear;
    min-width: 120px;
}
.btn:hover {
    background: var(--color);
    border:1px solid var(--color);
    color:#fff;
}
.btn-green {
    background: #91C956;
    border:1px solid #91C956;
    color:#fff;
   
}
.hover__phones {
    position: relative;
}
.phones__first {
    position: relative;
}

.phones__second {
   opacity: 0;
   position: absolute;
   top:47px;
   left:0;
   transition: .3s all ease-out
}
.phones__third{
    top:94px;
}
.hover__phones:hover .phones__second {
    opacity: 1;
}
.phones__second img {
    max-width: 16px;
}
.phones__first:after {
    content: '';
    background-image: url('../img/arr-dwn.svg');
    background-size: 100%;

    width: 9px;
    height: 5px;
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
}


.btn-black {
    background: var(--color);
    border:1px solid var(--color);
    color:#fff;
}
.btn-green:hover,
.btn-black:hover {
    border:1px solid var(--color);
    background: #FFFFFF; 
    color:var(--color);
}
.btn-green:hover svg path,
.btn-black:hover svg path {
    fill:var(--color);
}
.btn-arrow {
    display:flex;
    align-items: center;
    gap:0 10px;
}

.main-block {
    margin-top:120px;
}
.video {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    object-fit: cover;
}
.main-block-video{
    position: relative;
    padding-top:15em;
    padding-bottom:15em;
}
.main-slider {
    border-radius: 12px;
    background: #F2F1FA;
    padding:50px 50px 35px 50px;
}

.hero_v3 {
    padding-top:65px;
    padding-bottom:65px;
}
.hero_v3 img {
    border-radius: 30px;
}
.hero_v7 iframe,
.hero_v7 video {
    border-radius: 30px;  
    width: 100%;
    position: relative;
    z-index: 1;
    
}
.video {
    position: relative;
}
.play_video {
    position: absolute;
    top:50%;
    left:50%;
    transform: translate(-50%,-50%);
    background-image: url(../img/play.svg);
    background-repeat: no-repeat;
    background-size: contain;
    width:95px;
    height: 95px;
    border-radius: 100%;
    z-index: 9;
}
.hero_v7 {
    padding-top:65px;
    padding-bottom:65px;
}
.col-main {
    position: relative;
    z-index: 3;
}

.main-block-video:before {
    content: '';
    mix-blend-mode: multiply;
    background: var(--color);
    left: 0;
    top: 0;
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0.6;
    z-index: 2;
}

.main-block-video .banner-content h2 {
    color:#fff;

}
.main-block-video .banner-content h3 {
    color:#fff;

}
.ab__main-img {
    position: relative;
}
.ab__ab-img{
    border-radius: 12px;
}
.ab__ab-img img {
    border-radius: 12px;
}
.ab__main-img:before {
    content:'';
    height: 100%;
    width: 100%;
    position: absolute;
    left:-20px;
    bottom:-20px;
    z-index: -1;
    border-radius: 4px;
    border: 8px solid #91C956;
}

.ab__main-text h2 {
    font-size: 32px;
    font-weight: 800;
    line-height: 44px;
    margin-top:0;
    margin-bottom: 10px;
}
.ab__ab-text h2 {
    font-size: 32px;
    font-style: normal;
    font-weight: 800;
    margin-top:0;
    margin-bottom: 10px;
    color: var(--color);
}
.ab__ab-text h4 {
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    text-transform: uppercase;
    color: #363636;
}

.ab__main-text h4 {
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 44px; /* 275% */
    text-transform: uppercase;
    color: var(--color);
    margin-top:0;
    margin-bottom: 0;
}
.ab__main-text p {
    font-size: 18px;
    font-weight: 300;
    line-height: 30px;
    color: #0B0B0B;
    margin:15px 0;
}
.ab__ab-text p {
    font-size: 18px;
    font-weight: 400;
    line-height: 32px;
    color: #0B0B0B;
    margin:15px 0;
}
.sliders-swiper .swiper-wrapper{
    transition-timing-function: linear;
}
.services {
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}
.services:before {
    content:'';
    width:100%;
    height: 100%;
    background: #1B3869;
    mix-blend-mode: multiply;
    position: absolute;
    z-index: 1;
    left:0;
    top:0;
    opacity: 0.8;
}
.container-services {
    position: relative;
    z-index: 2;
}

.title {
    font-size: 36px;
    font-weight: 700;
    line-height: 46px;
    color: var(--color);
}
.breadcrumbs {
    margin-top:10px;
}
.breadcrumbs ul {
    display: flex;
    align-items: center;
    gap:0 5px;
    margin:0;
    padding:0;
}
.breadcrumbs li a,
.breadcrumbs li span {
    font-size: 18px;
    font-weight: 400;
    line-height: 30px;
    color: #8E8E8E;
}
.category-main{
    border-top: 1px solid #ECECEC;
    margin-top:25px;
    padding-top:40px;
}
.cat-image img {
    width:100%;
}
.referens{
    filter:grayscale(100%)
}
.cat-title {
    font-size: 19.219px;
    font-weight: 700;
    line-height: 24.985px;
    margin-top:20px; 
    color:#000;

    -webkit-line-clamp: 2;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 50px;
}

.cat-price {
    margin-top:15px;
    display: flex;
    align-items: center;
    gap:0 25px;
}
.cat-prices {
    font-size: 20px;
    color: var(--color);
    margin-top: 15px;
    font-weight: 700;
}
.product-prices{
    margin-top: 15px;
    border-bottom: 1px solid #DDD;
    padding-bottom: 30px;
    margin-bottom: 30px;
}
.cat-price div {
    display: flex;
    align-items: center;
    gap:0 5px;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 24.985px;
    color: #767676;
}
 .price {
    font-size: 19.219px;
    color:var(--color);
    font-weight: 500;
    line-height: 24.985px;
    text-transform: capitalize;
}
 .old_price {
    font-size: 19.219px;
    color:#9D9D9D;
    font-weight: 500; 
    line-height: 24.985px;
    text-transform: capitalize;
    margin-left:10px; 
}
.category{
    background: var(--bg_color);
}
.col-category {
    padding-bottom:30px;
}
.cat-news {
    position: absolute;
    top: 15px;
    left: 0;
    display: flex;
    align-items: flex-start;
    gap: 0 5px;
    justify-content: space-between;
    width: 100%;
    padding:0 15px;
}
.zerno-views{
    display: flex;
    flex-direction: column;
    gap: 10px 0;
}
.n-icons {
    border-radius: 2px;
    font-size: 11px;
    font-weight: 400;
    line-height: 19.219px;
    padding: 2px 7px;
    color: #fff;
}
.new {
    background: #91C956;
}
.category-grig {
    position: relative;
}
.cat-image {
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 35px;
    border-radius: 7.688px;
    border: 1px solid #E7E6EF;
}
.cat-search input{
    border-bottom:1px solid #D8D8D8 !important;
    border:none;
    width:100%;
    padding-bottom: 15px;
    padding-top:10px;
}



.cat-search input::placeholder { 
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px;
    color:#707070
}
.cat-search input:-ms-input-placeholder { 
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px;
    color:#707070
} 
.cat-search input::-ms-input-placeholder { 
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px;
    color:#707070
}
.cat-selected{
    margin-top:30px;
}
.cat-selected a {
    border-radius: 4px;
    border: 1px solid var(--color);
    background: #FFF;
    margin-left:5px;
    padding:5px 8px;
    display: inline-flex;
    align-items: center;
    margin-bottom:5px;
    color: var(--color);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    gap:0 5px;
}

.cat-selected a.mse2_selected_link {
    background: var(--color);
    color:#fff;
}
#mse2_selected .mse2_selected_link em {
    color:#fff !important;
}
#mse2_selected {
    background:transparent !important;
}

.cat-selected a sup {
    font-size: 22px;
}
.cat-selected a em {
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
.filter {
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
    margin-bottom: 35px;
    border: none;
    padding: 0;
}
.full-flex .filter-title {
    margin-bottom: 0;
}
.full-flex {
    margin-bottom: 15px;
}
.filter-title {
    margin-bottom: 15px;
    font-weight: 600;
    font-size: 18px;
    line-height: 27px;
}
.ui-widget-header {
    background: #91C956 !important;
}
.ui-widget-content {
    background: #D8D8D8 !important;
}
.ui-widget.ui-widget-content {
    border:0 !important;
}
.ui-slider-horizontal {
    height: 0.4em !important;
}

.ui-slider-horizontal .ui-slider-handle {
    top: -0.4em !important;
}
.ui-state-default, .ui-widget-content .ui-state-default, .ui-widget-header .ui-state-default, .ui-button, html .ui-button.ui-state-disabled:hover, html .ui-button.ui-state-disabled:active {
    background: #91C956 !important;
    border-radius: 50% !important;
    border:0 !important
}
.input-filter {
    min-width:50px;
    max-width: 50px;;
}
.input-filter-control{
    border:0;
    color: #767676;
    font-family: Nunito;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px;
    width: 100%;
}
.mse2_number_inputs > span {
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px;
    color: #767676;
    margin-right: 5px;
}

.cat-sort {
    margin-top:30px;
}
.sort {
    margin-bottom: 15px;
}

.check-box{
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}
.check-box label {
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 27px;
    color:#000;
}
.check-box input[type="checkbox"] {
    position: relative;
    appearance: none;
    width: 38px;
    height: 22px;
    background: #C2C2C2;
    border-radius: 50px;
    border: 1px solid #C2C2C2;
    cursor: pointer;
    transition: 0.4s;
}

.check-box input:checked[type="checkbox"] {
    background:var(--color);
}

.check-box input:checked[type="checkbox"]:after {
    background: #fff;
}

.check-box input[type="checkbox"]::after {
    position: absolute;
    content: "";
    width: 14px;
    height: 14px;
    top: 3px;
    left: 4px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 0 5px rgb(0 0 0 / 20%);
    transition: 0.4s;
}

.check-box input:checked[type="checkbox"]::after {
    left: 50%;
}
.filter {
    margin-bottom: 35px;
}
.cat-filter{
    margin-top: 35px;
}
.filter-title {
    margin-bottom: 15px;
}
.checkbox {
    display: none;
}
.checkbox-filter {

}
.stepen img {
    filter:brightness(0)
}
div.checkbox-filter {
    margin-bottom: 15px;
}
div.checkbox-filter:last-child {
    margin-bottom: 0;
}
.check-box span {
    font-weight: 600;
    font-size: 18px;
    line-height: 27px;
}
.check {
    gap: 0 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.ch-input {
    border: 1px solid #707070;
    border-radius: 4px;
    width: 16px;
    height: 16px;
    position: relative;
}

.checkbox-filter input[type=checkbox]:checked+.check .ch-input:before {
    content: '';
    background: var(--color);
    border-radius: 2px;
    width: 8px;
    height: 8px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.ch-text {
    font-size: 16px;
    font-weight: 400;
    line-height: 22px; 
    color:#767676
}
.pagination {
    display: flex;
    align-items: center;
    gap:0 5px;
    margin:0;
    padding: 0;
    margin-top:30px;
}
.page-item.active .page-link {
    z-index: 3;
    color: #fff;
    background-color: var(--color);
    border-color: var(--color);

}
.page-link {
    position: relative;
    display: block;
    padding: 0.5rem 0.75rem;
    margin-left: -1px;
    line-height: 1.25;
    color: var(--color);
    background-color: #fff;
    border: 1px solid #D8D8D8;
    border-radius: 4px;
    text-align: center;
    transition: .4s all ease-out;
}
.page-link:hover,
.page-link:hover svg path {
    background-color: var(--color);
    border-color: var(--color);
    color:#fff;
    fill:#fff
}
.product-wrapper {
    margin-top:30px;
}
.product-images {
    position: relative;
    display: flex;
    justify-content: center;
    overflow: hidden;
    border-radius: 4px;
    border: 1px solid #E7E6EF;

    background: #FFF;
}

.card-box-swiper-thumbs{
    min-width: 120px;
    height: 585px;
    margin-right: 35px;

}
.card-box-swiper{
    height: 585px;
}
.product-title{
    font-size: 30px;
    font-style: normal;
    font-weight: 700;
    line-height: 40px;
    margin-bottom: 15px;
    margin-top:15px;
}
.product-price{
    font-size: 19.549px;
    font-weight: 500;
    line-height: 25.414px;
    text-transform: capitalize;
    color: var(--color);
    display: flex;
    align-items: center;
}
.product-sale{
    border-radius: 3.844px;
    background: var(--color);
    font-size: 11px;
    font-weight: 400;
    line-height: 19.219px;
    margin-left:15px;
    color:#fff;
    padding:3px 6px;
}
.product-categories {
    display: flex;
    align-items: center;
    justify-content:flex-start;
    margin-top:15px;
    gap:0 30px;
    flex-wrap: wrap;
}
.product-cat {
    font-size: 15.639px;
    font-style: normal;
    font-weight: 400;
    line-height: 26.391px;
    color:#000;
    display: flex;
    align-items: center;
    gap:0 15px;
}
.product-cat p {
    margin:0;
}

.product-cat-name{
    color:#707070
}
.product-reivews ul {
    margin:0;
    padding: 0;
    display: flex;
    align-items: center;
    gap:0 8px;
}
.product-reivews{
    display: flex;
    align-items: center;
    gap:0 20px
}
.product-reivews p {
    font-size: 15.639px;
    font-weight: 400;
    line-height: 26.391px;
    color:#707070;
    margin:0;
}
.product-card-bottom {
    margin-top:15px;
    border-bottom:1px solid #DDD;
    padding-bottom: 10px;
    margin-bottom: 30px;
}
.product-image-link{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    padding:50px 0;
}
.har__title{
    font-size: 18px;
    font-weight: 400;
    line-height: 26.391px; /* 146.619% */
    text-transform: uppercase;
    color: #767676;
    margin-bottom: 15px;
}
.type__title{
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 26.391px;
    color: #767676;
}
._type{
    display: flex;
    align-items: center;
    gap:0 15px;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 26.391px;
    color:#000;
    margin-top: 5px;
 
}
._type svg {
    min-width: 20px;
    max-width: 20px;
}
.col__har {
    padding-bottom: 15px;
    padding-top: 15px;
}
.product-text {
    font-size: 15.639px;
    font-weight: 400;
    line-height: 26.391px;
    margin-top:20px;
    color:#707070;
    margin-bottom: 20px;
}
.content-colums {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap:0 30px;
}
.content h2{
    font-size: 32px;
    font-style: normal;
    font-weight: 800;
    color: var(--color);
    margin-top:0;
    margin-bottom: 15px;
}
.content__img {
    min-width: 250px;
}
.content p {
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 32px;
    color: #0B0B0B;
}
.add_cart{
    border-radius: 4px;
    border:1px solid #000;
    font-size: 15.639px;
    font-weight: 700;
    line-height: normal;
    padding:15px 0;
    background: #fff;
    transition: .4s all ease-out;
    height: 50px;
    width:100%;
}
.add_cart:hover {
    background: #000;
    color:#fff;
}
.product-options {
    display: flex;
    align-items: center;
    margin-bottom: 30px;

}
.product-options p {
    margin:0;
    font-size: 16px;
    font-weight: 400;
    line-height: 26.391px;
    color:#707070;
    width:75px;
    margin-right:10px;
}
.product-color input {
    display: none;
}
.product-color input:checked + .radio {
    position: relative;
    transition: .4s all ease-out;
    
}
.product-color input:checked + .radio:before {
    content:'';
    width:32px;
    height: 32px;
    border:1px solid #000;
    border-radius: 200px;
    position: absolute;
    left:50%;
    top:50%;
    transform: translate(-50%,-50%);
    width: 36px;
    height: 36px;
    transition: .4s all ease-out;
}
.radio {
    width:30px;
    height: 30px;
    border-radius: 200px;
    display: block;
    transition: .4s all ease-out;
    cursor: pointer;
}



.product-color,
.product-size,
.product-gift {
    display: flex;
    align-items: center;
    gap:0 10px;
}
.product-size input{
    display: none;
}

.radio-size{
    border-radius: 3.91px;
    border: 0.977px solid #D9D9D9;
    background: #FFFFFF;
    padding:3px 6px;
    text-align: center;
    font-size: 15.639px;
    font-weight: 400;
    line-height: 26.391px;
    color:#707070;
    cursor: pointer;
    min-width:32px;
    height: 32px;
}
.check-checkbox{
    margin-bottom: 15px;
}

.checkbox-group:checked + .checkbox-label{

    color:#000;
}

.product-size input:checked + .radio-size {
    border: 0.977px solid #000;
    color:#000;
}

input[type="radio"] {
    accent-color:#1C1C1C;
}
input[type="checkbox"] {
    accent-color:#1C1C1C;
}

.radio-gift{
    font-size: 16px;
    font-weight: 400;
    line-height: 27px;
    color:#1C1C1C;
}

.product-add{
    display: flex;
    align-items: center;
    gap:0 20px;
    flex-wrap: wrap;
}
.product-count {
    flex: 0 0 100px
}
.product-add_cart{
    flex:0 0 73%;
}
.number{
    border-radius: 4px;
    background: #EFEFEF;
    display: flex;
    align-items: center;
    height: 50px;
    justify-content: center;
}
.number input {
    border:none;
    background: transparent;
    width:40px;
    text-align: center;
    font-size: 15.639px;
    font-style: normal;
    font-weight: 400;
    line-height: 26.391px;
}
.number .minus,
.number .plus {
    font-size: 15.639px;
    font-weight: 400;
    line-height: 26.391px;
    color:#707070;
    padding: 0 10px;
    cursor: pointer;
}
.product-tabs{
    margin-top:90px;
}

.tabs {
    max-width: 100%;
}
.tabs-columns {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;


}
.tabs__left {
   flex:0 0 385px
}
.tabs__right {
    flex:0 0 775px
}
.tabs__right img {
    width:100%;
}
.tabs__caption {
    margin:0;
    padding: 0;
}
.col__info h3 {
    font-size: 14px;
    font-style: normal;
    font-weight: 300;
    line-height: 32px; /* 228.571% */
    letter-spacing: -0.28px;
    color: #6A6A6A;
    margin-top: 0;
    margin-bottom: 0;
}
.col__info a {
    color: #0E0E0E;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px;
}
.c_tabs .tabs__caption {
    display: flex;
    align-items: center;
    gap:0 10px;
}
.bank__title {
    margin-top:0;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    margin-bottom: 20px;
}
.container__contacts{
    margin-top:-100px;
}
.col__info-columns{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap:0 20px;
    margin-top:30px;
    justify-content: space-between;
}
.col__info{
    margin-bottom: 15px;
}
.c_tabs .tabs__caption li {
    border-radius: 4px;
    background: #EDEDED;
    font-size: 22px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    color: #7A7A7A;
    padding: 5px 12px;
    display: flex;
    align-items: center;
    gap:0 10px;
}
.c_tabs .tabs__caption .active {
    background: #91C956;
    color:#fff;
}
.c_tabs .tabs__caption li svg {
    transition: .4s all linear;
}
.c_tabs .tabs__caption .active svg path,
.c_tabs .tabs__caption li:hover svg path  {
    fill:#fff;
    transition: .4s all linear;
}
.tabs__caption li:last-child:before {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: -2px;
    z-index: -1;
    height: 5px;
}
.tabs__caption:after {
    content: '';
    display: table;
    clear: both;
}
.tabs__caption li {
    padding:22px 25px;
    border:1px solid #E5E5E5;
    color: #0F0F0F;
    position: relative;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: -0.36px;
    background: #fff;
    transition: .4s all linear;
}
.tabs__caption li:hover {
    background: #91C956;
    color:#fff;
}
.tabs__caption li:last-child {
    margin-right: 0;
}
.tabs__caption li:not(.active) {
    cursor: pointer;
}
.tabs__caption li:not(.active):hover {

}
.tabs__caption .active {
    background: #FFF;
    color: #000;
    position: relative;
}
.tabs__caption .active:hover:before {
    background: #fff;
}
.c_tabs .tabs__caption .active:before {
    display: none !important;
}
.tabs__caption .active:before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translate(0,-50%);
    width:5px;
    height: 50%;
    background: #91C956;
 
}
.tabs__content {
    display: none;
    transition: .2s all ease-in;
}
.tabs__content.active {
    display: block;
}
.tabs__content h2 {
    font-size: 32px;
    font-style: normal;
    font-weight: 800;
    line-height: 66px;
    color: var(--color);
    margin-top:0;
    margin-bottom: 0;
}
.tabs__content p {

    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 32px; 
    color: #0B0B0B;
}
.tabs__content ul {
    margin:0;
    padding:0;
}
.tabs__content ul li {
    list-style: none;
    margin-bottom: 15px;
}
.product-similar{
    margin-top:80px;
}
.r-title{
    margin-bottom: 40px;
    font-size: 25.414px;
    font-weight: 400;
    line-height: 34.211px;
    color:#000;
}
.product-socials{
    display: flex;
    align-items: center;
    gap:0 15px;
    margin-top:40px;
}
.product-social {
    display: flex;
    align-items: center;
    gap:0 15px;
    flex-wrap: wrap;
}
.product-social:before {
    content: '';
    width: 1px;
    height: 20px;
    background: #D8D8D8;
    display: flex;
}
.main-slider-wrapper {
    position: relative;
    height: 570px;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    border-radius: 15.654px;
}
.main-slider-content{

}
.main-services .main-slider-sub,
.main-services .main-slider-title,
.main-services .main-slider-price {
    color:#fff
}



.main-slider-sub{
    font-size: 18px;
    font-weight: 400;
    line-height: 34.243px;
    text-transform: uppercase;
    color: #292929;
}



.main-slider-title{
    font-size: 32px;
    line-height: 38px;
    font-weight: 800;
    color:var(--color);
    margin-top:15px;
    margin-bottom: 20px;
}
.main-slider-price{
    font-size: 18px;
    font-style: normal;
    font-weight: 300;
    line-height: 30px;
    color:#000;
}
.main-slider-url{
    margin-top:35px;
    gap:0 10px;
}
.main-slider-url span {
    font-size: 16px;
}
.options{
    margin-top:-70px;
    margin-bottom: 70px;
    border-radius: 4px;
    background: #FFF;
    box-shadow: 0px 0px 16px -1px rgba(0, 0, 0, 0.10);
    padding:35px 35px
}
.btn-main{
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
}
.font-14{
    font-size: 14px;
    font-weight: normal;
}
.cart-discount {
    margin-top:30px;
}
.cart-discount input {
    border-bottom:1px solid #D8D8D8;
    border-top:0;
    border-left:0;
    border-right:0;
    padding: 15px 0;
    margin-bottom: 25px;
    width: 100%;
}
.check-form2{
    margin-top:60px;
}
.check-register a {
   border-bottom: 1px dashed var(--color);
   color:var(--color)
}
.check-radio {
    margin-bottom: 15px;
    margin-top:30px;
}
select.form-control-check {
    color: #707070;
    opacity: 1; 
    font-weight: 300;
    font-size: 18px;
}

.form-control-check {
    border-bottom:0;
    border-top:0;
    border-left:0;
    border-right:0;
    padding: 15px 0;
    width: 100%;
    background-color: #FAFAFC;
}
.form-group-check {
    margin-bottom: 20px;
    border-bottom:1px solid #D8D8D8;
}
.form-h2{
    font-size: 26px;
    font-style: normal;
    font-weight: 400;
    line-height: 35px;
    color:#000;
}
.check-total-padding {
    background: #EFEFEF;
    padding: 35px 55px;
}
.col-check-sub {
    padding-bottom:20px;
    border-bottom:1px solid #D8D8D8;
}
.ship-checkbox span {
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    color:#707070;
}
.check-order-grid{
    margin-top:50px;
}


/* login-register*/

.hero {

}

.login-box {
	width: 500px;
	min-height: 500px;
	position: relative;
	margin: 6% auto;
	padding: 5px;
	overflow: hidden;

	
	/* overflow:hidden is important to hide windows */
}

.button-box {
	width: 100%;
	margin: 0 auto;
	position: relative;
	border-radius: 8px;
    background: #EFEFEF;
    display: flex;
    align-items: center;
}

.toggle-btn {
    border-radius: 8px;
    background: transparent;
    box-shadow: 1px 1px 4px 0px rgba(0, 0, 0, 0.10);
	cursor: pointer;
	outline: none;
	border: 0;
	position: relative;
    width:50%;
    height: 50px;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px
}

#btn {
	top: 0;
	left: 0;
	position: absolute;
	width: 50%;
	height: 100%;
	background: #fff;
	border-radius: 8px;
	transition: .5s;
}

.social-icons {
	margin: 30px auto;
	text-align: center;
}

.social-icons img {
	width: 30px;
	margin: 0 12px;
	box-shadow: 0 0 20px 0 #7f7f7f3d;
	cursor: pointer;
	border-radius: 50%;
}

.input-group {
	position: absolute;
	width: 500px;
	top: 180px;
	transition: .5s;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	margin-top: 2.125em;
}

.input-field {
	outline: none;
	background: transparent;
	width: 100%;
	padding: 10px 0;
	margin: 5px 0;
	border-left: 0;
	border-top: 0;
	border-right: 0;
	border-bottom: 1px solid #999;
}

.submit-btn {
	width: 85%;
	padding: 10px 30px;
	cursor: pointer;
	display: block;
	margin: auto;
	background: linear-gradient(to right, #ff105f, #ffad06);
	border: 0;
	outline: none;
	border-radius: 30px;
}


#login {
	left:250px;
}

#register {
	left:-250px;
}

.table-row-container {
    width: 100%;
    height: 100%;
    display: flex;
    margin: 0;
    justify-content: center;
    align-items: center;
  }


.table-container {
    display: flex;
    flex-flow: column nowrap;
    margin: 0 auto;
    width:100%
}
  
.table-row {
    display: flex;
    flex-flow: row nowrap;
    width: 100%;
    border-bottom: 0.5px solid #D8D8D8;
} 
.row-item {
    display: flex;
    flex: 1;
    padding: 25px 0;
    align-items: flex-start;
    transition: all 0.15s ease-in-out;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 27px;
    color:#707070
}
.table-row.heading .row-item{
    color:#000000  
}
.table-row.heading {
    border-bottom: 0.5px solid #000000;
}
.max-580 {
    max-width: 580px;
    margin: 0 auto;
}
.account-details .form-control-check {
    background-color: transparent;
}
.form-group-text {
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    color:#707070;
    margin-top:10px;
}
.account-title{
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin:40px 0;
}


.btns{
    gap:0 1.5em;
}
.banner-content h2 {
    font-weight: 700;
    font-size: 56px;
    color: var(--color);
    margin:0;
    line-height: 66px;
}
.banner-content h3 {
    font-weight: 400;
    font-size: 18px;
    line-height: 30px;
    color: #0B0B0B;
    margin-top:1em;
    margin-bottom:2em;
    
}
.section-ptb {
    padding-top:4em;
    padding-bottom: 4em;
}
.ptb-45 {
    padding-top:45px;
    padding-bottom: 45px;
}
.section-pb {
    padding-bottom: 4em; 
}
.titles {
    font-weight: 700;
    font-size: 36px;
    line-height: 46px;
    color: #000;
}
.titles h4 {
    margin-top:0.25em;
    margin-bottom:0;
    font-weight: 400;
    font-size: 16px;
    line-height: 30px;
    color: #767676;
}
.bg-grey {
    background: var(--bg_color);
    background-size: cover;
}
.bg-lite {
    background: #FAFAFC;
}
.options h5 {
    margin-top:0.5em;
    margin-bottom: 0;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    color: var(--color);
}
.numbers {
    font-weight: 700;
    font-size: 44px;
    line-height: 50px;
    color:var(--color);
}
.numbers span {
    color:#BCBACD;
}
.bg_green {
    background: #91C956;
}
.bg_blue {
    background:var(--color);
}
.border:hover {
    border:1px solid #fff;
}
.border {
    border:1px solid var(--color)
}
.product__main-main {
    border-radius: 6.048px;
    padding:70px 40px;
    position: relative;
    height: 320px;
    overflow: hidden;
}
.col-product__main {
    margin-bottom: 15px;
}
.col-opt__main{
    margin-top: 15px;
    margin-bottom: 15px;
}
.bg_green .product__main-right {

}
.product__main-right img {
    height: 100%;
    object-fit: cover;
    width: 100%;
    object-position: bottom;
}
.product__main-right{
    position: absolute;
    right:0 !important;
    bottom:0;
    height: 100%;
    overflow: hidden;
    width: 100%;
    border-radius: 10px;
}
.product__main-right {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.product__main-left {
    position: relative;
    z-index: 3;
}
.product__main-title{
    font-size: 42px;
    font-style: normal;
    font-weight: 800;
    text-shadow: 0px 4px 6px rgba(0, 0, 0, 0.05), 0px 10px 15px rgba(0, 0, 0, 0.10);
    color: #fff;
}
.product__main-text {
    margin-top: 15px;
    margin-bottom: 25px;
}
.product__main-text p {
    text-shadow: 0px 4px 6px rgba(0, 0, 0, 0.05), 0px 10px 15px rgba(0, 0, 0, 0.10);
    font-size: 14px;
    font-weight: 400;
    line-height: 25.438px; /* 181.696% */
    text-transform: uppercase;
    color:#fff;
    margin-bottom: 10px;
    margin-top:0;
}
.product__main-text p:last-child{
    margin-bottom: 0;
}
.bg_shadow {
    box-shadow: 0px 0px 16px -1px rgba(0, 0, 0, 0.10);
}
.opt__main{
    gap:0 30px;
    display: flex;
}
.opt__img {
    min-width: 75px;
    max-width: 75px;
}
.opt__title{
    font-size: 22.098px;
    font-weight: 700;
    line-height: 29.463px; /* 133.333% */
    text-transform: uppercase;
    margin-bottom: 10px;
}
.opt__text{
    font-size: 18px;
    font-weight: 300;
    line-height: 150%;
    color: #454545;
}
.cart-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 35px;
    padding-bottom: 35px;
    border-bottom: 1px solid #D8D8D8;
}
.cart-price {
    display: flex;
    align-items: center;
}
.cart-img {
    flex:0 0 135px;
}
.cart-count{
    flex:0 0 105px
}
.cart-content{
    flex:0 0 200px
}
.cart-delete{
    flex:0 0 70px;
    text-align: right;
}
.cart-title {
    font-size: 20px;
    font-weight: 400;
    line-height: 26px;
}
.cart-options{
    font-size: 16px;
    font-weight: 400;
    line-height: 27px;
    margin-top:8px;
    color:#707070;
}
.cart-old_price .old_price {
    margin-left:0;
    margin-top:5px;
    text-decoration: line-through;

}
.col-cart-total{
    border-radius: 4px;
    background: #fff;
}
.cart-total-padding {
    padding: 35px 55px;
}


.cart-total-title {
    font-size: 26px;
    font-style: normal;
    font-weight: 400;
    line-height: 25px;
    margin-bottom: 40px;
}
.cart-sub-title{
    font-size: 16px;
    font-weight: 400;
    line-height: 27px;
}
.cart-sub{
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 27px;
    color:#707070;
}
.col-cart-sub{
    margin-bottom: 15px;
}
.grid {

}
.grid-stats_v1 {
    border: 1px solid #D4D2E3;
    border-radius: 15px;
    padding:40px 35px;
}
.grid-stats_v8 {
    border: 1px solid #D4D2E3;
    border-radius: 15px;
    padding:40px 35px;
    height: 100%;
}
.ptb-15 {
    padding-top:15px;
    padding-bottom: 15px;
}
.d-stretch{
    display: flex;
    align-items: stretch;
}
.grid-stats_v1 p {
    margin-top:0;
    margin-bottom: 0;
    color: #9795B5;
}
.grid-stats_v1 h5 {
    margin-bottom:0;
}
.grid img {
   
}
.grid {
    gap:0 25px;
}
.grid img{
    max-width: 48px;
    min-width: 48px;
}
.options .row > div:last-child .grid {
    border-right:0;
}
.sliders-pagination{
    position: relative;
    gap:0 20px;
}
.sliders-pagination .swiper-button-next,
.sliders-pagination .swiper-button-prev {
    position: static;
}
.swiper-button-next, .swiper-button-prev {
    background: var(--color);
    border: 1.22858px solid #D4D2E3;
    border-radius: 44.9046px;
    width:64px;
    height:64px;
    transition: .2s all linear;
}
.sliders-button-next, .sliders-button-prev,
.sliders1-button-next, .sliders1-button-prev {
    width:35px;
    height: 35px;
}

.swiper-button-next:hover, .swiper-button-prev:hover {
   /* background: #D4D2E3;
    border: 1.22858px solid var(--color);*/

}
.customers-button-next,
.customers-button-prev {
    background: transparent;
    border-radius: 0;
    border:0;
    width: calc(var(--swiper-navigation-size)/ 44 * 27);
    height: var(--swiper-navigation-size);
}
.swiper-button-next:after, .swiper-button-prev:after {
    font-size: 22px;
    color:#fff
}
.sliders-button-next:after, .sliders-button-prev:after,
.sliders1-button-next:after, .sliders1-button-prev:after {
    font-size: 16px;
}
.swiper-button-next:hover:after, .swiper-button-prev:hover:after{
    /*color:var(--color);*/
 
}
.customers-button-next:after, .customers-button-prev:after {
    font-size: 22px;
    color:var(--color);
}

.swiper-button-next.swiper-button-disabled, .swiper-button-prev.swiper-button-disabled{
    border: 1.22858px solid #D4D2E3;
    background: #fff;
}

.customers-button-next.swiper-button-disabled, .customers-button-prev.swiper-button-disabled{
    border:0;
    background: transparent
}

.swiper-button-next.swiper-button-disabled:after,
.swiper-button-prev.swiper-button-disabled:after{
    color:var(--color);
}
.swiper-horizontal>.swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal, .swiper-pagination-custom, .swiper-pagination-fraction {
    bottom: -5px;
}
.swiper-pagination-bullet {
    background: #fff;
    opacity: 1;
    width: 10px;
    height: 10px;
}
.swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet, .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet{
    margin:0 8px;
}
.swiper-pagination-bullet-active {
    background: transparent;
    border:1px solid #fff !important
}


.slide-img img {
    border-radius: 25px;
}
.slide-grid,
.gallery .swiper-slide {
    position: relative;
    overflow: hidden;
    border-radius: 25px;
}
.gallery_v5 .slide-img img {
    border-radius: 0;
}
.gallery_v5 .slide-grid {
    border-radius: 0px 0px 25px 25px;
    box-shadow: 0px 2px 6px rgba(20, 20, 43, 0.06);
    margin-bottom: 5px;
    margin-left: 5px;
}
.slide-content {
    padding-left:35px;
    padding-right:35px;
    padding-bottom: 25px;
    padding-top: 25px;
}
.team_v2-content{
    padding-left:0;
    padding-right:0;
}
.slide-content h2 {
    font-weight: 700;
    font-size: 28px;
    line-height: 38px;
    margin-bottom: 0;
    margin-top:0;
    color:var(--color);
}
.gallery-price {
    color:var(--color);
    font-weight: 500;
    font-size: 22px;
    line-height: 22px;
}
.team_v14-price{
    font-weight: 400;
    font-size: 16px;
    line-height: 18px;
    color: #8D8BA7;
}

.slide-grid a {
    position: absolute;
    bottom:30px;
    left:40px;
    font-weight: 700;
    font-size: 18px;
    line-height: 18px;
    color:#fff;
    display: flex;
    align-items: center;
    gap:0 8px;
}
.slide-grid a:after {
    content:'';
    background-image: url("data:image/svg+xml,%0A%3Csvg width='18' height='16' viewBox='0 0 18 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M9.44922 0.949219L16.4999 7.99994L9.44922 15.0507' stroke='white' stroke-width='1.4' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M16.4999 8L1.5 8' stroke='white' stroke-width='1.4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
    background-repeat: no-repeat;
    background-size: contain;
    width: 15px;
    height: 14px;
    display: flex;
}

/* Zoom In #1 */
.gallery .swiper-slide img,
.customers-swiper .swiper-slide img{
	-webkit-transform: scale(1);
	transform: scale(1);
	-webkit-transition: .5s ease-in-out;
	transition: .5s ease-in-out;
}

.gallery .swiper-slide:hover img,
.customers-swiper .swiper-slide:hover img {
	-webkit-transform: scale(1.3);
	transform: scale(1.3);
}
.customers-swiper .swiper-slide:hover img {
    filter:brightness(0);
}
.company-content {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}
.company-text-nohover{
    position: absolute;
    bottom:30px;
    padding:0 50px;
    width:100%;
    color:#fff;
}
.company-text-nohover .company-title{
    font-weight: 700;
    font-size: 28px;
    line-height: 38px;
    margin-bottom: 10px;
}
.company-text-nohover .company-name{
    font-weight: 500;
    font-size: 18px;
    line-height: 20px;  
    letter-spacing: 0.1em;
    text-transform: uppercase;
}
.company-img img {
    width: 100%;
    object-fit: cover;
}


.company-text-hover.overlay {
    width: 100%;
    height: 100%;
    background: rgb(217 214 205);
    color: #FEF5DF;
    opacity: 0;
    transition: all 0.5s;
    position: absolute;
    top:0;
}
.company-content:hover .company-text-nohover {
    opacity: 0;
}

.company-content:hover .company-text-hover.overlay {
    opacity: 0.75;
    text-align: center;
}
.company-text-hover .company-grid {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    position: absolute;
    width:100%;
    padding:0 65px;
    text-align: center;
   
}
.company-text-hover .company-title {
    transform: translateY(40px);
    transition: all 0.7s;
}
.company-content:hover .company-text-hover.overlay .company-title {
    transform: translateY(0px);
    color:#000;
}
.company-text-hover .company-name {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.7s;
    font-weight: 700;
    font-size: 36px;
    line-height: 46px;
}
.company-content:hover .company-text-hover.overlay .company-name {
    transform: translateY(0px);
    transition-delay: 0.3s;
    opacity: 1;
    color:#000;

}
.company-text-hover .company-desc {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.7s;
}
.company-content:hover .company-text-hover.overlay .company-desc {
    transform: translateY(0px);
    transition-delay: 0.6s;
    opacity: 1;
    color:#000;
    margin-top:20px;
}

.bg-image{
    background-repeat: no-repeat;
    background-size: cover;
    padding:3em 0;
}
.callaction_v19 .grid-title {
    font-weight: 700;
    font-size: 56px;
    line-height: 66px;
    color: var(--color);
}
.grid-title{
    font-weight: 700;
    font-size: 36px;
    line-height: 46px;
    color: var(--color);
}
.p-title{
    font-weight: 700;
    font-size: 36px;
    line-height: 46px;
    color: var(--color);
   
}
.grid-title{
    margin-bottom: 26px;
}
.p-price{
    font-weight: 700;
    font-size: 24px;
    line-height: 34px;
    color: #000000;
}
.p-list div {
    font-weight: 700;
    font-size: 16px;
    line-height: 18px;
    color: var(--color);
    margin-bottom: 1em;
    display:flex;
    align-items: center;
}
.p-list div:before {
    content:'';
    background-image: url("data:image/svg+xml,%0A%3Csvg width='17' height='16' viewBox='0 0 17 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8.98828 16C13.4067 16 16.9883 12.4184 16.9883 8C16.9883 3.5816 13.4067 0 8.98828 0C4.56988 0 0.988281 3.5816 0.988281 8C0.988281 12.4184 4.56988 16 8.98828 16Z' fill='%23ADABC3'/%3E%3Cpath d='M5.36786 8.51716L7.43667 10.586L12.6087 5.41394' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
    background-repeat: no-repeat;
    background-size: contain;
    width:26px;
    height: 26px;
    margin-right:14px;
}
.p-list span {
    max-width: 80%;
    flex:0 0 90%;
}
.grid-price_pricing_v11 .p-list div{
    font-weight: 400;
    font-size: 16px;
    line-height: 18px;
    color: #9795B5;
}
.grid-price_pricing_v11 .p-list {
    margin-top:50px;
}
.grid-price_pricing_v11-first .p-first-title {
    font-weight: 700;
    font-size: 44px;
    line-height: 50px;
    color: var(--color);
}
.grid-price_pricing_v11 .p-list div:before {
    width:16px;
    height:16px;
}
.grid-price_pricing_v11-first .p-content{
    font-weight: 400;
    font-size: 18px;
    line-height: 30px;
    color: #9795B5;
    margin-top:15px;
}

.ptb-100{
    padding:100px 0;
}
.grid-price{
    padding:40px 40px;
    height: 610px;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.col-md-22{
    max-width: 22.222222%;
    flex:0 0 22.222222%;
}
.col-md-22.active {
    background: #F2F1FA;
}
.grid-price_pricing_v11{
    padding-left:30px;
    padding-right:30px;
}
.grid-price_pricing_v11 {
    height: 685px;
    padding-top:70px;
    padding-bottom:70px;
    display: flex;
    flex-direction: column;
    transition: .2s all linear;
}
.grid-price_pricing_v11:hover {
    background: #F2F1FA;
}
.grid-price_pricing_v11 .p-title {
    font-weight: 700;
    font-size: 28px;
    line-height: 38px;
}

.pricing_v6 .grid-price {
   
    height: auto;
}
.col-pricing_v6:first-child {
    border-right: 1px solid var(--color);
}

.grid-price.active {
    border: 1px solid #D4D2E3;
    border-radius: 25px;
}
.grid-price_pricing_v11 .p-price {
    font-weight: 700;
    font-size: 56px;
    line-height: 66px;
    color: var(--color);
}
.grid-price_pricing_v11 .p-price span {
    font-weight: 500;
    font-size: 20px;
    line-height: 20px;
    color: #8D8BA7;
}
.pricing_v6 .p-title{
    font-weight: 700;
    font-size: 18px;
    line-height: 18px;
    color: #8D8BA7;
}
.pricing_v6 .p-price {
    font-weight: 700;
    font-size: 44px;
    line-height: 50px;
    color: var(--color);
    margin-bottom:15px;
 
}
.pricing_v6 .p-price span {
    font-weight: 700;
    font-size: 16px;
    line-height: 22px;
    color: #8D8BA7;
}
.pricing_v6 .p-content{
    font-weight: 400;
    font-size: 18px;
    line-height: 30px;
    color: #9795B5;
    margin-bottom:30px;
}
.p-btn {
    margin-top: auto;
}
.p-text{
    font-weight: 400;
    font-size: 16px;
    line-height: 18px;
    color: var(--color);
    margin-top:25px;
    max-width: 155px;
}
.reviews{
    position: relative;
}
.pagination-row {
    width: 100%;
    margin-top:80px;
}
.pagination-bottom-row {
    width: 100%;
    margin-top:40px;
}
.pagination-txt-box {
    display: flex;
    align-items: center;
    width: calc(100%/3);
}
.pagination-row-txt {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.pagination-txt-box-img {
    margin-right: 18px;
}
.pagination-txt-box-img img {
    border-radius: 200px;
}
.pagination-txt-box-about p {
    font-weight: 700;
    font-size: 20px;
    line-height: 20px;
    color:#0C0C0C;
    margin-top:0;
    margin-bottom: 3px;
}
.pagination-txt-box-about span {
    font-weight: 400;
    font-size: 16px;
    line-height: 18px;
    color: #5A5A5A;
}
.main-pag .swiper-pagination-bullet {
    width: calc(100%/3);
    border-radius: 0;
    margin: 0 !important;

    height: 1px;
    background: var(--color);
    transition: .2s all linear;
    opacity: 0.35;
}
.main-pag .swiper-pagination-bullet.swiper-pagination-bullet-active {
    height: 4px;
    background: #767494;
    opacity: 1;
    position: relative;
    top: 1px;
}
.main-pag {
    position: inherit;
}
.reviews-pag {
    position: relative;
}
.rev-content {
    margin:0 auto;
    width:60%;
    text-align: center;
    font-weight: 400;
    font-size: 22px;
    line-height: 36px;
    color: #9795B5;
}
.rev_v1-content {
    border: 1px solid #D4D2E3;
    border-radius: 24px;
    padding:40px 40px;
}
.rev_v1-img {
    margin-bottom: 30px;
}
.rev_v1-title{
    font-weight: 700;
    font-size: 22px;
    line-height: 22px;
    color: var(--color);
}
.rev_v1-text p{
    font-weight: 400;
    font-size: 18px;
    line-height: 30px;
    color: #9795B5;
    margin-top:12px;
    margin-bottom: 0;
}
.rev_v2-ceo {
    margin-top:30px;
}
.rev_v2-ceo h2 {
    margin-top:0;
    font-weight: 700;
    font-size: 18px;
    line-height: 18px;
    color: var(--color);
}
.rev_v2-ceo p {
    margin-bottom: 0;
    margin-top: 0;
    font-weight: 400;
    font-size: 18px;
    line-height: 18px;
    color: #9795B5;
}
.rev_v2-content  {
    display:flex;
    align-items: center;
    background: #FAFAFF;
    border-radius: 24px;
}
.rev_v2-title {
    font-weight: 700;
    font-size: 28px;
    line-height: 38px;
    color: var(--color);
}
.rev_v2-text p {
    font-weight: 400;
    font-size: 18px;
    line-height: 30px;
    color: var(--color);
    margin-top:12px;
    margin-bottom: 0;
}
.rev_v2-img{
    flex:0 0 40%;
    max-width: 40%;
}
.rev_v2-text{
    flex:0 0 60%;
    max-width: 60%;
    padding:80px 80px;

}
.acc-container {
    max-width: 100%;
    width: 100%;
}
.acc {
    margin-bottom: 10px;
    position: relative;
}
.acc-head {
    background: #FFFFFF;
    border: 1px solid #D4D2E3;
    border-radius: 100px;
    cursor: pointer;
    font-weight: 700;
    font-size: 22px;
    line-height: 28px;
    color: var(--color);
    padding:27px 36px;
    transition: .2s all linear;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: .2s all linear;
}

.accordion_v2-head {
    border-radius: 0;
    border-left: none;
    border-right:none;
    border-bottom:none;
    padding-top:50px;
    padding-bottom: 50px;
}

.acc-head::after{
    content: '+';
    background: #F2F2F2;
    border-radius: 80px;
    transition: all .3s;
    color:var(--color);
    width: 32px;
    height: 32px;
    display: flex;
    justify-content: center;
    font-size: 29px;
} 
.accordion_v2-head:after {
    background: #fff;
}

.acc.active .acc-head:hover{
    color:var(--color);
}
.acc-head:hover {
    background: var(--color);
    border: 1px solid  var(--color);
    color: #fff;
}

.acc-content {
    padding:0 36px;
    display: none;
    font-weight: 400;
    font-size: 18px;
    line-height: 30px;
    color: #9795B5;
    margin-bottom: 48px;

}
          
.acc.active .acc-head::after {
      transform: rotate(135deg);
      background: var(--color);
      color:#fff;
     /* position: absolute;
      right:0;
      top:50%;*/
}
.acc.active .acc-head {
    background: transparent;
    border:none;
}
.acc.active .accordion_v2-head {
    border-top:1px solid #D4D2E3;
    padding-bottom:15px;
}
.content-section_v16 .col-about h2 {
    font-size: 56px;
    line-height: 66px;
}
.col-about h2 {
    font-weight: 700;
    font-size: 36px;
    line-height: 46px;
    margin-top:0;
    color:var(--color);
} 
.col-about p {
    font-weight: 400;
    font-size: 18px;
    line-height: 30px;
    color: #898989;
} 
.black {
    color:#000;
}
.logos__img{
    text-align: center;
}
.customers-swiper,
.logos_v2-swiper{
    min-height: 120px;
    text-align: center;
    display: flex;
    align-items: center;
}
.logos_v2-swiper .swiper-button-next,
.logos_v2-swiper .swiper-button-prev {
    top:40%;
}
.contacts_v8-row{
    max-width: 475px;
    padding:40px 40px;
    background:#fff;
    border-radius: 25px;
}
.customers p {
    font-weight: 400;
    font-size: 18px;
    line-height: 30px;
    text-align: center;
    color: #9795B5;
    margin-top:40px;
}
.map {
    width:100%;
    height: 465px;
    background: #e4e4ef;
}
.map img {

}
.maps-flex {
    gap: 0 10px;
}
.maps-right {
    max-width: 235px;
}
.maps-right p {
    margin-top:10px;
    font-size: 15px;
    font-style: normal;
    font-weight: 300;
    line-height: 18px; /* 120% */
    letter-spacing: 0.3px;
    color:#000;
}
.contacts{
    position: relative;
}
.form {
    padding:50px 40px;
    background: #fff;
    border-radius: 20px;
    position: absolute;
    top: -456px;
}
.form h2 {
    margin-top:0;
    margin-bottom: 0;
    font-weight: 700;
    font-size: 24px;
    line-height: 34px;

}
.form-group {
    margin-top:10px;
    margin-bottom: 10px;
}
.col__contacts {
    border-radius: 8px;
    background: #FFF;
    box-shadow: 0px 0px 40px 0px rgba(0, 0, 0, 0.06);
    padding: 30px 30px;
    margin-top:30px;
    margin-bottom: 30px;;
}
.col__contacts h2 {
    font-size: 32px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    color: #010101;
    margin-top:0;
}
.contacts_v8 {
    position: relative;
    background: var(--bg_color);  
}
.contacts_v8  .map {
    height: 595px;
}
.contacts_v8-grid{
    position: absolute;
    top: 50%;
    right: 0%;
    transform: translate(-50%, -50%);
}
.contacts_v8-row .contact-grid {
    width:auto;
}
.contacts_v8-row .contact-grid h3 {
    font-weight: 700;
    font-size: 36px;
    line-height: 46px;
    color:var(--color);
    margin-top:0;
    margin-bottom: 20px;

}
.contacts_v6 h3 {
    font-weight: 700;
    font-size: 56px;
    line-height: 66px;
    color:var(--color);
    margin-top:0;
    margin-bottom: 15px;
}
.contacts_v6 p {
    font-weight: 400;
    font-size: 18px;
    line-height: 30px;
    color: #9795B5;

}
.contacts_v6 .map {
    height: 100%;
}
.contacts_v6-grid{
    padding:150px 30px;
}
.contacts_v6-grid label {
    font-weight: 700;
    font-size: 18px;
    line-height: 18px;
    color:var(--color);
    margin-bottom:10px;
    display: block;
}
.contacts_v6-grid form {
    margin-top:40px;
}
.contacts_v8-row .contact-grid p{
    font-weight: 400;
    font-size: 18px;
    line-height: 30px;
    color: var(--color);
    margin-top:0;
}

.contact_v8-content {
    display:flex;
    flex-direction: column;
    margin-top:30px;
}
.contact-grid .contact_v8-content a {
    font-weight: 400;
    font-size: 18px;
    line-height: 18px;
    color: var(--color);
    margin-top:20px;
    display: flex;
    align-items: center;
    gap:0 5px;
}
.contact-grid .contact_v8-content a svg {
    min-width:19px;
}
.contact-grid .contact_v8-content a svg path {
    stroke: var(--color);
}
.contacts_v5-grid h3{
    font-weight: 700;
    font-size: 44px;
    line-height: 50px;
    color:var(--color);
    margin-top:0;
    margin-bottom: 30px;
    
}
.contacts_v5-grid a,
.contacts_v5-grid p {
    font-weight: 400;
    font-size: 18px;
    line-height: 18px;
    color: var(--color);
}
.contacts_v5-grid p {
    margin-bottom: 15px;
}
.form p {
    margin-top:0;
    font-weight: 400;
    font-size: 18px;
    line-height: 30px;
    color: var(--color);
}
.form-control {
    display: block;
    width: 100%;
    padding:15px 12px;
    font-size: 14px;
    font-weight: 400;
    line-height: 22px;
    color: #000;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #D8D8D8;
    border-radius: 0.25rem;
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}
.ajax_form .error {
    border: 1px solid red !important;
}
form .error_g-recaptcha-response.error {
    border:none !important;
}
.form textarea {
    border-radius: 20px;
}
.form button{
    width:100%;
}
.form form {
    margin-top:24px
}
.contact-grid {
    width: 265px;
}
.contact-grid p {
    margin-top:0;
    margin-bottom: 0;
    line-height: 30px;
}
.contact-grid a,
.contact-grid p  {
    font-weight: 400;
    font-size: 18px;
}
.contact-grid h3 {
    margin-top:0;
    font-weight: 700;
    font-size: 22px;
    line-height: 28px;
}
.contact-row {
    display: flex;
    margin-top:60px;
}
footer {
    padding-top:4em;
    padding-bottom: 32px;
}

.footer_v12 .f-gap {
    flex-wrap: wrap;
}
.copyright {
    border-top: 1px solid #D4D2E3;
    font-weight: 400;
    font-size: 18px;
    line-height: 18px;
    color: #9795B5;
    margin-top:64px;
    padding-top:32px;
}
.f-gap {
    gap:0 30px;
}
.font {
    font-weight: 400;
    font-size: 18px;
    line-height: 18px;
    color: #9795B5;
}
.font-bold {
    font-weight: bold;
}
.middle-top-row,
.mobile_menu_overlay,
 .mobile_menu_container{
    display:none;
}
.mob-main-category {
    display: none;
}
.home-category .titles-category {
    display: none;
}
.btn-category {
    display: none;
}
.title-filter {
    display: none;
}
#mse2_selected strong {
    display: none !important;
}
.success-section {
    padding:70px 0;
}
.success-title {
    font-size: 100px;
    font-weight: 700;
    line-height: normal;
    letter-spacing: -2.514px;
    text-transform: uppercase;
    color: var(--color);
}
.success-sub_title {
    font-size: 36px;
    font-weight: 700;
    line-height: normal;
    letter-spacing: -0.72px;
    color: var(--color);
}
.success-desc {
    font-size: 18px;
    font-weight: 300;
    line-height: normal;
    color: var(--color);
}
.btn-red, #mse2_mfilter .btn_more {
    background: var(--color);
    border: 1px solid var(--color);
    color:#fff;
}
.logos--company img {
    max-height: 100px;
}
.swiper-slide {
    height: 100%;
}
.logos--company {
    height: 100px;
    display:flex;
    align-items: center;
}
@media screen and (max-width: 1200px) {

    .menu li a {
        font-size: 14px;
    }
    .btn {
        font-size: 14px;
        padding: 10px 10px;
        min-width: auto;
    }
    .hover__phones .gap-15 {
        gap:0 5px;
    }
    .phones__first {
        padding-right: 20px;
    }
    .phones__first:after {
        right:6px
    }
    .main-slider-url span {
        font-size: 12px;
    }
    .tabs__left {
        flex:0 0 30%
    }
    .tabs__right {
        flex:0 0 65%
    }
    .btn-main {
        font-size: 12px;
    }
    .main-slider-url {
        gap:0 5px
    }
    .product__main-right{
   
    }
    .product__main-right img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: right;
    }
    .product__main-main{
        padding: 30px 20px;
    }
    .product__main-left .btn {
        font-size: 14px;
        padding: 13px 5px;
    }
    .logo p {
        display: none;
    }
    .menu ul {
        padding:0;
        gap:0 10px;
    }
    .right {
        gap:0 10px;
    }
    .contacts_v8-grid {
        transform: translate(0, -50%);
    }
    .contacts_v8-row{
        max-width: 440px;
        padding: 25px 25px;
    }
}
@media screen and (max-width: 991px) {
    .col-product__main:not(:last-child){
        margin-bottom: 15px;
    }
    .tabs__left {
        flex:0 0 25%
    }
    .tabs__right {
        flex:0 0 60%
    }
    .tabs-columns {
        flex-wrap: wrap;
    }
    .ab__sklad {
        margin-top:15px;
    }

    .hero_v7 .col-main{
        margin-bottom: 30px; 
    }
 
    .main-filter {
        position: absolute;
        top:20px;
        opacity: 0;
        transition: .4s all ease-out;
        background-color: #fff;
        width: 100%;
    }
    .category-filter.active  .main-filter {
        
        opacity: 1;
        z-index: 10;
    }
    .category-filter {
        position: relative;
    }
    .title-filter p {
        display: flex;
        align-items: center;
        gap:0 10px;
        font-size: 16px;
        font-style: normal;
        font-weight: 400;
        line-height: 20px;
        margin: 0;
    }
    .title-filter:after {
        content:'';
        background-image: url("data:image/svg+xml,%0A%3Csvg width='8' height='4' viewBox='0 0 8 4' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6.39023 3.94773C6.42341 3.98118 6.46858 4 6.51569 4C6.56281 4 6.60798 3.98118 6.64116 3.94773L7.01579 3.5731C7.04995 3.54103 7.06934 3.49626 7.06934 3.4494C7.06934 3.40254 7.04995 3.35777 7.01579 3.32571L3.76783 0.077753C3.71817 0.0280289 3.6508 6.21383e-05 3.58052 1.52501e-07L3.48863 1.56518e-07C3.41835 6.21484e-05 3.35098 0.0280289 3.30131 0.077753L0.0533623 3.32571C0.0191941 3.35777 -0.0001879 3.40254 -0.000187898 3.4494C-0.000187896 3.49626 0.0191941 3.54103 0.0533624 3.5731L0.42799 3.94773C0.46117 3.98118 0.506338 4 0.553455 4C0.600573 4 0.64574 3.98118 0.67892 3.94773L3.53457 1.09208L6.39023 3.94773Z' fill='%235D5A88'/%3E%3C/svg%3E%0A");
        background-repeat: no-repeat;
        background-size: contain;
        width: 10px;
        height: 4px;
        display: flex;
        align-items: center;
        transform: rotate(180deg);
    }
    .title-filter {
        display: flex;
        align-items: center;
        justify-content: space-between;
        position: relative;
        z-index: 11;
        cursor: pointer;
    }
    .category-row{
        margin-top:15px;
    }
    .cat-title {
        margin-top:10px;
    }
    .title {
        font-size: 28px;
    }
    .breadcrumbs {
        display: none;
    }
    .category-main {
        border:none;
        padding-top: 0;
    }
    .btn-home-category a {
        font-size: 16px;
        font-weight: 400;
        line-height: 20px; /* 166.667% */
        text-transform: uppercase;
        border-radius: 4px;
        border: 1px solid var(--font_color);
        color: var(--font_color);
        padding: 10px 0;
        display: block;
        width:100%;
        text-align: center;
    }
    .btn-home-category {
        margin-top:30px;
    }
    .footer_v10 .menu {
        display: none;
    }
    
    .sliders-swiper .swiper-wrapper{
       /* transform: translate3d(0px, 0px, 0px) !important;
        flex-wrap: wrap;
        display: flex;
        justify-content: space-between;
        overflow: hidden;*/
    }
    .sliders-swiper .swiper-slide {
       /* margin: 0 !important;*/
    }
    .sliders-swiper .sliders-button-prev,
    .sliders-swiper .sliders-button-next  {
      /*  display: none;*/
    }
    .sliders-swiper .category-grig {
        margin-bottom: 15px;
    }
    .home-products,
    .reviews_v5,
    .content-section_v16,
    .callaction_v1
     {
        display: none;
    }

    .options {
        display: none;
    }
    .mob-main-category {
        display: flex;
        overflow-x: auto;
        align-items: center;
        gap:0 10px;
        margin-bottom: 15px;
    }
    .mob-main-category-grid a {
        display: flex;
        align-items: center;
        font-size: 16px;
        font-style: normal;
        font-weight: 400;
        line-height: 20px;
        padding: 15px 15px;
        justify-content: center;
        border-radius: 4px;
        border: 1px solid #D8D8D8;
        color: #000;
    }
    .mob-main-category-grid {
        min-width: 45%;
    }

    .home-category .titles-category {
        display: flex;
        font-size: 16px;
        font-style: normal;
        font-weight: 400;
        line-height: 27px;
    }
    .home-category .btn-main {
        border:none;
        padding: 0;
        background: #fff;
        color:var(--color)
    }

    .grid-stats_v1 {
        margin-top:10px;
        margin-bottom: 10px;
    }
    .hero_v3 {
        padding-top: 0;
        padding-bottom: 0;
    }
    .hero_v7 {
        padding-top: 0;
        padding-bottom: 0;
    }

    .section-ptb {
        padding-top: 2em;
        padding-bottom: 2em;
    }
    .main-block {
        margin-top:87px;
    }
    header {
        box-shadow: 0;
        position: static;
        padding:0;
        height: auto;
    }
    .menu_container {
        display: block;
    }
    .middle-top-row-right {
        display: flex;
        align-items: center;
    }
    .middle-top-row {
        padding: 15px 0;
        position: fixed;
        top: 0;
        z-index: 99;
        width: 100%;
        background: #fff;
        display: block;
        left: 0;
       
        border-bottom: 1px solid #fff;
    }
    .burger-menu img {
        width: 21px;
        height: 19px;
    }

    .menu-desctop {
        display: none;
    }
    .header-top {
        padding:0;
        box-shadow: none;
    }
    .mobile_menu_overlay, .mobile_menu_container {
        position: fixed;
        top: 0px;
        left: 0px;
        width: 100%;
        height: 100%;
        display: block;
    }
    .mobile_menu_container.loaded {
        transform: translate(0px, 57px);
    }
    
    .mobile_menu_container {
        transform: translate(-100%, 57px);
        width: 100%;
        overflow: hidden;
        z-index: 99;
        background: #fff;
    }


    .mobile_menu_container .mobile_menu_content {
        max-height: 100%;
        padding: 15px 15px;
        display: flex;
        flex-direction: column;
        height: 91%;
    }
    .mobile_menu_container .mobile_menu_content {
        max-height: 100%;
    }
    .mob-account,
    .mob-sign {
        display: flex;
        align-items: center;
        gap:0 10px;
        border-radius: 4px;
        border: 1px solid #F2F2F2;
        background: #F9F9FF;
        padding:7px 15px;
        font-size: 18px;
        font-style: normal;
        font-weight: 400;
        line-height: 26px;
    }
    .mob-client{
        justify-content: space-between;
        gap:0 5px;
        margin-top:10px;
    }
    .menu li a {
        font-size: 20px;
        font-style: normal;
        font-weight: 400;
        line-height: 26px;
        color:#000;
    }
    .menu{
        margin-top:20px;
    }
    .phone_mobile a{
        border-radius: 4px;
        border: 1px solid #F2F2F2;
        background: #fff;
        font-size: 18px;
        font-style: normal;
        font-weight: 400;
        line-height: 18px;
        color: var(--font_color);
        padding: 6px 15px;
        display: flex;
        align-items: center;
        height: 38px;
    }

    .lang_row_mobile {
        background: #F9F9FF;
        padding-top: 25px;
        padding-bottom: 25px;
        padding-left: 15px;
        padding-right: 15px;
        border-top: 1px solid #fff;
        border-bottom: 1px solid #fff;
        margin-top: auto;
        margin-left:-15px;
        margin-right:-15px;
        display: flex;
        align-items: center;
        gap:10px 10px;
        justify-content: space-between;
        flex-direction: column;
    }
    .lang_row_mobile img{
        max-width: 16px;
    }
    .mobile_menu_content .social {
        gap: 0 20px;
        margin-top: 20px;
        justify-content: space-between;
    }
    .mobile_menu_content .social a {
        display: flex;
        align-items: center;
        justify-content: center;
        transition: .4s all ease-out;
        padding:10px;
        min-width: 50px;
        min-height: 50px;

    }
    .mobile_menu_content .social a  svg path{
        fill: var(--font_color);
    }

    .mobile_menu_overlay {
        display: none;
        cursor: pointer;
        z-index: 98;
        background: rgba(0, 0, 0, 0.5);
    }
    .mobile_menu_container, .mobile_menu_container .mobile_menu_content ul li ul {
        transition: all 350ms ease 0s;
    }
    .mobile_menu_container-title {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 15px 15px;
        box-shadow: rgba(0, 0, 0, 0.06) 0px 2px 8px;
        position: relative;
        z-index: 99999;
        border-bottom:1px solid #fff;
    }
    .mobile_menu_container-title-left {
        display: flex;
        align-items: center;
    }
    a.close-menu {
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .mobile_menu_container-title-left p {
        font-weight: 400;
        font-size: 22px;
        text-transform: uppercase;
        color: #4F4F4F;
        margin-left: 20px;
        margin-top:0;
        margin-bottom:0;
    }
    .close-menu img {
        width: 19.5px;
   
    }

    .mobile_menu_container .mobile_menu_content {
     
    }
    .burger-menu {
       
        display: flex;
        cursor: pointer;
    }
    .menu_container {
        display: block;
    }
    .middle-top-row-right {
        display: flex;
        align-items: center;
        gap:0 15px;
    }
    .middle-top-row-left {

    }
    .cont-middle-row {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    .banner-content h2 {
        font-size: 32px;
        line-height: normal;
    }
    .btn {
        font-size: 14px;
    }
    .options h5 {
        font-size: 19px;
        line-height: normal;
    }
    .grid-price {
        padding:40px 30px;
    }
    .ptb-100 {
        padding:40px 0;
    }
    .company-text-nohover {
        padding: 0 15px;
    }
    .company-text-nohover .company-title {
        font-size: 20px;
        line-height: normal;
    }
    .company-text-nohover .company-name {
        font-size: 16px;
    }
    .col-about h2 {
        font-size: 24px;
        line-height: normal;
    }
    .titles {
        margin-bottom: 1em;
    }
    footer {
        padding-top: 2em;
    }
    .copyright {  
         margin-top: 1em;
    }
    .bg-image {
        padding: 3em 0;
    }
    .menu ul {
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
    }
    .menu li {
        margin-bottom:20px;
    }
    
}
@media screen and (max-width: 767px) {
    .tabs__left {
        flex:0 0 100%
    }
    .tabs__right {
        flex:0 0 100%
    }
    .product-cat{
        margin-top: 30px;
    }
    .cat-image {
        padding: 15px 15px;
    }
    .cat-title {
        font-size: 16px;
        line-height: 19px;
    }
    .cat-price {
        flex-wrap: wrap;
    }
    .col-product__main {
        margin-bottom:15px;
    }
    .logic__img {
        margin-top: 30px;
    }
    .col-opt__main {
        margin-bottom: 30px;
    }
    .ab__main-img {
        margin-bottom: 50px;
    }
    .main-slider {
        padding:15px 15px
    }
    .main-slider-right{
        margin-top:15px;
    }
    .swiper-horizontal>.swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal, .swiper-pagination-custom, .swiper-pagination-fraction {
        bottom: 15px;
    }
    body.page {
        margin-top:57px;
    }
    .main-slider-wrapper {
        height: 400px;
    }
   

    .main-slider-title {
        margin-top: 10px;
        margin-bottom: 10px;
        font-size: 26px;
        font-weight: 700;
        line-height: normal;
    }
    .main-slider-price {
        font-size: 18px;
    }
    .main-slider-url {
        margin-top: 15px;
        flex-direction: column;
        gap:10px 10px;
        align-items: flex-start;
    }
    .footer_v12 .center {
        text-align: center;
        justify-content: center;
    }
    .footer_v12 .logo {
        text-align: center;
    }
    .font {
        line-height: normal;
    }
    .footer_v7 .center {
        text-align: center;
    }
    .contacts_v8-grid {
        left: 50%;
        right:inherit;
        position: static;
        transform: inherit;
        margin-top:30px;
        margin-bottom: 30px;
    }
    .content-section_v16 .col-about h2 {
        font-size: 28px;
        line-height: normal;
    }
    .callaction_v19 .grid-title {
        font-size: 28px;
        line-height: normal;
    }
    .slide-content {
        padding-left:15px;
        padding-right:15px;
        padding-top:15px;
        padding-bottom:15px;
    }
    .slide-content h2 {
        font-size: 22px;
    }
    .col-main {
        padding-top:15px;
        padding-bottom: 15px;
    }
    .titles {
        font-size: 24px;
        line-height: normal;
    }
    .grid {
        padding-right: 0;
        padding-top:15px;
        padding-bottom: 15px;
        border:0;
    }
    .grid-title {
        font-size: 22px;
        line-height: normal;
    }
    .bg-gradient{
        flex-wrap: wrap;
        justify-content: center;
    }
    .container-min {
        max-width: 540px;
    }
    .pagination-txt-box-about p {
        font-size: 16px;
    }
    .acc-head::after {
      
    }
    .acc-head  {
        font-size: 20px;
    }
    .acc-head span{
        max-width: 90%;
        flex:0 0 90%;
    }
    .company-text-hover .company-grid {
        padding: 0 35px;
    }
    .col-abouts{
        padding-top:15px;
        padding-bottom:15px;
    }
    .form {
        position: static;
        margin-top:30px;
    }
    .f-flex {
        flex-wrap: wrap;
    }
    .f-flex .menu ul {
        flex-direction: row;
    }
    .f-flex .menu li {
        margin-bottom: 0;
    }
    .contact-row {
        margin-top:30px;
    }
    .logo img {
        max-width: 200px;
    }
    .contact-flex{
        align-items: flex-start;
    }
    .container__contacts {
        margin-top:0;
    }
}

@media screen and (max-width: 576px) {
    .product__main-title {
        font-size: 28px;
    }
    .success-title  {
        font-size: 60px;
    }

    .col__contacts {
        padding: 30px 15px;
    }
    .col__contacts h2 {
        font-size: 24px;
    }
    .c_tabs .tabs__caption li {
        font-size: 16px;
    }
    .content-colums {
        flex-wrap: wrap;
    }
    .content__img{
        margin-top:30px;
    }
    .n-icons {
        padding: 2px 3px;
        font-size: 9px;
    }
    .zerno img {
        max-width: 11px;
    }
    .copyright {
        font-size: 14px;
    }
    .contacts_v6 h3 {
        font-size: 28px;
        line-height: normal;
    }
    .contacts_v6-grid {
        padding:40px 30px;
    }
    .rev_v2-img {
        flex: 0 0 100%;
        max-width: 100%;
    }
    .rev_v2-content {
        flex-wrap: wrap;
    }
    .rev_v2-text {
        flex: 0 0 100%;
        max-width: 100%;
        padding: 40px 30px;
    }
    .grid-price {
        padding: 30px 30px;
    }
    .grid-price_pricing_v11 {
        height: auto;
        padding-top: 30px;
        padding-bottom: 30px;
    }
    .col-md-22 {
        max-width:100%;
        flex: 0 0 100%;
    }
    .acc-head {
        font-size: 18px;
        padding:20px 20px;
    }
    .acc-content {
        padding: 0 20px;
    }
    .customers p {
        margin-top:0;
    }
    .form {
        padding:30px 20px;
    }
    .f-flex {
        justify-content: space-between;
    }
    .copyright {
        line-height: normal;
        text-align: left;
    }
    .contacts_v8-row {
        padding:30px 15px
    }
    .company-text-hover .company-grid {
        padding: 0 20px;
    }
    .company-text-hover .company-name {
        font-size: 18px;
        line-height: normal;
    }
    .company-content:hover .company-text-hover.overlay .company-desc {
        margin-top:10px;
    }
    .grid-price {
        height: auto;
    }
    .btn {
        padding: 10px 15px;
    }
    .logo img {
        max-width: 150px;
    }
    .p-list div {
        color:#9795B5;
        font-weight: normal;
    }
    
    
}