:root {
  --neila-primary: #ffa60a;
  --neila-link: #67cbef;
  --neila-dark: #2c3e50;
  --neila-navy: #253443;
  --neila-overlay: rgba(51, 66, 81, 0.85);
  --neila-text: #8a8a8a;
  --neila-muted: #8a8a8a;
  --neila-bg-soft: #f0f0f0;
  --neila-white: #fff;
  --neila-container: 1170px;
  --neila-font: "Roboto", Arial, sans-serif;
  --neila-heading: "Lato", Arial, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  margin: 0;
  font-family: var(--neila-font);
  font-size: 18px;
  font-weight: 400;
  line-height: 30px;
  color: var(--neila-text);
  background: var(--neila-white);
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--neila-text);
  text-decoration: none;
}

a:hover {
  color: var(--neila-primary);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--neila-heading);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.025em;
  color: #686868;
  margin-top: 0;
}

h1 { font-size: 36px; }
h2 { font-size: 30px; }
h3 { font-size: 24px; }
h4 { font-size: 18px; }

.container {
  width: min(100% - 30px, var(--neila-container));
  margin-inline: auto;
}

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.skip-link:focus {
  position: absolute;
  left: 12px;
  top: 12px;
  z-index: 1000;
  background: var(--neila-white);
  padding: 8px 12px;
  clip: auto;
  width: auto;
  height: auto;
}

/* Header */
.site {
  overflow-x: clip;
}

.site-header {
  background: var(--neila-white);
}

.top-bar {
  background: #f1f1f1;
  color: #2c3e50;
  font-size: 12px;
}

.top-bar__inner {
  display: flex;
  justify-content: flex-end;
  padding: 0;
}

.social-links {
  display: flex;
  font-size: 0;
}

.social-links a {
  display: inline-block;
  width: 41px;
  height: 44px;
  line-height: 44px;
  text-align: center;
  color: #2c3e50;
  border-right: 1px solid #dddddd;
  font-size: 13px;
  transition: color 0.5s, background 0.5s;
}

.social-links a:first-child {
  border-left: 1px solid #dddddd;
}

.social-links a i {
  display: block;
  width: 100%;
  height: 100%;
  line-height: 44px;
}

.social-links a:hover,
.social-links a:hover i {
  color: #fff;
}

.social-links a:hover .fa-facebook { background: #3b5998; }
.social-links a:hover .fa-twitter { background: #44ccf6; }
.social-links a:hover .fa-linkedin { background: #1883bb; }
.social-links a:hover .fa-pinterest { background: #e71f28; }
.social-links a:hover .fa-instagram { background: #549bc5; }

.header-brand {
  padding: 30px 0;
  border-top: 1px solid #eee;
}

.header-brand__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.site-branding {
  flex: 0 0 auto;
}

.site-logo img {
  max-height: 80px;
  width: auto;
}

.header-contacts {
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
  gap: 28px;
  margin-left: auto;
}

.header-contact {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  grid-template-rows: auto auto;
  column-gap: 18px;
  align-items: center;
  min-width: 180px;
  text-align: left;
}

.header-contact i {
  position: relative;
  grid-row: 1 / 3;
  align-self: center;
  width: 42px;
  height: 42px;
  border: 1px solid #dcdcdc;
  border-radius: 50%;
  color: var(--neila-primary);
  font-size: 18px;
  display: grid;
  place-items: center;
}

.header-contact i::after {
  content: "";
  position: absolute;
  width: 46px;
  height: 46px;
  left: -3px;
  top: -3px;
  border: 1px solid #dcdcdc;
  border-radius: 50%;
}

.header-contact__label,
.header-contact__info {
  display: block;
  line-height: 0.8;
  font-size: 12px;
}

.header-contact__label {
  font-weight: 700;
  text-transform: uppercase;
  color: #2c3e50;
  margin-bottom: 7px;
}

.header-contact__info,
.header-contact__info a {
  margin: 0;
  color: #ababab;
}

.header-contact__info a:hover {
  color: var(--neila-primary);
}

.header-nav-wrap {
  background: var(--neila-dark);
}

.header-nav-wrap.is-sticky {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  box-shadow: 1px 0 3px 2px rgba(0, 0, 0, 0.1);
}

.header-nav-placeholder {
  display: none;
}

.header-nav-placeholder.is-active {
  display: block;
}

.header-nav-wrap.is-sticky + #mobile-nav:not([hidden]) {
  position: fixed;
  top: 56px;
  left: 0;
  right: 0;
  z-index: 998;
}

.header-nav-wrap__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 70px;
  gap: 24px;
}

.primary-menu,
.mobile-menu {
  list-style: none;
  margin: 0;
  padding: 0;
}

.primary-menu {
  display: flex;
  align-items: center;
  gap: 40px;
}

.primary-menu,
.primary-menu a,
.mobile-menu a {
  font-family: "Roboto", Arial, sans-serif;
}

.primary-menu a {
  color: var(--neila-white);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: uppercase;
  display: block;
  padding: 23px 0;
}

.primary-menu a:hover,
.primary-menu .current-menu-item > a,
.primary-menu .current_page_item > a {
  color: var(--neila-primary);
}

.primary-menu .sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 280px;
  width: max-content;
  max-width: none;
  margin: 0;
  padding: 10px 0;
  list-style: none;
  background: #2c3e50;
  border-bottom: 2px solid var(--neila-primary);
  box-shadow: 0 2px 2px 1px rgba(0, 0, 0, 0.15);
  color: #fff;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(6px);
  transition: opacity 0.35s ease, visibility 0.35s ease, transform 0.35s ease;
  z-index: 30;
}

.primary-menu .menu-item-has-children {
  position: relative;
}

.primary-menu .menu-item-has-children:hover > .sub-menu,
.primary-menu .menu-item-has-children:focus-within > .sub-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.primary-menu .sub-menu li + li a {
  border-top: 1px solid #415365;
}

.primary-menu .sub-menu li,
.primary-menu .sub-menu a {
  white-space: nowrap;
}

.primary-menu .sub-menu a {
  color: #fff;
  padding: 5px 20px;
  text-transform: none;
  font-family: "Roboto", Arial, sans-serif;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 38px;
  transition: color 0.3s ease, padding-left 0.3s ease;
}

.primary-menu .sub-menu a:hover {
  background: transparent;
  color: var(--neila-primary);
  padding-left: 40px;
}

.header-nav-wrap .search-form {
  display: flex;
  align-items: center;
}

.header-nav-wrap .search-field {
  height: 36px;
  border: 0;
  padding: 0 12px;
  width: 200px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--neila-white);
}

.header-nav-wrap .search-field::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.header-nav-wrap .search-submit {
  height: 36px;
  width: 40px;
  border: 0;
  background: var(--neila-primary);
  color: var(--neila-white);
  cursor: pointer;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  position: relative;
}

.nav-toggle__bar,
.nav-toggle__bar::before,
.nav-toggle__bar::after {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--neila-white);
  position: absolute;
  left: 9px;
}

.nav-toggle__bar { top: 19px; }
.nav-toggle__bar::before { content: ""; top: -7px; }
.nav-toggle__bar::after { content: ""; top: 7px; }

.mobile-nav {
  background: var(--neila-navy);
  padding: 12px 20px 24px;
  max-height: min(70vh, 520px);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.mobile-menu .menu-item-has-children {
  position: relative;
}

.mobile-menu a {
  color: var(--neila-white);
  display: block;
  padding: 12px 36px 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-menu__toggle {
  position: absolute;
  top: 4px;
  right: 0;
  width: 40px;
  height: 40px;
  border: 0;
  background: transparent;
  color: #fff;
  cursor: pointer;
}

.mobile-menu .sub-menu {
  display: none;
  list-style: none;
  padding-left: 16px;
}

.mobile-menu .is-open > .sub-menu {
  display: block;
}

.mobile-nav .search-form {
  display: flex;
  margin-top: 16px;
}

.mobile-nav .search-field {
  flex: 1;
  min-width: 0;
  height: 40px;
  border: 0;
  padding: 0 12px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.mobile-nav .search-submit {
  width: 44px;
  height: 40px;
  border: 0;
  background: var(--neila-primary);
  color: #fff;
}

/* Hero */
.hero-banner {
  position: relative;
  overflow: hidden;
  background: #111;
}

.hero-slider {
  position: relative;
}

.hero-slide {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  z-index: 0;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}

.hero-slide.is-active {
  position: relative;
  opacity: 1;
  visibility: visible;
  z-index: 1;
}

.hero-slide img {
  width: 100%;
  height: auto;
  max-height: 550px;
  object-fit: cover;
}

.hero-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border: 0;
  background: rgba(0, 0, 0, 0.35);
  cursor: pointer;
  z-index: 3;
}

.hero-nav--prev { left: 16px; }
.hero-nav--next { right: 16px; }

.hero-nav::before {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  margin: 0 auto;
}

.hero-nav--prev::before { transform: rotate(-135deg); }
.hero-nav--next::before { transform: rotate(45deg); }

.hero-dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 16px;
  display: flex;
  justify-content: center;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
  z-index: 3;
}

.hero-dots button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 0;
  background: rgba(255, 255, 255, 0.5);
  padding: 0;
  cursor: pointer;
}

.hero-dots .is-active {
  background: var(--neila-primary);
}

/* CTA */
.cta-ebook {
  padding: 18px 0;
  text-align: center;
}

.cta-ebook__btn,
.neila-btn {
  display: inline-block;
  max-width: 100%;
  padding: 10px 22px;
  border: 1px solid var(--neila-dark);
  color: var(--neila-dark);
  font-size: 15px;
  font-weight: 500;
  white-space: normal;
}

.cta-ebook__btn:hover,
.neila-btn:hover {
  background: var(--neila-dark);
  color: var(--neila-white);
}

/* Services */
.services-section {
  padding: 20px 0 40px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.service-card {
  background: var(--neila-white);
  position: relative;
  padding-bottom: 44px;
}

.service-card__image img {
  width: 100%;
  height: 247px;
  object-fit: cover;
}

.service-card__body {
  padding: 17px 16px 0;
}

.service-card h3 {
  font-size: 18px;
  font-weight: 900;
  line-height: 30px;
  text-transform: uppercase;
  margin: 0 0 2px;
}

.service-card h3 a {
  color: #000;
}

.service-card h3 a:hover {
  color: var(--neila-primary);
}

.service-card__excerpt {
  font-size: 14px;
  color: var(--neila-muted);
  max-height: 150px;
  overflow: hidden;
}

.service-card .read-more,
.post-card .read-more {
  position: absolute;
  left: 16px;
  bottom: 12px;
  color: var(--neila-dark);
  font-size: 14px;
}

.read-more:hover {
  color: var(--neila-primary);
}

/* About band */
.about-band {
  position: relative;
  min-height: 260px;
  padding: 90px 0;
  background-position: 50% 50%;
  background-size: cover;
  background-repeat: no-repeat;
  color: var(--neila-white);
  text-align: center;
}

.about-band__overlay {
  position: absolute;
  inset: 0;
  background: var(--neila-overlay);
}

.about-band__inner {
  position: relative;
  max-width: 860px;
}

.about-band h2 {
  color: var(--neila-white);
  margin: 0 0 16px;
}

.about-band h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 2px;
  background: var(--neila-primary);
  margin: 14px auto 0;
}

.about-band p {
  margin: 0;
  font-size: 18px;
}

/* News */
.home-news {
  padding: 60px 0;
}

.home-news__grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 30px;
}

.home-news__featured {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.post-card {
  border: 1px solid #dfdfdf;
}

.post-card__image {
  display: block;
}

.post-card__image img {
  width: 100%;
  height: 320px;
  object-fit: cover;
}

.post-card__body {
  padding: 20px 15px 24px;
}

.home-news .entry-post-title {
  font-size: 18px;
  letter-spacing: -0.025em;
  text-transform: uppercase;
  font-weight: 700;
  margin: 0 0 5px;
  color: #000;
}

.home-news .entry-post-title a {
  color: #000;
}

.home-news .entry-post-title a:hover {
  color: var(--neila-primary);
}

.home-news .entry-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 5px 12px;
  font-size: 14px;
  font-style: italic;
  color: #afafaf;
  margin-bottom: 10px;
}

.home-news .entry-meta a,
.home-news .entry-meta time,
.home-news .entry-meta span {
  color: #afafaf;
}

.post-card__excerpt {
  line-height: 2.14;
  max-height: 8.56em;
  overflow: hidden;
  margin-bottom: 19px;
  color: #848484;
}

.read-more-link {
  color: #000;
  font-style: italic;
  font-size: 14px;
  text-transform: capitalize;
  position: relative;
  display: inline-block;
  padding: 6px 0 8px;
}

.read-more-link::before {
  content: "";
  height: 2px;
  position: absolute;
  bottom: 0;
  left: -9px;
  right: -25px;
  background: var(--neila-primary);
}

.read-more-link::after {
  content: "";
  height: 2px;
  position: absolute;
  bottom: 0;
  left: -9px;
  right: 120%;
  background: #000;
  transition: right 0.5s;
}

.read-more-link:hover,
.read-more-link:hover i {
  color: var(--neila-primary);
}

.read-more-link:hover::after {
  right: -25px;
}

.read-more-link i {
  margin-left: 12px;
}

.post-mini {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 15px;
  padding: 14px 0;
}

.post-mini + .post-mini {
  border-top: 0;
}

.post-mini__image img {
  width: 120px;
  height: 94px;
  object-fit: cover;
}

.home-news__list .entry-post-title {
  font-size: 16px;
  font-weight: 700;
  text-transform: capitalize;
  line-height: 30px;
  max-height: 30px;
  overflow: hidden;
  margin: 0;
}

.home-news__list .entry-meta {
  font-size: 13px;
  line-height: 1.2;
  margin-bottom: 4px;
}

.post-mini__excerpt {
  font-size: 14px;
  line-height: 1.714;
  max-height: 3.428em;
  overflow: hidden;
  margin: 0;
  color: #848484;
}

/* Testimonials */
.testimonials {
  background: var(--neila-bg-soft);
  padding: 70px 0;
}

.section-heading {
  text-align: center;
  margin: 0 0 50px;
}

.section-heading::after {
  content: "";
  display: block;
  width: 60px;
  height: 2px;
  background: var(--neila-primary);
  margin: 14px auto 0;
}

.testimonials-slider {
  position: relative;
}

.testimonials-viewport {
  position: relative;
  min-height: 180px;
}

.testimonial {
  margin: 0;
  text-align: center;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.55s ease, visibility 0.55s ease;
}

.testimonial.is-active {
  position: relative;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.testimonial blockquote {
  margin: 0 auto 20px;
  max-width: 770px;
  font-size: 14px;
  line-height: 30px;
  color: #848484;
}

.testimonial figcaption {
  display: block;
  text-align: center;
}

.testimonial figcaption strong {
  display: block;
  position: relative;
  margin: 38px 0 0;
  padding-top: 0;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  color: #010101;
}

.testimonial figcaption strong::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -22px;
  width: 60px;
  height: 2px;
  background: var(--neila-primary);
  transform: translateX(-50%);
}

.testimonial figcaption span {
  display: block;
  font-size: 14px;
  line-height: 30px;
  color: #acacac;
}

.testimonial-thumbs img {
  width: 70px;
  height: 70px;
  object-fit: cover;
  border-radius: 50%;
  display: block;
}

.testimonial-thumbs {
  position: relative;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 36px;
}

.testimonial-thumbs button {
  border: 0;
  padding: 0;
  background: none;
  border-radius: 50%;
  cursor: pointer;
  opacity: 0.5;
  filter: grayscale(0.45);
  transition: opacity 0.4s ease, filter 0.4s ease;
}

.testimonial-thumbs button.is-active {
  opacity: 1;
  filter: none;
}

.testimonial-ring {
  position: absolute;
  top: 0;
  left: 0;
  width: 80px;
  height: 80px;
  border: 2px solid var(--neila-primary);
  border-radius: 50%;
  pointer-events: none;
  z-index: 2;
  transition: transform 0.4s ease;
}

/* Inner pages */
.page-header {
  position: relative;
  padding: 80px 0;
  background-position: 50% 50%;
  background-size: cover;
  background-repeat: no-repeat;
  text-align: center;
}

.page-header__overlay {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.85);
}

.page-header__inner {
  position: relative;
}

.page-header h1 {
  margin: 0 0 8px;
  color: #000;
  text-transform: uppercase;
  font-size: 28px;
  font-weight: 700;
  line-height: 30px;
}

.breadcrumbs {
  margin: 0 0 5px;
  padding: 0;
  list-style: none;
}

.breadcrumbs li {
  display: inline;
}

.breadcrumbs li a,
.breadcrumbs li span {
  font-size: 16px;
  font-weight: 400;
  color: var(--neila-dark);
  line-height: 1.875;
}

.breadcrumbs li span {
  color: var(--neila-primary);
}

.breadcrumbs li::after {
  font-family: FontAwesome, sans-serif;
  content: "\f105";
  display: inline-block;
  font-size: 16px;
  padding: 0 10px;
  color: var(--neila-dark);
}

.breadcrumbs li:last-child::after {
  display: none;
}

.heading-wrap h2 {
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
  position: relative;
  margin: 0 0 40px;
  color: var(--neila-dark);
}

.heading-wrap h2::after {
  content: "";
  position: absolute;
  top: 100%;
  width: 60px;
  height: 1px;
  margin-top: 20px;
  border-bottom: 1px solid var(--neila-primary);
}

.heading-wrap--left h2::after {
  left: 0;
}

.heading-wrap:not(.heading-wrap--left) h2::after {
  left: 50%;
  transform: translateX(-50%);
}

.heading-wrap--light h2 {
  color: var(--neila-white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
  padding: 70px 0 40px;
}

.about-grid__text p {
  margin: 0 0 1.2em;
}

.about-proposta-title {
  font-size: 18px;
  font-weight: 700;
  margin: 8px 0 16px;
}

.about-proposta {
  display: inline-block;
}

.about-photo {
  margin: 0 0 24px;
}

.about-meta p {
  margin: 0 0 1em;
}

.partners {
  padding: 50px 0 70px;
  text-align: center;
}

.partners__list {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.partners__list img {
  max-height: 145px;
  width: auto;
  margin: 0 auto;
}

.about-band--resume {
  margin-top: 20px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  padding: 70px 0 90px;
}

.contact-grid__info h3 {
  margin: 0 0 24px;
  font-size: 18px;
  color: var(--neila-dark);
}

.contact-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.contact-list li {
  display: flex;
  gap: 8px;
  margin-bottom: 10px;
}

.contact-list i {
  width: 35px;
  color: var(--neila-primary);
  margin-top: 9px;
}

.contact-list span,
.contact-list p {
  display: inline-block;
  margin: 0 6px 0 0;
  color: #272727;
}

.contact-list a {
  color: var(--neila-dark);
}

.single-services .entry-post-title {
  margin: 30px 0 16px;
}

.woocommerce-wrap > .page-title {
  display: none;
}

.entry,
.entry-content {
  padding: 60px 0 90px;
}

.page-about.entry,
.page-contact.entry {
  padding: 0;
}

.entry-layout,
.archive-layout {
  display: grid;
  grid-template-columns: minmax(240px, 0.8fr) minmax(0, 2.2fr);
  gap: 50px;
  padding: 50px 0 90px;
  align-items: start;
}

.entry-featured {
  margin: 0 0 30px;
}

.entry-featured img {
  width: 100%;
}

.sidebar .widget {
  margin-bottom: 50px;
}

.sidebar .widget-title {
  font-size: 20px;
  font-weight: 700;
  text-transform: capitalize;
  color: #000;
  margin-bottom: 40px;
}

.sidebar .search-form {
  position: relative;
  width: 100%;
  display: block;
}

.sidebar .search-field {
  height: 50px;
  width: 100%;
  border: 0;
  border-radius: 3px;
  background: #eeeeee;
  padding: 0 65px 0 16px;
  color: #393939;
  font-size: 14px;
}

.sidebar .search-submit {
  position: absolute;
  right: 0;
  top: 0;
  width: 50px;
  height: 50px;
  border: 0;
  background: var(--neila-primary);
  color: #fff;
  cursor: pointer;
}

.sidebar .widget_categories ul,
.sidebar .widget_archive ul,
.sidebar .widget_nav_menu ul,
.sidebar .widget_pages ul,
.sidebar .widget_recent_entries ul {
  list-style: none;
  margin: -14px 0 0;
  padding: 0;
}

.sidebar .widget_categories li,
.sidebar .widget_archive li,
.sidebar .widget_nav_menu li,
.sidebar .widget_pages li,
.sidebar .widget_recent_entries li {
  position: relative;
  margin: 0;
  padding-left: 13px;
  font-size: 14px;
  line-height: 20px;
  color: #393939;
  text-transform: capitalize;
}

.sidebar .widget_categories li + li,
.sidebar .widget_archive li + li,
.sidebar .widget_nav_menu li + li,
.sidebar .widget_pages li + li,
.sidebar .widget_recent_entries li + li {
  border-top: 1px solid #eeeeee;
}

.sidebar .widget_categories li::after,
.sidebar .widget_archive li::after,
.sidebar .widget_nav_menu li::after,
.sidebar .widget_pages li::after,
.sidebar .widget_recent_entries li::after {
  content: "\f0da";
  font-family: FontAwesome, sans-serif;
  color: var(--neila-primary);
  position: absolute;
  left: 0;
  top: 14px;
}

.sidebar .widget_categories a,
.sidebar .widget_archive a,
.sidebar .widget_nav_menu a,
.sidebar .widget_pages a,
.sidebar .widget_recent_entries a {
  display: inline-block;
  padding: 14px 0;
  color: #393939;
}

.sidebar .widget_categories a:hover,
.sidebar .widget_archive a:hover,
.sidebar .widget_nav_menu a:hover,
.sidebar .widget_pages a:hover,
.sidebar .widget_recent_entries a:hover {
  color: var(--neila-primary);
}

.tagcloud a {
  display: inline-block;
  border: 2px solid #f0f0f0;
  border-radius: 4px;
  color: #393939;
  font-size: 13px !important;
  line-height: 20px;
  padding: 5px 10px;
  margin: 0 5px 5px 0;
}

.tagcloud a:hover {
  background: var(--neila-primary);
  border-color: var(--neila-primary);
  color: #fff;
}

.post-large + .post-large {
  margin-top: 60px;
}

.post-large__image {
  margin: 0 0 30px;
}

.post-large__image img {
  width: 100%;
}

.entry-post-title {
  text-transform: none;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.3;
  margin: 0 0 5px;
  color: #000;
}

.entry-post-title a {
  color: #000;
}

.entry-post-title a:hover {
  color: var(--neila-primary);
}

.entry-post-meta {
  font-size: 14px;
  font-style: italic;
  line-height: 30px;
  color: #afafaf;
  margin-bottom: 8px;
  text-transform: capitalize;
}

.entry-post-meta time + span::before,
.entry-post-meta span + span::before {
  content: " / ";
}

.post-large__excerpt {
  color: #848484;
  margin-bottom: 30px;
}

.read-more-button {
  display: inline-block;
  font-size: 15px;
  font-weight: 700;
  padding: 18px 30px;
  background: var(--neila-primary);
  color: #fff;
  border-radius: 3px;
  text-shadow: 1px 0 1px rgba(0, 0, 0, 0.3);
  text-transform: capitalize;
}

.read-more-button:hover {
  background: #333;
  color: #fff;
}

.single-blog {
  padding: 50px 0 90px;
}

.single-blog .entry-featured {
  margin: 0;
}

.single-blog .entry-featured img {
  width: 100%;
  height: auto;
}

.single-blog > .container > .entry-post-title {
  margin: 30px 0 10px;
}

.single-blog .entry-content {
  padding: 0;
  font-size: 14px;
  color: #848484;
  overflow-wrap: anywhere;
}

.single-blog .entry-content a {
  color: var(--neila-link);
}

.single-blog .entry-content p {
  margin-bottom: 30px;
}

.single-blog .entry-content h2 {
  font-size: 30px;
  margin: 0 0 20px;
}

.single-blog .entry-content h3 {
  font-size: 24px;
  font-weight: 400;
  color: #686868;
  margin: 0 0 20px;
}

.single-blog .entry-content h4 {
  font-size: 18px;
  margin: 0 0 16px;
}

.single-blog .entry-content ul,
.single-blog .entry-content ol {
  margin: 0 0 30px;
  padding-left: 20px;
}

.single-blog .entry-content img {
  max-width: 100%;
  height: auto;
}

.single-blog .entry-content iframe {
  max-width: 100%;
}

.single-blog .entry-content .aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.entry-meta-share {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  border-top: 1px solid #eeeeee;
  border-bottom: 1px solid #eeeeee;
  padding: 15px 0;
  margin-top: 60px;
}

.entry-meta-share .entry-post-meta {
  margin: 0;
}

.social-share {
  text-align: right;
  white-space: nowrap;
}

.social-share .label {
  color: #000;
  font-weight: 600;
  margin: 0 4px 0 0;
}

.social-share a {
  margin-left: 10px;
  color: #a5a5a5;
}

.social-share a:hover {
  color: var(--neila-primary);
}

.author-info {
  background: #f6f6f6;
  margin-top: 30px;
}

.author-info__inner {
  display: flex;
  gap: 15px;
  align-items: flex-start;
}

.author-info__avatar {
  flex: 0 0 170px;
  width: 170px;
}

.author-info__avatar img {
  display: block;
  width: 170px;
  height: 170px;
  max-width: none;
  object-fit: unset;
}

.author-info__text {
  padding: 27px 5px 27px 0;
}

.author-title {
  font-size: 18px;
  font-weight: 600;
  color: #000;
  margin: 0 0 5px;
}

.author-title a {
  color: #000;
}

.author-title a:hover {
  color: var(--neila-primary);
}

.author-bio {
  color: #848484;
  line-height: 1.714;
  margin: 0;
}

.related-posts {
  margin-top: 40px;
}

.related-posts__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
}

.related-posts .widget-title {
  font-size: 20px;
  font-weight: 700;
  color: #000;
  margin: 0;
  text-transform: capitalize;
}

.related-posts__nav {
  display: flex;
  gap: 6px;
}

.related-posts__prev,
.related-posts__next {
  width: 25px;
  height: 25px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #000;
  cursor: pointer;
  line-height: 25px;
}

.related-posts__prev:hover,
.related-posts__next:hover {
  color: var(--neila-primary);
}

.related-posts__viewport {
  overflow: hidden;
}

.related-posts__track {
  display: flex;
  gap: 24px;
  transition: transform 0.4s ease;
}

.related-post {
  flex: 0 0 calc((100% - 48px) / 3);
  min-width: 0;
}

.related-post__image {
  display: block;
  margin-bottom: 15px;
}

.related-post__image img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.related-posts .entry-post-title {
  font-size: 16px;
  line-height: 1.3;
  max-height: 1.3em;
  overflow: hidden;
}

.related-posts .entry-post-meta {
  margin-bottom: 0;
}

.related-posts .entry-excerpt {
  font-size: 14px;
  color: #848484;
  margin: 8px 0 0;
}

.p-color {
  color: var(--neila-primary);
}

.pagination {
  margin-top: 40px;
}

.pagination .nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}

.pagination .page-numbers {
  min-width: 36px;
  height: 36px;
  line-height: 36px;
  text-align: center;
  color: #8a8a8a;
}

.pagination .current,
.pagination .page-numbers:hover {
  color: var(--neila-primary);
}

.services-sidebar ul {
  list-style: none;
  margin: 0;
  padding: 0;
  border: 1px solid #dfdfdf;
}

.services-sidebar li a {
  display: block;
  padding: 12px 16px;
  color: var(--neila-dark);
  border-bottom: 1px solid #dfdfdf;
}

.services-sidebar li.current a,
.services-sidebar li a:hover {
  background: var(--neila-dark);
  color: var(--neila-primary);
}

.entry-content a {
  color: var(--neila-link);
}

.entry-content p {
  margin: 0 0 1.2em;
}

.entry-content .alignleft {
  float: left;
  margin: 0 20px 12px 0;
}

.entry-content .alignright {
  float: right;
  margin: 0 0 12px 20px;
}

.entry-content .aligncenter {
  margin: 0 auto 16px;
}

/* Footer */
.site-footer {
  background: var(--neila-navy);
  color: #cfd6dc;
}

.footer-widgets {
  padding: 60px 0 25px;
}

.footer-widgets__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.site-footer a,
.site-footer .widget-title {
  color: var(--neila-white);
}

.bottom-bar {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 25px 0;
}

.bottom-bar__inner {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  font-size: 14px;
}

.bottom-bar p {
  margin: 0;
}

.back-to-top {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  background: var(--neila-primary);
  color: var(--neila-white);
}

.back-to-top:hover {
  color: var(--neila-white);
  background: var(--neila-dark);
}

body.nav-open {
  overflow: hidden;
}

@media (max-width: 991px) {
  .header-contacts,
  .primary-nav,
  .header-nav-wrap .search-form {
    display: none;
  }

  .header-brand {
    padding: 16px 0;
  }

  .header-brand__inner {
    justify-content: center;
  }

  .site-logo img {
    max-width: 220px;
    max-height: 56px;
  }

  .header-nav-wrap__inner {
    min-height: 56px;
    justify-content: flex-end;
  }

  .nav-toggle {
    display: block;
  }

  .top-bar__inner {
    justify-content: center;
  }

  .services-grid,
  .home-news__featured {
    grid-template-columns: 1fr 1fr;
  }

  .home-news__grid,
  .entry-layout,
  .archive-layout,
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .archive-layout .archive-list,
  .entry-layout > article {
    order: -1;
  }

  .footer-widgets__grid {
    grid-template-columns: 1fr 1fr;
  }

  .related-post {
    flex-basis: calc((100% - 24px) / 2);
  }

  .page-header {
    padding: 48px 0;
  }

  .page-header h1 {
    font-size: 24px;
    word-break: break-word;
  }

  .about-grid,
  .contact-grid,
  .entry,
  .entry-content,
  .single-blog,
  .home-news,
  .testimonials,
  .footer-widgets {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .page-about.entry,
  .page-contact.entry,
  .single-blog .entry-content {
    padding-top: 0;
    padding-bottom: 0;
  }

  .about-band {
    padding: 50px 16px;
    min-height: 0;
  }

  .entry-meta-share {
    flex-direction: column;
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .social-share {
    text-align: left;
    white-space: normal;
  }

  .author-info__inner {
    flex-direction: column;
  }

  .author-info__avatar,
  .author-info__avatar img {
    width: 170px;
    height: 170px;
  }

  .service-card__image img,
  .post-card__image img {
    height: 200px;
  }

  .testimonial-ring {
    display: none;
  }

  .testimonial-thumbs button.is-active img {
    box-shadow: 0 0 0 2px #fff, 0 0 0 4px var(--neila-primary);
  }

  .hero-nav {
    width: 36px;
    height: 36px;
  }
}

@media (max-width: 767px) {
  body {
    font-size: 16px;
    line-height: 26px;
  }

  h1 { font-size: 26px; }
  h2 { font-size: 22px; }
  h3 { font-size: 20px; }

  .container {
    width: min(100% - 24px, var(--neila-container));
  }

  .services-grid,
  .footer-widgets__grid,
  .home-news__featured {
    grid-template-columns: 1fr;
  }

  .related-post {
    flex-basis: 100%;
  }

  .bottom-bar__inner {
    flex-direction: column;
    text-align: center;
  }

  .breadcrumbs li a,
  .breadcrumbs li span,
  .breadcrumbs li::after {
    font-size: 14px;
  }

  .entry-content .alignleft,
  .entry-content .alignright {
    float: none;
    display: block;
    margin: 0 auto 16px;
    max-width: 100%;
  }

  .single-blog .entry-content iframe,
  .entry-content iframe,
  .entry-content table {
    max-width: 100%;
  }

  .entry-content table {
    display: block;
    overflow-x: auto;
  }

  .cta-ebook {
    padding: 16px 0;
  }

  .cta-ebook__btn {
    display: block;
    line-height: 1.4;
  }

  .about-band p {
    font-size: 16px;
  }

  .partners__list img {
    max-height: 90px;
  }

  .author-info__text {
    padding: 0 16px 20px;
  }

  .back-to-top {
    right: 12px;
    bottom: 12px;
  }
}
