
.pkp_structure_main {
  width: 100%;
}





.slider {
  box-shadow: 0px 2px 8px #9d9d9d;

  overflow: hidden;
  width: 100%;
  border-radius: 4px;
}

.slider ul {
  width: 1000%;
  height: auto;
  position: relative;
  list-style: none;
  left: 0;
  margin: 0;
  padding: 0;
  line-height: 0;
  -moz-animation:slide-animation 15s infinite;
  -webkit-animation:slide-animation 15s infinite;
}

.slider ul:hover {
  -moz-animation-play-state:paused;
  -webkit-animation-play-state:paused;
}

.slider li {
  width: 10%;
  list-style: none;
  float: left;
  margin: 0;
  padding: 0;
}

img {
  max-width: 100%;
  border-radius: 4px;
}



@-webkit-keyframes slide-animation {
  1% {left: 0%; opacity: 1;}
  18% {left: 0%; opacity: 1}
  19% {opacity: 0.2;}
  20% {left: -100%; opacity: 1;}
  58% {left: -100%; opacity: 1;}
  59% {opacity: 0.2;}
  60% {left: -200%; opacity: 1;}
  98% {left: -200%; opacity: 1;}
  99% {opacity: 0.5;}
  100% {left: 0%;}
}

@-moz-keyframes slide-animation {
  1% {left: 0%; opacity: 1;}
  18% {left: 0%; opacity: 1}
  19% {opacity: 0.2;}
  20% {left: -100%; opacity: 1;}
  58% {left: -100%; opacity: 1;}
  59% {opacity: 0.2;}
  60% {left: -200%; opacity: 1;}
  98% {left: -200%; opacity: 1;}
  99% {opacity: 0.5;}
  100% {left: 0%;}
}














@-webkit-keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.slider2 {
  background: white;
  box-shadow: 0 10px 20px -5px rgba(0, 0, 0, 0.125);
  height: 60px;
  margin: auto;
  overflow: hidden;
  position: relative;
  width: 100%;
}
.slider2 .slide2-track {
  -webkit-animation: scroll 40s linear infinite;
          animation: scroll 40s linear infinite;
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-around;
  min-width: 200%;
  position: absolute;
}
.slider2 .slide2 {
  height: 60px;
}
.slider2:hover .slide2-track {
  -webkit-animation-play-state: paused;
          animation-play-state: paused;
}
.slider2 .slide2 {
  transition: 500ms all linear;
}
.slider2 .slide2:hover {
  filter: none;
}







































.book-wrapper {
  width: 900px;
  position: relative;
  margin: 0 auto;
  column-count: 3;
  column-gap: 12px;
  padding: 4px;
}
.book-items {
  position: relative;
  cursor: default;
  padding: 16px;
  margin: 0;
  display: grid;
  break-inside: avoid;
}

.main-book-wrap {
  position: relative;
}

.book-cover {
  position: relative;
}

.book-cover .book-inside {
  position: absolute;
  width: 90%;
  height: 96%;
  top: 1%;
  left: 16px;
  border: 1px solid grey;
  border-radius: 2px 6px 6px 2px;
  background: white;
  box-shadow: 10px 40px 40px -10px #00000030, inset -2px 0 0 grey,
    inset -3px 0 0 #dbdbdb, inset -4px 0 0 white, inset -5px 0 0 #dbdbdb,
    inset -6px 0 0 white, inset -7px 0 0 #dbdbdb, inset -8px 0 0 white,
    inset -9px 0 0 #dbdbdb;
}

.book-cover .book-image {
  line-height: 0;
  position: relative;
  border-radius: 2px 6px 6px 2px;
  box-shadow: 6px 6px 18px -2px rgba(0, 0, 0, 0.2),
    24px 28px 40px -6px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease-in-out;
  transform: perspective(2000px) rotateY(-15deg) translateX(-10px) scaleX(0.94);
  cursor: pointer;
}

.book-image img {
  grid-row: 1 / -1;
  grid-column: 1;
  width: 100%;
  border-radius: 2px 6px 6px 2px;
}

.book-image:hover {
  transform: perspective(2000px) rotateY(0deg) translateX(0px) scaleX(1);
  transform-style: preserve-3d;
  box-shadow: 6px 6px 12px -1px rgba(0, 0, 0, 0.1),
    20px 14px 16px -6px rgba(0, 0, 0, 0.1);
}

.effect {
  position: absolute;
  width: 20px;
  height: 100%;
  margin-left: 16px;
  top: 0;
  border-left: 2px solid #00000010;
  background-image: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.2) 0%,
    rgba(255, 255, 255, 0) 100%
  );
  transition: all 0.5s ease;
  z-index: 5;
}

.light {
  width: 90%;
  height: 100%;
  position: absolute;
  border-radius: 3px;
  background-image: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.2) 100%
  );
  top: 0;
  right: 0;
  opacity: 0.1;
  transition: all 0.5s ease;
  z-index: 4;
}

.book-image:hover .effect {
  margin-left: 14px;
}

.realvjy {
  width: 900px;
  padding: 20px;
  margin: 0 auto;
  font-family: sans-serif;
  text-align: center;
}








* {
  box-sizing: border-box;
}



p{
  margin: 0;
}

ul{
  list-style: none;
  margin: 0;
  padding: 0;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  vertical-align: middle;
}

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

.container {
  display: flex;
  max-width: none !important;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 1.25rem;
}

.sub-container {
  padding-left: 1rem;
  padding-right: 1rem;
}

.heading {
  margin: 1.25rem;
  font-size: 1.5rem;
  line-height: 3rem;
  font-weight: 500;
  text-align: center;
}

@media (min-width: 640px) {
  .heading {
    font-size: 1.875rem;
    line-height: 2.25rem;
  }
}

.product-container {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

@media (min-width: 768px) {
  .product-container{
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) { 
  .product-container{
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.product{
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background-color: #fff;
  border-radius: 0.375rem;
  border: 2px solid rgb(17 24 39);
}

.header{
  overflow: hidden;
}

.footer{
  display: flex;
  flex-direction: column;
  flex: 1 1 0%;
  padding: 1.25rem;
}

.footer .product-cat{
  color: rgb(185 28 28);
  font-size: 0.75rem; 
  line-height: 1rem; 
  font-weight: 700;
  letter-spacing: 0.025em;
  text-transform: uppercase;
  flex: 1 1 0%
}

.header .product-img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 300ms;
}

.footer .product-name{
  margin: 0;
  font-size: 1rem; 
  line-height: 1.5rem;
  font-weight: 700;
  margin-top: 0.625rem; 
}

.footer .product-price{
  color: rgb(75 85 99);
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 700;
  margin-top: 0.5rem;
}

.product:hover .product-img{
  transform: scale(1.25);
}






.carousel-wrap {
  margin: 90px auto;
  padding: 0 5%;
  width: 80%;
  position: relative;
}

/* fix blank or flashing items on carousel */
.owl-carousel .item {
  position: relative;
  z-index: 100; 
  -webkit-backface-visibility: hidden; 
}

/* end fix */
.owl-nav > div {
  margin-top: -26px;
  position: absolute;
  top: 50%;
  color: #cdcbcd;
}

.owl-nav i {
  font-size: 52px;
}

.owl-nav .owl-prev {
  left: -30px;
}

.owl-nav .owl-next {
  right: -30px;
}





@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@300&family=Ubuntu&display=swap');
body{
margin:0;
font-family: 'Oswald', sans-serif;
}
header{
  width:100%;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
}
.menu{
  width:100%;
  padding-top:10px;
  padding-bottom:10px;
  height:60px;
  background:transparent;
}
.menu .logo{
  position:absolute;
  left:10px;
  width:150px;
  height:60px;
  pointer-events:none;
}
.menu span{
  float:right;
  padding-right:10px;
  font-size:13px;
}
.menu span a{
  text-decoration:none;
  color:#1e1e1e;
  transition:0.5s;
}
.menu span a:hover{
  color:#EB5757;
}
.menu span a{
  cursor:pointer;
}
.nav {
  overflow: hidden;
  background:linear-gradient(#EB5757,#000000);
}
.nav a {
  float: left;
  display: block;
  color: #f2f2f2;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 17px;
  transition:0.5s;
  font-family: 'Oswald', sans-serif;
}
.nav a:nth-child(5){
  float:right;
}
.nav a:hover {
  
  color: black;
}
.nav a.active {
  color: #BDFFF3;
}
.nav .icon {
  display: none;
}
@media screen and (max-width: 600px) {
  .nav a:not(:first-child) {display: none;}
  .nav a.icon {
    float: right;
    display: block;
  }
}
@media screen and (max-width: 600px) {
  .nav.responsive {position: relative;}
  .nav.responsive .icon {
    position: absolute;
    right: 0;
    top: 0;
  }
  .nav.responsive a {
    float: none;
    display: block;
    text-align: left;
  }
}
.section3 button{background-image: linear-gradient(to right, #4b6cb7 0%, #182848  51%, #4b6cb7  100%)}
.section3 button{
            margin: 10px;
            padding: 13px 45px;
            text-align: center;
            text-transform: uppercase;
            transition: 0.5s;
            background-size: 200% auto;
            color: white;            
            box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
            border-radius: 20px;
            display: block;
            outline:0;
            border:0;
          }
.section3 button:hover{
            background-position: right center; /* change the direction of the change here */
            color: #fff;
            text-decoration: none;
          }
.section3{
width:100%;
overflow-x:hidden;
white-space: nowrap;
overflow-y:hidden;
scrollbar-width:none;
scroll-behavior: smooth;
transition:0.5s;
}
.section3 #img-card{
width:300px;
box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
display:inline-block;
margin:16px;
}
.section3 #img-card img{
width:100%;
height:200px;
}
.section3 #img-card table{
width:100%;
padding:5px;
}
.section3 #img-card table td{
padding:5px;
width:50%;
font-size:0.9em;
}
.section3 #img-card h3{
text-align:left;
padding-left:10px;
}
.section3 #img-card p{
color:gray;
padding-left:10px;
text-align:left;
font-size:0.7em;
line-height:0px;
}
.section3 button{
margin-top:5%;
border-radius:20px;
}
.section3 .fa-angle-double-right{
position:absolute;
margin-top:15%;
right:30px;
background:#000;
padding:20px;
border-radius:50%;
color:#fff;
}
.section3 .fa-angle-double-left{
position:absolute;
margin-top:15%;
left:30px;
background:#000;
padding:20px;
border-radius:50%;
color:#fff;
}
.section3 .angles{
opacity:0.7;
transition:0.5s;
}
.section3 .angles:hover{
opacity:1;
box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
}
.section3 section{
background:#e52d27;
width:150px;
color:#fff;
float:right;
font-size:0.8em;
position:relative;
top:-24px;
}
@media (max-width:600px){
 .section0 .custom-select{
  width:200px;
  margin-bottom:10px;
  }
.section3 #img-card{
width:90%;

}
.section3 #img-card img{
width:100%;
}
.section3 .fa-angle-double-right{
position:absolute;
margin-top:50%;
right:30px;
background:#000;
padding:20px;
border-radius:50%;
color:#fff;
}
.section3 .fa-angle-double-left{
position:absolute;
margin-top:50%;
left:30px;
background:#000;
padding:20px;
border-radius:50%;
color:#fff;
}
}





          @import url('https://fonts.googleapis.com/css?family=Muli&display=swap');
            @import url('https://fonts.googleapis.com/css?family=Quicksand&display=swap');
            @import url('https://fonts.googleapis.com/css2?family=Montserrat&display=swap');
            @import url('https://fonts.googleapis.com/css2?family=Josefin+Sans&display=swap');

            body {
                font-family: 'Montserrat', sans-serif;
            }





.wrapper {
  display: grid;
  grid-gap: 1rem;
  justify-content: center;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 250px), 250px));
  background-color: #fff;
  color: #444;
}

.box {
  background-color: #444;
  color: #fff;
  border-radius: 5px;
  padding: 10px;
  font-size: 150%;
}
