@import url('https://fonts.googleapis.com/css2?family=Inter+Tight:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Corinthia:wght@400;700&display=swap');

:root{
  --hover: #CAA462;
  --white: #fff;
  --body-color: #949494;
  --black: #060606;
  --transition: 0.4s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

body{
  direction: ltr;
  font-family: 'Inter Tight', sans-serif !important;
  font-size: 17px;
  margin: 0;
  padding: 0px;
  background-color: #151515;
  background-image: url('common/bg.png');
  background-position: left top;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

a{
  text-decoration: none;
  color: var(--extra-bg);
  transition: var(--transition);
}

a:hover,
a:focus{
  color: var(--hover-color);
}

img{
  display: block;
  max-width: 100%;
}

i{
  color: var(--white);
}

.sl-rel,
.slider{
  direction: ltr !important;
}

.section{
  padding:  61px 0;
}

.title{
  color: #848484;
  font-size: 30px;
  font-weight: 400;
  font-style: normal;
  line-height: 40.3px;
  letter-spacing: 0.6px;
  position: relative;
  padding-bottom: 30px;
  text-align: center;
}



.nav-section{
  padding-top: 47px;
  padding-top: 30px;
}

.header-wrapper{
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 7px;
}

.header-logo-img{
  display: flex;
  align-items: center;
  justify-content: center;
}

.header-logo-title{
  text-transform: uppercase;
  font-weight: 600;
  color: var(--white);
  transition: var(--transition);
}

.header-wrapper:hover > .header-logo-title,
.header-wrapper:focus > .header-logo-title{
  color: var(--hover);
}

.header-logo-img > img{
  width: 80px;
  height: 80px;
  object-fit: contain;
}

.btn{
  border: none;
  outline: none;
  transition: var(--transition);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-cl{
  color: var(--body-color);
  transition: var(--transition);
  background-color: transparent;
  border: none;
  outline: none;
}

.offcanvas-header {
  justify-content: end;
}

.btn-cl:hover,
.btn-cl:focus{
  border: none;
  outline: none;
  color: var(--hover);
}

.btn:hover,
.btn:focus{
  border: 1px solid var(--white);
}

.offcanvas{
  color: #949494;
  background-color: #222121fa;
  padding: 30px;
}

.catalog-item > a,
.nav-item{
  display: inline-block;
  width: 100%;
  text-align: start;
}

.catalog-item > a,
.nav-link{
  color: #949494;
  transition: var(--transition);
}

.catalog-item:hover > a,
.catalog-item:focus > a,
.nav-item:hover > .nav-link,
.nav-item:focus > .nav-link{
  color: var(--hover);
}

.catalog{
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.catalog-item{
  text-align: start;
}

.delimeter{
  padding: 30px 0;
}

.hero{
  background: url('portrait/snapshot_header_67cefe3f301908.56630445.jpg');
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  clip-path: polygon(49% 11%, 100% 0, 100% 100%, 0 100%, 0 0);
  position: relative;
}

.hero::after{
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  content: '';
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6));
}

.hero-text{
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 100px 0 50px 0;
  font-size: 20px;
  color: var(--white);
}

.employes-area{
  padding: 30px 0;
}

.employes-blox{
  width: 100%;
  height: 100px;
  background-color: #282828;
  border-radius: 5px;
  padding:  16px;
}

.employes-blox > img{
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card{
  perspective: 1000px;
  position: relative;
  width: 100%;
  height: 300px;
  background-color: #282828;
  margin-bottom: 13px;
  transition: var(--transition);
}

.front > img{
  width: 100%;
  height: 200px;
  object-fit: contain;
}

.front, .back{
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 2s;
  backface-visibility: hidden;
  padding: 16px;
}

.back{
  transform: rotateY(180deg);
}

.card:hover,
.card:focus{
  filter: drop-shadow(2px 4px 6px var(--hover));
}

.card:hover .front,
.card:focus .front{
  transform: rotateY(180deg);
}

.card:hover .back,
.card:focus .back{
  transform: rotateY(360deg);
}

.content{
  color: #969696;
  font-size: 14px;
  text-align: center;
  padding: 16px;
}

.price-box{
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  color: #969696;
  font-weight: 400;
  font-style: normal;
  line-height: 1.44em;
  letter-spacing: 0px;
  margin-bottom: 13px;

}

.bi-star,
.bi-star-fill,
.bi-star-half{
  color: #fdbc32;
  font-size: 14px;
}

.good-texta-corobka{
  padding: 0 15px 15px 15px;
}

.product-title{
  margin-bottom: 13px;
  transition: var(--transition);
  text-align: center;
  color: var(--white);
}

.product-title-link:hover .product-title,
.product-title-link:focus .product-title{
  color: var(--hover);
}

.product-box{
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.blog-section{
  background: url(static/images/vaporLayer_2025-03-05_17-580.png) no-repeat;
  background-size: cover;
  background-position: center;
}

.blog-img > img{
  width: 100%;
  height: 250px;
  object-fit: cover;
  margin-bottom: 13px;
}

.blog-date{
  color: var(--hover);
  margin-bottom: 13px;
}

.blog-author{
    color: #969696;
    margin-bottom: 13px;
}

.blog-title{
  color: var(--white);
}

.ho-item{
  padding: 13px;
  text-align: center;
}

.ho-icon{
  color: #ADADAD;
  margin-bottom: 13px;
}

.ho-icon > svg{
  width: 40px;
  height: 40px;
}

.ho-title{
  color: #CAA462;
  margin-bottom: 13px;
}

.ho-text{
  color: #969696;
}

.comment-item{
  padding: 0 16px;
  min-height: 350px;
}

.comments-section{
  background-color: #151515;
}

.comment-box{
  color: #969696;
  background-color: #252525;
  padding: 28px;
  margin-bottom: 25px;
  position: relative;
  min-height: 250px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.comment-box::after{
  position: absolute;
  left: 19px;
  bottom: -5px;
  width: 15px;
  height: 15px;
  content: '';
  background: #252525;
  transform: rotate(45deg);
}

.quote{
  color: var(--hover);
}

.quote > svg{
  width: 20px;
  height: 20px;
}

.author-box{
  display: flex;
  align-items: center;
  flex-direction: row;
  gap: 8px;
}

.author-img{
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
}

.author-img > img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.author-prof{
  color: var(--hover);
}

.author-name{
  color: var(--white);
}

.form{
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: var(--body-color);
}

.contact-page-form-box > input::placeholder,
.contact-page-form-box > textarea::placeholder,
.input-control-field--control::placeholder,
.textarea-control-field--control::placeholder{
  color: var(--body-color);
}

.contact-page-form-box > input,
.contact-page-form-box > textarea,
.input-control-field--control,
.textarea-control-field--control{
  width: 100%;
  padding: 16px;
  border: 1px solid var(--hover);
  border-radius: 5px;
  background: transparent;
}

.contact-page-form-box > input:focus-visible,
.contact-page-form-box > textarea:focus-visible,
.input-control-field--control:focus-visible,
.textarea-control-field--control:focus-visible{
  outline: none;
}

.com-form-checkbox,
.contact-page-form-check{
  color: #949494;
}

.privacy{
  transition: var(--transition);
  color: var(--white);
}

.privacy:hover,
.privacy:focus{
  color: var(--hover);
}

.footer{
  background-color: #151515;
  clip-path: polygon(49% 11%, 100% 0, 100% 100%, 0 100%, 0 0);
  padding: 101px 0;
}

.footer-logo-img{
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-logo-img > img{
  width: 80px;
  height: 80px;
  object-fit: contain;
}

.footer-wrapper{
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
}

.footer-wrapper:hover > .footer-logo-title,
.footer-wrapper:focus > .footer-logo-title{
  color: var(--hover);
}

.footer-logo-title{
  text-transform: uppercase;
  font-weight: 600;
  color: var(--white);
  transition: var(--transition);
}

.footer-box{
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.footer-privacy-box{
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  justify-content: center;
}

.footer-politik-privacy > a{
  color: var(--body-color);
  transition: var(--transition);
}

.footer-politik-privacy:hover > a,
.footer-politik-privacy:focus > a{
  color: var(--hover);
}

.f-p-w{
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.page{
  background-color: #151515;
  clip-path: polygon(49% 11%, 100% 0, 100% 100%, 0 100%, 0 0);
  padding: 100px 0;
  flex-direction: column;
  color: var(--white);
}

.page-d{
  background-color: #151515;
}

.page-img{
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-img{
  margin: 0 auto;
}

.page-description{
  display: flex;
  flex-direction: column;
  gap: 16px;
  justify-content: center;
  align-items: center;
  height: 100%;
}

.price-value{
  color: var(--hover);
  font-weight: 600;
  font-size: 20px;
}

#market-ejaOEe-cart-items > div > div > div > div.market-ejaOEe-cart-items-conten-box > div.market-ejaOEe-quantity > span{
  color: #151515;
}

.rating{
  display: flex;
  align-items: center;
  gap: 7px;
}

.sl-item{
  padding: 16px;
}

.related-item-box{
  color: #969696;
  background-color: #252525;
  position: relative;
  min-height: 450px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.page-img-wrapper{
  padding: 16px;
  transition: var(--transition);
}

.page-img-wrapper:hover > .rel-img,
.page-img-wrapper:focus > .rel-img{
    filter: drop-shadow(2px 4px 6px var(--hover));
}

.rel-img{
  width: 100%;
  height: 250px;
  object-fit: contain;
  transition: var(--transition);
}

.related-box-title{
  color: var(--white);
  text-align: center;
  display: inline-block;
  margin-bottom:  16px;
  width: 100%;
  transition: var(--transition);
}

.related-box-title:hover,
.related-box-title:focus{
  color: var(--hover);
}

.related-box-content{
  padding: 0 16px 16px;
}

.contact{
  background-color: #151515;
  clip-path: polygon(49% 11%, 100% 0, 100% 100%, 0 100%, 0 0);
  padding: 100px 0;
  flex-direction: column;
}

.contact-page-item{
  color: #969696;
  background-color: #252525;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 16px;
  border-radius: 5px;
}

.contact-box{
  display: flex;
  flex-direction: column;
  gap: 16px;
  height: 100%;
  justify-content: center;
}

.map{
  border-radius: 5px;
  overflow: hidden;
  height: 350px;
}

.map > iframe{
  height: 100%;
}

.contact-val{
  color: var(--white);
  transition: var(--transition);
  cursor: pointer;
}

.contact-val:hover,
.contact-val:focus{
  color: var(--hover);
}

.contact-val-adres{
    color: var(--white);
}
/* ....................................................................... */

@media (min-width: 768px){
  .row-box{
    flex-direction: row-reverse;
  }
}

@media (max-width: 991px){

}

@media (min-width: 992px){
  .section{
    padding:  101px 0;
  }

  .row-box-lg{
    flex-direction: row-reverse;
  }

  .footer-logo-title,
  .header-logo-title{
    font-size: 30px;
  }

  .wrapper{
    display: flex;
    flex-direction:  row;
    gap: 16px;
  }

  .product-row{
    justify-content: space-between;
    flex-direction: row-reverse;
  }

  .form{
    width: 80%; 
  }

  .footer-privacy-box{
    flex-direction: row-reverse;
  }

  .f-p-w{
    display: flex;
    flex-direction:  column;
    gap: 16px;
  }
  
  .page-img-wr{
    flex-direction: row-reverse;
  }
}


@media (min-width: 1200px){
}
