*,a,ul{
 margin: 0;
 padding: 0;
 box-sizing: border-box;
 text-decoration: none;
 list-style-type: none;

}
@media (min-width:1500px){

    .container{max-width:100%;}
}
    .row{row-gap:20px}
@font-face {
  font-family: 'Circe';
  src: url('/fonts/circebold.woff2') format('woff2');
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Circe';
  src: url('/fonts/circeregular.woff2') format('woff2');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
body,*{font-family: Circe;}
.sidebar {
    background:#fff;
    box-shadow: 0 0 64px #e4e6eb;
    min-height: 100vh;
    z-index: 3;
}
.my-stick{
    position: sticky;
    top: 0;
    height: 105vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
a{color: black;}
.sidebar__list a {
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-size: 16px;
    line-height: 1;
    min-height: 44px;
    padding: 8px 10px 8px 10px;
    position: relative;
    transition: background-color .3s;
    width: 100%;
}
header{box-shadow: 0 0 10px rgba(0,0,0,.1);}
.header__right .btn {
    margin: -6px 0;
    padding: 6px 18px;
    width: unset;
}
.logo img{
    padding: 36px 16px 0px;
}
.btn {
    align-items: center;
    background-color: #CA1617;
    border: 1px solid #CA1617;
    border-radius: 4px;
    color: #fff;
    width: 141px;
    cursor: pointer;
    display: -webkit-box;
    font-weight: 500;
    display: -ms-flexbox;
    display: flex;
    justify-content: center;
    line-height: 18px;
    outline: none;
    padding: 8px 24px;
    transition: all .3s;
    white-space: nowrap;
    width: 160px;
}
.top-header{padding-block: 16px;}
.call-btn,.mail-btn{font-size: 13px;}
nav ul li a{font-size: 15px; font-weight: 500;}
.language-dropdown {
  position: relative;
  display: inline-block;
  font-family: Arial, sans-serif;
}
.header-phone {
    font-size: 21px;
    font-weight: 100;
    color: #CA1617;
}
.header-phone:last-child{font-size:23px;}
.social-links-user {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
    margin-bottom: 20px;
    gap: 7px;
}
.social-links-u {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    position: relative;
    background-color: rgb(8, 8, 8);
    border-radius: 100%;
    transition: 0.5s ease-out !important;
}
.social-links-u svg path {
    fill: rgb(255, 255, 255) !important;
}
.promo-u {
    display: flex;
    justify-content: center;
    align-items: center;
    color: #FFF;
    font-weight: 500;
    gap: 10px;
    font-size: 14px;
    line-height: 14px;
    background-color: #000;
    border-radius: 100px;
    padding: 13px 20px 14px;
    margin-bottom: 80px;
}
.right-menu a {
    font-size: 14px;
    color: #000;
    font-weight: 500;
    margin-right: 12px;
    position: relative;
    padding: 0 10px 0 55px;
    line-height: 48px;
    display: inline-block;
    transition: .5s all ease;
    cursor: pointer;
}
.right-menu a:before {
    content: "";
    width: 46px;
    height: 46px;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    border-radius: 30px;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    background-color: #F2F2F2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 9px;
    position: absolute;
    left: 0;
    top: 0;
    background-position: 14px center;
    background-repeat: no-repeat;
}
.right-menu a.right-btn.offer-price span {
    color: #091254;
    font-size: 13px;
    z-index: 3;
    position: relative;
    font-weight: 600;
}
.right-menu .offer-price:before {
    background-color: #e9e8f9;
    background-image: url(/img/phone-call.png);
    background-position: 15px center;
    background-size: 16px;
}
.right-menu .mail-price:before{
    background-image: url("/img/envelope.png") !important;
    background-size: 18px;
}
.dropdown__list {
    background-color: #fff;
    border-radius: 4px;
    box-shadow: 0 0 48px #e4e6eb;
    left: 0;
    list-style: none;
    margin: 0;
    padding: 14px 0;
    position: relative;
    display:flex;
    flex-direction:column;
    padding:20px;
    gap:10px;
    top: 0;
    width: 100%;
    z-index: 10;
}
.dropdown {
    position: relative;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
}
.header__dropdown {
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.dropdown:hover .dropdown__wrapper {
    display: block
}
.header__dropdown {
    color: #000;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-weight: 700;
    line-height: 17px;
    transition: color .3s;
}
.dropdown__wrapper {
    display: none;
    left: 0;
    margin-top: 28px;
    position: absolute;
    top: 0;
    width: 180px;
    z-index: 2;
}
.header__dropdown i{color: #CA1617;}
@media (min-width: 991.98px) {
    .right-menu a:hover {
        padding: 0 20px 0 45px;
    }
    .right-menu a:hover:before {
        width: 100%;
    }
}
.lang-btn {
  background-color: #fff;
  border: 1px solid #ccc;
  padding: 8px 14px;
  cursor: pointer;
  font-weight: bold;
}

.lang-list {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #fff;
  border: 1px solid #ccc;
  list-style: none;
  padding: 0;
  margin: 0;
  display: none;
  min-width: 47px;
  z-index: 1000;
}

.lang-list li a {
  display: block;
  padding: 8px 14px;
  color: #333;
  text-decoration: none;
}

.lang-list li a:hover {
  background-color: #f0f0f0;
}

.language-dropdown:hover .lang-list {
  display: block;
}
/* banner */
/*new top banner*/
.new-masthead {
    overflow: hidden;
    background: #fff;
    padding: 32px 0 13px;
}
.wrapper {
    margin: 0 auto;
    z-index: 5;
}
.new-masthead h1 {
    font-weight:bolder;
    letter-spacing: -.025em;
    text-transform: uppercase;
    color: #292f3a;
    font-size: min(6vw, 74px);
}
/*new top banner end*/
/*new slider*/
.masthead--margin{background:#fff;}
.masthead--margin .btn:disabled:after, .masthead--margin .btn:disabled:hover:after {
  border-bottom: 48px solid #e9ecf0 !important;
  
}
.masthead--margin .btn:disabled:before, .masthead--margin .btn:disabled:hover:before {
  border-top: 48px solid #e9ecf0 !important;
}

.masthead--margin h2 {
  font: italic 80px/1 "Montserrat";
  margin: 0 0 10px;
}
.masthead--margin body {
  min-width: 375px;
  font-family: "Montserrat";
  background: #f2f4f6;
}
.masthead--margin .wrapper {
  margin: 0 auto;
  z-index: 5;
}
.masthead--margin .wrapper:after {
  content: "";
  display: table;
  clear: both;
}
.masthead--margin .btn {
  padding: 0;
  margin: 0;
  transition: 0.2s linear;
  cursor: pointer;
  font-family: "Montserrat";
  display: inline-block;
  text-align: center;
  box-sizing: border-box;
  background: 0 0;
  border: none;
}
.masthead--margin .btn svg {
  display: inline-block;
  vertical-align: middle;
  margin: -4px 5px -2px;
}
.masthead--margin .btn:disabled {
  color: #909aaa !important;
  cursor: default !important;
  background: #e9ecf0 !important;
}
.masthead--margin .btn:disabled:hover {
  background: #e9ecf0 !important;
  color: #909aaa !important;
}
.masthead--margin .btn-color {
  background: #00a7f0;
  height: 48px;
  padding: 12px 25px;
  text-transform: uppercase;
  font-size: 14px;
  position: relative;
  line-height: 24px;
  color: #fff;
  margin: 0 0 0 9px;
}
.masthead--margin .btn-color:after, .masthead--margin .btn-color:before {
  position: absolute;
  bottom: 0;
  transition: 0.2s linear;
  content: "";
  font-size: 0;
  border: none;
}
.masthead--margin .btn-color:after {
  right: 100%;
  border-bottom: 48px solid #00a7f0;
  border-left: 10px solid transparent;
}
.masthead--margin .btn-color:before {
  border-top: 48px solid #00a7f0;
  left: 100%;
  top: 0;
  border-right: 10px solid transparent;
}
.masthead--margin .btn-color:hover {
  background: #0091d1;
}
.masthead--margin .btn-color:hover:after {
  border-bottom: 48px solid #0091d1;
}
.masthead--margin .btn-color:hover:before {
  border-top: 48px solid #0091d1;
}
.masthead--margin a {
  color: #00a9e0;
  text-decoration: none;
}
.masthead--margin img {
  max-width: 100%;
}
.masthead--margin .swiper {
  display: block;
}
.masthead--margin .swiper {
  overflow: hidden;
}
.masthead--margin .swiper-slide, .masthead--margin .swiper-wrapper {
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform;
}

.masthead--margin :root {
  --swiper-theme-color: #007aff;
  --swiper-navigation-size: 44px ;
}
.masthead--margin :host {
  position: relative;
  display: block;
  margin-left: auto;
  margin-right: auto;
  z-index: 1;
}
.masthead--margin .swiper {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  padding: 0;
  z-index: 1;
}
.masthead--margin .swiper-wrapper {
  z-index: 1;
  display: flex;
  transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial);
  box-sizing: content-box;
}
.masthead--margin .swiper-wrapper {
  transform: translate3d(0, 0, 0);
}
.masthead--margin .swiper-horizontal {
  touch-action: pan-y;
}
.masthead--margin .swiper-slide {
  flex-shrink: 0;
  display: block;
}
.masthead--margin .swiper-backface-hidden .swiper-slide {
  transform: translateZ(0);
  backface-visibility: hidden;
}
.masthead--margin .swiper-button-next, .masthead--margin .swiper-button-prev {
  position: absolute;
  top: var(--swiper-navigation-top-offset, 50%);
  width: calc(var(--swiper-navigation-size) / 44 * 27);
  height: var(--swiper-navigation-size);
  margin-top: calc(0px - var(--swiper-navigation-size) / 2);
  z-index: 10;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--swiper-navigation-color, var(--swiper-theme-color));
}
.masthead--margin .swiper-button-next svg, .masthead--margin .swiper-button-prev svg {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  transform-origin: center;
}
.masthead--margin .swiper-button-prev {
  left: var(--swiper-navigation-sides-offset, 10px);
  right: auto;
}
.masthead--margin .swiper-button-next:after, .masthead--margin .swiper-button-prev:after {
  font: initial var(--swiper-navigation-size)/1 swiper-icons;
  text-transform: none !important;
  letter-spacing: 0;
}
.masthead--margin .swiper-button-prev:after {
  content: "prev";
}
.masthead--margin .swiper-button-next {
  right: var(--swiper-navigation-sides-offset, 10px);
  left: auto;
}
.masthead--margin .swiper-button-next:after {
  content: "next";
}
.masthead--margin .swiper-pagination {
  position: absolute;
  text-align: center;
  transition: opacity 0.3s;
  transform: translate3d(0, 0, 0);
  z-index: 10;
}
.masthead--margin .swiper-horizontal > .swiper-pagination-bullets, .masthead--margin .swiper-pagination-bullets.swiper-pagination-horizontal {
  bottom: var(--swiper-pagination-bottom, 8px);
  top: var(--swiper-pagination-top, auto);
  left: 0;
  width: 100%;
}
.masthead--margin .swiper-pagination-bullet {
  width: var(--swiper-pagination-bullet-width, var(--swiper-pagination-bullet-size, 8px));
  height: var(--swiper-pagination-bullet-height, var(--swiper-pagination-bullet-size, 8px));
  display: inline-block;
  border-radius: var(--swiper-pagination-bullet-border-radius, 50%);
  background: var(--swiper-pagination-bullet-inactive-color, #000);
  opacity: var(--swiper-pagination-bullet-inactive-opacity, 0.2);
}
.masthead--margin .swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
}
.masthead--margin .swiper-pagination-bullet-active {
  opacity: var(--swiper-pagination-bullet-opacity, 1);
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
}
.masthead--margin .swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet, .masthead--margin .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 4px);
}
.masthead--margin .swiper .swiper-notification {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  opacity: 0;
  z-index: -1000;
}
.masthead--margin .masthead h2 {
  text-transform: uppercase;
  font-weight:700;
}
.masthead--margin .masthead .counter span, .masthead--margin .masthead .in, .masthead--margin .masthead .spec-block-wrapper .spec-block > a > div > span {
  color: #fff;
}
.masthead--margin .masthead-nav {
  width: 48px;
  transition: 0.2s linear;
  right: 50px;
}
.masthead--margin .masthead {
  overflow: hidden;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), linear-gradient(180deg, rgba(0, 0, 0, 0.6) 0, rgba(0, 0, 0, 0) 65.78%);
}
.masthead--margin .masthead .bg {
  z-index: -1;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
}
.masthead--margin .masthead .swiper-pagination {
  position: absolute;
  right: 200px;
  left: auto;
  top: auto;
  width: 325px;
  height: 4px;
  bottom: 70px;
  background: #00a7f0;
}
.masthead--margin .masthead .in {
  max-width: 925px;
  min-height: 530px;
  display: flex;
  position: relative;
  align-items: flex-start;
  z-index: 5;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 0 48px;
}
.masthead--margin .masthead .spec-block-wrapper {
  justify-content: center;
}
.masthead--margin .masthead .spec-block-wrapper .spec-block {
  display: flex;
  text-transform: uppercase;
  flex-direction: column;
  gap: 20px;
  background-size: contain;
  margin-left: -40px;
  padding: 30px 60px 30px 30px;
  font-family: "Montserrat";
  font-style: italic;
}
.masthead--margin .masthead .spec-block-wrapper .spec-block > a {
  color: #fff;
  font-size: 32px;
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 15px;
}
.masthead--margin .masthead .spec-block-wrapper .spec-block > a > div .spec-block__text-small {
  font-size: 14px;
}
.masthead--margin .masthead .swiper-slide {
  overflow: hidden;
}
.masthead--margin .masthead .video-slide {
  left: 100px;
  top: 100px;
  transform: scale(1.3);
}
@media screen and (max-width: 1024px) {
  .masthead--margin .masthead .video-slide {
    top: 0;
  }
}
@media screen and (max-width: 728px) {
  .masthead--margin .masthead .video-slide {
    left: 0;
    transform: scale(1);
  }
}
.masthead--margin .masthead .shadow-wrapper {
  box-shadow: inset 600px 0 100px rgba(13, 71, 161, 0.5);
}
@media screen and (max-width: 640px) {
  .masthead--margin .masthead .spec-block-wrapper {
    justify-content: flex-end;
    align-items: flex-end;
  }
  .masthead--margin .masthead .spec-block-wrapper .spec-block {
    background: 0 0;
    gap: 10px;
    margin-left: 0;
    padding: 0;
  }
  .masthead--margin .masthead .spec-block-wrapper .spec-block > a {
    font-size: 14px;
    gap: 10px;
  }
  .masthead--margin .masthead .spec-block-wrapper .spec-block > a img {
    max-width: 26px;
  }
  .masthead--margin .masthead .spec-block-wrapper .spec-block > a > div .spec-block__text-small {
    font-size: 10px;
  }
  .masthead--margin .masthead .shadow-wrapper {
    left: 0;
    box-shadow: inset 0 -200px 50px rgba(13, 71, 161, 0.5);
  }
}
.masthead--margin .masthead .btn {
  margin: 34px 0 0 9px;
}
.masthead--margin .masthead .counter {
  font: 14px/13px "Montserrat";
  position: absolute;
  color: #fff;
  bottom: 65px;
  z-index: 10;
  right: 550px;
}
.masthead--margin .masthead-nav {
  background: #292f3a;
  margin-left: 10px;
  height: 48px;
  position: absolute;
  left: auto !important;
  bottom: 48px;
  top: auto !important;
}
.masthead--margin .masthead-nav:after, .masthead--margin .masthead-nav:before {
  position: absolute;
  bottom: 0;
  transition: 0.2s linear;
  content: "";
  font-size: 0;
  border: none;
}
.masthead--margin .masthead-nav:after {
  right: 100%;
  border-bottom: 48px solid #292f3a;
  border-left: 10px solid transparent;
}
.masthead--margin .masthead-nav:before {
  border-top: 48px solid #292f3a;
  left: 100%;
  top: 0;
  border-right: 10px solid transparent;
}
.masthead--margin .masthead-nav:hover {
  background: #424854;
}
.masthead--margin .masthead-nav:hover:after {
  border-bottom: 48px solid #424854;
}
.masthead--margin .masthead-nav:hover:before {
  border-top: 48px solid #424854;
}
.masthead--margin .masthead-nav svg {
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  position: absolute;
  width: 8px;
  height: auto;
}
.masthead--margin .masthead-nav.swiper-button-prev {
  margin-right: 69px;
  left: auto;
}
.masthead--margin .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  margin: 0 6px;
  opacity: 1 !important;
  border-radius: 0;
  background: #dde2e8;
}
.masthead--margin .swiper-pagination-bullet-active {
  background: #00a7f0;
}
.masthead--margin .bg {
  left: 0;
  width: 100%;
  top: 0;
  height: 100%;
  z-index: -1;
  -o-object-fit: cover;
     object-fit: cover;
}
.masthead--margin .swiper-notification {
  display: none !important;
}
.masthead--margin .bg {
  position: absolute;
}
.masthead--margin .footer_right .social a:not(:hover) path {
  fill: #b3b9c5;
}

.masthead--margin .in {
  min-height: 677px;
  padding: 0 0 40px;
}
.masthead--margin .btn {
  font-size: 12px;
  padding: 8px 17px;
  height: 40px;
  margin: 7px 0 0 9px;
}
.masthead--margin .btn:after {
  border-bottom-width: 40px;
}
.masthead--margin .btn:before {
  border-top-width: 40px;
}
.masthead--margin .btn svg {
  width: 20px;
  height: auto;
  margin: -3px 3px;
}
.masthead--margin .counter {
  font-size: 12px;
  bottom: 52px;
  right: 469px;
}
.masthead--margin .masthead-nav {
  right: 50px;
  bottom: 37px;
  width: 37px;
  height: 42px;
}
.masthead--margin .masthead-nav:after {
  border-bottom-width: 42px;
}
.masthead--margin .masthead-nav:before {
  border-top-width: 42px;
}
.masthead--margin .masthead-nav.swiper-button-prev {
  margin-right: 56px;
}
.masthead--margin .swiper-pagination {
  right: 170px;
  width: 280px;
  height: 3px;
  bottom: 58px;
}
.masthead--margin h2 {
  font-style: italic;
  max-width: 600px;
  font-weight: 400;
  font-size: 48px;
  line-height: 1.1;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #fff;
}
@media screen and (max-width: 1200px) {
  .masthead--margin body {
    font-size: 16px;
  }
  .masthead--margin h2 {
    font-size: 60px;
  }
  .masthead--margin {
    margin: 0 0 50px;
  }
}
@media screen and (max-width: 1024px) {
  .masthead--margin .masthead .counter {
    display: none;
  }
  .masthead--margin h2 {
    font-size: 55px;
  }
  .masthead--margin .masthead .in {
    min-height: 600px;
    padding: 0 40px 68px 0;
  }
  .masthead--margin .masthead .swiper-pagination {
    right: 24px;
    background: 0 0;
    left: 24px;
    bottom: 25px;
    gap: 5px;
    width: auto;
    display: flex;
  }
  .masthead--margin .masthead .swiper-pagination .swiper-pagination-bullet {
    border-radius: 0;
    opacity: 1 !important;
    height: 4px;
    flex: auto 1 1;
    background: #292f3a;
    vertical-align: top;
  }
  .masthead--margin .masthead .swiper-pagination .swiper-pagination-bullet-active {
    background: #00a7f0;
  }
  .masthead--margin .masthead-nav {
    display: none !important;
  }
  .masthead--margin .footer_right .social a:not(:hover) path {
    fill: #fff;
  }
  .masthead--margin .btn:after {
    border-bottom-width: 33px;
  }
  .masthead--margin .btn:before {
    border-top-width: 33px;
  }
  .masthead--margin .in {
    min-height: 450px;
    padding: 0 0 53px;
  }
  .masthead--margin .btn {
    font-size: 12px;
    padding: 5px 12px;
    height: 33px;
    margin: -3px 0 0 5px;
  }
  .masthead--margin .btn svg {
    margin: -5px 3px -3px;
  }
  .masthead--margin .swiper-pagination {
    right: 16px;
    left: 16px;
    bottom: 31px;
  }
  .masthead--margin h2 {
    font-size: 36px;
    line-height: 1.1;
    max-width: 480px;
  }
  .masthead--margin {
    margin: 0 0 60px;
  }
}
@media screen and (max-width: 767px) {
  .masthead--margin h2 {
    font-size: 36px;
    line-height: 1;
  }
  .masthead--margin .masthead .in {
    min-height: 500px;
    padding: 0 0 68px;
  }
  .masthead--margin .masthead .swiper-pagination {
    right: 12px;
    left: 12px;
    bottom: 24px;
  }
  .masthead--margin .masthead .btn {
    margin: 15px 0 0 9px;
  }
  .masthead--margin body {
    padding-top: 57px;
  }
  .masthead--margin {
    margin: 0 0 100px;
  }
  .masthead--margin .in {
    min-height: 527px;
    padding: 0 0 52px;
  }
  .masthead--margin .btn {
    padding: 9px 15px;
    margin: 1px 0 0 9px;
    height: 40px;
  }
  .masthead--margin .btn:after {
    border-bottom-width: 40px;
  }
  .masthead--margin .btn:before {
    border-top-width: 40px;
  }
  .masthead--margin .swiper-pagination {
    bottom: 29px;
  }
  .masthead--margin .swiper-pagination .swiper-pagination-bullet {
    height: 2px;
  }
  .masthead--margin h2 {
    font-size: 32px;
    line-height: 1.1;
  }
}/*# sourceMappingURL=test.css.map */
/*new slider end*/
/* new css for all  */


.badge {
    background-color: #48beff;
    border-radius: 10px;
    color: #fff;
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
    line-height: 1;
    padding: 6px 12px 4px;
    text-transform: uppercase;
    white-space: nowrap
}

.badge--hit {
    background-color: #9964ad
}

.btn {
    align-items: center;
    background-color: #CA1617;
    border: 1px solid #CA1617;
    border-radius: 4px;
    color: #fff;
    cursor: pointer;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: center;
    line-height: 18px;
    outline: none;
    padding: 8px 24px;
    transition: all .3s;
    white-space: nowrap;
    width: 160px
}

.btn [class^=icon] {
    margin-right: 7px
}

.btn:hover {
    background-color: #fd3844;
    border-color: #fd3844;
    color: #fff
}

.btn:active {
    background-color: #dc1d29;
    border-color: #dc1d29;
    color: #fff
}

.btn--outline {
    background-color: #fff;
    color: #CA1617
}

.btn--outline:hover {
    background-color: #CA1617;
    color: #fff
}

.btn--outline:active {
    background-color: #dc1d29;
    border-color: #dc1d29
}

.card__wrapper {
    pointer-events: auto;
    width: 16.6666666667%
}

.card {
    border-radius: 4px;
    display: block;
    outline: none;
    padding: 16px;
    position: relative
}

.card:hover {
    background-color: #fff;
    box-shadow: 0 0 48px #e4e6eb;
    z-index: 2
}

.card:hover .btn {
    opacity: 1
}

.card__img-pictures img{object-fit: cover;width: 100%;}
.card__img {
    margin-bottom: 16px;
    padding-top: 75%;
    position: relative
}

.card__img img {
    display: none;
    max-height: 100%;
    max-width: 100%
}

.card__img img.active {
    display: block
}

.card__img-changers {
    display: none;
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 2
}

.card__img-changer {
    border-top: 2px solid #c9ced6;
    flex: 1;
    margin-right: 4px
}

.card__img-changer.active {
    border-color: #CA1617
}

.card__img-changer:last-child {
    margin-right: 0
}

.card__img-pictures {
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 100%;
    justify-content: center;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%
}

.card__item-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px
}

.card__buttons {
    display: none
}

.card__buttons .btn {
    margin-bottom: 10px;
    width: 100%
}

.card__buttons .btn:last-child {
    margin-bottom: 0
}

.card__name {
    font-size: 18px;
    font-weight: 700
}

.card__name,.card__price {
    color: #000;
    line-height: 24px
}

.card__price {
    font-size: 24px;
    margin-left: 10px;
    white-space: nowrap
}

.card__price-type {
    color: #8c9199;
    font-size: 14px;
    line-height: 16px;
    white-space: nowrap
}

.card__price-type span {
    margin-right: 8px
}

.card__price-type span:before {
    margin: 0
}

.card__badges {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    left: 25px;
    position: absolute;
    top: 25px
}

.card__badges .badge {
    font-size: 12px;
    margin-right: 5px
}

.card__badges .badge:last-child {
    margin-right: 0
}

.card__sizes {
    color: #8c9199
}

.card__sizes {
    font-size: 14px;
    line-height: 1
}

.card__fast {
    background: hsla(0,0%,100%,.9);
    border-radius: 9px;
    box-shadow: 0 0 20px rgba(0,0,0,.1);
    color: #000;
    cursor: pointer;
    display: none;
    left: 50%;
    opacity: .5;
    padding: 7px 15px;
    position: absolute;
    top: 50%;
    transform: translate(-50%,-50%);
    white-space: nowrap;
    z-index: 3
}

.card__fast:hover {
    opacity: 1
}

.footer {
    background-color: #f2f4f7;
    margin-top: auto;
    padding-bottom: 50px;
    padding-top: 50px;
    width: 100%
}

.footer__top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: space-between;
    margin-bottom: 50px
}

.footer__col:last-of-type {
    width: auto
}

.footer__title {
    color: #8c9199;
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
    margin: 0 0 10px;
    position: relative;
    text-transform: uppercase
}

.footer__list {
    list-style: none;
    margin: 0;
    padding: 0
}

.footer__item {
    margin-bottom: 10px
}

.footer__item:last-child {
    margin-bottom: 0
}

.footer__link {
    color: #000;
    cursor: pointer;
    font-size: 16px;
    line-height: 1;
    transition: color .3s;
    max-width:220px;
    display:block;
    display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;  
  overflow: hidden;
}

.footer__link:hover {
    color: #fd3844
}

.footer__bottom {
    border-top: 1px solid #c9ced6;
    color: #c9ced6;
    font-size: 14px;
    line-height: 18px;
    padding-top: 20px
}

.footer__bottom-middle,.footer__soc {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

.footer__soc {
    align-items: center
}

.footer__socials {
    align-items: flex-start;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-left: auto
}

.footer__socials a {
    color: #c9ced6;
    font-size: 20px;
    margin-left: 17px
}

.footer__socials a.icon-telegram:hover {
    color: #08c
}

.footer__socials a.icon-vk {
    margin-top: -2px
}

.footer__socials a.icon-vk:hover {
    color: #07f
}

.footer__socials a.icon-youtube:hover {
    color: red
}

.footer__socials a.icon-rutube {
    font-size: 18px;
    margin-top: -4px
}

.footer__socials a.icon-rutube:hover {
    background: linear-gradient(45deg,#100943 72%,#ed143b 0);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent
}

.footer__socials a.icon-dzen:hover {
    color: #000
}

.footer__info {
    margin: 0 0 20px
}

.footer__privacy {
    margin: 0 0 25px
}

.footer__privacy a {
    color: #c9ced6;
    text-decoration: underline
}

.footer__copyright {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: space-between;
    margin: 0
}

.footer__navbar {
    align-items: center;
    background: #CA1617;
    bottom: 0;
    display: none;
    height: 60px;
    left: 0;
    position: fixed;
    width: 100%;
    z-index: 5
}

.footer__navbar .icon {
    font-size: 22px;
    margin-bottom: 3px;
    margin-right: 0
}

.footer__navbar-link {
    align-items: center;
    color: #fff;
    cursor: pointer;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex: 1;
    flex-direction: column;
    font-size: 12px;
    height: 100%;
    justify-content: center;
    padding-top: 3px;
    text-decoration: none
}

.footer__navbar-link:active,.footer__navbar-link:hover {
    color: #fff
}

.hidden {
    display: none!important
}

.link {
    font-weight:500;
    font-size:18px;
    color: #CA1617;
    cursor: pointer
}

.link:hover {
    color: #fd3844
}

.link:hover,.link:hover span {
    text-decoration: underline
}

.link:active {
    color: #dc1d29;
    text-decoration: none
}

.modal__top {
    display: none;
    order: -2
}
.modal.fade textarea.form-control {min-height:150px;resize:none;}

.modal__top-close {
    cursor: pointer;
    display: block;
    height: 30px;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 30px
}

.modal__top-close:after {
    transform: rotate(45deg)
}

.modal__top-close:after,.modal__top-close:before {
    background-color: #333;
    content: "";
    height: 2px;
    position: absolute;
    right: 20px;
    top: 13px;
    transition: background-color .3s;
    width: 16px
}

.modal__top-close:before {
    transform: rotate(-45deg)
}

.modal__top-right {
    margin-left: auto
}

.pagination__wrap {
    text-align: center
}

.products__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 40px;
    margin-top: 32px;
    padding-left: 32px;
    padding-right: 32px
}

.slider {
    overflow: hidden;
    pointer-events: none;
    position: relative;
    z-index: 1
}

.slider>* {
    display: none
}

.slider.slick-initialized>* {
    display: block
}



.slider__products .slider__btn {
    margin-top: 0;
    top: 152px;
    transform: none
}

.slider__products .card__wrapper {
    pointer-events: auto
}

.slider__item {
    flex: 1 0 auto;
    pointer-events: auto;
    width: 20%
}

.slider__btn {
    background-color: #CA1617;
    border-radius: 50%;
    cursor: pointer;
    display: block;
    height: 36px;
    pointer-events: auto;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    transition: background-color .3s;
    width: 36px;
    z-index: 2
}

.slider__btn--prev {
    left: 15px
}

.slider__btn--prev:after {
    border-bottom: 2px solid #fff;
    border-right: 2px solid #fff;
    content: "";
    height: 8px;
    left: 11px;
    position: absolute;
    top: 15px;
    transform: rotate(135deg);
    width: 8px
}

.slider__btn--next {
    right: 15px
}

.slider__btn--next:after {
    border-bottom: 2px solid #fff;
    border-right: 2px solid #fff;
    content: "";
    height: 8px;
    position: absolute;
    right: 11px;
    top: 15px;
    transform: rotate(-45deg);
    width: 8px
}

.slider__btn:before {
    background-color: #fff;
    content: "";
    height: 2px;
    left: 0;
    margin: auto;
    position: absolute;
    right: 0;
    top: 18px;
    width: 14px
}

.slider__btn:hover {
    background-color: #fd3844
}

.slider__btn:active {
    background-color: #dc1d29
}

.slider__btn.slick-disabled {
    background: #f2f4f7;
    cursor: auto
}

.slider__btn.slick-disabled:active,.slider__btn.slick-disabled:hover {
    background: #f2f4f7
}

.slick-track {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}
.home__products {
    padding-top: 48px
}

.home__title {
    font-size: 32px;
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 60px;
    text-align: center
}

.home__title-news,.home__title-products {
    margin-bottom: 0
}

.home__news {
    padding-top: 68px
}

.home__news,.home__news>.container {
    position: relative
}

.home__news .slider__item {
    margin-right: 40px;
    width: calc(25% - 30px)
}

.home__news-actions {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.home__news-all {
    margin-left: auto
}

.home__news-item,.home__news-item:active,.home__news-item:hover {
    color: #000
}

.home__news-heading {
    font-size: 18px;
    margin: 0 0 20px
}

.home__news-text {
    color: #000;
    font-size: 16px;
    line-height: 20px;
    margin: 0 0 20px
}

.home__news-date {
    color: #8c9199;
    font-size: 14px
}

.home__advantages {
    margin-top: 68px
}

.home__advantages-list {
    border-top: 1px solid #c9ced6;
    flex-wrap: wrap
}

.home__advantages-item,.home__advantages-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

.home__advantages-item {
    align-items: center;
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: contain;
    border-bottom: 1px solid #c9ced6;
    border-right: 1px solid #c9ced6;
    cursor: pointer;
    flex-direction: column;
    padding: 80px 25px 10px;
    transition: all .3s;
    width: 33.3333333333%
}

.home__advantages-item:nth-child(3n) {
    border-right: none
}

.home__advantages-item--video {
    background: #CA1617;
    display: block;
    height: auto;
    padding: 0;
    position: relative
}

.home__advantages-item--video:hover .home__advantages-play span {
    color: #fff;
    opacity: 1
}

.home__advantages-item_video-text {
    align-items: center;
    color: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex: 1;
    font-size: 18px;
    font-weight: 700;
    justify-content: center
}

.home__advantages-wrap {
    height: 100%;
    position: relative;
    width: 100%
}

.home__advantages-wrap--video {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-direction: column
}

.home__advantages-play {
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: center
}

.home__advantages-play span {
    color: #fff;
    font-size: 96px;
    opacity: .75
}

.home__advantages-play span:before {
    margin: 0
}

.home__advantages-top {
    align-items: center;
    cursor: pointer;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-direction: column
}

.home__advantages-icon {
    color: #CA1617;
    font-size: 48px;
    margin-bottom: 28px;
    transition: all .3s
}

.home__advantages-heading {
    font-size: 18px;
    font-weight: 700;
    line-height: 22px;
    margin:32px 0 10px 0;
    text-align: center
}

.home__advantages-text {
    color: #fff;
    font-size: 16px;
    line-height: 22px;
    margin: 0;
    opacity: 0;
    text-align: center;
    transition: all .3s;
    width: 100%
}

.page__search {
    display: none;
    padding-bottom: 100px
}

@media (min-width: 1024px) {
  

    .card:hover .card__buttons,.card:hover .card__fast {
        display: block
    }

    .hidden-desktop {
        display: none
    }

   
}

@media (min-width: 769px) {

    .home__advantages-item:hover {
        background-color: #fff;
        color: #000;
        padding: 30px
    }

    .home__advantages-item:hover path{
        fill: #fff;stroke:#fff
    }
    .home__advantages-item:hover circle{
        stroke:#fff
    }

    .home__advantages-item--video {
        padding: 0
    }

    .home__advantages-item--video:hover {
        background: #CA1617;
        color: #fff;
        padding: 0
    }
}

@media (min-width: 1441px) {
    .home__advantages-item:hover {
        background-color:#CA1617;
        color: #fff;
        padding-bottom: 55px;
        padding-top: 35px
    }

    .home__advantages-item:hover span {
        color: #fff
    }

    .home__advantages-item:hover .home__advantages-text {
        opacity: 1
    }

    .home__advantages-item--video,.home__advantages-item--video:hover {
        padding: 0
    }
}

@media (max-width: 2100px) {
    .card__wrapper {
        width:20%
    }
}

@media (max-width: 1920px) {
    .card__wrapper {
        width:25%
    }
}

@media (max-width: 1660px) {
    .card__wrapper {
        width:33.3333333333%
    }
}

@media (max-width: 1600px) {
    .slider__item {
        width:20%
    }
}

@media (max-width: 1500px) {
    .slider__item {
        width:25%
    }
}

@media (max-width: 1440px) {
    .home__news .slider__item {
        width:calc(33.33333% - 26.66667px)
    }

    .home__advantages-item {
        padding: 30px;
        width: 50%
    }

    .home__advantages-item:nth-child(3n) {
        border-right: 1px solid #c9ced6
    }

    .home__advantages-item:nth-child(2n) {
        border-right: none
    }

    .home__advantages-item:nth-child(1n+5) {
        border-right: 1px solid #c9ced6
    }

    .home__advantages-item:nth-child(2n+5) {
        border-right: none
    }

    .home__advantages-item--video {
        height: 250px;
        padding: 0;
        width: 100%
    }

    .home__advantages-text {
        color: #000;
        opacity: 1
    }
}

@media (max-width: 1300px) {
    .footer__top {
        flex-wrap:wrap
    }

    .footer__col {
        padding-right: 20px
    }

    .slider__item {
        width: 33.3333333333%
    }
}

@media (max-width: 1280px) {
    .card__wrapper {
        width:50%
    }
}

@media (max-width: 1200px) {
    .container {
        padding-left:32px;
        padding-right: 32px
    }
}

@media (max-width: 1024px) {
    .card__img-changers {
        display:none
    }
}

@media (max-width: 1023px) {

    .card__wrapper {
        width: 33%
    }

    .card {
        height: auto
    }

    .card:hover {
        background-color: transparent;
        box-shadow: none
    }

    .card__item-wrap {
        margin-bottom: 0
    }

    .card__name {
        font-size: 16px
    }

    .card__price {
        font-size: 20px
    }

    .footer {
        padding-bottom: 80px;
        padding-top: 0
    }

    .footer__top {
        display: none
    }

    .footer__col {
        padding-right: 0
    }

    .footer__col:nth-child(2) {
        order: 3
    }

    .footer__col:nth-child(3) {
        order: 4
    }

    .footer__col:nth-child(4) {
        order: 1
    }

    .footer__col:nth-child(5) {
        order: 2
    }

    .footer__col:last-of-type,.footer__title {
        display: none
    }

    .footer__item {
        margin-bottom: 0
    }

    .footer__link {
        align-items: center;
        border-bottom: 1px solid #c9ced6;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        font-size: 18px;
        min-height: 56px;
        padding: 15px 20px;
        width: 100%
    }

    .footer__bottom {
        border-top: 0
    }

    .footer__info,.footer__privacy {
        margin-bottom: 15px
    }

    .footer__copyright,.footer__info,.footer__privacy {
        font-size: 12px;
        line-height: 14px
    }

    .footer__navbar {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex
    }

    .modal__top {
        align-items: center;
        background: #eee;
        border-bottom: 1px solid #c9ced6;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        font-size: 18px;
        height: 56px;
        padding: 15px 20px;
        position: relative
    }

    .products__list {
        padding-left: 9px;
        padding-right: 9px
    }

    .slider__products .card__wrapper {
        margin-right: 20px
    }

    .slider__products .card__wrapper:last-child {
        margin-right: 0
    }

    .slider__products .card {
        padding: 0
    }

    .slider__btn--prev {
        left: 0
    }

    .slider__btn--next {
        right: 0
    }

    .home__products {
        padding: 48px 0
    }

    .home__title {
        font-size: 22px;
        margin-bottom: 50px
    }

    .home__title-products {
        margin-bottom: 10px
    }

    .home__title-news {
        margin-bottom: 30px
    }

    .home__news {
        border-bottom: 1px solid #c9ced6;
        padding: 48px 0
    }

    .home__news .slider__item {
        width: calc(50% - 20px)
    }

    .home__advantages {
        margin-top: 0
    }
}

@media (max-width: 800px) {
    .card__wrapper {
        width:50%
    }
}

@media (max-width: 768px) {
    .container {
        padding-left:25px;
        padding-right: 25px
    }

    .tablet-hide {
        display: none
    }

    .card__sizes {
        font-size: 12px
    }

    .slider__products {
        padding-left: 25px;
        padding-right: 25px
    }

    .slider__item {
        width: 50%
    }

    .home__news .slider__item {
        margin-right: 0;
        width: 100%
    }

    .home__advantages-item {
        -webkit-tap-highlight-color: transparent;
        border-bottom: 1px solid #f2f4f7;
        border-right: none;
        cursor: pointer;
        margin: 0;
        padding: 0 25px;
        text-align: left;
        width: 100%
    }

    .home__advantages-item:first-child {
        border-top: 1px solid #f2f4f7
    }

    .home__advantages-item--video {
        height: auto;
        order: -1;
        padding: 20px 25px
    }

    .home__advantages-item_video-text {
        font-weight: 400;
        justify-content: flex-start
    }

    .home__advantages-item_video-text:last-child {
        display: none
    }

    .home__advantages-wrap--video {
        flex-direction: row-reverse
    }

    .home__advantages-play {
        width: 80px
    }

    .home__advantages-play span {
        font-size: 32px;
        opacity: 1;
        width: 80px
    }

    .home__advantages-top {
        flex-direction: row;
        padding: 20px 0;
        width: 100%
    }

    .home__advantages-icon {
        font-size: 32px;
        margin: 0;
        width: 80px
    }

    .home__advantages-heading {
        flex: 1;
        font-weight: 400;
        margin: 0;
        padding-right: 20px;
        position: relative;
        text-align: left;
        -webkit-user-select: none;
        -moz-user-select: none;
        user-select: none
    }

    .home__advantages-heading:after {
        border-bottom: 1px solid #000;
        border-left: 1px solid #000;
        content: "";
        height: 7px;
        margin-top: -4px;
        position: absolute;
        right: 0;
        top: 50%;
        transform: rotate(-45deg);
        transition: border-color .3s,rotate .3s;
        width: 7px
    }

    .home__advantages-heading div {
        display: inline
    }

    .home__advantages-text {
        display: none;
        padding: 0 20px 20px 80px;
        text-align: left
    }
}

@media (max-width: 700px) {
    .slider__btn--prev {
        left:6px
    }

    .slider__btn--next {
        right: 6px
    }
}

@media (max-width: 600px) {

    .products__list {
        padding: 0
    }
}

@media (max-width: 500px) {

    .slider__item {
        width: 100%
    }

    .slider__btn--next,.slider__btn--prev {
        top: 135px
    }
}

@media (max-width: 480px) {
    .container {
        padding-left:15px;
        padding-right: 15px
    }

    .slider__products {
        padding-left: 15px;
        padding-right: 15px
    }

    .home__advantages-item {
        padding: 0 15px
    }

    .home__advantages-item--video {
        padding: 0;
        padding: 20px 15px
    }

    .home__advantages-play,.home__advantages-play span {
        width: 60px
    }
}

@media (max-width: 460px) {

    .home__advantages-icon {
        width: 60px
    }

    .home__advantages-text {
        padding-left: 60px
    }
}

@media (max-width: 440px) {
    .card__wrapper {
        width:100%
    }
}

@media (max-width: 400px) {
    .footer__socials a {
        font-size:18px;
        margin-left: 13px
    }
}

@media (max-width: 375px) {
    .footer__bottom-middle {
        flex-direction:column
    }

    .footer__socials {
        margin-bottom: 15px;
        margin-left: unset
    }
}

@media (max-width: 360px) {
    .container,.slider__products {
        padding-left:10px;
        padding-right: 10px
    }

    .home__advantages-item {
        padding: 0 10px
    }

    .home__advantages-item--video {
        padding: 0
    }
}

/*  */
.box{display:none !important;}
.yumru img {
    width: 34px;
    padding: 5px;
}
.yumru {
    background: black;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 8px;
}

.foto img {
    object-fit:cover;
    width:160px;
    height:160px;
    border-radius:50%;
}
/*projects*/
.project-card img{height:220px;border-radius:10px;object-fit:cover;width:100%;}

/*projects end*/
/*products*/
.product-card{position:relative;overflow:hidden;border-radius:5px;}
.product-card h5{position:absolute;color:white;left:10px;bottom:10px;text-shadow:0 0 10px black;}
.product-img{width:100%;border-radius:5px;filter:brightness(85%);transition:.3s;}
.product-card:hover .product-img{filter:brightness(100%);transform:scale(1.07);}
/*products end*/
/* SOL blok ümumi hündürlük */
.product-gallery { height: 520px; }

/* Böyük şəkil üçün sabit nisbətli çərçivə */
.gallery-frame{
  position: relative;
  width: 100%;
  height:100%;         /* istəyə görə 4/3 və s. */
  background: #f8f9fa;
  border-radius: .75rem;
  overflow: hidden;
}
.gallery-frame .main-swiper{ position: absolute; inset: 0; height: 100% !important; }

/* Swiper slide mərkəzləmə və şəkil davranışı */
.main-swiper .swiper-slide{
  display:flex; align-items:center; justify-content:center;
  background:#f8f9fa;
}
.main-swiper img{
  width:100%;
  height:100%;
  object-fit:cover;            /* cover yerinə contain — dartmır, kəsmir */
}

/* Thumbs sütunu */
.thumbs-col{ max-height: 520px; } /* row hündürlüyü ilə eyni saxla */
.thumbs-swiper{ height:100%; } 
.thumbs-swiper .swiper-slide img,.thumbs-swiper-mobile .swiper-slide img{
    height:auto;
    max-width:100%;
}
.thumbs-swiper .swiper-slide{
  opacity:.5; border-radius:.5rem; overflow:hidden; cursor:pointer;
}
.main-swiper .swiper-button-prev,
.main-swiper .swiper-button-next{
    color:white !important;
}
.main-swiper .swiper-pagination-bullet-active{
    background:white !important;
}
.thumbs-swiper .swiper-slide-thumb-active{
  opacity:1; box-shadow:0 0 0 2px rgba(0,0,0,.2) inset;
}

/* Kiçik ekranlarda sərbəst axın */
@media (max-width: 767.98px) {
  .product-gallery { height: auto; }
  .gallery-frame { aspect-ratio: 4 / 3; }  /* mobil üçün bir az “daha hündür” */
}
.pages{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    font-size: 20px;
}
.pages span{
    color:white;
    width:35px;
    height:35px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    background:#383838;
}
/* Section info */
.info .section-title {
  margin-bottom: 50px;
  text-align: center;
}

.info .row-section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  
  
}
.info .row-section .column{
    margin-bottom:27px;
}
.info .column::before {
  content: "";
  background: -webkit-gradient(
    linear,
    left top, left bottom,
    from(#7663690a),
    color-stop(27%, #76636936),
    color-stop(55%, #00000040),
    to(#000000a8)
  );
  background: -o-linear-gradient(
    #7663690a 0%,
    #76636936 27%,
    #00000040 55%,
    #000000a8 100%
  );
  background: linear-gradient(
    #7663690a 0%,
    #76636936 27%,
    #00000040 55%,
    #000000a8 100%
  );
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  display: block;
  z-index: 0;
  position: absolute;
  border-radius: 6px;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  -ms-border-radius: 6px;
  -o-border-radius: 6px;
}
.info .column {
  width: 24%;
  height: 260px;
  display: block;
  color: #fff;
  border-radius: 6px;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  -ms-border-radius: 6px;
  -o-border-radius: 6px;
  transition: 0.3s;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  position: relative;
}
.info .column:hover {
  -webkit-transform: translateY(-10px);
      -ms-transform: translateY(-10px);
          transform: translateY(-10px);
}
.info .column .column-inner {
  width: 100%;
  height: 100%;
  position: relative;
  padding: 16px;
}
.info .info-img {
  width: 100%;
  width: 100%;
  position: absolute;
  z-index: -1;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  left: 0;
  bottom: 0;
  border-radius: 6px;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  -ms-border-radius: 6px;
  -o-border-radius: 6px;
}
.info .info-caption {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.info .info-caption .caption-top span {
  font-size: 11px;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 12px;
  display: inline-block;
  padding: 4px 8px;
}
.info .info-caption .caption-bottom h4 {
  font-size: 18px;
}
.info .info-caption .caption-bottom .icons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 16px;
}
.info .info-caption .caption-bottom .icons .like{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;

}
.info .info-caption .caption-bottom .icons .like > * + *{
    margin-left:4px;
}
.info .info-caption .caption-bottom .icons .like div{
    padding:6px 8px;
    background:transparent;
    border-radius:12px;
}
.info .info-caption .caption-bottom .icons .like div:hover{
    background:rgba(255, 255, 255, 0.3);
}

.info .info-caption .caption-bottom .icons .like .like-icon.active{
    background:rgba(255, 255, 255, 0.3);
}
.info .info-caption .caption-bottom .icons .like .dislike-icon.active{
    background:rgba(255, 255, 255, 0.3);
}

.info .info-caption .caption-bottom .icons .like .like-icon.active svg{
    fill: #31e140;
}
.info .info-caption .caption-bottom .icons .like .dislike-icon.active svg{
     fill: #fc3a3a;
}
.info .info-caption .caption-bottom .icons .like div svg{
    display:block;
}

.info .info-caption .caption-bottom .icons .view span {
  font-size: 14px;
  font-weight: 700;
}

.info .info-btn {
  margin-top: 24px;
  text-align: center;
}
.info .info-btn a {
  display: inline-block;
  color: white !important;
  padding: 10px 20px;
  font-size: 15px;
  border-radius: 4px;
  border: none;
  -webkit-transition: 0.3s ease;
  -o-transition: 0.3s ease;
  transition: 0.3s ease;
  background-color: #494949;
}
.blog-full-img{border-radius:20px;object-fit:cover}
.info .info-btn a:hover {
  opacity: 0.8;
}

@media (max-width: 992px) {
  .info .column {
    width: 49%;
  }
}

@media (max-width: 576px) {
  .info .column {
    width: 100%;
  }
}