@import url('https://fonts.googleapis.com/css2?family=Asap+Condensed:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Viaoda+Libre&display=swap');

body{
    background-color: #180707;
    direction: ltr;
    font-family: 'Asap Condensed', sans-serif !important;
    font-size: 15px;
    margin: 0;
    padding: 0px;
    color: #afafaf;
}

h1, h2, h3, h4, h5{
  margin: 0;
  padding: 0;
}
.input-group_block--control{
  margin: 11px 0px;
  display: block;
  width: 100%;
  padding: 13px 11px;
  font-size: 15px;
  font-weight: 500;
  line-height:1.2;
  color: #212529;
  background-color: #fff;
  background-clip: padding-box;
  border: 2px dashed #ced4da;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 8px;
  transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}
.textarea-group_block--control{
  border: 2px dashed #ced4da;
  border-radius: 8px;
  padding:13px 11px;
  width: 100%;
  font-size: 500;
}
button{
  cursor: pointer;
}

a{
  text-decoration: none;
  color: inherit;
}

img{
  display: block;
  max-width: 100%;
}
 
.button-1 {
  letter-spacing: 2px;
  text-transform: uppercase;
  display: inline-block;
  text-align: center;
  font-weight: bold;
  padding: 11px  25px;
  border: 2px solid #f3e934;
  border-radius: 1px;
  position: relative;
  box-shadow: 0 2px 11px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.1);
  color: #f3e934;
  background-color: transparent;
  text-decoration: none;
  transition: 0.3s ease all;
  z-index: 1;
}

.button-1:before {
  transition: 0.5s all ease;
  position: absolute;
  top: 0;
  left: 50%;
  right: 50%;
  bottom: 0;
  opacity: 0;
  content: "";
  background-color: #f3e934;
  z-index: -1;
}

.button-1:hover,
.button-1:focus {
  color: white;
}

.button-1:hover:before,
.button-1:focus:before {
  transition: 0.5s all ease;
  left: 0;
  right: 0;
  opacity: 1;
}

.button-1:active {
  transform: scale(0.9);
}

.button-2 {
  padding: 11px 20px;
  color: white;
  border: none;
  border-radius: 29px;
  background-size: 200% 100%;
  background-image: linear-gradient(145deg, #ff53eb, #4b4bff, #5de7ff);
  box-shadow: 3px 3px 11px 2px #4b4bff, -3px -3px 11px 2px #ff53eb;
  transition: 0.5s;
}

.button-2:hover {
  background-position: 99%;
  box-shadow: 3px 3px 11px 2px #5de7ff, -3px -3px 11px 2px #4b4bff;
}

.button-2:active {
  transform: scale(0.8) rotate(5deg);
  box-shadow: 3px 3px 15px 3px #5de7ff, -3px -3px 15px 3px #4b4bff;
}

.button-3 {
  padding: 11px  22px;
  font-weight:800;
  border-radius: 15px;
  color: #fff6fb;
  letter-spacing: 0.3em;
  text-shadow: -2px 2px 5px #fd3084;
  background-color: transparent;
  border: 2px solid #feb1de;
  box-shadow: 0 0 0px 1px #f11271, 0 0 7px 2px #fd3084,
    inset 0 0 0px 1px #f11271, inset 0 0 7px 2px #fd3084;
  transition: 300ms;
}

.button-3:hover {
  box-shadow: 0 0 0px 2px #f11271, 0 0 7px 2px #fd3084,
    inset 0 0 0px 2px #f11271, inset 0 0 30px 2px #fd3084;
  text-shadow: 0 0 10px #fd3084;
  transform: translateY(-5px);
}

.button-3:active {
  box-shadow: 0 0 0px 2px #f11271, 0 0 25px 2px #fd3084,
    inset 0 0 0px 2px #f11271, inset 0 0 30px 2px #fd3084;
  transform: translateY(1px);
}

.button-4 {
  --color: #6512c4;
  font-family: inherit;
  display: inline-block;
  line-height: 2.5em;
  overflow: hidden;
  margin: 20px;
  z-index: 1;
  color: var(--color);
  border: 2px solid var(--color);
  border-radius: 7px;
  position: relative;
  padding: 8px 15px;
  background-color: rgb(119, 238, 226);
}

.button-4::before {
  position: absolute;
  content: "";
  background: var(--color);
  width: 150px;
  height: 200px;
  z-index: -1;
  border-radius: 50%;
}

.button-4:hover {
  color: white;
}

.button-4:before {
  top: 100%;
  left: 100%;
  transition: 0.3s all;
}

.button-4:hover::before {
  top: -30px;
  left: -30px;
}

.button-5 {
  color: rgb(35, 75, 83);
  background-color: rgb(217, 238, 242);
  background-image: linear-gradient(
    180deg,
    rgb(201, 194, 240) 30%,
    transparent 70%
  );
  background-repeat: no-repeat;
  background-position: center 45%;
  background-size: 100% 200%;
  padding: 8px 15px;
  border-radius: 25px;
  border: none;
  box-shadow: rgba(0, 0, 0, 0.2) 0px  54px 43px -7px;
  position: relative;
  transition: all 0.5s ease;
  outline: none;
}

.button-5::before,
button::after {
  content: "";
  inset: 0; 
  border-radius: 27px;
}

.button-5::before {
  background-image: radial-gradient(
      ellipse,
      rgba(204, 246, 255, 0.8) 20%,
      transparent 50%,
      transparent 200%
    ),
    linear-gradient(
      90deg,
      #404040 -10%,
      transparent 30%,
      transparent 70%,
      #404040 110%
    );
  box-shadow: inset 0 0.25em 0.75em rgba(0, 0, 0, 0.8),
    inset 0 -0.05em 0.2em rgba(255, 255, 255, 0.4),
    inset 0 -1px 3px rgba(25, 196, 230, 0.75);
  background-blend-mode: overlay;
  background-repeat: no-repeat;
  background-size: 200% 80%, cover;
  background-position: center 220%;
  mix-blend-mode: overlay;
  filter: blur(0);
}

.button-5::after {
  background: linear-gradient(
    180deg,
    rgba(213, 204, 255, 0.726),
    rgba(92, 74, 181, 0.75) 40%,
    transparent 80%
  );
  top: 0.075em;
  left: 0.75em;
  right: 0.75em;
  bottom: 1.4em;
  filter: blur(1px);
  mix-blend-mode: screen;
}

.button-5:hover,
.button-5:active,
.button-5:focus {
  outline: none;
  box-shadow: rgba(17, 12, 46, 0.15) 0px 43px  94px 0px;
  background-position: center calc(45% - 0.75em);
}



.section{
  padding: 62px 0;
}

.title{
  font-size: 22px;
  font-weight: ;500
  margin-bottom: 25px;
  text-align: center;
  color: #ffffff;
}

.subtitle{
  font-size: 20px;
  text-align: center;
  font-weight: 500;
  margin-bottom: 25px;
  color: #ffffff;
}

.date{
  color: #666666;
  font-size: 13px;
}

.wrapper{
  display: flex;
  flex-direction: column-reverse;
  gap: 11px;
}
.pay-text{
  word-break: break-word;
}

.pay-text ul,.pay-text li,
.pay-text ol,.pay-text li {
  margin-bottom: 4px;
}
.pay-text ul,
.pay-text ol {
  margin-bottom: 15px;
  padding-left:  20px;
  list-style: inside;
}

.pay-text  h1{
    font-size: 29px;
    font-weight: 800;
    margin-bottom: 25px;
}

.pay-text  h2{
    font-size: 27px;
    font-weight: 500;
    margin-bottom: 25px;
}

.pay-text  h5,
.pay-text  h4,
.pay-text  h3{
  font-weight: 500;
  font-size: 27px;
  margin-bottom: 25px;
}

.pay-text p{
    margin-bottom:  8px;
    text-indent: 3ch;
}
.pay-text  a,.pay-text  table{
color: inherit;
}


.gallery-wrapper{
  display: flex;
  justify-content: center;
  flex-direction: column;
}

.gallery-list{
  display: flex;
  flex-direction: row-reverse;
}

.gallery-item{
  flex: 1;
  list-style: none;
}

.gallery-item img{
    width: 100%;
    height:  174px;
    object-fit: cover;
    filter: saturate(0.4);
    transition: 0.5s;
}

.gallery-item img:hover,
.gallery-item img:focus{
  filter: saturate(1)
}

.header-logo{
  display: flex;
  flex-direction: row;
  gap: 8px;
  align-items: center;
  justify-content: center;
  padding: 27px 0;
  color: #ffffff;
}

.header-logo-img-box img{
  width: 54px;
  height: 54px;
}

.header-logo-title{
  text-align: center;
  font-size: 29px;
  font-weight: 500;
  text-transform: uppercase;
}

.section-nav{
  background-color: #180707;
}

.navbar{
  background-color: #180707;
}

.navbar-toggler{
  width: auto;
  border: none;
  color: #818181;
}

.navbar-toggler:hover,
.navbar-toggler:focus,
.navbar-toggler:active{
  box-shadow: none;
}

.bi-list{
  transition: color 0.5 ease-out;
}

.bi-x-square:hover,
.bi-x-square:focus,
.bi-list:hover,
.bi-list:focus{
  color: #818181;
}

.ofc-btn-close{
  background: transparent;
  border: none;
}

.bi-x-square{
  color: #FF6F91;
    transition: color 0.5 ease-out;
}

.offcanvas-header {
  justify-content: end;
  align-items: baseline;
}

.offcanvas-body,
.offcanvas{
  display: flex;
  background-color: #252525d6;
  color: #fff;
}

.pages-link-list{
  display: flex;
  flex-direction: column;
  gap: 15px;
  flex: 1;
  padding: 0;
  margin: 0;
  align-items: center;
  justify-content: center;

}

.pages-link-item,
.pages-nav-item{
  list-style: none;
  transition: 0.5s ease-out;
}

.pages-link-item:hover,
.pages-link-item:focus,
.pages-nav-item:hover,
.pgaes-nav-item:focus{
  transform: scale(1.1);
}

.pages-nav-list{
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.navbar-nav{
  display: flex;
  flex-direction: column;
  gap: 15px;
}


.nav-btn{
  background-color: transparent;
  border: none;
  color: #ffffff;
  text-transform: uppercase;
}

.nav-item,
.nav-btn{
  transition: 0.5s ease-out;
  text-transform: uppercase;
  color: #fff;
}

.nav-item:hover,
.nav-item:focus,
.nav-btn:hover,
.nav-btn:focus{
  color: #FF6F91;
  transform: scale(1.1);
}



.slick-next{
  right:  11px;
  z-index: 3;
}
.slick-prev{
  left:  11px;
  z-index: 3;
}

.slick-track{
  display: flex;
}

.slider-item{
  flex: 1;
  list-style: none;
  position: relative;

}

.slider-item img{
    width: 100%;
    height: 249px;
    object-fit: cover;
    transition: 0.5s;

}

.slider-description-box{
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  z-index: 3;
  background: linear-gradient(to bottom,rgba(255,255,255,0) 30%,#000 100%);
}

.slider-description{
  position: absolute;
  bottom: 11px;
  left: 11px;
  right: 11px;
  z-index: 3;
}
.col-flexHKE{
  display: flex;
  flex-direction: column;
}
.slider-title{
  color: #fff;
  text-align: center;
  font-size: 18px;
}

.slider-date-box{
  display: flex;
  flex-direction:  row-reverse;
  gap: 8px;
  justify-content: center;
  color: #ffffff;
  align-items: center;
}

.bi-dash{
  transform: rotate(90deg);
}


.sidebar-name{
  position: relative;
  margin-bottom: 27px;
}

.sidebar-name span{
  position: relative;
  z-index: 4;
  padding-right:  8px;
  padding-top:  4px;
  padding-bottom:  4px;
  background-color: #180707;
}

.sidebar-name::after{
  position: absolute;
  content: "";
  width: 100%;
  height: 0;
  top: 50%;
  bottom: 0;
  left: 0;
  border: none;
  border-bottom: 2px solid;
  z-index: 1;
  opacity: .5;
}

.author-photo{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 260px;
  height: 200px;
  overflow: hidden;
  margin-bottom: 15px;
  margin-left: auto;
  margin-right: auto;
}

.author-photo img{
  object-fit: cover;
}

.author-quote{
  text-align: center;
}


.tags{
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  padding-left: 0;
  justify-contenet: center;
  align-items: center;
}

.tags-item{
  list-style: none;
  transition: 0.5s ease-out;
}

.tags-item:hover,
.tags-item:focus{
  transform: scale(1.02);
}



.main-list{
  display: flex;
  flex-direction: column;
  gap:  20px;
  padding: 0;
}

.main-item{
  list-style: none;
  display: flex;
  background-color: #181717d1;
  border-radius: 2px;
  flex: 1;
}

.main-img-box{
  display: flex;
  justify-content: center;
  align-items: center;
  padding:  15px;
  flex: 1;
}

.main-img-box img{
  max-width: 100%;
  width: 100%;
  height: 349px;
  object-fit: contain;
}

.main-img{
  transition: 0.5s ease-out;
}

.main-img:hover,
.main-img:focus{
  opacity:  0.6;
  transform: scale(1.02);
}

.main-content-box{
  padding:  15px;
  flex: 1;
}

.main-category{
  color: #FF6F91;
  margin-bottom: 8px;
}

.main-title{
  color: #fff;
  transition: 0.5s ease-out;
  margin-bottom: 15px;
}

.main-title:hover,
.main-title:focus{
  color: #FF6F91;
  transform: scale(1.02);
}

.main-content{
  margin-bottom: 15px;
}

.main-btn-more > div{
  color: #FF6F91;
  transition: 0.5s ease-out;
}

.main-btn-more > div:hover,
.main-btn-more > div:focus{
  transform: scale(1.02);
}


.intrest-ads-list{
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.intrest-ads-list > a{
  flex: 1;
}

.intrest-ads{
  list-style: none;
  position: relative;
  transition: 0.5s ease-out;
  display: flex;
  flex-direction: row;
  gap:  15px;
}

.interest-ads-img{
  flex: 0.5;
}

.interest-ads-description-box{
  flex: 1;
}

.interest-img{
  width: 100%;
  height:  111px;
  object-fit: contain;
}

.interest-ads-description{
  transition: 0.5s ease-out;
  font-size: 13px;
}

.intrest-ads:hover,
.intrest-ads:focus{
  transform: scale(1.03);
  color: #FF6F91;
}


.about-us{
  background: url(media/mask-bg-1366x7680.png) no-repeat;
  background-position: center;
  background-size: cover;
}

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

.au-box{
  flex: 1;
}

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

.col{
  padding: 8px;
}

.au-box-img{
  overflow: hidden;
}

.au-box-img img{
  transition: 0.5s ease-out;
}

.au-box-img img:hover,
.au-box-img img:focus{
  opacity:  0.6;
}


.subscribe-section{
  padding: 38px 0;
}

.newsletter-form{
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding: 20px;
}

.newsletter-input{
  background-color: #181717d1;
  padding: 8px 11px;
  border-radius:2px;
  border:  2px dashed #363535;
  color: #FF6F91;
}

.newsletter-input:focus-visible{
    border: 2px dashed #FF6F91;
    outline: none;
}


.footer{
  background-color: #00000005;
  padding: 27px 0;
}

.footer-container{
  display: flex;
  flex-direction: column;
  gap:  15px;
}

.footer-privacy-wr{
  display: flex;
  flex-direction: column;
  gap:  15px;
  margin-bottom: 11px;
  justify-content: center;
  align-items: center;
}

.footer-privacy{
  transition: color 0.5s ease-out;
  color: #818181;
}

.footer-privacy:hover,
.footer-privacy:focus{
  color: #FF6F91;
}

.footer-text{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-top: 11px;
  color: lightgrey;
}

.category-item{
  text-align: center;
 
}

.page-title{
  text-align: center;
  margin-bottom: 15px;
  color: #FF6F91;
}

.page-author{
  display: flex;
  justify-content: center;
  align-items: center;
    margin-bottom: 15px;
}

.page-img-box{
  display: flex;
  justify-content: center;
  align-items: center;
  img{
    object-fit: contain;
    width: 100%;
    height: 371px;

  }
}

.page-main-content{
  background-color: #181717d1;
  padding:  27px; 
  text-align: start;
}
.mar-boJk{
 margin-bottom: 27px;
}
.price-box{
  padding: 15px;
  display: flex;
  justify-content:  end;
}

.price-box span{
  color: #FF6F91;
}

.page-form{
  text-align:  end;
}

.page-form-wr{
  display: flex;
  flex-direction:  column;
  gap: 15px;
}

.page-form-i{
  display: flex;
  flex-direction:  column;
  gap: 15px;
}
.page-form-item{
  height: 100%;
}

.page-form-item input,
.page-form-item textarea{
  width: 100%;
  background-color: #181717d1;
  padding: 8px 11px;
  border-radius: 2px;
  border:  2px dashed #363535;
  color: #FF6F91;
}

.page-form-item input:focus-visible,
.page-form-item textarea:focus-visible{
    border: 2px dashed #FF6F91;
    outline: none;
}

.page-form-checkbox{
  display: flex;
  gap: 11px;
  margin-top: 15px;
}

.section-author{
  padding: 15px 0;
}
.page-author-box{
  border-radius:0%;
  overflow: hidden;
  margin: 0 auto;
  width: 111px;
  height: 111px;
  display: flex;
}

.page-author-name{
  color: #FF6F91;
}

.page-author-box img{
  object-fit: cover;
  width: auto;
}


.page-author-desc-box{
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.related-list{
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.related-item{
  flex: 1;
  display: flex;
  flex-direction: column;
  background-color: #181717d1;
  border-radius:2px;
}

.related-item > div{
  flex: 1;
}

.page-related-img-box{
  display: flex;
  justify-content: center;
  align-items: center;
  padding:  15px;
  flex: 1;
}

.page-related-img-box img{
  max-width: 100%;
  width: 100%;
  height: 249px;
  object-fit: contain;
}

.related-img{
  transition: 0.5s ease-out;
}

.related-img:hover,
.related-img:focus{
  opacity:  0.6;
  transform: scale(1.02);
}

.related-descr-box{
  padding: 15px;
  text-align: end;
}

.related-title{
  color: #FF6F91;
  margin-bottom: 15px;
  transition: 0.5s ease-out;
}

.related-title:hover,
.related-title:focus{
  transform: scale(1.03);
}


.contact{
  display: flex;
  margin-top:  27px;
  flex-direction: column;
    gap: 15px;

}

.contact-wr{
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-item{
  padding: 16px;
  border-radius: 2px;
  background-color: #181717d1;
  display: flex;
  flex-direction: column;
  gap: 27px;
  align-items: center;
  word-break: break-word;
}

.contact-name{
  flex: 0.5;
}

.contact-text{
  font-weight: 500;
  color: #FF6F91;
  flex: 1;
}

.contact-item svg{
  width: 27px;
  height: 27px;
}


@media (min-width: 480px){
.contact-me-wr{
  flex-direction:  row-reverse;
}



}

@media (max-width: 575px){
button {
  width: auto !important;
}
.page-img-box img,.main-img-box img,.page-related-img-box img {
  height: auto;
}
}

@media (max-width: 767px){
.slider-date-box{
  display: none;
 }
 .main-item{
  flex-direction: column !important;
 }

.slick-prev,
.slick-next{
  display: none !important;
}

}

@media (min-width: 768px){

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

.footer-text{
  flex-direction: row-reverse;
  gap: 8px;
}

.contact-wr{
  flex-direction:column;
}

.contact-wr > div{
  flex: 1;
}



.main-list{
  flex-direction:  column;
}


.au-gallery-img{
  
  height: 172px;
}

.interest-img{
  height: 172px;
}

.page-form-wr{
  flex-direction: row-reverse;
}

.page-form-i,
.page-form-ta{
  flex: 1;
}


.page-form-ta textarea{
  height: 100%;
}

.author-wr{
  flex-direction:  row-reverse !important;
}



.contact-item{
  text-align: center;
  flex-direction: row-reverse;
  
}

.slick-prev,
.slick-next{
  display: inline-block !important;
}

}

@media (max-width: 991px){
 .offcanvas-top, 
 .catalog{
  display: none;
 }

 .offcanvas-body{
  flex-direction: column;
 }

 .contact-me-box{
  justify-content: center;
  padding-top:  15px;
  padding-bottom:  15px;
 }


}

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

.sidebar{
  flex: 1;
}

.content{
  flex: 3;
}

.gallery-wrapper{
  display: flex;
  flex-direction: row-reverse;
}

.pages-nav{
  display: none;
}

.header-logo{
  padding: 31px 0;
}

.header-logo-title{
  font-size: 39px;
}

.offcanvas-body,
.offcanvas{
  background-color: transparent;
}

.pages-link{
  background-color: #252525d6;
}

.navbar-nav{
  white-space: nowrap;
  display: flex;
  flex-direction: column;
  gap:  62px;
  align-items: center;
  
}

.navbar-expand-lg .offcanvas .offcanvas-body {
  justify-content: space-between;
}

.slider-item img{
    height: 349px;
}

.au-wr{
  flex-direction: row-reverse;
}

.related-list{
  flex-direction: row-reverse;
  gap:  16px;
}
}


@media (min-width: 1600px){
.gallery-item img {
  height:249px;
}
}


