@import url('https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Staatliches&display=swap');

:root{
  --accent-color: #B5F1CC;
  --extra-color: #da3175;
  --hover-color: #ff0066;
  --white: #fff;
  --black: #060606;
  --transition: 0.4s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

body{
  direction: ltr;
  font-family: 'Raleway', sans-serif !important;
  font-size: 17px;
  margin: 0;
  padding: 0px;
}

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

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

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

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

.section{
  padding:  57px 0;
}

.title{
  color: var(--hover-color);
  font-weight: 600;
  margin-bottom: 30px;
  text-align: end;
}

.slider{
  direction: ltr !important;
}

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

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

.header-logo-img > img{
  width: 70px;
  height: 70px;
}

.header-logo-title{
  transition: var(--transition);
  text-transform: uppercase;
  font-size: 24px;
}

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

.container-fluid{
  gap: 10px;
}

.navbar{
  background-color: var(--white);
  box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.12);
}

.catalog{
  position: relative;
}

.dropdown-toggle{
  outline: none;
  border: none;
  background-color: transparent;
  display: flex;
  flex-direction: row;
  gap: 7px;
  align-items: center;
}

.navbar-nav{
  gap:  15px;
}

.nav-item{
  color: var(--black);
  transition: var(--transition);
}

.dropdown-item{
  display: inline-block;
  cursor: pointer;
}

.dropdown-item > a{
  transition: var(--transition);
  color: var(--black);
}

.dropdown-item:hover > a,
.dropdown-item:focus > a,
.nav-item:hover .nav-link,
.nav-item:focus .nav-link{
  transform: scale(1.01);
  color: var(--hover-color);
  background-color: transparent;
}

.dropdown-item:hover,
.dropdown-item:focus{
  background-color: transparent;
}

.ofc-btn-close{
  background: transparent;
  border: none;
  margin-left: auto;
  color: var(--extra-color);
  transition: var(--transition);
}

.ofc-btn-close:hover,
.ofc-btn-close:focus{
  color: var(--hover-color);
}

.dropdown-toggle{
  margin: 0 auto;
}

.dropdown-item > a{
    white-space: normal;
}

  .dropdown-menu{
    width: 300px;
  }

.hero-wr{
    position: relative;
    overflow: hidden;
    height: 600px;
    box-shadow: 0px 34px 27px -30px rgba(0, 0, 0, 0.15);
}

.bg-box{
    position: absolute;
    top: 0;
    left: 0;
    fill: var(--accent-color);
    width: 50vmax;
    z-index: -1;
    animation: move 20s ease-in-out infinite;
    transform-origin: 50% 50%;
}

.hero-box{
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
    justify-content: center;
}

.hero-store,
.site-title{
  font-weight: 600;
  color: var(--black);
  text-shadow: -1px 0 white, 0 1px white, 1px 0 white, 0 -1px white;
  word-break: break-all;
}

.site-title{
  font-size: 32px;
  font-size: 48px;
  text-align: center;
  text-transform: uppercase;
}

.modal-body{
    padding: 3px;
    background: black;
    border-radius: 6px;
}

.video-container{
  width: 100%;
  height: 600px;
  border-radius: 6px;
  overflow: hidden;
}

.video-player{
  width: 100%;
  height: 100%;
  object-fit: cover;
  padding-bottom: 25px;
}

.btn-play{
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 50px;
    height: 50px;
    background-color: var(--extra-color);
    color: #fff;
    border-radius: 50%;
    position: relative;
    z-index: 6;
    -webkit-transition: all .4s ease;
    transition: all .4s ease;
    border: none;
    outline: none;
}

.btn-play::before{
  content: " ";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  color: var(--extra-color);
  border-radius: 50%;
  -webkit-box-shadow: 0 0 0 0 currentColor;
  box-shadow: 0 0 0 0 currentColor;
  -webkit-animation: button-ripple 3s infinite;
  animation: button-ripple 3s infinite;
  opacity: .6;
  z-index: -1;
  animation-delay: .9s;
}

.btn-play::after{
    content: " ";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  color: var(--extra-color);
  border-radius: 50%;
  -webkit-box-shadow: 0 0 0 0 currentColor;
  box-shadow: 0 0 0 0 currentColor;
  -webkit-animation: button-ripple 3s infinite;
  animation: button-ripple 3s infinite;
  opacity: .6;
  z-index: -1;
  animation-delay: .3s;
}

.modal-cls{
  background: transparent;
  border: none;
  outline: none;
  color: aliceblue;
  cursor: pointer;
  display: block;
  transition: var(--transition);
  margin-left: auto;
  margin-right: 10px;
}

.modal-cls:hover,
.modal-cls:focus{
  color: var(--extra-color);
}

.modal-cls > svg{
  width: 25px;
  height: 25px;
}

.au-container{
  position: relative;
}

.au-img-box{
  display: none;
}


.au-wr{
  min-height: 450px;
  background-color: #fafafa;
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: center;
  justify-content: center;
  box-shadow: 0 26px 58px 0 rgba(0, 0, 0, .22), 0 5px 14px 0 rgba(0, 0, 0, .18);
}

.au-title{
  margin-bottom: 22px;
}

.progress{
  margin-bottom: 15px;
}

.progress-1{
  background-color: transparent;
  background-image: linear-gradient(220deg, #07b787 0%, #7ed500 100%);
  border-radius: 10px 10px 10px 10px;
}

.progress-2{
  background-color: transparent;
  background-image: linear-gradient(90deg, #f96933 0%, #fad470 100%);
  border-radius: 10px 10px 10px 10px;
}

.progress-3{
  background-color: transparent;
  background-image: linear-gradient(90deg, #53f8a2 0%, #03cffc 100%);
  border-radius: 10px 10px 10px 10px;
}

.progress-4{
  background-color: transparent;
  background-image: linear-gradient(220deg, #db2ca0 0%, #e43c3c 100%);
  border-radius: 10px 10px 10px 10px;
}

.product-img{
  width: 100%;
  height: 230px;
  display: block;
}

.product-img > img{
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: var(--transition);
}

.page-img-wrapper:hover > img,
.page-img-wrapper:focus > img,
.product-img:hover > img,
.product-img:focus > img{
  transform: scale(1.05) rotate(2deg);
  opacity: .8;
}

.boxa-dlya-good{
  background-color: #fafafa;
  justify-content: space-around;
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: center;
  box-shadow: 0 26px 58px 0 rgba(0, 0, 0, .22), 0 5px 14px 0 rgba(0, 0, 0, .18);
  height: 100%;
}

.product-title{
  color: var(--black);
  font-weight: 600;
  transition: var(--transition);
  text-align: center;
}

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

.boxa-dlya-opisani{
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 15px;

}

.product-code > span{
  font-weight: 600;
}

.product-price > span{
  font-weight: 600;
  color: var(--extra-color);
}

.product-row{
  flex-direction: column-reverse;
}

.boxa-dlya-good > div{
  flex: 1;
}

.boxa-dlya-info{
  text-align: center;
}

.gallery-item{
  width: 100%;
  height: 300px;
}

.gallery-item > img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.gallery-item:hover > img,
.gallery-item:focus > img{
  transform: scale(1.05) rotate(2deg);
  opacity: .8;
}

.comments-item{
  padding: 21px;
}

.comments-box{
  border-radius: 10px 10px 10px 10px;
  box-shadow: 9px 11px 14px 0 rgba(0,0,0,.1);
  padding: 15px;
  min-height: 330px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  justify-content: space-between;
}

.rating{
  color: #fec42d;
}

.author-box{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
}

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

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

.slick-dots li.slick-active button:before {
  color: var(--hover-color);
}

.form{
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contact-page-form-box > input,
.contact-page-form-box > textarea,
.input-u48370518,
.textarea-u48370518{
  width: 100%;
  background: linear-gradient(90deg, #f96933 0%, #fad470 100%);
  color: var(--white);
  border: none;
  padding: 15px;
}


.contact-page-form-box > input:focus-visible,
.contact-page-form-box > textarea:focus-visible,
.input-u48370518:focus-visible,
.textarea-u48370518:focus-visible{
  outline: none;
  border: none;
  background: linear-gradient(90deg, #f968337b 0%, #fad3708c 100%);
}


.contact-page-form-box > input::placeholder,
.contact-page-form-box > textarea::placeholder,
.input-u48370518::placeholder,
.textarea-u48370518::placeholder{
  color: var(--black);
}

.footer{
  padding: 57px 0;
  border-top: 1px solid #ccc;
}

.footer-wrapper{
  display: flex;
  flex-direction: row;
  gap: 15px;
  align-items: center;
  justify-content: center;
}

.footer-logo{
  display: flex;
  flex-direction: column;
  gap: 15px;
    height: 100%;
  align-items: center;
  justify-content: center;
}

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

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

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

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

.footer-privacy-box{
  display: flex;
  align-items: center;
  flex-direction: column-reverse;
  gap: 15px;
}

.footer-politik-privacy{
  text-align: center;
}

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

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

.rating > span{
  color: var(--black);
}

.page-img{
  padding: 15px;
}

.page-img > img{
  margin: 0 auto;
  object-fit: contain;
}

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

.page-main-box-description{
  padding: 15px;
}

.page-img-wrapper{
  width: 100%;
  height: 300px;
}

.page-img-wrapper > img{
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: var(--transition);
}

.related-item-box{
  background-color: #fafafa;
  justify-content: space-around;
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: center;
  box-shadow: 0 26px 58px 0 rgba(0, 0, 0, .22), 0 5px 14px 0 rgba(0, 0, 0, .18);
  height: 100%;
}

.related-box-content{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 15px;
  text-align: center;
}

.related-box-title{
  transition: var(--transition);
  font-weight: 600;
  color: var(--extra-color);
  font-size: 22px;
}

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

.dop-item > span{
  font-weight: 600;
}

.contact-box{
  height: 100%;
  display: flex;
  justify-content: space-between;
  flex-direction: column-reverse;
  gap: 15px;
}

.contact-page-item{
  background-color: #fafafa;
  justify-content: space-around;
  text-align: center;
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: center;
  box-shadow: 0 26px 58px 0 rgba(0, 0, 0, .22), 0 5px 14px 0 rgba(0, 0, 0, .18);
}

.contact-page-item a{
  word-break: break-all;
}

.contact-page-form-check{
  display: flex;
  flex-direction: row;
  gap: 10px;
}

.map{
  height: 100%;
}

.map > iframe{
  height: 100%;
}

.delimeter{
  margin: 20px auto;
  width: 80%;
}

.latest-news-box{
  background-color: rgba(255,255,255,0);
  box-shadow: 0px 10px 30px 0px rgba(0,0,0,0.1);
  display: flex;
  flex-direction: column;
  height: 100%;
  gap: 15px;
  padding:  15px;
}

.latest-news-img{
  width: 100%;
  height: 250px;
}

.latest-news-img > img{
  height: 100%;
  width: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.latest-news-box:hover > .latest-news-img > img,
.latest-news-box:focus > .latest-news-img > img{
  transform: scale(1.05) rotate(2deg);
  opacity: .8;
}

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

  .author-box{
    flex-direction: row;
  }

}

@media (max-width: 991px){
.boxa-dlya-good{
  flex-direction: column !important;
}
}

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

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

   .au-img-box{
    display: block;
    position: absolute;
    width: 80%;
    height: 100%;
    top: 50px;
    z-index: -1;
  }

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

  .au-col{
    padding-left: 0;
    padding-right: 0;
  }

  .product-row{
    flex-direction: column;
  }

  .delimeter{
    display: none;
  }
}


@media(min-width: 1200px){
  .modal-dialog{
    max-width: 1000px;
  }

  .form{
    width: 80%;
    margin: 0 auto;
  }
}

@keyframes move {
  0%   { transform: scale(1)   translate(10px, -30px); }
  38%  { transform: scale(0.8, 1) translate(80vw, 30vh) rotate(160deg); }
  40%  { transform: scale(0.8, 1) translate(80vw, 30vh) rotate(160deg); }
  78%  { transform: scale(1.3) translate(0vw, 50vh) rotate(-20deg); }
  80%  { transform: scale(1.3) translate(0vw, 50vh) rotate(-20deg); }
  100% { transform: scale(1)   translate(10px, -30px); }
}

@keyframes button-ripple {
  70% {
  -webkit-box-shadow: 0 0 0 15px currentColor;
  box-shadow: 0 0 0 15px currentColor;
  opacity: 0;
}

100% {
  -webkit-box-shadow: 0 0 0 0 currentColor;
  box-shadow: 0 0 0 0 currentColor;
  opacity: 0;
}
}