@import url(../../../../assets/font/font.css);
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Bubblegum+Sans&display=swap");
@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/7.0.1/css/all.min.css");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --font-1: 'Proxima Nova', sans-serif;
  --font-2: 'Bubblegum Sans', sans-serif;
  --font-3: 'Poppins', sans-serif;
  --col-1: #15151b;
  --col-2: #75747e;
  --col-3: #F6F6F6;
  --col-4: #6C5DD4;
  --col-5: #4150F7;
  --col-6: #222c54;
  --col-7: #ec9a93;
  --col-8: #ef8f5c;
  --col-r: #a94442;
  --col-r-light: #f2dede;
  --col-g: #3c763d;
  --col-g-light: #dff0d8;
  --col-b: #31708f;
  --col-b-light: #d9edf7;
  --col-y: #8a6d3b;
  --col-y-light: #fcf8e3;
  --grad-1: linear-gradient(180deg,#222c54 0%,#3f5a85 38%,#a9c6dd 72%,#e9eff4 100%);
  --grad-2: linear-gradient(180deg,#ec9a93 0%,#f3b48f 45%,#f8d6ac 75%,#fbe9c9 100%);
  --grad-3: linear-gradient(180deg,#ef8f5c 0%,#f3ad79 40%,#f8cd9e 72%,#eef0ec 100%);
  --col-white: #ffffff;
  --col-black: #000000;
}

html {
  font-family: var(--font-1);
  font-size: 16px;
  word-break: break-word;
  color: var(--col-1);
}

body a {
  text-decoration: none;
  color: var(--col-4);
}
body ul {
  list-style: none;
}
body img {
  display: block;
  max-width: 100%;
}
body select,
body input {
  font-family: inherit;
  display: block;
  padding: 5px;
  width: 100%;
  background-color: transparent;
  border: 1px solid rgba(0, 0, 0, 0.1);
}
body textarea {
  font-family: inherit;
  display: block;
  padding: 5px;
  width: 100%;
  height: 150px;
  border: 1px solid rgba(0, 0, 0, 0.1);
}
body button {
  font-family: inherit;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px;
  width: 100%;
  border: 0;
  text-transform: uppercase;
  font-size: 1rem;
  font-weight: 600;
  color: inherit;
  background-color: transparent;
  cursor: pointer;
  background-color: var(--col-4);
}
body .hide {
  display: none !important;
}
body .wrap {
  max-width: 1200px;
  padding: 0 10px;
  margin: 0 auto;
}
@media (min-width: 500px) {
  body .scrollbar::-webkit-scrollbar {
    width: 5px;
    height: 5px;
  }
  body .scrollbar::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.3);
  }
  body .scrollbar::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.3);
  }
  body .scrollbar::-webkit-scrollbar-thumb:hover {
    background: rgba(0, 0, 0, 0.5);
  }
}

header {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
header .wrap {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 20px;
  align-items: center;
  height: 100px;
}
header .logo {
  display: flex;
  gap: 10px;
  align-items: center;
}
header .logo .left {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  font-size: 1.5rem;
  color: var(--col-white);
  background-color: var(--col-4);
  border-radius: 10px;
}
header .logo .right h1 {
  font-size: 1.5rem;
}
header .logo .right h1 a {
  color: var(--col-1);
}
header .logo .right p {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--col-2);
}
header .src form {
  display: flex;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 10px;
}
header .src form input {
  padding: 8px 12px;
  font-size: 0.9rem;
  border: none;
}
header .src form button {
  width: 50px;
  color: var(--col-4);
  border-left: 1px solid rgba(0, 0, 0, 0.05);
  background-color: rgba(0, 0, 0, 0.01);
}
header nav {
  display: flex;
  gap: 15px;
  align-items: center;
}
header nav .submit {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 15px;
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1;
  color: var(--col-white);
  background-color: var(--col-4);
  border-radius: 10px;
}
header nav .submit i {
  font-size: 0.7rem;
}
header nav ul {
  display: flex;
  gap: 5px;
}
header nav ul li a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px 15px;
  height: 32px;
  font-weight: 500;
  border-radius: 10px;
}
header nav ul li a:hover {
  box-shadow: 3px 3px 0 0 var(--col-4);
}

main {
  padding-top: 50px;
  padding-bottom: 100px;
  background-color: var(--col-3);
}
main.Books .wrap, main.Groups .wrap {
  display: grid;
  grid-template-areas: "section article";
  grid-template-columns: 250px 1fr;
  gap: 50px;
}
main.Books section, main.Groups section {
  grid-area: section;
}
main.Books section h3, main.Groups section h3 {
  font-size: 1.6rem;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
main.Books section .cat, main.Groups section .cat {
  margin-bottom: 20px;
}
main.Books section .cat a, main.Groups section .cat a {
  color: var(--col-1);
}
main.Books section .cat a:hover, main.Groups section .cat a:hover {
  color: var(--col-4);
}
main.Books section .cat h4, main.Groups section .cat h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 5px;
}
main.Books section .cat h4 a, main.Groups section .cat h4 a {
  display: block;
  padding: 3px;
}
main.Books section .cat ul, main.Groups section .cat ul {
  padding-left: 20px;
  font-size: 0.9rem;
  overflow: auto;
  max-height: 200px;
}
main.Books section .cat ul li a, main.Groups section .cat ul li a {
  display: block;
  padding: 2px;
}
main.Books article, main.Groups article {
  grid-area: article;
}
main.Books article h1, main.Groups article h1 {
  font-size: 1.6rem;
  margin-bottom: 30px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
main.Books article .pagin, main.Groups article .pagin {
  display: flex;
  justify-content: center;
}
main.Books article .pagin ul, main.Groups article .pagin ul {
  display: flex;
  gap: 10px;
}
main.Books article .pagin ul li a, main.Groups article .pagin ul li a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  font-size: 0.9rem;
  border-radius: 8px;
  border: 1px solid rgba(0, 0, 0, 0.1);
}
main.Books article .pagin ul li a:hover, main.Groups article .pagin ul li a:hover {
  border-color: var(--col-4);
}
main.Books article .pagin ul li a.active, main.Groups article .pagin ul li a.active {
  font-weight: 600;
  border-color: transparent;
  color: var(--col-white);
  background-color: var(--col-4);
}
main#Book.Book .wrap {
  max-width: 1050px;
}
main#Book.Book article {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 50px;
}
main#Book.Book article figure {
  width: 300px;
}
main#Book.Book article figure img {
  border-radius: 15px;
}
main#Book.Book article h1 {
  font-size: 2rem;
  margin-bottom: 10px;
}
main#Book.Book article .about {
  margin-bottom: 30px;
}
main#Book.Book article .about p {
  font-size: 1.2rem;
  margin: 20px 0;
  line-height: 1.5;
  color: var(--col-2);
}
main#Book.Book article .detail {
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 2px dashed rgba(0, 0, 0, 0.2);
}
main#Book.Book article .detail ul {
  display: flex;
  gap: 70px;
  margin-bottom: 20px;
}
main#Book.Book article .detail ul p {
  font-size: 0.9rem;
  color: var(--col-2);
}
main#Book.Book article .detail .genre {
  display: flex;
  gap: 15px;
  align-items: center;
}
main#Book.Book article .detail .genre i {
  margin-top: 2px;
  color: var(--col-4);
}
main#Book.Book article .detail .genre a {
  font-size: 0.9rem;
  color: var(--col-1);
}
main#Book.Book article .detail .genre a:hover {
  color: var(--col-4);
}
main#Book.Book article .link {
  position: sticky;
  bottom: 30px;
}
main#Book.Book article .link ul {
  display: flex;
  gap: 20px;
}
main#Book.Book article .link ul li {
  border-radius: 5px;
  overflow: hidden;
  background-color: var(--col-white);
}
main#Book.Book article .link ul li a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: 0.2s background-color ease;
}
main#Book.Book article .link ul li a img {
  border-radius: 50%;
  width: 20px;
  height: 20px;
}
main#Book.Book article .link ul li .amz {
  color: #FF9900;
  background-color: rgba(255, 153, 0, 0.3);
}
main#Book.Book article .link ul li .amz:hover {
  color: rgba(255, 255, 255, 0.9);
  background-color: #FF9900;
}
main#Book.Book article .link ul li .kob {
  color: #C41414;
  background-color: rgba(196, 20, 20, 0.3);
}
main#Book.Book article .link ul li .kob:hover {
  color: rgba(255, 255, 255, 0.9);
  background-color: #C41414;
}
main#Book.Book article .link ul li .bar {
  color: #00628A;
  background-color: rgba(0, 98, 138, 0.3);
}
main#Book.Book article .link ul li .bar:hover {
  color: rgba(255, 255, 255, 0.9);
  background-color: #00628A;
}
main#Book.Books article .items {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 50px;
  margin-bottom: 80px;
}
main#Book.Books article .items .item figure {
  overflow: hidden;
  border-radius: 10px;
  margin-bottom: 15px;
}
main#Book.Books article .items .item figure img {
  width: 100%;
}
main#Book.Books article .items .item h2 {
  font-size: 1rem;
  font-weight: 700;
  text-align: center;
}
main#Book.Books article .items .item h2 a {
  color: var(--col-1);
}
main#Group.Group .wrap {
  max-width: 1050px;
}
main#Group.Group article {
  display: grid;
  grid-template-columns: 350px 2fr;
}
main#Group.Group article .box {
  align-self: start;
  position: sticky;
  top: 30px;
  padding: 30px;
  border: solid rgba(0, 0, 0, 0.1);
  border-width: 1px 0 1px 1px;
  box-shadow: -10px -10px 0 0 var(--col-4);
  background-color: var(--col-white);
}
main#Group.Group article .box h1 {
  margin-bottom: 20px;
}
main#Group.Group article .box .about {
  margin-bottom: 30px;
  color: var(--col-2);
}
main#Group.Group article .box .about p {
  line-height: 1.5;
}
main#Group.Group article .list {
  padding-left: 50px;
  border-left: 1px solid rgba(0, 0, 0, 0.1);
}
main#Group.Group article .items {
  display: grid;
  gap: 20px;
}
main#Group.Group article .items .item {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
main#Group.Group article .items .item .no {
  position: absolute;
  top: 10px;
  left: -40px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  font-size: 0.8rem;
  font-weight: 600;
  border-radius: 50%;
  color: var(--col-white);
  background-color: var(--col-4);
  transform: rotate(-380deg);
  transition: transform 0.5s ease;
}
main#Group.Group article .items .item figure {
  border-radius: 10px;
  overflow: hidden;
  width: 100px;
}
main#Group.Group article .items .item .info {
  display: grid;
  grid-template-rows: auto 1fr auto;
  padding: 5px 0;
}
main#Group.Group article .items .item .info h2 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 10px;
}
main#Group.Group article .items .item .info h2 a {
  color: var(--col-1);
}
main#Group.Group article .items .item .info p {
  color: var(--col-2);
}
main#Group.Group article .items .item .info .get {
  justify-self: end;
}
main#Group.Group article .items .item .info .get a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 5px;
  border: 1px solid var(--col-4);
}
main#Group.Group article .items .item .info .get a:hover {
  color: var(--col-white);
  background-color: var(--col-4);
}
main#Group.Group article .items .item:hover .no {
  transform: rotate(0deg);
}
main#Group.Groups section {
  grid-area: section;
}
main#Group.Groups article .items {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-bottom: 80px;
}
main#Group.Groups article .items .item {
  display: grid;
  grid-template-columns: 300px 1fr;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background-color: var(--col-white);
  box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.1);
}
main#Group.Groups article .items .item figure {
  overflow: hidden;
}
main#Group.Groups article .items .item .info {
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  padding: 20px;
}
main#Group.Groups article .items .item .info h2 {
  font-size: 1.3rem;
  margin-bottom: 10px;
}
main#Group.Groups article .items .item .info h2 a {
  display: block;
  padding: 5px 0;
  color: var(--col-1);
}
main#Group.Groups article .items .item .info .cat {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  color: rgba(0, 0, 0, 0.3);
}
main#Group.Groups article .items .item .info .cat a {
  font-weight: 600;
}
main#Group.Groups article .items .item .info p {
  margin-bottom: 20px;
  color: var(--col-2);
}
main#Group.Groups article .items .item .info .more a {
  display: inline-block;
  padding: 10px 20px;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 40px;
  color: var(--col-white);
  background-color: var(--col-4);
}
main#Group.Groups article .items .item .info .more a:not(:hover) {
  opacity: 0.9;
}

footer {
  padding-top: 40px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}
footer .top {
  display: grid;
  grid-template-areas: "info genre group" "social genre group";
  grid-template-columns: auto 1fr auto;
  gap: 30px;
  margin-bottom: 50px;
}
footer .top h3 {
  margin-bottom: 20px;
}
footer .top .info {
  grid-area: info;
  max-width: 300px;
}
footer .top .info .logo {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 20px;
}
footer .top .info .logo .left {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  font-size: 1.5rem;
  color: var(--col-white);
  background-color: var(--col-4);
  border-radius: 10px;
}
footer .top .info .logo .right h2 {
  font-size: 1.5rem;
}
footer .top .info .logo .right h2 a {
  color: var(--col-1);
}
footer .top .info .logo .right p {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--col-2);
}
footer .top .info .desc {
  color: var(--col-2);
}
footer .top .social {
  grid-area: social;
}
footer .top .social ul {
  display: flex;
  gap: 20px;
  font-size: 1.5rem;
}
footer .top .social ul li a {
  display: flex;
  width: 30px;
  height: 30px;
  align-items: center;
  justify-content: center;
}
footer .top .genre {
  grid-area: genre;
}
footer .top .group {
  grid-area: group;
}
footer .bot {
  display: flex;
  justify-content: space-between;
  color: var(--col-2);
  padding: 30px 0;
  font-size: 0.9rem;
  font-weight: 500;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}/*# sourceMappingURL=style.css.map */