@import url(../fonts/playfair-display/stylesheet.css);
@import url(../fonts/futura-new/stylesheet.css);
@import url(../fonts/abril-fatface/stylesheet.css);
.top-banner {
  background-color: #F5F5F2;
}
.banner-wrapper {
  background-color: #F5F5F2;
  padding: 22px 0;
}
body {
  font-family: 'Playfair Display';
  color: #333333;
}
img {
  max-width: 100%;
}
.container {
  max-width: 1200px;
}
.logo {
  display: block;
  width: 80%;
  margin: 0 auto 0.5rem;
}
.excerpt-wrapper {
  font-family: 'Abril Fatface';
  font-size: 0.65rem;
  text-align: center;
}
.excerpt-wrapper p {
  margin-bottom: 0;
}
.navbar {
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  visibility: hidden;
  width: 100%;
  min-height: 100%;
  background-color: #274288;
  z-index: 12;
  clip-path: circle(0% at 100% 0);
  transition: all 0.4s;
  overflow-y: auto;
}
.navbar.show {
  clip-path: circle(150% at 100% 0);
  visibility: visible;
}
@media screen and (min-width: 768px) {
  .navbar.show {
    clip-path: unset;
  }
}
@media screen and (min-width: 768px) {
  .navbar {
    visibility: visible;
    display: block;
    position: static;
    padding: 0;
    background-color: transparent;
    clip-path: unset;
    overflow-y: unset;
  }
}
.navbar .navbar-nav {
  width: 100%;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .navbar .navbar-nav {
    width: auto;
    flex-direction: row;
    flex-wrap: wrap;
    text-align: left;
  }
}
.navbar .nav-item {
  padding: 0.3rem 0;
}
@media screen and (min-width: 768px) {
  .navbar .nav-item {
    margin-right: 0.5rem;
  }
  .navbar .nav-item:not(:last-child) .nav-link {
    border-right: 1px solid #072A72;
    padding-right: 0.5rem;
  }
}
.navbar .nav-link {
  font-family: 'Playfair Display';
  font-size: 24px;
  font-weight: bold;
  color: #ffffff;
  text-transform: uppercase;
  padding: 0;
}
@media screen and (min-width: 768px) {
  .navbar .nav-link {
    font-size: 17px;
    color: #072A72;
  }
  .navbar .nav-link:hover {
    color: #AA0000;
  }
}
.navbar .btn-close {
  position: absolute;
  top: 30px;
  right: 30px;
  font-size: 1.5rem;
}
@media screen and (min-width: 768px) {
  .navbar .dropdown-toggle::after {
    vertical-align: 2px !important;
  }
}
.navbar .dropdown-toggle:after {
  content: '\f078';
  font-family: 'Font Awesome 5 Free';
  font-size: 0.75rem;
  border: none;
  margin-left: 0.4rem;
  transition: all 0.2s;
  vertical-align: 4px;
}
.navbar .dropdown-toggle.show::after {
  transform: rotate(-180deg);
}
.navbar .dropdown-menu {
  position: static;
  display: block !important;
  padding: 0;
  background-color: #1c2f60;
  border: none;
  text-align: center;
  max-height: 0;
  overflow: hidden;
  transition: all 0.5s ease-in-out;
  margin-top: 0;
}
@media screen and (min-width: 768px) {
  .navbar .dropdown-menu {
    display: none !important;
    position: absolute !important;
    border: 1px solid rgba(0, 0, 0, 0.15);
    background-color: #ffffff;
    text-align: left;
    max-height: unset;
    margin-top: 0.25rem;
  }
  .navbar .dropdown-menu.show {
    display: block !important;
    width: auto;
    max-height: unset;
  }
  .navbar .dropdown-menu .nav-link {
    font-size: 17px;
  }
}
.navbar .dropdown-menu.show {
  width: 100%;
  max-height: 500px;
}
.navbar .dropdown-menu .nav-item {
  padding: 0.5rem;
  margin: 0;
}
.navbar .dropdown-menu .nav-link {
  padding: 0 !important;
  border: none !important;
  font-size: 20px;
}
#mobile-menu-trigger {
  position: relative;
  width: 50px;
  background-color: transparent;
  border: none;
}
#mobile-menu-trigger::before,
#mobile-menu-trigger::after {
  content: '';
  position: absolute;
  width: 75%;
  height: 4px;
  left: 0;
  background-color: #03153F;
}
#mobile-menu-trigger::before {
  top: 6px;
}
#mobile-menu-trigger::after {
  bottom: 6px;
}
#mobile-menu-trigger span {
  display: inline-block;
  position: absolute;
  top: 45%;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: #03153F;
}
.search-wrapper {
  display: flex;
  width: calc(100%);
  position: relative;
  background: #274288;
  margin-left: 0.75rem;
  padding: 0.25rem 0;
}
@media screen and (min-width: 768px) {
  .search-wrapper {
    width: 100%;
    margin: 0;
    margin-top: 0.5rem;
  }
}
.search-wrapper:hover .search-tooltip {
  opacity: 1;
  visibility: visible;
}
.search-wrapper form {
  display: flex;
  width: calc(100%);
}
.search-wrapper form input {
  flex: 1 calc(100% - 40px);
  padding: 0.25rem 0.75rem;
  background-color: transparent;
  color: #ffffff;
  border: none;
  outline: none;
}
.search-wrapper form input::placeholder {
  color: rgba(255, 255, 255, 0.75);
}
.search-wrapper form input::-webkit-search-cancel-button {
  display: none;
}
.search-wrapper form button {
  flex: 1 40px;
  background-color: transparent;
  border: none;
  color: #ffffff;
}
.search-wrapper .btn-account {
  display: flex;
  width: 40px;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  text-decoration: none;
  border-left: 1px solid rgba(255, 255, 255, 0.5);
}
.search-wrapper .search-tooltip {
  display: none;
  position: absolute;
  top: calc(100% + 7px);
  left: 0;
  width: 100%;
  height: 35px;
  line-height: 35px;
  background-color: #D2D2D2;
  padding: 0 0.4rem;
  font-size: 0.9rem;
  font-weight: bold;
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s;
}
@media screen and (min-width: 992px) {
  .search-wrapper .search-tooltip {
    display: block;
  }
}
.search-wrapper .search-tooltip::before {
  content: "";
  display: block;
  position: absolute;
  top: -7px;
  right: 50px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 7px 7px 7px;
  border-color: transparent transparent #D2D2D2 transparent;
}
.news-item {
  position: relative;
  display: flex;
  overflow: hidden;
  justify-content: flex-end;
  color: #ffffff;
  text-decoration: none;
}
.news-item:hover {
  color: #ffffff;
}
.news-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.news-item img {
  min-width: 100%;
  object-fit: cover;
  transition: all 0.3s ease-out;
}
.news-item-content {
  display: flex;
  flex-direction: column;
  position: absolute;
  left: 0;
  bottom: 0;
  padding: 2rem 1rem 1rem 1rem;
}
.news-item-content.with-shadow {
  width: 100%;
}
.news-item-content.with-shadow::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 1;
  background: -moz-linear-gradient(0deg, rgba(0, 0, 0, 0.8) 0, rgba(0, 0, 0, 0.2) 70%, transparent 95%);
  background: -webkit-linear-gradient(0deg, rgba(0, 0, 0, 0.8) 0, rgba(0, 0, 0, 0.2) 70%, transparent 95%);
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.8) 0, rgba(0, 0, 0, 0.2) 70%, transparent 95%);
  z-index: 0;
}
.news-item h3 {
  font-size: 14px;
  line-height: 1.3;
  z-index: 1;
  text-shadow: 0 0 5px #333333;
}
.news-item-sm {
  display: flex;
  text-decoration: none;
  color: #333333;
}
.news-item-sm:hover h4 {
  color: #AA0000;
}
.news-item-sm img {
  align-self: flex-start;
}
.news-item-sm .bg-thumb {
  width: 100px;
  height: 100px;
  flex: 1 1 100px;
  background-position: center;
  background-size: cover;
}
.news-item-sm h4 {
  font-size: 1rem;
  font-weight: normal;
  transition: all 0.2s;
  line-height: 1.4;
  margin-bottom: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.info {
  display: flex;
  width: max-content;
  position: relative;
  z-index: 1;
  font-size: 15px;
  color: #ffffff;
}
.info.enlarge::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  border-radius: 5px;
  background-color: #AA0000;
  z-index: -1;
  transition: all 0.25s;
  opacity: 0;
}
.info:hover.enlarge::before {
  width: 100%;
  opacity: 1;
}
.info:hover .category-link {
  background-color: #AA0000;
}
.time {
  display: block;
  padding-right: 0.5rem;
}
.category-link {
  display: block;
  padding: 0 0.4rem;
  margin-right: 10px;
  background-color: #606060;
  border-radius: 5px;
  transition: all 0.2s;
}
.category-link:hover {
  background-color: #AA0000;
}
.category-header {
  position: relative;
}
.category-header::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 0;
  width: 100%;
  height: 2px;
  background-color: #606060;
  z-index: -1;
}
.category-header a {
  text-decoration: none;
  color: #072A72;
  text-transform: uppercase;
  transition: all 0.2s;
}
.category-header a:hover {
  color: #AA0000;
}
.category-header h2 {
  width: max-content;
  font-size: 25px;
  font-weight: bold;
  margin-bottom: 0;
  background-color: #ffffff;
  padding-right: 20px;
}
.media-block {
  position: relative;
  padding: 15px 50px 50px;
}
@media screen and (min-width: 768px) {
  .media-block {
    padding: 25px 75px 50px 75px;
  }
}
.media-block::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('/assets/images/baku-city-tour.jpg');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0.2;
  z-index: -1;
}
.media-block::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000000;
  z-index: -2;
}
.media-block .category-header::after {
  width: calc(100% - 240px);
  background-color: #ffffff;
  z-index: 0;
}
.media-block .category-header a:hover h2 {
  transform: translate3d(0, -4px, 0);
}
.media-block .category-header h2 {
  font-size: 24px;
  background-color: transparent;
  color: #ffffff;
  transition: all 0.2s;
}
.media-block .media-slider-wrapper {
  position: relative;
}
.media-block .swiper-slide {
  height: auto;
}
.media-block [class^='swiper-button-'] {
  color: #ffffff;
  transition: all 0.2s;
}
.media-block [class^='swiper-button-']::after {
  font-size: 2rem;
}
.media-block .swiper-button-prev {
  left: -40px;
}
.media-block .swiper-button-prev:hover {
  transform: translate3d(-5px, 0, 0);
}
.media-block .swiper-button-next {
  right: -40px;
}
.media-block .swiper-button-next:hover {
  transform: translate3d(5px, 0, 0);
}
.media-news-item {
  display: block;
  height: 100%;
  color: #ffffff;
  text-decoration: none;
  background-color: #072A72;
}
.media-news-item:hover {
  color: #ffffff;
}
.media-news-item:hover h4 {
  transform: translate3d(0, -3px, 0);
}
.media-news-item img {
  display: block;
  width: 100%;
}
.media-news-item h4 {
  font-size: 1rem;
  font-weight: bold;
  transition: all 0.2s;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.chronicle {
  font-family: 'Abril Fatface';
}
.chronicle img {
  width: 100%;
}
.chronicle a {
  display: block;
  color: #072A72;
  transition: all 0.2s;
}
.chronicle a:hover {
  color: #AA0000;
}
.chronicle h5 {
  text-align: center;
  text-transform: uppercase;
  font-size: 21px;
}
.chronicle .excerpt {
  font-size: 15px;
  text-align: center;
}
.chronicle p:not(.excerpt) {
  color: #606060;
  font-size: 16px;
  text-align: center;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.sub-chronicle a {
  display: flex;
  position: relative;
  flex-direction: column;
  color: #ffffff;
}
.sub-chronicle a:hover h5 {
  transform: translate3d(0, -5px, 0);
}
.sub-chronicle img {
  object-fit: cover;
}
.sub-chronicle h5 {
  font-family: 'Futura New';
  text-shadow: 0 0 5px #000000;
  padding: 1rem;
  margin: 0;
  position: absolute;
  width: 100%;
  bottom: 0;
  left: 0;
  transition: all 0.2s;
}
.latest-news {
  position: sticky;
  bottom: 10px;
  align-self: flex-end;
}
.latest-news a {
  display: block;
  color: #333333;
  text-decoration: none;
}
.latest-news-link {
  display: block;
  color: #ffffff !important;
  background-color: #AA0000;
  padding: 0.5rem 0;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  font-family: 'Abril Fatface';
  font-size: 21px;
  transition: all 0.2s;
}
.latest-news-link:hover {
  color: #ffffff;
  background-color: #274288;
}
.latest-news .live {
  position: relative;
  padding-top: 40px;
  background-color: #03153F;
  font-family: 'Abril Fatface';
}
.latest-news .live span {
  position: absolute;
  top: 10px;
  left: 0;
  width: max-content;
  padding: 2px 10px 2px 30px;
  background-color: #AA0000;
  font-size: 16px;
  color: #ffffff;
}
.latest-news .live span::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 15px;
  width: 14px;
  height: 14px;
  background-color: #ffffff;
  transform: translate(-50%, -50%);
  border-radius: 50%;
}
.latest-news .live a {
  color: #ffffff;
  padding: 1rem;
}
.latest-news .live a:hover h4 {
  transform: translate3d(0, -4px, 0);
}
.latest-news .live h4 {
  transition: all 0.2s;
  font-size: 16px;
  margin: 0;
}
.latest-news .view-more {
  color: #ffffff;
}
.latest-news-item {
  padding: 10px;
}
.latest-news-item a:first-child {
  transition: all 0.2s;
}
.latest-news-item a:first-child:hover {
  color: #AA0000;
}
.latest-news-item h4 {
  font-size: 16px;
  font-weight: normal;
  margin-bottom: 10px;
}
.latest-news-item .info {
  font-size: 13px;
}
.latest-news-item .time {
  color: #333333;
}
.blog-block {
  background-color: #D2D2D2;
  padding: 1.5rem;
}
.blog-block .blog-header {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}
.blog-block .blog-header img {
  padding-right: 15px;
}
.blog-block .blog-header h4 {
  margin: 0;
  font-size: 14px;
  font-weight: bold;
}
.blog-block .blog-content h5 {
  font-size: 16px;
  font-weight: bold;
}
.blog-block .blog-content p {
  font-size: 14px;
  font-weight: bold;
  line-height: 1.25;
  color: #606060;
}
.blog-block .read-more {
  display: block;
  position: relative;
  width: max-content;
  margin-left: auto;
  font-size: 16px;
  font-weight: bold;
  text-decoration: none;
  color: #333333;
  transition: all 0.2s;
}
.blog-block .read-more i {
  transition: transform 0.2s;
}
.blog-block .read-more:hover {
  color: #AA0000;
}
.blog-block .read-more:hover i {
  color: #AA0000;
  transform: translate3d(3px, 0, 0);
}
footer {
  margin-top: 50px;
  padding: 50px 0 30px;
  background-color: #222222;
  border-top: 10px solid #AA0000;
  color: #ffffff;
}
footer .footer-nav ul {
  margin: 0 20px 0 0;
  display: flex;
  justify-content: space-between;
  list-style: none;
}
footer .footer-nav li {
  margin: 0;
  padding-bottom: 7px;
  margin-bottom: 7px;
}
@media screen and (min-width: 768px) {
  footer .footer-nav li:last-child {
    padding-bottom: 0;
    margin-bottom: 0;
  }
}
footer .footer-nav a {
  display: block;
  font-size: 13px;
  color: #ffffff;
  text-decoration: none;
  text-transform: uppercase;
  transition: all 0.2s;
}
footer .footer-nav a:hover {
  transform: translate3d(0, -3px, 0);
}
footer .subsribe-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin-bottom: 1rem;
}
@media screen and (min-width: 992px) {
  footer .subsribe-wrapper {
    justify-content: flex-end;
  }
}
footer .subsribe-wrapper h4 {
  font-weight: 900;
  font-size: 26px;
  margin: 0;
  margin-bottom: 15px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  footer .subsribe-wrapper h4 {
    text-align: left;
    margin-bottom: 0;
    margin-right: 15px;
  }
}
footer .subsribe-wrapper form {
  display: flex;
  align-items: center;
}
footer .subsribe-wrapper input {
  display: block;
  padding: 0.75rem;
  outline: none;
  border: none;
}
footer .subsribe-wrapper input::placeholder {
  color: #555555;
  font-weight: bold;
}
footer .subsribe-wrapper button {
  height: 48px;
  border: none;
  background-color: #AA0000;
  color: #ffffff;
  font-weight: bold;
  padding: 0.5rem 0.75rem;
  transition: all 0.2s;
}
footer .subsribe-wrapper button:hover {
  background-color: #910000;
}
footer .social-icons {
  padding-bottom: 1rem;
}
footer .social-icons li:not(:last-child) {
  margin-right: 30px;
}
footer .social-icons a {
  font-size: 24px;
  color: #ffffff;
  transition: all 0.2s;
}
footer .social-icons a:hover.social-fb {
  color: #1877f2;
}
footer .social-icons a:hover.social-yt {
  color: #ff0000;
}
footer .social-icons a:hover.social-tw {
  color: #1da1f2;
}
footer .social-icons a:hover.social-ig {
  color: #e1306c;
}
footer .social-icons a:hover.social-sc {
  color: #fffc00;
}
footer .copyright {
  font-family: 'Abril Fatface';
}
.swal2-toast {
  font-family: 'Futura New';
}
#btn-up {
  position: fixed;
  bottom: 85px;
  right: 10px;
  width: 50px;
  height: 50px;
  line-height: 50px;
  transform: translate3d(200px, 0, 0);
  transition: all 0.25s ease-out;
  background-color: #AA0000;
  color: #ffffff;
  border: none;
  box-shadow: 0 0 5px #000000;
  z-index: 10;
}
@media screen and (min-width: 768px) {
  #btn-up {
    bottom: 50px;
    right: 50px;
  }
}
#btn-up:hover {
  background-color: #910000;
}
#btn-up.show {
  transform: translate3d(0, 0, 0);
}
.category-title {
  color: #03153F;
  font-weight: bold;
}
.loader-wrapper {
  display: flex;
  justify-content: center;
  visibility: hidden;
  opacity: 0;
  transition: all 0.2s;
}
.loader-wrapper.show {
  visibility: visible;
  opacity: 1;
}
.loader-wrapper .spinner-border {
  width: 60px;
  height: 60px;
  border-color: #274288;
  border-right-color: transparent;
  border-width: 4px;
}
.breadcrumb a {
  color: #03153F;
  font-weight: bold;
  transition: all 0.2s;
}
.breadcrumb a:hover {
  color: #AA0000 !important;
}
.breadcrumb .breadcrumb-item.active a {
  color: #606060;
}
.breadcrumb .breadcrumb-item + .breadcrumb-item::before {
  content: '';
  width: 8px;
  height: 8px;
  border-top: 2px solid #03153F;
  border-right: 2px solid #03153F;
  padding: 0;
  transform: translate(0, 8px) rotate(45deg);
  margin-right: 0.75rem;
}
article {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
}
article h2 {
  margin-bottom: 1rem;
  font-weight: bold;
}
article .meta {
  display: flex;
  margin-bottom: 1rem;
  font-size: 1.1rem;
}
article .meta a {
  display: block;
  text-decoration: none;
  color: #03153F;
  font-weight: bold;
  margin-right: 1rem;
  transition: all 0.2s;
}
article .meta a:hover {
  color: #AA0000;
}
article .meta i {
  font-size: 1rem;
}
article figure {
  margin: 0 0 2rem 0;
}
article figure img {
  min-width: 100%;
  margin-bottom: 1rem;
}
article figure figcaption {
  font-size: 0.9rem;
  font-style: italic;
  color: #606060;
}
.article-share {
  flex: 1 1 50px;
  max-width: 50px;
  position: sticky;
  top: 20px;
  align-self: flex-start;
}
.article-share li:not(:last-child) {
  margin-bottom: 1rem;
}
.article-share a {
  display: block;
  font-size: 1.75rem;
  transition: all 0.2s;
  color: #333333;
}
.article-share a:hover.social-fb {
  color: #1877f2;
}
.article-share a:hover.social-tw {
  color: #1da1f2;
}
.article-share a:hover.social-li {
  color: #0077b5;
}
.article-share a:hover.social-wa {
  color: #25d366;
}
.article-share a:hover.social-tg {
  color: #0088cc;
}
.article-content-wrapper {
  flex: 1 1 calc(100% - 50px);
  max-width: calc(100% - 50px);
  padding-left: 0.5rem;
}
@media screen and (min-width: 768px) {
  .article-content-wrapper {
    padding-left: 1rem;
  }
}
.article-content {
  margin-bottom: 2rem;
  padding: 0;
}
.article-content img {
  width: 100% !important;
  height: auto !important;
}
@media screen and (min-width: 768px) {
  .article-content {
    padding: 0 3rem;
  }
}
@media screen and (min-width: 992px) {
  .article-content {
    padding: 0 6rem;
  }
}
.article-content p {
  font-size: 1.2rem;
  line-height: 1.75;
}
.article-gallery {
  margin-bottom: 2rem;
}
@media screen and (min-width: 768px) {
  .article-gallery .main-slider {
    margin-bottom: 10px !important;
  }
  .article-gallery .main-slider img {
    width: auto;
    max-height: 400px;
  }
}
@media screen and (min-width: 992px) {
  .article-gallery .main-slider {
    margin-bottom: 10px !important;
  }
  .article-gallery .main-slider img {
    width: auto;
    max-height: 500px;
  }
}
.article-gallery .main-slider {
  margin-bottom: 5px;
}
.article-gallery .main-slider [class^='swiper-button-'] {
  color: #274288;
}
.article-gallery .main-slider [class^='swiper-button-']:after {
  font-size: 2rem;
}
.article-gallery .thumbs-slider {
  height: 150px;
}
.article-gallery .thumbs-slider .swiper-slide {
  width: auto;
  cursor: pointer;
}
.article-gallery .thumbs-slider img {
  width: auto;
  max-height: 150px;
  opacity: 0.65;
  transition: all 0.2s;
  filter: grayscale(50%);
}
.article-gallery .thumbs-slider .swiper-slide-thumb-active img {
  opacity: 1;
  filter: none;
}
.article-gallery .main-slider {
  background: rgba(0, 0, 0, 0.2);
}
.article-gallery .main-slider .swiper-slide {
  cursor: pointer;
}
.article-gallery img {
  display: block;
  width: 100%;
  max-height: 100%;
  margin: 0 auto;
}
.article-tags ul {
  display: flex;
  flex-wrap: wrap;
  margin: 0;
  font-family: 'Futura New';
  font-weight: bold;
  align-items: center;
}
.article-tags li {
  margin-bottom: 0.5rem;
}
.article-tags li:first-child {
  text-transform: uppercase;
}
.article-tags li a {
  background-color: #606060;
  display: block;
  color: #ffffff;
  text-decoration: none;
  padding: 0.2rem 0.5rem;
  transition: all 0.2s;
}
.article-tags li a:hover {
  background-color: #03153F;
}
.article-tags li:not(:last-child) {
  margin-right: 0.5rem;
}
@media screen and (min-width: 768px) {
  .border-bottom-md-0 {
    border-bottom: none !important;
  }
}
.header-social-icons {
  font-size: 24px;
  margin-top: 10px;
}
.header-social-icons a:not(:last-of-type) {
  margin-right: 10px;
}
.header-social-icons a.h-fb {
  color: #1877f2;
}
.header-social-icons a.h-tw {
  color: #1da1f2;
}
.header-social-icons a.h-yt {
  color: #ff0000;
}
/*# sourceMappingURL=main.css.map */