/*!
Theme Name: Ekata Foundation
Theme URI: http://underscores.me/
Author: Underscores.me
Author URI: http://underscores.me/
Description: Description
Version: 1.0.0
Tested up to: 5.4
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: ekata-foundation
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned.

Ekata Foundation is based on Underscores https://underscores.me/, (C) 2012-2020 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal https://necolas.github.io/normalize.css/
*/

/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Generic
	- Normalize
	- Box sizing
# Base
	- Typography
	- Elements
	- Links
	- Forms
## Layouts
# Components
	- Navigation
	- Posts and pages
	- Comments
	- Widgets
	- Media
	- Captions
	- Galleries
# plugins
	- Jetpack infinite scroll
# Utilities
	- Accessibility
	- Alignments

--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Generic
--------------------------------------------------------------*/

/* Normalize
--------------------------------------------- */

/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */

/* Document
	 ========================================================================== */

/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */
@import url("https://fonts.googleapis.com/css2?family=Mukta:wght@200;300;400;500;600;700;800&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html,
body {
  font-family: "Mukta", sans-serif;
}
:root {
  --primary-color: #00135f;
  --secondary-color: #e20a17;
}
a,
a:visited,
a:hover,
a:focus {
  text-decoration: none;
}
img {
  width: 100%;
  height: auto;
  vertical-align: middle;
}

p {
  margin: 0;
}
.section {
  padding-top: 70px;
}
.btn {
  color: white;
  background: var(--primary-color);
  padding: 10px 16px;
  border-radius: 5px;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 12px;
  transition: all 0.5s linear;
}
.btn:hover {
  background: var(--secondary-color);
  color: white;
}
.h2-heading {
  font-size: 40px;
  font-weight: 600;
  position: relative;
  display: inline-block;
  margin-bottom: 20px;
}
.h2-heading::before {
  content: "";
  position: absolute;
  bottom: 0px;
  left: 0;
  width: 50px;
  height: 3px;
  background: var(--secondary-color);
}
.h3-heading {
  font-size: 30px;
  color: black;
}
.h3-heading {
  font-size: 30px;
  color: black;
}
.h4-heading {
  font-size: 22px;
  color: white;
}
.h5-heading {
  font-size: 22px;
  color: rgb(0, 0, 0);
}
.container {
  max-width: 1200px;
  padding: 0 20px;
  margin: auto;
}
.container-large {
  max-width: 1600px;
}
.container-small {
  max-width: 900px;
}
.container-medium {
  max-width: 700px;
}
.site-header {
  background: white;
  padding: 15px 0;
}
.custom-logo {
  width: 200px;
}
.logo-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#primary-menu {
  display: flex;
  list-style: none;
  gap: 20px;
  padding: 0;
  margin: 0;
}
#primary-menu > li > a {
  display: block;
  color: var(--primary-color);
  font-size: 16px;
  text-transform: uppercase;
  padding: 5px;
  transition: all 0.5s ease;
  position: relative;
}
#primary-menu > li > a:hover {
  color: var(--secondary-color);
}
#primary-menu > li.current-menu-item > a {
  color: var(--secondary-color);
}

#primary-menu > li > a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: var(--secondary-color);
  transition: all 0.6s ease;
}
#primary-menu > li > a:hover::after {
  width: 100%;
}

.flex {
  display: flex;
  gap: 10px;
  align-items: center;
}
.social-icon a {
  color: var(--primary-color);
  margin: 0 5px;
}
.ham-menu {
  display: none;
}
.slide-menu {
  display: none;
}

/* ekata banner */
.ekata-banner {
  background: #000;
  height: 100vh;
}
.ekata-banner img {
  height: 100vh;
  object-fit: cover;
}
.ekata-banner .owl-nav {
  display: flex;
  width: 100%;
  justify-content: space-between;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.ekata-banner .owl-nav > button {
  background: #fff !important;
  width: 50px;
  height: 50px;
}
/* ekata banner */
/* about-intro */
.about-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}
.about-intro .button {
  margin: 30px 0;
}
.the-txt p {
  font-size: 18px;
  line-height: 32px;
  margin-bottom: 20px;
}
.the-txt.white p {
  color: white;
}
.the-txt p:last-child {
  margin-bottom: 0;
}
.about-img-mobile {
  display: none;
}
/* about-intro */
/* mission-vission-goal */
.mission-vission-goal {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.mission {
  background: rgb(255, 255, 255);
  padding: 30px 20px;
  border-radius: 10px;
  text-align: center;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
  position: relative;
}
.mission:hover {
  background: linear-gradient(#00135f12, #e20a170f);
}
.mission h3 {
  padding: 5px;
}
.mission-vission-goal img {
  width: 70px;
  object-fit: contain;
  position: absolute;
  top: 10px;
  right: 10px;
  opacity: 0.05;
}

/* mission-vission-goal */
/* gallery section */
.ekata-gallery {
  display: grid;
  gap: 5px;
  grid-template-columns: repeat(3, 1fr);
  padding-bottom: 70px;
}
.ekata-gallery .gallery-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.gallery-img {
  position: relative;
}
.gallery-img::before {
  content: "";
  background: url(./assets/img/fullscreen.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  color: white;
  position: absolute;
  top: 10px;
  right: 10px;
  width: 20px;
  z-index: 20;
  filter: brightness(0) invert(1);
  height: 20px;
  transition: all 0.3s linear;
  transition-delay: 0.3s;
  transform: scale(0);
  pointer-events: none;
}
.gallery-img:hover::before {
  transform: scale(1);
}
.gallery-img::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 0;
  transition: all 0.3s linear;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.5);
  pointer-events: none;
}
.gallery-img:hover::after {
  height: 100%;
}
.main-gallery-heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
/* gallery section */
/* footer-section */
.footer {
  background: var(--primary-color);
}
.logo-section .custom-logo {
  background: #fff;
  padding: 10px;
  margin-bottom: 25px;
}
.ekata-footer {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  justify-content: space-between;
  padding: 40px 0;
  gap: 40px;
}

.ekata-footer h3 {
  color: white;
  line-height: 100%;
}
.footer-social-icon a {
  color: white;
  font-size: 20px;
  margin-right: 10px;
}

.quick-menu ul {
  list-style-type: none;
  margin-top: 10px;
}
.quick-menu a {
  font-size: 16px;
  color: white;
  text-align: left;
  display: inline-block;
  transition: 0.3s linear;
}
.quick-menu a:hover {
  opacity: 0.8;
  transform: translateX(5px);
}
.quick-menu {
  display: flex;
  justify-content: center;
}
.contact-section ul {
  list-style: none;
  color: white;
  margin-top: 10px;
}
.contact-section a {
  color: white;
}
.contact-section a:hover {
  opacity: 0.8;
}
.contact-section i {
  margin-top: 5px;
  font-size: 14px;
}
.contact-section .followus {
  margin-top: 20px;
}
.contact-section ul li {
  display: grid;
  grid-template-columns: 25px 1fr;
}

/* footer-section */
.scrolltop {
  background: white;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 200;
  width: 100%;
  border-bottom: 1px solid #eee;
}
/* copy-right */
.copyright-last {
  color: white;
  background: rgba(0, 0, 0, 0.3);
  padding: 10px 0;
  font-size: 14px;
  font-weight: 500;
}
.copyright-last .wrapper {
  gap: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.copyright-last a {
  color: white;
}
.footer-logo-dim {
  position: relative;
}
.site-footer {
  position: relative;
}
.site-footer::after {
  content: "";
  background-image: url("./assets/img/ekata.png");
  position: absolute;
  bottom: 0;
  right: 0;
  height: 200px;
  width: 350px;
  background-repeat: no-repeat;
  background-size: contain;
  opacity: 0.2;
  pointer-events: none;
}
/* copy-right */
.page-section {
  margin-top: 120px;
}
/* about-page-purpose-section */
.purpose-section {
  background: #d9d9d9;
  margin-top: 70px;
  padding-bottom: 70px;
}
.purpose-wrapper .purpose-list:not(:last-child) {
  margin-bottom: 30px;
}
.list-item li {
  font-size: 18px;
  line-height: 32px;
  list-style: square;
}
.list-item {
  padding-left: 20px;
}
/* about-page-purpose-section */
/* program-list */
.program-list .sub-title {
  font-size: 22px;
  color: rgba(0, 0, 0, 0.7);
}
.table-section {
  padding-bottom: 70px;
}
/* program-list */
.table-section table {
  border-collapse: collapse;
  border: 1px solid #eee;
  width: 100%;
}
.table-section tr th {
  font-size: 20px;
  text-align: left;
  padding: 10px 20px;
  border-right: 1px solid #eee;
  border-bottom: 1px solid #eee;
}
.table-section tr td {
  gap: 20px;
  padding: 6px 20px;
  border-bottom: 1px solid #eee;
  border-right: 1px solid #eee;
}
/* contact-information */
.contact-container {
  padding-bottom: 70px;
}
.contact-page {
  display: flex;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
  background: #ffffff4d;
  padding: 40px;
  gap: 40px;
}
.contact-us {
  width: 40%;
}
.form-section {
  width: 60%;
}
.contact-info {
  display: flex;
  flex-direction: column;
}
.con-info {
  display: flex;
  align-items: center;
  gap: 30px;
  column-gap: 20px;
}
.contact-info .con-info {
  width: 100%;
  background-color: white;
  padding: 20px 0;
}
.contact-info .con-info a {
  padding-top: 10px;
  color: black;
}
.contact-info .con-info a:hover {
  color: rgba(0, 0, 0, 0.8);
}
.con-info {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.contact-info .con-info img {
  width: 30px;
}
.con-info p {
  color: rgba(0, 0, 0, 0.5);
  font-size: 16px;
}
.con-info span,
.con-info a {
  font-size: 19px;
}
.con-info .social-icon i {
  font-size: 18px;
}
.contact-info .con-info:last-child {
  border-bottom: none;
}
.contact-form p:nth-child(6) {
  margin-bottom: 0;
  display: flex;
  gap: 10px;
}

/* contact-information */
/* contact-form */

.contact-form p {
  margin: 20px 0;
}
.contact-form input {
  padding: 10px 15px;
  outline: none;
  width: 100%;
  display: block;
  border: none;
  border-bottom: 1px solid #00135f;
  background: #0000000c;
}
.contact-form textarea {
  outline: none;
  width: 100%;
  padding: 10px 15px;
  border: none;
  border-bottom: 1px solid #00135f;
  background: #0000000c;
}
.contact-form [type="submit"] {
  color: white;
  width: 100px;
  background: var(--primary-color);
  padding: 12px 20px;
  border-radius: 5px;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 12px;
  border: none;
  cursor: pointer;
  transition: all 0.5s linear;
}
.contact-form [type="submit"]:hover {
  background: var(--secondary-color);
  color: white;
}

/* contact-form */

/* gallery page */
.ekata-gallery-main {
  display: grid;
  gap: 5px;
  grid-template-columns: repeat(12, 1fr);
  padding-bottom: 70px;
}
.ekata-gallery-main .gallery-img {
  grid-column: span 4;
}
.ekata-gallery-main .gallery-img:first-child {
  grid-column: span 8;
}

.ekata-gallery-main .gallery-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.gallery-img {
  position: relative;
}
.gallery-img::before {
  content: "";
  background: url(./assets/img/fullscreen.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  color: white;
  position: absolute;
  top: 10px;
  right: 10px;
  width: 20px;
  z-index: 20;
  filter: brightness(0) invert(1);
  height: 20px;
  transition: all 0.3s linear;
  transition-delay: 0.3s;
  transform: scale(0);
  pointer-events: none;
}
.gallery-img:hover::before {
  transform: scale(1);
}
.gallery-img::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 0;
  transition: all 0.3s linear;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.5);
  pointer-events: none;
}
.gallery-img:hover::after {
  height: 100%;
}
/* gallery page */
/* error content  */

.error-content {
  text-align: center;
  width: 100%;
}

.error-content p {
  font-size: 60px;
  font-weight: 600;
  /* line-height: 55px; */
  letter-spacing: -0.03em;
  color: var(--primary-color);
}
.error-content div {
  font-size: 20px;
  padding-bottom: 50px;
  color: var(--secondary-color);
}

/* error content  */
.sample-page {
  padding-bottom: 40px;
}

.socials__infos > a {
  display: inline-block;
  color: #fff;
  font-size: 16px;
  margin-right: 5px;
  width: 40px;
  height: 40px;
  background: #ffffff1a;
  text-align: center;
  line-height: 42px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}

.socials__infos > a:hover {
  background: #00000061;
}

.team-member h3 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 0;
  margin-top: 0;
}

.team-member span {
  display: block;
  color: var(--primary-color);
  padding-bottom: 8px;
  font-weight: bold;
}

.team-member img {
  width: 130px;
  height: 130px;
  object-fit: cover;
  -webkit-border-radius: 100%;
  border-radius: 100%;
  margin: 0 0 13px;
  text-align: center;
}

.contact-info a {
  display: inline-block;
  margin-right: 4px;
  color: #333;
}

.contact-info a:hover {
  color: var(--primary-color);
}

.team-section .uk-grid > div:first-child {
  width: 100%;
}

.cat-title-large h3 {
  font-size: 40px;
  line-height: 1.1;
}

.cat-wrapper {
  padding: 25px;
  height: 100%;
  background: #eeeeeea8;
  vertical-align: middle;
  display: inline-block;
}

.cat-wrapper .news__title--xlarge {
  font-size: 46px;
}

.cat-wrapper p {
  font-size: 20px;
  line-height: 37px;
  color: #333;
}

.big-category {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin: 25px 0;
  margin-bottom: 50px;
}

.img-wrapper img {
  height: 100%;
  object-fit: cover;
}
.pagination__wrap {
  text-align: center;
  margin-top: 25px;
}

.page-numbers {
  border: 1px solid #000;
  display: inline-block;
  width: 40px;
  height: 40px;
  vertical-align: middle;
  text-align: center;
  line-height: 40px;
  font-size: 16px;
  overflow: hidden;
  margin-right: 11px;
  position: relative;
  text-transform: uppercase;
  font-weight: 600;
  color: #000;
  -webkit-transition: 0.3s linear;
  -moz-transition: 0.3s linear;
  -ms-transition: 0.3s linear;
  -o-transition: 0.3s linear;
  transition: 0.3s linear;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}

.page-numbers.next,
.page-numbers.prev {
  padding-left: 13px;
  width: auto;
  padding-right: 13px;
}

.page-numbers:hover,
.page-numbers.current {
  border: 1px solid var(--primary-color);
  color: #fff;
  background: var(--primary-color);
}

.posts-navigation .screen-reader-text {
  display: none;
}

.nav-links {
  margin: 25px 0;
  display: flex;
  justify-content: space-between;
}

.nav-links > div {
  padding: 5px 10px;
  background: var(--primary-color);
}

.nav-links > div a {
  color: #fff;
}

.nav-links > div:hover {
  color: #fff;
  background: var(--secondary-color);
}

.post-share-wrap {
  margin: 30px 0;
  padding: 10px;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
  background: #eee;
}
.news-action > div {
  display: inline-block;
  margin-right: 9px;
}

.news-action > div {
  display: inline-block;
  margin-right: 9px;
  margin-bottom: 0;
}

.postdate {
  color: rgb(81, 81, 81);
  text-align: right;
  margin-top: -15px;
}

.the-content p,
.the-content {
  line-height: 170%;
  font-size: 22px;
  color: #000000d6;
  margin-bottom: 20px;
  text-align: justify;
}

.the-content p em {
  color: #000;
}

.the-content img,
.single-article img {
  text-align: center;
  margin: 20px auto 20px 0;
}

.the-content ul,
.the-content ol {
  margin: 0;
  padding: 12px 0px 0 19px;
}

.the-content ul li {
  margin-top: 11px;
  line-height: 1.6;
}

.the-content h1,
.the-content h2,
.the-content h3,
.the-content h4,
.the-content h5,
.the-content h6 {
  font-weight: 600;
  color: #000;
}

.the-content blockquote {
  font-weight: 600;
  font-size: 22px;
  background: #f1f1f1;
  margin-top: 20px;
  padding: 35px;
  line-height: 1.7;
}

blockquote.floatleft {
  background: none;
  padding: 80px 0 0 0;
  color: #000;
  float: left;
  width: 200px;
  padding-right: 30px;
  border-right: 2px solid var(--primary-color);
  margin-right: 40px;
  text-align: inherit;
  position: relative;
}

blockquote.floatright {
  background: none;
  padding: 80px 0 0 0;
  color: #000;
  float: right;
  width: 200px;
  padding-left: 30px;
  border-left: 2px solid var(--primary-color);
  margin-left: 40px;
  text-align: inherit;
  position: relative;
}

blockquote.floatleft::before {
  content: "\f1b2";
  font: normal normal normal 14px/1 "Material-Design-Iconic-Font";
  font-size: 60px;
  position: absolute;
  left: 0px;
  background: var(--primary-color);
  color: #fff;
  height: 70px;
  width: 70px;
  border-radius: 100%;
  text-align: center;
  line-height: 70px;
  top: 0;
}

blockquote.floatright::before {
  content: "\f1b2";
  font: normal normal normal 14px/1 "Material-Design-Iconic-Font";
  font-size: 60px;
  position: absolute;
  right: 0px;
  background: var(--primary-color);
  color: #fff;
  height: 70px;
  width: 70px;
  border-radius: 100%;
  text-align: center;
  line-height: 70px;
  top: 0;
}

.alignleft {
  padding-right: 30px;
  float: left;
}

.alignright {
  padding-left: 30px;
  float: right;
}

.aligncenter {
  text-align: center;
}

.comment-reply-title {
  font-size: 22px;
  font-weight: 600;
  color: #000;
  font-family: "Poppins", sans-serif;
}

#commentform {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-column-gap: 30px;
}

.comment-notes {
  font-size: 15px;
  display: none;
  color: #000;
}

.comment-meta {
  padding-bottom: 14px;
}

.comment-form-comment,
.comment-form-author,
.comment-form-email,
.comment-form-url,
.comment-form-cookies-consent {
  margin-top: 0;
}

#respond p label {
  width: 100%;
  color: #000000bf;
  font-weight: 600;
  font-size: 16px;
}

#respond textarea {
  outline: none;
  padding: 20px;
  margin: 5px 1px 3px 0;
  width: 100%;
  border: none;
  height: 150px;

  background: #fff;
  resize: none;
  color: #000;
  font-size: 17px;
  border: 1px solid #00000026;
  line-height: 1.8;
}

#respond input[type="text"],
#respond input[type="url"],
#respond input[type="email"] {
  background: #fff;
  height: 45px;
  outline: none;
  padding: 3px 20px;
  margin: 5px 1px 3px 0;
  font-family: poppins, sans-serif;
  width: 100%;
  border: none;
  color: #000;
  font-size: 15px;
  border: 1px solid #00000026;
  border-radius: 4px;
}

.comment-form-comment,
.comment-notes,
.comment-form-cookies-consent,
.form-submit {
  grid-column: span 3;
  margin-top: 0;
}

#respond #submit,
.uk-search button {
  font-family: "Mukta", sans-serif;
  font-weight: bold;
  border: none;
  padding: 12px 14px;
  color: #fff;
  font-size: 13px;
  cursor: pointer;
  -webkit-border-radius: 3px;
  border-radius: 3px;
  letter-spacing: 1px;
  text-transform: uppercase;
  background: var(--primary-color);
  font-weight: 600;
}

#respond #submit:hover {
  background: var(--secondary-color);
}

.comment-form-cookies-consent {
  display: none;
}

.comments-title {
  font-size: 18px;
  display: none;
  background: var(--primary-color);
  padding: 14px 23px;
  color: #fff;
  margin: 0;
}

.comment-list,
.comment-respond {
  margin: 0 0 30px;
  list-style: none;
  background-color: #f1f1f1;
  padding: 20px;
}

.comment-list > li {
  margin-top: 30px;
  padding-top: 30px;
  border-top: 1px solid #00000021;
}

.comment-list > li:first-child {
  padding-top: 0;
  border-top: none;
  margin-top: 0;
}

.comment-list > li > article {
  position: relative;
}

.comment-list > li article footer .comment-author,
.comment-metadata {
  position: relative;
  padding-left: 69px;
  color: #000;
}

.fn {
  display: inline-block;
  vertical-align: middle;
  margin-right: 5px;
  font-size: 17px;
  color: #000;
  text-transform: capitalize;
}

.comment-list > li article footer .comment-author img {
  position: absolute;
  left: 0;
  top: 0;
  height: 50px;
  width: 50px;
  border-radius: 100%;
}

.comment-list > li article footer time {
  font-size: 14px;
}

.comment-list > li article footer .comment-author a,
.comment-list > li article footer time {
  color: #000;
}

.comment-list > li article .comment-content {
  margin: 0 0 0 58px;
  position: relative;
  color: #000;
  font-size: 16px;
  line-height: 1.7;
  border-top: 1px solid #ddd;
}

.comment-list > li article .comment-content p {
  color: #000;
  border-top: 1px solid #fff;
  padding-top: 14px;
}

.logged-in-as {
  grid-column: span 2;
}

.comment-list > li article .comment-content a,
.logged-in-as > a {
  color: var(--primary-color);
}

.comment-list > li > article .reply {
  position: absolute;
  right: 0;
  top: 0;
}

.reply a {
  font-weight: 700;
  background: var(--primary-color);
  padding: 5px 9px;
  display: inline-block;
  color: #fff;
  border-radius: 2px;
  font-size: 12px;
  text-transform: uppercase;
}

.reply a:hover {
  background: var(--secondary-color);
}

.comment-list > li ol {
  margin: 0 0 0 50px;
  padding: 0;
  list-style: none;
}

.comment-list > li ol li em {
  display: inline-block;
  margin-top: 20px;
}

.featured-img {
  margin-bottom: 20px;
  text-align: center;
}

.row__news {
  display: flex;
  padding: 17px 0;
  border-bottom: 1px solid #fff9f917;
}

.row__news:last-child {
  border-bottom: none;
}

.row__news > a {
  display: block;
  width: 100px;
  height: 80px;
  margin-right: 25px;
}

.row__news > a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.row__news .news__title--small,
.row__news .news__title--medium {
  flex: 2;
  margin: 0;
  font-size: 18px;
}

.col--news > a {
  display: block;
  width: 100%;
  height: 190px;
}

.col--news > a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cat-head {
  font-size: 32px;
  font-weight: 600;
  color: #000;
  background: #fff;
  margin-bottom: 0;
  padding-right: 20px;
  position: relative;
  z-index: 1;
}

.cat-name {
  display: flex;
  justify-content: space-between;
  position: relative;
  align-items: center;
  margin-bottom: 25px;
}

.cat-name::before {
  display: block;
  content: "";
  width: 100%;
  height: 2px;
  background: #9f9f9f63;
  position: absolute;
  top: 45%;
  right: 0;
  z-index: -1;
  bottom: inherit;
}

.cat-name a {
  background: #fff;
  padding-left: 20px;
  color: #000;
  position: relative;
  z-index: 1;
}

.cat-name a i {
  background: var(--secondary-color);
  width: 20px;
  height: 20px;
  text-align: center;
  line-height: 20px;
  font-size: 10px;
  color: #fff;
  transition: 0.3s linear;
  -webkit-transition: 0.3s linear;
  -moz-transition: 0.3s linear;
  -ms-transition: 0.3s linear;
  -o-transition: 0.3s linear;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  font-weight: bold;
  vertical-align: baseline;
}

.cat-name a i:hover {
  background: var(--primary-color);
  color: #fff;
  transition: 0.3s linear;
  -webkit-transition: 0.3s linear;
  -moz-transition: 0.3s linear;
  -ms-transition: 0.3s linear;
  -o-transition: 0.3s linear;
}
