@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap");
* {
  text-decoration: none;
  font-family: 'Poppins', sans-serif;
}

a {
  text-decoration: none;
}

.container-xxl {
  padding: 0 50px;
}

.main-btn {
  border: none;
  outline: none;
  border-radius: 4px;
  letter-spacing: 0.7px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.main-title {
  color: #3C556E;
  font-weight: 700;
}

#root-section .root-nav ul {
  border-top: 1px solid #16A085;
  border-bottom: 1px solid #16A085;
}

#root-section .root-nav ul li {
  padding: 8px 20px;
  border-radius: 4px;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: #17A689;
  cursor: pointer;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

#root-section .root-nav ul li:hover {
  color: #117a69;
  background-color: rgba(22, 160, 133, 0.1);
}

#root-section .root-nav ul li.active {
  color: #117a69;
  background-color: rgba(22, 160, 133, 0.1);
}

#root-section .root .root-card {
  min-height: 380px;
  background-color: #F2F2F2;
  border-radius: 4px;
  position: relative;
}

#root-section .root .root-card .img-box {
  width: 100%;
  height: 300px;
}

#root-section .root .root-card .img-box img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

#root-section .root .root-card button {
  background-color: #16A085;
  padding: 8px 20px;
}

#root-section .root .root-card button a {
  color: #fff;
}

#root-section .root .root-card::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(22, 160, 133, 0.2);
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

#root-section .root .root-card:hover::before {
  opacity: 0;
  visibility: hidden;
}

@media (max-width: 992px) {
  #root-section .root-nav ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  #root-section .root .root-card .img-box {
    height: 260px;
  }
}

@media (max-width: 768px) {
  #root-section .root .root-card .img-box {
    height: 300px;
  }
}

@media (max-width: 576px) {
  #root-section .root .root-card .img-box {
    height: 420px;
  }
}
/*# sourceMappingURL=book.css.map */