@charset "UTF-8";
header {
  height: 80px;
  display: flow-root;
  background: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  position: relative;
  z-index: 2; }
  header .logo {
    height: 80px;
    width: 250px;
    float: left;
    display: flex; }
    @media (max-width: 450px) {
      header .logo {
        width: 60px; } }
    header .logo a {
      margin: auto;
      margin-left: 0;
      background-size: contain;
      background-repeat: no-repeat;
      background-position: center left;
      display: block;
      height: 90%;
      width: 90%; }
  header .top-menu {
    float: right;
    height: 80px;
    display: flex;
    margin-right: 20px; }
    @media (max-width: 850px) {
      header .top-menu {
        display: none; } }
    header .top-menu a {
      display: inline-block;
      text-decoration: none;
      font-size: 14px;
      color: inherit;
      font-family: "Bold";
      margin-right: 10px; }
      header .top-menu a:hover {
        color: var(--two-color); }
    header .top-menu .middle {
      margin: auto;
      margin-left: 0; }
  header .call-back-section {
    float: right;
    height: 80px;
    display: flex;
    margin-right: 20px;
    margin-left: 20px; }
    @media (max-width: 950px) {
      header .call-back-section {
        margin-right: 10px;
        margin-left: 10px; } }
    header .call-back-section .phone {
      font-size: 14px;
      display: inline-block;
      text-decoration: none;
      color: inherit;
      font-family: "Bold"; }
      header .call-back-section .phone:hover {
        color: var(--two-color); }
      @media (max-width: 950px) {
        header .call-back-section .phone {
          display: none; } }
    header .call-back-section .mobile-phone {
      display: none; }
      @media (max-width: 950px) {
        header .call-back-section .mobile-phone {
          height: 50px;
          border-radius: 50%;
          width: 50px;
          background: var(--two-color);
          display: inline-block;
          background-size: 20px;
          background-position: center;
          background-repeat: no-repeat; } }
      @media (max-width: 450px) {
        header .call-back-section .mobile-phone {
          display: none; } }
    header .call-back-section .middle {
      margin: auto;
      margin-left: 0; }
  header .cart-sec {
    float: right;
    height: 80px;
    display: flex; }
  header .cart {
    height: 50px;
    width: 180px;
    text-decoration: none;
    color: inherit;
    margin: auto;
    margin-right: 0;
    background: #fae1e1;
    border-radius: 50px; }
    @media (max-width: 700px) {
      header .cart {
        width: 150px; } }
    header .cart .icon {
      height: 40px;
      margin-top: 5px;
      margin-left: 10px;
      float: left;
      width: 40px;
      background-size: 70%;
      background-repeat: no-repeat;
      background-position: center center; }
    header .cart .name {
      width: calc(100% - 50px);
      display: flex;
      height: 24px; }
      @media (max-width: 700px) {
        header .cart .name {
          display: none; } }
      header .cart .name span {
        margin: auto;
        margin-left: 20px;
        font-family: "Bold"; }
    header .cart .value {
      width: calc(100% - 50px);
      display: flex;
      height: 24px; }
      @media (max-width: 700px) {
        header .cart .value {
          height: 50px; } }
      header .cart .value span {
        margin: auto;
        font-size: 14px;
        margin-left: 20px; }
    header .cart:hover {
      box-shadow: 0 0 10px rgba(0, 0, 0, 0.3); }

.menu-title {
  display: none;
  font-family: "Title";
  font-size: 25px;
  margin-bottom: 10px;
  margin-top: 20px; }
  @media (max-width: 900px) {
    .menu-title {
      display: block; } }

.mobile-menu {
  display: none; }
  @media (max-width: 850px) {
    .mobile-menu {
      display: block; } }

.mobile-shdw {
  position: fixed;
  z-index: 100;
  background: rgba(0, 0, 0, 0.5);
  top: 0;
  display: none;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 5; }

.menu-swipe {
  display: none;
  width: 20px;
  height: 100vh;
  position: fixed;
  left: 0;
  top: 0; }
  @media (max-width: 900px) {
    .menu-swipe {
      display: block; } }

.menu {
  height: 50px;
  border-radius: 50px;
  overflow: hidden;
  background: var(--main-color);
  display: flex;
  color: #fff;
  margin-top: 50px;
  margin-bottom: 50px; }
  @media (max-width: 900px) {
    .menu {
      position: fixed;
      top: 0;
      transition: 0.5s;
      left: -350px;
      box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
      z-index: 5;
      height: 100vh;
      margin-top: 0;
      overflow: auto;
      margin-bottom: 0;
      width: 320px;
      display: block;
      border-radius: 0;
      background: var(--two-color);
      padding: 30px;
      padding-top: 10px; } }
  .menu a {
    width: 100%;
    height: 100%;
    display: flex;
    text-decoration: none;
    color: inherit;
    padding-left: 15px;
    padding-right: 15px; }
    @media (max-width: 900px) {
      .menu a {
        height: auto;
        padding: 0;
        padding-top: 10px;
        padding-bottom: 10px;
        border-bottom: 1px solid #a0784e;
        position: relative; }
        .menu a:after {
          content: "→";
          position: absolute;
          right: 0; } }
    .menu a span {
      margin: auto;
      font-size: 14px; }
      @media (max-width: 900px) {
        .menu a span {
          font-size: 13px;
          margin-left: 0; } }
    .menu a:hover {
      background: var(--two-color); }
  .menu .active {
    background: var(--two-color); }

.active-mobile {
  left: 0; }

.mobile-menu-btn {
  display: none; }
  @media (max-width: 900px) {
    .mobile-menu-btn {
      float: right;
      height: 80px;
      width: 50px;
      display: flex;
      margin-left: 10px; } }
  .mobile-menu-btn .btn-mobile {
    height: 50px;
    border-radius: 50%;
    width: 50px;
    background: var(--two-color);
    display: inline-block;
    background-size: 20px;
    margin: auto;
    background-position: center;
    background-repeat: no-repeat;
    position: relative; }
    .mobile-menu-btn .btn-mobile span {
      position: absolute;
      left: 10px;
      top: calc(50% - 1px);
      height: 2px;
      background: #fff;
      width: 30px; }
    .mobile-menu-btn .btn-mobile:before {
      position: absolute;
      left: 10px;
      top: 15px;
      height: 2px;
      background: #fff;
      width: 30px;
      content: ""; }
    .mobile-menu-btn .btn-mobile:after {
      position: absolute;
      left: 10px;
      bottom: 15px;
      height: 2px;
      background: #fff;
      width: 30px;
      content: ""; }

.slider-sec {
  margin-top: 50px;
  margin-bottom: 50px; }
  @media (max-width: 450px) {
    .slider-sec {
      margin-top: 0px;
      margin-bottom: 30px; }
      .slider-sec .wrapper {
        padding-left: 0;
        padding-right: 0; } }
  .slider-sec .route {
    height: 40px;
    width: 40px;
    position: absolute;
    top: calc(50% - 20px);
    background: #fff;
    z-index: 4;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    cursor: pointer;
    background-size: 15px;
    background-position: center;
    background-repeat: no-repeat;
    transition: 0.3s; }
    .slider-sec .route:hover {
      background-color: var(--two-color); }
  .slider-sec .route-left {
    left: 20px; }
  .slider-sec .route-right {
    right: 20px; }
  .slider-sec .slider {
    position: relative;
    overflow: hidden; }
    @media (max-width: 450px) {
      .slider-sec .slider {
        border-radius: 0; } }
  .slider-sec .slide {
    height: 350px;
    border-radius: 20px;
    background-size: cover;
    text-align: left;
    background-position: center;
    position: relative;
    padding-left: 100px; }
    @media (max-width: 700px) {
      .slider-sec .slide {
        height: 300px;
        padding-left: 0;
        text-align:center;  
      } }
    @media (max-width: 450px) {
      .slider-sec .slide {
        height: 250px; } }
    .slider-sec .slide .name {
      font-family: "Title";
      font-size: 65px;
      line-height: 70px;
      display: inline-block;
      padding-top: 25px;
      max-width: 700px;
      margin-bottom: 10px;
      color: #fff; }
      @media (max-width: 850px) {
        .slider-sec .slide .name {
          font-size: 60px;
          line-height: 55px; } }
      @media (max-width: 650px) {
        .slider-sec .slide .name {
          font-size: 60px;
          line-height: 55px; } }
      @media (max-width: 400px) {
        .slider-sec .slide .name {
          font-size: 40px;
          line-height: 35px; } }
    .slider-sec .slide .sub-name {
      font-family: "Title";
      font-size: 40px;
      display: inline-block;
      max-width: 700px;
      margin-bottom: 70px;
      color: #fff; }
      @media (max-width: 850px) {
        .slider-sec .slide .sub-name {
          font-size: 40px;
          line-height: 25px; } }
      @media (max-width: 850px) {
        .slider-sec .slide .sub-name {
          font-size: 20px;
          line-height: 15px; } }
      @media (max-width: 550px) {
        .slider-sec .slide .sub-name {
          position: absolute;
          bottom: 10px;
          left: 0;
          width: 100%;
          margin-bottom: 20px; } }
    .slider-sec .slide .bottom-text {
      font-family: "Title";
      font-size: 20px;
      display: inline-block;
      max-width: 500px;
      color: #fff; }

.hits-position {
  margin-top: 50px;
  margin-bottom: 50px; }
  @media (max-width: 450px) {
    .hits-position {
      margin-top: 30px;
      margin-bottom: 30px; } }

.title-sec {
  font-family: "Title";
  text-align: center;
  font-size: 35px;
  margin-bottom: 30px; }
  @media (max-width: 450px) {
    .title-sec {
      font-size: 27px; } }

.card-product-clear {
  width: 24%;
  display: inline-block;
  vertical-align: top; }

.card-product {
  width: 24%;
  height: 300px;
  background-color: #f3f3f3;
  display: inline-block;
  vertical-align: top;
  text-decoration: none;
  color: inherit;
  text-align: left;
  position: relative;
  margin-bottom: 15px; }
  @media (max-width: 900px) {
    .card-product {
      width: 32%; } }
  @media (max-width: 750px) {
    .card-product {
      width: 48%; } }
  @media (max-width: 450px) {
    .card-product {
      width: 100%; } }
  .card-product:hover {
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3); }
    .card-product:hover .btn-more {
      background: var(--two-color);
      color: #fff; }
  .card-product .pic {
    height: 200px;
    background-size: cover;
    background-position: center;
    padding: 10px; }
  .card-product .title {
    padding: 10px;
    font-family: "Bold"; }
  .card-product .desc {
    padding: 10px;
    font-size: 14px; }
  .card-product .price {
    position: absolute;
    bottom: 0;
    left: 0;
    font-size: 14px;
    padding: 10px; }
  .card-product .btn-more {
    position: absolute;
    transition: 0.3s;
    bottom: 0;
    color: #fff;
    right: 0;
    padding: 10px;
    font-size: 14px;
    background: var(--two-color);
    border-radius: 20px 0 20px 0; }

.hit {
  border-radius: 20px 0 20px 0;
  background: var(--main-color);
  display: inline-block;
  padding: 5px 15px;
  font-family: "Bold";
  color: #fff;
  font-size: 14px; }

.news {
  border-radius: 20px 0 20px 0;
  background: var(--two-color);
  display: inline-block;
  padding: 5px 15px;
  margin-bottom: 5px;
  font-family: "Bold";
  color: #fff;
  font-size: 14px; }

footer {
  padding-top: 15px;
  padding-bottom: 15px;
  background: var(--two-color);
  color: #fff; }
  footer .copyright {
    display: inline-block;
    vertical-align: top;
    font-size: 13px; }
  footer a {
    display: inline-block;
    vertical-align: top;
    color: inherit;
    font-size: 13px;
    border-bottom: 1px dashed #fff;
    text-decoration: none; }
    @media (max-width: 400px) {
      footer a {
        font-size: 11px;
        margin-top: 10px; } }
    footer a:hover {
      color: #333; }

.absolute_footer {
  /*position: absolute;*/
  bottom: 0;
  left: 0;
  width: 100%; }

.advantage-sec {
  margin-top: 50px;
  margin-bottom: 70px; }

.product-page {
  margin-bottom: 70px; }

.info-sec {
  margin-top: 70px;
  margin-bottom: 70px; }
  .info-sec .left-colum {
    display: inline-block;
    vertical-align: top;
    width: 48%; }
    @media (max-width: 550px) {
      .info-sec .left-colum {
        width: 100%;
        margin-bottom: 10px; } }
  .info-sec .title-sec {
    text-align: left; }

.advantage {
  width: 16%;
  display: inline-block;
  vertical-align: top;
  text-align: center; }
  @media (max-width: 800px) {
    .advantage {
      width: 32%;
      margin-bottom: 20px; } }
  @media (max-width: 450px) {
    .advantage {
      width: 48%; } }
  .advantage .pic {
    height: 70px;
    width: 100px;
    display: inline-block;
    background-size: 40px;
    background-repeat: no-repeat;
    background-position: center;
    margin-bottom: 20px;
    background-color: var(--two-color);
    border-radius: 10px; }
  .advantage .name {
    font-size: 14px;
    font-family: "Bold"; }

.sort-section {
  margin-top: 20px;
  margin-bottom: 20px; }
  .sort-section span {
    font-family: "Bold"; }
  .sort-section a {
    text-decoration: none;
    color: inherit;
    border-bottom: 1px solid transparent; }
    .sort-section a:hover {
      border-bottom: 1px solid #333; }
  .sort-section .active-sort {
    color: var(--two-color);
    border-bottom: 1px solid var(--two-color); }

.pic-produc{
   display:block;
   background-size: cover;
   padding: 10px;
   max-width:100%;
   background-position: center;
}

.doperty{
    margin-top:10px;
}

.wertyuiop{
    width:32%;
    height:70px;
    background-size: cover;
    display: inline-block;
    vertical-align: top;
    background-position: center;
}

.product-page .pic-product {
  display: inline-block;
  vertical-align: top;
  width: 40%;
  min-height: 510px;
  position:relative;
   }
  @media (max-width: 650px) {
    .product-page .pic-product {
      height: 250px;
      width: 400px; } }
  @media (max-width: 450px) {
    .product-page .pic-product {
      width: 100%; } }
.product-page .right-desc {
  display: inline-block;
  vertical-align: top;
  width: 57%; }
  @media (max-width: 650px) {
    .product-page .right-desc {
      width: 100%;
      margin-top: 30px; } }
.product-page .info {
  margin-top: 50px;
  max-width: 500px;
  margin-bottom: 50px; }
  @media (max-width: 450px) {
    .product-page .info {
      margin-top: 30px;
      margin-bottom: 30px; } }
.product-page .line {
  display: flow-root;
  font-size: 16px;
  margin-bottom: 15px; }
  .product-page .line .categ {
    float: left;
    font-size: inherit;
    width: 200px;
    padding-right: 20px;
    text-align: left; }
    @media (max-width: 500px) {
      .product-page .line .categ {
        width: 100%; } }
  .product-page .line .value {
    float: right;
    font-size: inherit;
    width: calc(100% - 200px);
    text-align: left; }
    @media (max-width: 500px) {
      .product-page .line .value {
        width: 100%; } }
.product-page h1 {
  font-size: 30px;
  font-family: "Title"; }
.product-page .name {
  font-size: 20px;
  font-family: "Bold";
  margin-bottom: 20px; }
.product-page .prices-txt {
  font-size: 20px;
  font-family: "Bold"; }
.product-page .plusing {
  width: 200px;
  margin-top: 10px;
  margin-bottom: 10px; }
  .product-page .plusing .minus {
    height: 40px;
    display: inline-flex;
    border-radius: 50%;
    width: 40px;
    background-color: var(--two-color);
    color: #fff;
    text-decoration: none;
    transition: 0.3s; }
    .product-page .plusing .minus:hover {
      background-color: var(--main-color); }
    .product-page .plusing .minus i {
      margin: auto; }
  .product-page .plusing .plus {
    height: 40px;
    display: inline-flex;
    border-radius: 50%;
    width: 40px;
    background-color: var(--two-color);
    color: #fff;
    text-decoration: none;
    transition: 0.3s; }
    .product-page .plusing .plus:hover {
      background-color: var(--main-color); }
    .product-page .plusing .plus i {
      margin: auto; }
.product-page .cnt_val {
  width: 60px;
  display: inline-block;
  vertical-align: top;
  border: none;
  background: transparent;
  text-align: center;
  height: 40px;
  font-size: 20px;
  font-family: "Bold"; }
.product-page .chekset {
  padding: 12px 20px;
  color: #fff;
  border-radius: 50px;
  background-color: var(--two-color);
  font-family: "Bold";
  display: inline-block;
  transition: 0.3s; }
  .product-page .chekset:hover {
    background-color: var(--main-color); }
.product-page .all-price {
  font-family: "Bold";
  font-size: 20px;
  display: block;
  margin-bottom: 10px; }
  .product-page .all-price span {
    font-size: inherit;
    font-family: inherit; }

.all-price-cart {
  margin-top: 10px;
  margin-bottom: 50px;
  font-size: 20px;
  font-family: "Bold"; }
  @media (max-width: 500px) {
    .all-price-cart {
      font-size: 14px; } }
  .all-price-cart span {
    font-size: inherit; }

.cart-page {
  margin-bottom: 50px;
  margin-top: 50px; }

.line-item-cell {
  padding-top: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid #ccc;
  display: flow-root; }
  .line-item-cell .pic {
    width: 15%;
    border-radius: 20px;
    float: left;
    height: 100px;
    background-size: cover;
    background-position: center; }
    @media (max-width: 500px) {
      .line-item-cell .pic {
        display: none; } }
  .line-item-cell .min-max-cell {
    height: 100px;
    width: 20%;
    float: left;
    display: flex; }
    @media (max-width: 900px) {
      .line-item-cell .min-max-cell {
        width: 26%; } }
    @media (max-width: 650px) {
      .line-item-cell .min-max-cell {
        float: right; } }
    @media (max-width: 500px) {
      .line-item-cell .min-max-cell {
        width: 41%;
        height: 50px; } }
    .line-item-cell .min-max-cell .middle {
      margin: auto; }
      @media (max-width: 650px) {
        .line-item-cell .min-max-cell .middle {
          margin-right: 0; } }
      .line-item-cell .min-max-cell .middle .cnt_val {
        width: 60px;
        display: inline-block;
        vertical-align: top;
        border: none;
        background: transparent;
        text-align: center;
        height: 40px;
        font-size: 20px;
        font-family: "Bold"; }
        @media (max-width: 900px) {
          .line-item-cell .min-max-cell .middle .cnt_val {
            font-size: 17px;
            width: 50px; } }
        @media (max-width: 700px) {
          .line-item-cell .min-max-cell .middle .cnt_val {
            font-size: 15px;
            width: 40px; } }
        @media (max-width: 650px) {
          .line-item-cell .min-max-cell .middle .cnt_val {
            height: 30px;
            font-size: 14px; } }
        @media (max-width: 430px) {
          .line-item-cell .min-max-cell .middle .cnt_val {
            width: 30px; } }
      .line-item-cell .min-max-cell .middle .minus {
        height: 40px;
        display: inline-flex;
        border-radius: 50%;
        width: 40px;
        background-color: var(--two-color);
        color: #fff;
        text-decoration: none;
        transition: 0.3s; }
        @media (max-width: 900px) {
          .line-item-cell .min-max-cell .middle .minus {
            font-size: 13px; } }
        @media (max-width: 650px) {
          .line-item-cell .min-max-cell .middle .minus {
            height: 30px;
            width: 30px; } }
        .line-item-cell .min-max-cell .middle .minus:hover {
          background-color: var(--main-color); }
        .line-item-cell .min-max-cell .middle .minus i {
          margin: auto; }
      .line-item-cell .min-max-cell .middle .plus {
        height: 40px;
        display: inline-flex;
        border-radius: 50%;
        width: 40px;
        background-color: var(--two-color);
        color: #fff;
        text-decoration: none;
        transition: 0.3s; }
        @media (max-width: 900px) {
          .line-item-cell .min-max-cell .middle .plus {
            font-size: 13px; } }
        @media (max-width: 650px) {
          .line-item-cell .min-max-cell .middle .plus {
            height: 30px;
            width: 30px; } }
        .line-item-cell .min-max-cell .middle .plus:hover {
          background-color: var(--main-color); }
        .line-item-cell .min-max-cell .middle .plus i {
          margin: auto; }
  .line-item-cell .one-price {
    height: 100px;
    width: 10%;
    float: left;
    display: flex; }
    @media (max-width: 900px) {
      .line-item-cell .one-price {
        width: 20%; } }
    @media (max-width: 650px) {
      .line-item-cell .one-price {
        width: 24%; } }
    @media (max-width: 500px) {
      .line-item-cell .one-price {
        height: 50px; } }
    .line-item-cell .one-price span {
      margin: auto;
      font-family: "Bold";
      font-size: 20px; }
      @media (max-width: 900px) {
        .line-item-cell .one-price span {
          font-size: 17px; } }
      @media (max-width: 700px) {
        .line-item-cell .one-price span {
          font-size: 15px; } }
      @media (max-width: 650px) {
        .line-item-cell .one-price span {
          font-family: "Regular"; } }
  .line-item-cell .all-price {
    height: 100px;
    width: 15%;
    float: left;
    display: flex; }
    @media (max-width: 900px) {
      .line-item-cell .all-price {
        display: none; } }
    .line-item-cell .all-price span {
      margin: auto;
      font-family: "Bold";
      font-size: 20px; }
      @media (max-width: 900px) {
        .line-item-cell .all-price span {
          font-size: 17px; } }
      @media (max-width: 700px) {
        .line-item-cell .all-price span {
          font-size: 15px; } }
  .line-item-cell .drop-item {
    height: 100px;
    width: 15%;
    float: left;
    display: flex; }
    @media (max-width: 650px) {
      .line-item-cell .drop-item {
        display: none; } }
    @media (max-width: 500px) {
      .line-item-cell .drop-item {
        height: 50px; } }
    .line-item-cell .drop-item .drop {
      padding: 12px;
      cursor: pointer;
      text-align: center;
      width: 100%;
      margin: auto;
      color: #fff;
      border-radius: 50px;
      background-color: var(--two-color);
      font-family: "Bold";
      display: inline-block;
      transition: 0.3s; }
      @media (max-width: 900px) {
        .line-item-cell .drop-item .drop {
          font-size: 13px; } }
      .line-item-cell .drop-item .drop:hover {
        background-color: var(--main-color); }
  .line-item-cell .name {
    float: left;
    height: 100px;
    display: flex;
    padding: 10px;
    width: 25%; }
    @media (max-width: 900px) {
      .line-item-cell .name {
        width: 24%; } }
    @media (max-width: 650px) {
      .line-item-cell .name {
        width: 35%; } }
    @media (max-width: 500px) {
      .line-item-cell .name {
        padding-left: 0;
        height: 50px; } }
    .line-item-cell .name span {
      margin: auto;
      margin-left: 20px;
      text-align: left;
      font-size: 20px;
      font-family: "Bold"; }
      @media (max-width: 900px) {
        .line-item-cell .name span {
          font-size: 17px; } }
      @media (max-width: 650px) {
        .line-item-cell .name span {
          margin-left: 0; } }
      @media (max-width: 450px) {
        .line-item-cell .name span {
          font-size: 15px; } }

.warning-section {
  font-size: 13px;
  margin-top: 20px;
  margin-bottom: 50px; }

.form-zakaz {
  padding: 30px;
  max-width: 800px;
  padding-bottom: 10px;
  border-radius: 10px;
  background: #fff;
  margin-top: 30px;
  margin-bottom: 30px; }
  @media (max-width: 750px) {
    .form-zakaz {
      padding: 10px; } }
  .form-zakaz #cart_phone {
    letter-spacing: 2px; }
  .form-zakaz input {
    height: 45px;
    border-radius: 10px;
    background: #ececec;
    border: none;
    padding-left: 15px;
    padding-right: 15px;
    width: 100%; }
  .form-zakaz select {
    height: 45px;
    border-radius: 10px;
    background: #ececec;
    border: none;
    padding-left: 15px;
    padding-right: 15px;
    width: 100%; }
  .form-zakaz .dostavka input {
    display: none; }
  .form-zakaz .dostavka .half {
    width: 48%;
    display: inline-block;
    vertical-align: top; }
    @media (max-width: 750px) {
      .form-zakaz .dostavka .half {
        width: 100%;
        text-align: left; } }
  .form-zakaz .dostavka label {
    padding-left: 30px;
    height: 45px;
    display: inline-flex;
    position: relative;
    cursor: pointer; }
    .form-zakaz .dostavka label:after {
      height: 15px;
      width: 15px;
      border-radius: 50%;
      border: 1px solid var(--two-color);
      position: absolute;
      left: 0;
      top: calc(50% - 8px);
      content: ""; }
    .form-zakaz .dostavka label:before {
      height: 11px;
      width: 11px;
      border-radius: 50%;
      background: var(--two-color);
      position: absolute;
      left: 3px;
      transition: 0.3s;
      top: calc(50% - 5px);
      content: ""; }
    .form-zakaz .dostavka label span {
      margin: auto;
      margin-right: 0; }
  .form-zakaz .dostavka [type="radio"]:not(:checked) + label:before {
    opacity: 0;
    transform: scale(0); }
  .form-zakaz .dostavka [type="checkbox"]:checked + label:before {
    opacity: 1;
    transform: scale(1); }
  .form-zakaz .label {
    margin-bottom: 10px; }
  .form-zakaz .full-input {
    width: 100%;
    display: inline-block;
    vertical-align: top;
    margin-bottom: 20px; }
  .form-zakaz .half-input {
    width: 48%;
    display: inline-block;
    vertical-align: top;
    margin-bottom: 20px; }
    @media (max-width: 750px) {
      .form-zakaz .half-input {
        width: 100%; } }

.final-zakaz {
  padding: 30px;
  max-width: 800px;
  border-radius: 10px;
  background: #fff;
  margin-top: 30px;
  margin-bottom: 30px; }
  @media (max-width: 750px) {
    .final-zakaz {
      padding: 10px; } }
  .final-zakaz .all-price-information .half {
    width: 48%;
    display: inline-flex;
    vertical-align: top;
    height: 50px; }
    @media (max-width: 750px) {
      .final-zakaz .all-price-information .half {
        width: 100%;
        height: auto; } }
  .final-zakaz .all-price-information .middle {
    padding: 12px 20px;
    cursor: pointer;
    text-align: center;
    border: none;
    margin: auto;
    margin-left: 0;
    color: #fff;
    border-radius: 50px;
    background-color: var(--two-color);
    font-family: "Bold";
    display: inline-block;
    transition: 0.3s; }
    .final-zakaz .all-price-information .middle:hover {
      background-color: var(--main-color); }
  .final-zakaz .all-price-information .middle-span {
    margin: auto;
    margin-right: 0;
    text-align: right;
    font-size: 18px; }
    @media (max-width: 750px) {
      .final-zakaz .all-price-information .middle-span {
        text-align: left;
        margin-right: auto;
        margin-left: 0;
        margin-top: 20px;
        font-size: 15px; } }
    .final-zakaz .all-price-information .middle-span span {
      font-size: inherit; }

.cart-empty {
  margin-top: 50px;
  margin-bottom: 50px; }
  @media (max-width: 450px) {
    .cart-empty {
      margin-top: 30px;
      margin-bottom: 30px; } }

.warning-section-pokupka {
  position: fixed;
  z-index: 100;
  background: rgba(0, 0, 0, 0.5);
  top: 0;
  display: none;
  left: 0;
  width: 100%;
  height: 100%; }
  .warning-section-pokupka #errorwindow {
    padding: 30px;
    background: #fff;
    margin: auto;
    position: relative;
    max-width: 500px;
    z-index: 5;
    border-radius: 10px; }
    .warning-section-pokupka #errorwindow .title-form {
      margin-bottom: 20px;
      font-size: 19px; }
      .warning-section-pokupka #errorwindow .title-form span {
        font-size: inherit;
        font-family: "Bold"; }
    .warning-section-pokupka #errorwindow a {
      padding: 12px;
      cursor: pointer;
      text-align: center;
      text-decoration: none;
      margin: auto;
      color: #fff;
      border-radius: 50px;
      background-color: var(--two-color);
      font-family: "Bold";
      display: inline-block;
      transition: 0.3s; }
      @media (max-width: 550px) {
        .warning-section-pokupka #errorwindow a {
          margin-top: 5px;
          margin-bottom: 5px; } }
      .warning-section-pokupka #errorwindow a:hover {
        background-color: var(--main-color); }
      .warning-section-pokupka #errorwindow a:first-child {
        margin-right: 10px; }
  .warning-section-pokupka .close-warning-form {
    position: absolute;
    top: 10px;
    height: 20px;
    width: 20px;
    right: 10px; }
    .warning-section-pokupka .close-warning-form:after {
      width: 26px;
      height: 1px;
      top: 8px;
      left: -4px;
      transform: rotate(45deg);
      background: #b40000;
      content: "";
      position: absolute; }
    .warning-section-pokupka .close-warning-form:before {
      width: 26px;
      height: 1px;
      top: 8px;
      left: -4px;
      transform: rotate(-45deg);
      background: #b40000;
      content: "";
      position: absolute; }
    .warning-section-pokupka .close-warning-form:hover {
      cursor: pointer; }
      .warning-section-pokupka .close-warning-form:hover:before {
        background: #333; }
      .warning-section-pokupka .close-warning-form:hover:after {
        background: #333; }
        
.phone-mobile{
    display:none;
    padding-top:5px;
    padding-bottom:5px;
    text-align: center;
}
.phone-mobile a{
    font-family: "Title";
    font-size: 20px;
    color:var(--main-color);
    text-decoration:none;
}

.red{
    box-shadow: 0 0 10px rgba(230,0,0,0.5);
}

@media (max-width: 450px) {
.phone-mobile{
display:block;
}   
}

.cart-sec .btn-call{
    margin:auto;
    padding:10px 15px;
    font-size:16px;
    text-align:center;
    background-color: var(--main-color);
    color:#fff;
    box-shadow: 0 0 10px rgba(0,0,0,0.5);
    border-radius:50px
}
.cart-sec .btn-call:hover{
    background-color: #8c5d2e;
}


.cart-sec2 .btn-call2{
    margin:auto;
    padding:10px 15px;
    font-size:12px;
    text-align:center;
    background-color: var(--main-color);
    color:#fff;
    box-shadow: 0 0 10px rgba(0,0,0,0.5);
    border-radius:50px
}
.cart-sec2 .btn-call2:hover{
    background-color: #8c5d2e;
}

.talkref {
	text-decoration:none;
}

.wrapper .talk {
    background-color: var(--main-color);
    border-radius: 50px;
    color: #fff;
    padding: 10px 20px;
    text-align: center;
    margin: 0 auto;
    margin-top: 20px;
	margin-bottom: 30px;
    width: 280px;
    font-size: 15px;
	
}
.wrapper .talk:hover{
    background-color: #8c5d2e;
}

.talkref .talk {
    background-color: var(--main-color);
    border-radius: 50px;
    color: #fff;
    padding: 10px 20px;
    text-align: center;
    margin: 0 auto;
    margin-top: 20px;
	margin-bottom: 30px;
    width: 280px;
    font-size: 15px;
	
}
.talkref .talk:hover{
    background-color: #8c5d2e;
}

@media (max-width: 550px) {
   .cart-sec .btn-call{
       font-size:11px;
       max-width:150px;
       padding:10px 10px;
   } 
}
.social__link img {
  width: 40px;
}
.social {
  text-align: center;
  display: flex;
  justify-content: center;
  padding: 20px 0 40px;
}
.social__link {
  display: block;
  margin-right: 20px;
}
.social__link img {
  width: 40px;
}
.onas-info {
  padding: 40px 0;
  display: flex;
  justify-content: space-between;
}
.onas-info__item {
  flex: 0 0 20%;
  text-align: center;
}
.stat {
  font-weight: bold;
  font-size: 42px;
  font-family: "Title";
}
.txt {
  font-weight: bold;
  font-size: 16px;
  text-transform: uppercase;
}
.portfolio-img {
  display: flex;
  padding: 20px 0 40px;
  flex-wrap: wrap;
}
.portfolio-img__item img {
  width: 100%;
}
.portfolio-img__item {
  flex: 0 0 31%;
  margin-right: 20px;
}
.portfolio-video {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.portfolio-video__item {
  flex: 0 0 40%;
  margin-right: 20px;
}
.portfolio-video__item video {
  width: 100%;
}
.onas {
  display: flex;
  padding: 20px 0 0;
}
.onas-direktor img{
  width: 100%;
}
.onas-direktor{
  flex: 0 0 35%;
  margin-right: 30px;
}
.onas-desc{
  flex: 0 0 60%;
}










.content{
  max-width:1200px;
  margin:40px auto;
}
.topic{
  font-size:30px;
  font-weight: bold;
  margin-bottom: 10px;
}
.skills .content{
  padding:40px 0;
}
.skills .skills-details{
  display:flex;
  justify-content: space-between;
  align-items: center;
}
.skills-details .text{
  width:45%;
  margin: 0 30px;
}
.skills-details p{
  text-align: justify;
  line-height: 1.5;
  font-size: 18px;
}
.skills-details .boxes{
  width:40%;
  display:flex;
  flex-wrap: wrap;
  justify-content:space-between;
}
.skills-details .box{
  width:calc(100% / 1 - 20px );
  margin:10px 0;
}
.skills-details .boxes .topic{
  font-size: 18px;
  font-weight: normal;
}
.skills-details .boxes .per{
  font-size: 60px;
  font-weight: bold;
}

@media (max-width:1190px){
  section .content{
    width:100%;
  }
}
@media (max-width:1000px){
  .services .boxes .box{
    margin:10px 0;
    width:calc(100% / 1 - 20px);
  }
}
@media (max-width:750px){
  .skills .skills-details{
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }
  .skills-details .text{
    width:100%;
    margin-bottom:10px;
  }
  .skills-details .boxes{
    justify-content:center;
    align-items: center;
    width:100%;
  }

  .services .boxes .box{
    margin:20px 0; 
    width:100%;
  }
 .text{
    width:100%;
  }
}

@media (max-width:500px){
  .skills-details .boxes .per{
    font-size: 50px;
  }
}
        





.container {
  max-width:1600px;
  margin: 0 auto;
}
section {
  padding: 5rem 0;
}
section p {
  line-height: 1.5;
}
.two-side-section {
  display: flex;
  justify-content: space-between;
}
.service-section {
  background-color: #eee;
}
section .info-with-icon {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 50px;
}

.info-with-icon .info-box {
  width: 30%;
  background-color: rgba(255, 255, 255, 0.5);
  padding: 10px;
  border-radius: 20px;
  backdrop-filter: blur(5px);
  transition: all 0.3s;
  cursor: pointer;
}

.info-with-icon .info-box:hover {
  transform: translateY(-20px);
  background-color: #fff;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.info-box img {
  width: 100%;
  padding: 5px;
  margin-bottom: 5px;
}

.info-box .title {
  font-size: 1.5rem;
  font-weight: 600;
}

section .section-title {
  font-size: 40px;
  font-weight: normal;
  margin: 20px 0;
}
:checked ~ .content > .faq-answer {
  display: block;
}

@keyframes moveTop {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translate(0);
  }
}

@keyframes moveToRight {
  0% {
    opacity: 0;
    transform: translateX(-50px);
  }
  100% {
    opacity: 1;
    transform: translate(0);
  }
}

@media (max-width: 900px) {
  .top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
  }
  section {
    padding: 2rem 1rem;
  }
  .two-side-section {
    flex-direction: column;
    text-align: center;
    flex-wrap: wrap;
  }
}

@media screen and (max-width: 600px) {
  .info-with-icon .info-box {
    width: 100%;
  }
}
    




.products a, a:hover {
    text-decoration: none;
    color: #ccc;
    cursor: pointer;	
}
.products {
    display: flex;
    margin-top: 10px;
    justify-content: space-around;
    flex-wrap: wrap;
}
.product {
	  border-radius: 10px;
    position: relative;
    width: 350px;
    margin-bottom: 30px;
	background: #eee;
}
.product__img {
	background: #eee;
    background-clip: border-box;
	margin-bottom: 10px;
}
.product__img img {
	border-radius: 10px 10px 0 0;
    display: block;
    max-width: 100%;
    -webkit-transition: opacity 200ms;
    -o-transition: opacity 200ms;
    transition: opacity 200ms;
    background-color: #eee;
}
.product__info {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: baseline;
	padding: 10px;
}
.product__descp {
    font-family: sans-serif;
    font-weight: 600;
    line-height: 1.5;
    width: 150px;
    margin: 0;
    color: #70544F;
}
.product__price {
    color: #70544F;
}
	  
	  
	  



.iconblock-7 {
	margin: 0 auto;
	width:100%;
	padding: 12px;
	display: table;
}
.iconblock-7 .icon {
	display: table-cell;
	vertical-align: top;
	width: 60px;
	padding: 12px 12px 0 0;
	text-align:center;
}
.iconblock-7 .icon img {
	font-size:32px;
	color: #BDE1FF;
	transition: all .4s;
	width: 32px;
	height: 32px;
}
.iconblock-7 .icon img {
	opacity: .6;
}
.iconblock-7 h3 {
	transition: all 0.7s ease 0s;
	color: #8C5D2E;
	font-size:20px;
	margin:10px 0;
}    
.iconblock-7:hover h3 {
	color: #CF9361;
} 
.iconblock-7 p a{
	font-size: 18px;
	text-decoration: none;
	color: #8C5D2E;
} 


.grid * {
    box-sizing: border-box;
}
.grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 30px;
    row-gap: 30px;
    padding: 20px 0;
}
@media only screen and (max-width: 1200px) {
    .grid {
        grid-template-columns: 1fr 1fr;
    }
}
@media only screen and (max-width: 900px) {
    .grid {
        grid-template-columns: 1fr 1fr;
    }
}
@media only screen and (max-width: 600px) {
    .grid {
        grid-template-columns: 1fr;
    }
}






.u-textAlignCenter {
  text-align: center;
}

.u-centered {
  display: block;
  margin: 0 auto;
}

.u-color--light {
  color: #fff;
}
.Hero-us {
  height: 50vw;
  max-height: 80vh;
  display: flex;
  background-size: cover;
  background-position: center center;
}
.Hero-us.tiny {
  height: 10vh;
}
.Hero-us.small {
  height: 20vh;
}
.Hero-us.medium {
  height: 40vh;
  border-radius: 20px;
  margin: 50px 0;
}
.Hero-us.large {
  height: 60vh;
}
.Hero-us.huge {
  height: 80vh;
}
.Hero-us.fullscreen {
  height: 100vh;
  max-height: 100vh;
}

.Hero-content {
  flex: 1;
  align-self: center;
  padding: 0 10px;
}

.Hero-title {
  font-size: 2rem;
  font-weight: normal;
  text-shadow: 0 2px 10px rgba(69, 69, 69, 0.35);
  text-transform: none;
  font-size: 6vw;
}
@media screen and (min-width: 440px) {
  .Hero-title {
    font-size: 2vw;
  }
}
@media screen and (min-width: 800px) {
  .Hero-title {
    font-size: 3vw;
  }
}
@media screen and (min-width: 1100px) {
  .Hero-title {
    font-size: 2vw;
  }
}
@media screen and (min-width: 1400px) {
  .Hero-title {
    font-size: 38px;
  }
}

.Teaser {
  position: relative;
  margin-bottom: 40px;
}
@media screen and (min-width: 800px) {
  .Teaser {
    min-height: 400px;
    height: 50vh;
    display: flex;
    align-items: center;
    margin-bottom: 0;
  }
}

.Teaser-image {
  display: flex;
  position: relative;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 170px;
  border-radius: 20px;
}
@media screen and (min-width: 800px) {
  .Teaser-image {
    width: 50%;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    margin-bottom: 0;
  }
  .Teaser:nth-child(even) .Teaser-image {
    left: auto;
    right: 0;
  }
}

.Teaser-icon {
  position: absolute;
  top: 50%;
  right: 50%;
  color: #fff;
  border: 2px solid #fff;
  border-radius: 50%;
  padding: 10px;
  width: 120px;
  height: 120px;
  transform: translate3d(calc(50% + 10px), -50%, 0);
}
.Teaser-icon > svg {
  width: 100%;
  height: 100%;
}

.Teaser-content {
  padding: 20px;
}
.Teaser-content p{
  padding: 20px 0;
  line-height: 1.5;
}
@media screen and (min-width: 800px) {
  .Teaser-content {
    max-width: 550px;
    margin: 0 auto;
    transform: translateX(50%);
    width: 50%;
  }
  .Teaser:nth-child(even) .Teaser-content {
    transform: translateX(-50%);
  }
}
@media screen and (min-width: 1400px) {
  .Teaser-content {
    padding-left: 80px;
  }
  .Teaser:nth-child(even) .Teaser-content {
    padding-left: 20px;
    padding-right: 80px;
  }
}







.tableRWD{
	display:table;	
	margin:10px 0;
	width: 100%;
}

.table-headRWD{
	 display: table-header-group; 
}

.table-headRWD .columnRWD{ 
	background: #CF9361;
	color:#000;
	border-right:1px solid #fff;
	border-bottom:none;
	text-align: left !important;
	font-weight: 600;
}

.table-headRWD .column:hover{ 
	background:#222222;
}

.rowRWD {
	display:table-row; 
}

.rowRWD .columnRWD:nth-child(1){ 
	border-left:1px solid #fff;
	text-align: left !important;
}

.rowRWD:last-child .columnRWD{  
	border-bottom:none;
}

.columnRWD{
	display:table-cell; 
	padding: 15px;
	border-right:1px solid #fff;
	background:#EFF0F1;
	text-align: center;
  min-width: 50px !important;
}

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

@media all and (max-width: 640px){
	.tableRWD,
	.rowRWD,
	.columnRWD,
	.columnRWD:before{
		display:block;	
	}
  
	.tableRWD,
	.rowRWD .columnRWD:last-child{
		border-bottom:none;
	}
  
	.table-headRWD{
		position:absolute;	
		top:-1000em;
		left:-1000em;
	}
  
  .rowHeader {
    background-color: #393A3A !important;
    color: #fff;
    font-weight: bold;
  }
  
	.rowRWD{
		border:1px solid #eeeeee;
		border-top:2px solid #fff;
		border-bottom:2px solid #fff;
		margin:20px 0;
	}
  
	.rowRWD .columnRWD:nth-child(1){ 
		border-left:none;
	}
  
	.rowRWD .columnRWD:last-child{ 
		border-right:none;
	}
  
	.rowRWD:last-child .columnRWD,
	.columnRWD{ 
		
	}
	.columnRWD:first-child{
		background-color: #d8d8d8;
	}
  
	.columnRWD:before{ 
		font-weight:bold;
		padding-right:20px;
		font-size:12px;
		content:" "attr(data-label)" //";	
	}
}





.content-section-container {
	padding: 20px 0;
}

.text-centered {
	text-align: center;
}
.content-section-container img {
	width: 100%;
	 border-radius: 20px;
}

@media only screen and (min-width: 992px) {
	.hero-section {
		display: flex;
		justify-content: space-between;
		align-items: center;
		flex-direction: row-reverse;
	}
	.hero-section img {
		width: 55%;
	}
	.hero-text {
		width: 44%;
		text-align: left;
	}
}



/***********************************************************************************************************************/
/*************************************************MY STYLE**************************************************************/
/***********************************************************************************************************************/

.type-wrap {
    padding: 40px 0;
}
.type {
    padding: 30px 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
}
.type-item__img img,.portfolio-item img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.type-item {
    flex: 0 0 23%;
    margin-right: 20px;
    margin-bottom: 20px;
}
.type-item__img {
  height: 180px;
  margin-bottom: 20px;
}
.type-item__name p {
    font-size: 20px;
    line-height: 1.2;
    font-weight: 600;
    text-transform: uppercase;
}
.advan {
  padding: 40px 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}
.advan-item {
    flex: 0 0 14%;
    margin-right: 25px;
}
.advan-item__img {
  padding-bottom: 15px;
  border-bottom: 1px solid #bdbaba;
}
.advan-item__name {
  margin-top: 15px;
}
.advan-item__name p {
    font-size: 18px;
    font-weight: 500;
}
.portfolio {
    padding: 40px 0;
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
}
.portfolio-item {
    margin-right: 20px;
    flex: 0 0 23%;
    margin-bottom: 20px;
    height: 205px;
}
.article-content h1 {
  text-align: center;
  margin-bottom: 40px;
}
.article-content p {
  text-align: center;
}

/****************************************************************************************************************************************/
/****************************************************************************************************************************************/
/**********************************************************MEDIA*************************************************************************/
/****************************************************************************************************************************************/
/****************************************************************************************************************************************/

@media screen and (max-width: 576px) {
  .Hero-title {
      font-size: 5vw;
  }
  .tableRWD {
      display: flex;
      flex-direction: column;
      align-items: center;
  }
  .tableRWD .rowRWD {
    display: flex;
    margin-bottom: 0;

  }
  .rowRWD .columnRWD:nth-child(1){
    flex: 0 0 40%;
  }
  .rowRWD .columnRWD:nth-child(2){
    flex: 0 0 35%;
  }
  .rowRWD .columnRWD:nth-child(3){
    flex: 0 0 25%;
  }
  .type,.portfolio{
    justify-content: space-between;
  }
  .type-item,.portfolio-item {
    flex: 0 0 48%;
    margin-right: 0;
    margin-bottom: 30px;
  }
  .advan-item {
    flex: 0 0 31%;
    margin-right: 12px;
    margin-bottom: 12px;
  }
  .advan-item__img{
    text-align: center;
  }
  .advan-item__name {
    text-align: center;
  }
}
@media screen and (max-width: 515px) {
  .advan-item{
    flex: 0 0 48%;
    margin-right: 0;
    margin-bottom: 20px;
  }
  .advan{
    justify-content: space-between;
  }
  .columnRWD {
    text-align: left;
    font-size: 16px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-direction: column;
  }
}
@media screen and (max-width: 440px) {
  .tableRWD .rowRWD{
    flex-direction: column;
    border: none;
    width: 100%;
  }
  .tableRWD .rowRWD .columnRWD{
    border-right: none;
    text-align: left;
    border-bottom: 1px solid #fff;
    width: 100%;
    flex: 0 0 100%;
  }
  .type-item {
    flex: 0 0 100%;
  }
  .portfolio-item{
    flex: 0 0 80%;
  }
  .portfolio{
    justify-content: center;
  }

}
@media screen and (max-width: 375px) {
  .Hero-us.medium {
    height: 30vh;
  }
  h3{
    font-size: 28px;
  }
  .portfolio-item{
    flex: 0 0 100%;
  }
}
@media screen and (max-width: 360px) {
  .advan {
    justify-content: center;
  }
  .advan-item {
    flex: 0 0 70%;
  }
}
@media screen and (max-width: 330px) {
  .Hero-title {
    font-size: 7vw;
  }
  .Teaser-content {
    padding: 20px 0;
  }
}