html, body {
  -webkit-font-smoothing: antialiased;
  font-family: "Open Sans", sans-serif;
  margin: 0;
  padding: 0;
}

*:focus {
  outline: none !important;
}

textarea:hover,
input:hover,
textarea:active,
input:active,
textarea:focus,
input:focus,
button:focus,
button:active,
button:hover,
label:focus,
.btn:active,
.btn.active {
  outline: 0px !important;
  -webkit-appearance: none;
  box-shadow: none !important;
}

header .nav-item {
  font-size: 13px;
}
header .nav-item a {
  text-transform: uppercase;
  transition: 0.3s all;
}
header .nav-item a:hover {
  opacity: 0.5;
}
header .nav-item #change-lang {
  background: #2b1eb0;
  border-radius: 5px;
  cursor: pointer;
  font-weight: 600;
  height: 35px;
  line-height: 35px;
  padding: 0;
  text-align: center;
  transition: 0.3s all;
  width: 35px;
}
header .nav-item #change-lang:hover {
  background: white;
  color: black !important;
  opacity: 1;
}
header .navbar-toggler {
  border: 0 !important;
}
header .navbar-toggler .navbar-toggler-icon {
  background-image: url("/static/img/toggler.svg");
}
header h1 {
  color: white;
}
header.dark nav {
  background: #202020;
}
header.dark nav a {
  color: white !important;
}
header.dark_transparent {
  background: rgba(0, 0, 0, 0.5);
}
header.dark_transparent nav {
  background: rgba(32, 32, 32, 0.4);
}
header.dark_transparent nav a {
  color: white !important;
}

footer {
  background: #202020;
  overflow: hidden;
}
footer .nav-item a {
  color: #CBCFD4;
  font-size: 12px;
  line-height: 14px;
  text-transform: uppercase;
  transition: 0.3s all;
}
footer .nav-item a:hover {
  color: white !important;
}
footer .copyright {
  background-color: black;
  color: white;
}
footer .copyright .copyright-text {
  font-size: 14px;
  line-height: 40px;
}
footer .copyright .copyright-icons {
  line-height: 0;
}
footer .copyright .copyright-icons a {
  display: inline-block;
  opacity: 0.7;
  transition: 0.3s all;
}
footer .copyright .copyright-icons a .item {
  width: 40px;
  height: 40px;
  background-position: center;
  background-repeat: no-repeat;
}
footer .copyright .copyright-icons a #fb {
  background-image: url("/static/img/facebook-logo.svg");
  background-size: 18px;
}
footer .copyright .copyright-icons a #inst {
  background-image: url("/static/img/instagram-symbol.svg");
  background-size: 18px;
}
footer .copyright .copyright-icons a:hover {
  opacity: 1;
}

.bg-blue {
  color: white;
  padding: 4rem 0 5rem;
  background: #2b1eb0;
  background: -webkit-linear-gradient(to right, #2b1eb0, #2F2888);
  background: linear-gradient(to right, #2b1eb0, #2F2888);
}
.bg-blue .more {
  border-bottom: 1px solid transparent;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s all;
}
.bg-blue .more:hover {
  border-color: white;
}
.bg-blue h1, .bg-blue h2, .bg-blue h3, .bg-blue h4, .bg-blue h5, .bg-blue h6 {
  color: white;
}

.bg-white {
  background: white;
  color: #212121;
  padding: 4rem 0 5rem;
}
.bg-white .more {
  border-bottom: 1px solid transparent;
  color: #3829c9;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s all;
}
.bg-white .more:hover {
  border-color: #3829c9;
}
.bg-white .btn:hover {
  background-color: #2F2888;
  color: white;
}

.btn {
  background: #2b1eb0;
  border-radius: 40px;
  border: none;
  font-size: 15px;
  font-weight: 400;
  line-height: 24px;
  padding: 0.8rem 3rem;
}
.btn:hover {
  background-color: #2F2888;
  color: white;
}

.send h5 {
  color: #333333;
  font-family: "PT Sans";
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  text-align: center;
  text-transform: uppercase;
}

.article-card {
  border: none;
  background: none;
  border-radius: 3px;
  overflow: hidden;
  box-shadow: 0px 1px 10px rgba(0, 0, 0, 0.25);
  transition: 0.3s all;
}
.article-card:hover {
  box-shadow: 0px 1px 15px rgba(0, 0, 0, 0.4);
}
.article-card:hover .icon .shadow {
  opacity: 1;
}
.article-card:hover .icon .shadow .stats {
  opacity: 1;
}
.article-card img {
  width: 100%;
}
.article-card .card-title {
  color: #333;
  font-size: 18px;
  font-weight: bold;
  line-height: 24px;
}
.article-card .card-date {
  color: #797979;
  font-size: 11px;
  font-weight: 700;
  line-height: 15px;
}
.article-card .card-tag {
  background: #2b1eb0;
  border-radius: 4px;
  color: #fff;
  display: inline-block;
  font-size: 10px;
  font-weight: 500;
  padding: 3px 10px;
  text-transform: capitalize;
  text-decoration: none;
}
.article-card .icon {
  position: relative;
}
.article-card .icon .shadow {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.7);
  background-size: 48px;
  background-repeat: no-repeat;
  background-image: url("/static/img/book.svg");
  background-position: center 40%;
  opacity: 0;
  transition: 0.3s all;
}
.article-card .icon .shadow .stats {
  justify-content: space-around;
  margin: 0 20%;
  display: flex;
  margin-top: 60%;
  opacity: 0;
  transition: 0.3s all;
  transition-delay: 150ms;
}
.article-card .icon .shadow .stats .view, .article-card .icon .shadow .stats .comment {
  background-size: 18px;
  background-repeat: no-repeat;
  padding-left: 30px;
  line-height: 30px;
  color: #fff;
  font-size: 14px;
  font-weight: bold;
}
.article-card .icon .shadow .stats .view {
  background-image: url("/static/img/eye.svg");
  background-position: left center;
}
.article-card .icon .shadow .stats .comment {
  background-image: url("/static/img/comment.svg");
  background-position: left 6px;
}
.article-card .coming-soon {
  background-image: url("/static/img/in_dev_corner.png");
  background-position: center;
  background-size: 100%;
  height: 64px;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: 0;
  width: 64px;
  z-index: 10;
}
.article-card .card-body {
  background: white;
  padding-bottom: 10px;
}
.article-card .card-body a:hover h5, .article-card .card-body a:hover {
  color: #2b1eb0 !important;
  text-decoration: none;
}
.article-card .card-footer {
  background: #f7f7f7;
}

/*# sourceMappingURL=parts.css.map */
