/**********
 Variables
 **********/
body {
  /* Colors */
  --primary-color: rgba(19, 96, 160, 1);
  --secondary-color: rgba(230, 109, 98, 1);
  --primary-bg-color: #FFFFFF;
  --primary-bg-color-always: #FFFFFF;
  --secondary-bg-color: rgba(252, 252, 252, 1);
  --secondary-bg-color-always: rgba(252, 252, 252, 1);
  --primary-text-color: rgba(1, 1, 1, 1);
  --secondary-text-color: rgba(19, 96, 160, 1);
  --link-color: rgba(19, 96, 160, 1);
  --border-color: rgba(102, 102, 102, 1);
  --info-color: #5b67d3;
  --success-color: #67C30B;
  --warning-color: #F1D52F;
  --danger-color: #e64545;
  --primary-color-hover: #0d3f69;
  --primary-color-active: #0b375c;
  --secondary-color-hover: #de3c2d;
  --secondary-color-active: #d93223;
  --secondary-bg-color-hover: #f2f2f2;
  --secondary-bg-color-active: #ededed;
  --secondary-text-color-hover: #11558e;
  --secondary-text-color-active: #105085;
  --link-color-hover: #0d3f69;
  --link-color-active: #0b375c;

  /* Text */
  --heading-font-family: ;
;  --text-font-family: 'Poppins', sans-serif;
  --heading-font-family: 'Source Serif 4', serif;

  --text-font-size: 16px;
  --text-font-size-large: calc(16px + 2px);
  --text-font-size-small: calc(16px - 2px);
  --heading-1-font-size: 48px;
  --heading-2-font-size: 36px;
  --heading-3-font-size: 30px;
  --heading-4-font-size: 24px;
  --heading-5-font-size: 16px;
  --heading-6-font-size: calc(16px - 2px);

  /* Other */
  --border-radius-base: 8px;
  --border-radius-small: calc(8px / 2);
  --border-radius-button: 8px;
  --logo-height: 25px;

  /* Theme settings */
  --white-color: #fff;
  --border-width: 1px;
  --minus-border-width: -1px;
  --box-shadow: 0px 0px 15px rgba(233, 235, 243, .8);
  --duration: 400ms;
  --timing-function: cubic-bezier(.17, .67, .54, 1);
  --assets-check-svg: url(/hc/theming_assets/01J4VWTTT6PQN8SEXFG8A1XH64);
}

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

body,
html {
  min-height: 100vh;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--text-font-family);
  font-size: var(--text-font-size);
  font-weight: 400;
  line-height: 1.5;
  color: var(--primary-text-color);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  position: relative;
  background-color: var(--primary-bg-color);
}

input,
button,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

input[type=text]::-ms-clear {
  display: none;
  width: 0;
  height: 0;
}

input[type=text]::-ms-reveal {
  display: none;
  width: 0;
  height: 0;
}

input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-results-button,
input[type="search"]::-webkit-search-results-decoration {
  display: none;
}

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

a:hover {
  color: var(--link-color-hover);
}

a:active,
a.is-active {
  color: var(--link-color-active);
}

a.link-primary,
.my-activities-menu__item a {
  color: var(--primary-color);
}

a.link-primary:hover,
.my-activities-menu__item a:hover {
  color: var(--primary-color-hover);
}

a.link-primary:active,
a.link-primary.is-active,
.my-activities-menu__item a:active {
  color: var(--primary-color-active);
}

a.link-secondary {
  color: var(--secondary-color);
}

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

a.link-secondary:active,
a.link-secondary.is-active {
  color: var(--secondary-color-active);
}

a.is-disabled {
  cursor: default;
}

a.is-disabled,
a.is-disabled:hover,
a.is-disabled:active,
a.is-disabled.is-active {
  color: var(--secondary-text-color);
}

a,
button,
[type=submit],
[type=button],
[type=reset] {
  cursor: pointer;
}

a,
input,
button,
select,
textarea,
label {
  transition: all 400ms cubic-bezier(0.17, 0.67, 0.54, 1);
}

a:focus,
input:focus,
button:focus,
select:focus,
textarea:focus,
label:focus {
  outline: none;
}

a.focus-visible,
input.focus-visible,
button.focus-visible,
select.focus-visible,
textarea.focus-visible,
label.focus-visible {
  outline: auto 5px -webkit-focus-ring-color;
}

figure {
  margin: 0;
}

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

audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: middle;
}

.iframe {
  position: relative;
}

.iframe iframe {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.table-container {
  width: 100%;
  overflow-y: auto;
}

.list-unstyled {
  display: block;
  margin: 24px 0;
  padding: 0;
}

.list-unstyled li {
  display: block;
  margin: 0;
  padding: 0;
  list-style: none;
}

.is-hidden,
[hidden] {
  display: none !important;
}

@media (min-width: 1200px) and (max-width: 1399px) {
  .is-hidden--xl {
    display: none !important;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .is-hidden--lg {
    display: none !important;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .is-hidden--md {
    display: none !important;
  }
}

@media (min-width: 576px) and (max-width: 767px) {
  .is-hidden--sm {
    display: none !important;
  }
}

@media (max-width: 1399px) {
  .is-hidden--xl-down {
    display: none !important;
  }
}

@media (max-width: 1199px) {
  .is-hidden--lg-down {
    display: none !important;
  }
}

@media (max-width: 991px) {
  .is-hidden--md-down {
    display: none !important;
  }
}

@media (max-width: 767px) {
  .is-hidden--sm-down {
    display: none !important;
  }
}

@media (max-width: 575px) {
  .is-hidden--xs,
  .is-hidden--xs-down {
    display: none !important;
  }
}

@media (min-width: 1400px) {
  .is-hidden--xxl,
  .is-hidden--xxl-up {
    display: none !important;
  }
}

@media (min-width: 1200px) {
  .is-hidden--xl-up {
    display: none !important;
  }
}

@media (min-width: 992px) {
  .is-hidden--lg-up {
    display: none !important;
  }
}

@media (min-width: 768px) {
  .is-hidden--md-up {
    display: none !important;
  }
}

@media (min-width: 576px) {
  .is-hidden--sm-up {
    display: none !important;
  }
}

[dir=ltr] .is-hidden--ltr {
  display: none !important;
}

[dir=rtl] .is-hidden--rtl {
  display: none !important;
}

.ui-light .is-hidden--light-mode {
  display: none !important;
}

.ui-dark .is-hidden--dark-mode {
  display: none !important;
}

/********
 Headings
 ********/
h1, .h1,
h2, .h2,
h3, .h3,
h4, .h4,
h5, .h5,
h6, .h6 {
  font-family: var(--heading-font-family);
  font-weight: 700;
}

h1, .h1 {
  font-size: var(--heading-2-font-size);
  line-height: 1.2;
}

h2, .h2 {
  font-size: var(--heading-3-font-size);
  line-height: 1.3;
}

h3, .h3,
h4, .h4 {
  font-size: var(--heading-4-font-size);
  line-height: 1.4;
}

h5, .h5 {
  font-size: var(--heading-5-font-size);
}

h6, .h6 {
  font-size: var(--heading-5-font-size);
}

@media (min-width: 992px) {
  h1, .h1 {
    font-size: var(--heading-1-font-size);
    line-height: 1.1;
  }

  h2, .h2 {
    font-size: var(--heading-2-font-size);
    line-height: 1.2;
  }

  h3, .h3 {
    font-size: var(--heading-3-font-size);
    line-height: 1.3;
  }
}

h1,
.h1 {
  margin: 0 0 1.2em;
}

.markdown h1,
.markdown .h1 {
  margin-top: 1.2em;
}

/* Breadcrumbs */
.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  margin: 0 0 24px;
  padding: 0;
}

.breadcrumbs--bottom {
  margin: 12px 0 0;
}

.breadcrumbs li {
  font-size: var(--text-font-size-small);
  margin-right: 24px;
  display: block;
  position: relative;
}

.breadcrumbs li + li {
  padding-left: 28px;
}

.breadcrumbs li + li::before {
  content: "\f054";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-size: 10px;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  color: var(--secondary-text-color);
}

@media (max-width: 575px) {
  .breadcrumbs li {
    margin-right: 12px;
  }

  .breadcrumbs li + li {
    padding-left: 16px;
  }
}

/* Inner pages */
.inner-page-heading .section__title {
  margin-bottom: 12px;
}

.section__description {
  color: var(--secondary-text-color);
}

.inner-page-heading--center {
  text-align: center;
}

.inner-page {
  background-color: var(--primary-bg-color);
  padding-top: 48px;
  padding-bottom: 48px;
}

.inner-page .category-list__item {
  background-color: var(--secondary-bg-color);
}

.inner-page .category-list__item:hover,
.inner-page .category-list__item:active {
  box-shadow: none;
}

.inner-page__sections {
  margin-bottom: 10px;
}

.inner-page__sections .col-12 {
  margin-bottom: 30px;
}

.entry-info {
  display: flex;
  font-size: 14px;
}

.entry-info__avatar {
  flex-shrink: 0;
}

[dir=ltr] .entry-info__avatar {
  padding-right: 12px;
}

[dir=rtl] .entry-info__avatar {
  padding-left: 12px;
}

.avatar {
  position: relative;
  display: inline-block;
}

.user-avatar {
  border-radius: 100%;
}

.user-avatar--profile {
  margin-bottom: 12px;
}

.user-avatar--default {
  width: 40px;
  height: 40px;
}

.meta {
  font-size: var(--text-font-size-small);
  color: var(--secondary-text-color);
}

.inner-page__rightbar + .inner-page__rightbar {
  margin-top: 24px;
  padding-top: 24px;
  border-top: var(--border-width) solid var(--border-color);
}

.inner-page__rightbar h3,
.recent-articles-title,
.related-articles-title,
.recent-articles h3 {
  margin: 0 0 24px;
  font-size: var(--heading-3-font-size);
}

.related-articles ul,
.recent-articles ul {
  margin: 0;
  padding: 0;
  display: block;
}

.related-articles ul li,
.recent-articles ul li {
  display: block;
  list-style: none;
  margin: 0;
  padding: 6px 0;
}

.share {
  display: flex;
  margin: 24px 0;
  padding: 0;
}

.share li {
  display: block;
  margin: 0 12px 0 0;
  padding: 0;
  list-style: none;
}

.attachments {
  margin: 24px 0;
}

.attachment-list {
  display: block;
  margin: 24px 0;
  padding: 0;
}

.attachment-list__item {
  display: block;
  margin: 0;
  padding: 0;
  list-style: none;
}

.attachment-list__item + .attachment-list__item {
  margin-top: 8px;
}

.attachment-list__item i {
  color: var(--primary-color);
}

.article-vote {
  margin: 40px 0;
  border-top: var(--border-width) solid var(--border-color);
  padding-top: 24px;
  text-align: center;
}

.article-vote__title {
  margin: 0 0 24px;
}

.article-vote__count {
  margin-top: 12px;
}

.article-more-questions {
  display: none !important;
}

/* Comments */
.comments__heading {
  display: flex;
  justify-content: space-between;
  margin-bottom: 24px;
}

.comments__title {
  margin: 0;
}

.comments__container {
  background-color: var(--primary-bg-color);
  padding: 40px;
}

.comment-form__body textarea {
  height: 112px;
}

.comment-form__attachments,
.comment-form__controls {
  margin-top: 8px;
}

.comment-form__ccs ul {
  display: block;
  margin: 0 0 8px;
}

.comment-form__mark-as-solved {
  display: flex;
  margin-bottom: 8px;
}

.comment-form__mark-as-solved label {
  margin-left: 8px;
}

.comments__list {
  padding: 0 40px 16px;
  margin: 0 -40px 40px;
  border-bottom: var(--border-width) solid var(--border-color);
}

.comments__list--content {
  margin-right: 0;
  margin-left: 0;
  padding-right: 0;
  padding-left: 0;
}

.comment {
  display: flex;
  margin-bottom: 24px;
}

.comment__left {
  flex: 1 1 10px;
}

.comment__sidebar {
  width: 30px;
  margin-left: 12px;
  text-align: center;
}

.comment + .comment {
  padding-top: 24px;
  border-top: var(--border-width) solid var(--border-color);
}

.comment__heading {
  display: flex;
  align-items: center;
}

.user-avatar {
  margin-right: 12px;
}

.comment__body {
  margin-top: 12px;
}

.comment__body .h5 {
  font-size: 18px;
}

.comment__actions {
  margin-top: 4px;
}

.request-details {
  display: flex;
  flex-wrap: wrap;
}

.request-details dt {
  flex: 0 0 50%;
  max-width: 50%;
  margin: 0;
  font-weight: bold;
}

.request-details dd {
  flex: 0 0 50%;
  max-width: 50%;
  margin: 0;
  color: var(--secondary-text-color);
}

.request-status {
  padding: 2px 8px;
  border: var(--border-radius-button);
  background-color: var(--secondary-bg-color);
  font-size: var(--text-font-size-small);
}

.request-status--open,
.request-status--new {
  background-color: var(--danger-color);
  color: var(--white-color);
}

.request-status--answered {
  background-color: var(--warning-color);
  color: var(--white-color);
}

.request-status--solved,
.request-status--closed {
  background-color: var(--success-color);
  color: var(--white-color);
}

/**/
.my-activities-menu {
  display: flex;
  padding: 0;
  font-weight: bold;
  margin-top: 32px;
  margin-bottom: -32px;
}

.my-activities-menu__item {
  display: block;
  margin: 0 32px 0 0;
  padding: 0;
  list-style: none;
}

@media (max-width: 480px) {
  .my-activities-menu__item {
    margin: 0 12px 0 0;
  }
}

.my-activities-menu__item.is-active {
  padding: 0 0 12px;
  border-bottom: 3px solid var(--primary-color);
}

.my-activities {
  width: 100%;
}

.my-activities thead {
  font-weight: bold;
}

.my-activities thead td {
  padding-bottom: 12px;
}

.my-activities tbody td {
  padding: 4px 0;
}

.my-activities__btn {
  width: 10px;
}

.pagination {
  display: block;
  margin: 24px 0;
}

.pagination-list {
  display: flex;
  align-items: center;
  margin: 0;
  padding: 0;
}

.pagination-list li {
  display: block;
  margin: 0;
  padding: 0;
  list-style: none;
}

.pagination-list li + li {
  margin-left: 4px;
}

@media (max-width: 767px) {
  .my-activities__is-hidden {
    display: none !important;
  }
}

.my-activities thead .requests-link,
.my-activities thead .requests-link:hover,
.my-activities thead .requests-link:active {
  color: var(--primary-text-color);
}

.my-activities thead .requests-sort-symbol {
  font-size: 10px;
  color: var(--link-color);
  margin-left: 4px;
}

#search-filter {
  margin-bottom: 40px;
}

.filter {
  margin: 0;
}

@media (min-width: 768px) {
  .filter {
    display: block !important;
    height: auto !important;
  }
}

@media (max-width: 767px) {
  #search-filter h3::after {
    font-family: "Font Awesome 5 Free";
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1;
    font-weight: 900;
    content: "\f107";
    color: var(--secondary-text-color);
    margin-left: 8px;
  }
}


.filter li {
  padding: 4px 0;
}

.filter__btn {
  margin-top: 24px;
}

.topic-list__item + .topic-list__item {
  margin-top: 24px;
  padding-top: 24px;
  border-top: var(--border-width) solid var(--border-color);
}

.topic-list__heading {
  margin-top: 0;
}

.topic-list + .pagination {
  margin-top: 40px;
}

.topic-controls {
  margin-bottom: 40px;
}

.vote-sum {
  margin: 0 12px;
}

/* Profile */
.profile-stats:first-child {
  margin-top: 0;
}

.profile-stats__stat {
  display: flex !important;
}

.profile-stats__label {
  display: block;
  flex: 0 0 50%;
  max-width: 50%;
  color: var(--secondary-text-color);
  font-size: var(--text-font-size-small);
}

.profile-stats__label::after {
  content: ':';
}

.profile-stats__value {
  display: block;
  flex: 0 0 50%;
  max-width: 50%;
  font-weight: bold;
  font-size: var(--text-font-size-small);
}

.community-badges-block {
  padding-bottom: 24px;
}

.community-badges {
  display: flex;
  flex-wrap: wrap;
}

.community-badges img {
  width: 40px;
  height: 40px;
  margin-right: 4px;
}

.community-badge-titles {
  display: inline-block;
  font-family: var(--text-font-family);
  font-size: var(--text-font-size-small);
  font-weight: normal;
  background-color: var(--secondary-color);
  padding: 2px 4px;
  border-radius: var(--border-radius-button);
  color: var(--white-color);
  line-height: 1;
  vertical-align: middle;
}

.profile-heading {
  margin-bottom: 40px;
}

.profile-heading h2 {
  margin: 0 0 12px;
}

.profile-user-meta > span {
  display: block;
  font-weight: bold;
  color: var(--primary-text-color);
}

.profile-badges-item-image {
  display: block;
  margin-right: 12px;
}

.profile-badges-item-image img {
  width: 40px;
  height: 40px;
  display: block;
}

.profile-badges-item-image.titles {
  border-radius: 50%;
  background-color: var(--secondary-text-color);
}

.profile-badges-item-metadata {
  margin-top: 12px;
}

/* Header */
.header {
  box-shadow: var(--box-shadow);
  position: fixed;
  left: 0;
  width: 100%;
  z-index: 99;
  background-color: var(--primary-bg-color);
}

.header-placeholder {
  height: 60px;
}

.header__container {
  height: 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header__logo {
  display: flex;
  align-items: center;
}

.header__logo img {
  height: var(--logo-height);
}

.header__logo span {
  margin-left: 12px;
}

.header__menu {
  display: flex;
  margin: 0;
  padding: 0;
}

.header__menu > * {
  display: block;
}

.header__menu > * + * {
  margin-left: 15px;
}

.header__menu .fas {
  font-size: 11px;
}

.header__mobile-toggle.is-active i::before {
  content: "\f00d";
}

@media (min-width: 768px) and (max-width: 991px) {
  .header__menu,
  .header__logo span {
    font-size: 14px;
  }
}

@media (max-width: 767px) {
  .header__menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: var(--primary-bg-color);
    border-bottom: var(--border-width) solid var(--border-color);
  }

  .header__menu.is-active {
    display: block;
  }

  .header__menu > * {
    display: block;
    width: 100%;
    padding: 6px 15px;
  }

  .header__menu > * + * {
    margin-left: 0;
  }
}

.header__search .fas {
  font-size: 14px;
}

.header-search {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  background-color: var(--primary-bg-color);
  transition: all var(--duration) var(--timing-function);
  transform: translateY(-100%);
  visibility: hidden;
}

.header-search.is-active {
  transform: translateY(0);
  visibility: visible;
}

.header-search .welcome__search input[type=search] {
  border: none;
  border-radius: 0;
  height: 60px;
  padding-left: 0;
}

/* Welcome */
.welcome {
  padding: 60px 0;
}

.welcome--with-border {
  border-bottom: var(--border-width) solid var(--border-color);
}

.welcome__title {
  margin-bottom: 37px;
}

.welcome__search {
  display: block;
  position: relative;
}

.welcome__search .meta {
  display: block;
  position: absolute;
  top: 100%;
  left: 0;
}

.welcome__search input[type=search] {
  height: 50px;
  outline: none;
  border-color: var(--primary-color);
}

.welcome__search input[type=search]:focus,
.welcome__search input[type=search]:active {
  outline: none;
}

.welcome__search input[type=submit] {
  width: 50px;
  height: 50px;
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
}

.welcome__search input[type=submit],
.welcome__search input[type=submit]:hover,
.welcome__search input[type=submit]:focus,
.welcome__search input[type=submit]:active {
  background-color: transparent;
  color: transparent;
  border-color: transparent;
}

.welcome__search::after {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f002";
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  color: var(--primary-color);
}

@media (max-width: 767px) {
  .welcome {
    padding: 48px 0;
  }

  .welcome__title {
    margin-bottom: 24px;
    text-align: center;
  }
}

@media (max-width: 575px) {
  .welcome {
    padding: 30px 0;
  }

  .welcome__title {
    margin-bottom: 12px;
    font-size: var(--heading-4-font-size);
  }
}

/* Helpers */
.helpers {
  margin-bottom: 62px;
}

@media (max-width: 575px) {
  .helpers {
    margin-bottom: 32px;
  }
}

.helpers__item {
  display: block;
  width: 100%;
  border-radius: var(--border-radius-base);
  box-shadow: var(--box-shadow);
  background-color: var(--primary-bg-color);
  padding: 36px 12px 24px 150px;
  position: relative;
  height: 100%;
  min-height: 150px;
  border: var(--border-width) solid var(--primary-bg-color);
}

.helpers__item:hover,
.helpers__item:focus,
.helpers__item:active {
  border-color: var(--primary-color);
}

.helpers__icon {
  display: block;
  position: absolute;
  width: 110px;
  height: 110px;
  top: 50%;
  left: 20px;
  transform: translateY(-50%);
}

.helpers__icon img {
  max-width: 110px;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.helpers__title {
  display: block;
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 10px;
  color: var(--primary-text-color);
}

.helpers__description {
  color: var(--secondary-text-color);
  line-height: 1;
}

@media (max-width: 991px) {
  .helpers .col {
    margin-top: 15px;
  }
}

/* Category list */
.category-list {
  background-color: var(--secondary-bg-color);
  padding: 36px 0 12px;
}

.category-list .col-12 {
  margin-bottom: 24px;
}

.category-list__item {
  display: block;
  width: 100%;
  border-radius: var(--border-radius-button);
  background-color: var(--primary-bg-color);
  height: 100%;
  padding: 24px;
  transition: background-color var(--duration) var(--timing-function);
}

.category-list__item:hover,
.category-list__item:focus,
.category-list__item:active {
  background-color: #1360A0;
}

.category-list__title {
  display: block;
  color: var(--primary-text-color);
  transition: color var(--duration) var(--timing-function);
}

.category-list__description {
  color: var(--secondary-text-color);
  transition: color var(--duration) var(--timing-function);
}

.category-list__item:hover .category-list__title,
.category-list__item:focus .category-list__title,
.category-list__item:active .category-list__title,
.category-list__item:hover .category-list__description,
.category-list__item:focus .category-list__description,
.category-list__item:active .category-list__description {
  color: var(--white-color);
}

@media (max-width: 575px) {
  .category-list {
    padding: 36px 0 21px;
  }

  .category-list .col-12 {
    margin-bottom: 15px;
  }

  .category-list__title {
    font-size: 18px;
    margin-bottom: 6px;
  }
}

/* Promoted articles */
.promoted {
  padding: 72px 0;
}

.promoted__title {
  margin: 0 0 33px;
}

.promoted__link {
  display: block;
  width: 100%;
  background-color: var(--secondary-bg-color);
  background-color: #f2f2f2;
  padding: 13px 24px;
  border-radius: var(--border-radius-base);
}

.promoted__link + .promoted__link {
  margin-top: 6px;
}

.promoted__link span {
  display: block;
}

/* CTA */
.cta {
  padding: 72px 0;
  border-top: var(--border-width) solid var(--border-color);
  text-align: center;
}

.cta__title {
  margin: 0 0 12px;
}

.cta__subtitle {
  display: block;
  font-size: 20px;
  color: var(--secondary-text-color);
  margin-bottom: 32px;
}

.cta__link {
  text-decoration: underline;
}

.cta__link:hover,
.cta__link:focus,
.cta__link:active {
  text-decoration: none;
}

@media (max-width: 575px) {
  .cta {
    padding: 48px 0;
  }

  .cta__subtitle {
    font-size: 16px;
    margin-bottom: 20px;
  }
}

/* Footer */
.footer {
  padding-bottom: 18px;
}

.footer--single {
  padding: 18px 0;
  border-top: var(--border-width) solid var(--border-color);
}

.soc {
  font-size: 18px;
}

.soc a + a {
  margin-left: 12px;
}

/* Section */
.section {
  padding: 72px 0;
}

@media (max-width: 767px) {
  .section {
    padding: 42px 0;
  }
}

.inner-page-heading {
  padding: 32px 0;
  background-color: var(--secondary-bg-color);
}

/* Category tree */
.category-tree__section {
  margin-bottom: 42px;
}

.category-tree__section-name {
  display: block;
  margin-bottom: 12px;
  color: var(--primary-text-color);
}

.category-tree__subsections,
.category-tree__articles {
  display: block;
  margin-bottom: 12px;
}

.category-tree__subsection {
  display: block;
  background-color: var(--secondary-bg-color);
  border-radius: var(--border-radius-small);
  padding: 4px 12px;
}

.category-tree__subsection + .category-tree__subsection {
  margin-top: 4px;
}

.category-tree__article {
  display: block;
}

.category-tree__article + .category-tree__article {
  margin-top: 4px;
}

.comments {
  background-color: var(--secondary-bg-color);
}

.comments__container {
  border-radius: var(--border-radius-base);
}

.markdown {
  width: 100%;
  overflow: hidden;
}

.markdown pre {
  display: block;
  width: 100%;
  border-radius: var(--border-radius-base);
  background-color: var(--secondary-bg-color);
  font-size: 14px;
  padding: 12px;
  overflow-x: auto;
}

[dir] zd-autocomplete-title-multibrand,
[dir] zd-autocomplete-header {
  font-family: var(--heading-font-family);
  font-size: var(--text-font-size);
  line-height: 1.5;
  color: var(--link-color);
  margin-bottom: 8px;
}

[dir] zd-autocomplete-multibrand,
[dir] zd-autocomplete-option {
  font-family: var(--text-font-family);
  line-height: 1.5;
  font-size: var(--heading-6-font-size);
  color: var(--link-color);
  border-color: var(--border-color);
  transition: all var(--duration) var(--timing-function);
}

[dir] zd-autocomplete-multibrand:last-child,
[dir] zd-autocomplete-option:last-child {
  border-radius: 0;
}

[dir] zd-autocomplete-multibrand:hover,
[dir] zd-autocomplete-multibrand[aria-selected="true"],
[dir] zd-autocomplete-option:hover,
[dir] zd-autocomplete-option[aria-selected="true"] {
  background-color: var(--secondary-bg-color);
}

[dir] zd-autocomplete-multibrand:last-child,
[dir] zd-autocomplete-option:last-child {
  border-bottom: none !important;
}

[dir] zd-autocomplete-breadcrumbs-multibrand {
  color: var(--secondary-text-color) !important;
}

.my-activities__filter {
  display: flex;
  align-items: flex-end;
  margin-top: 12px;
  margin-bottom: 32px;
}

.my-activities__filter > * + * {
  margin-left: 8px;
}

.my-activities__filter label[for] {
  margin-bottom: 4px;
}

.my-activities__search {
  width: 50%;
  position: relative;
}

.my-activities__search input[type="search"] {
  padding-left: 42px;
}

.my-activities__search::before{
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
  font-size: 14px;
  font-weight: 900;
  font-family: "Font Awesome 5 Free";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  content: "\f002";
  left: 15px;
  color: var(--secondary-text-color);
}

@media (max-width: 575px) {
  .my-activities__filter {
    flex-direction: column;
  }

  .my-activities__filter > * {
    width: 100%;
  }

  .my-activities__filter > * + * {
    margin-left: 0;
    margin-top: 8px;
  }
}



.welcome .col-md-5.is-hidden--sm-down img {
    visibility: hidden;
}

section.welcome {
    background: url(/hc/theming_assets/01J4PS6VMC7KN5A5QGXGD77M92) no-repeat;
    background-position: 80%;
}

 @media all {
	 .new-footer ul {
		 box-sizing: border-box;
	}
}
 @media all {
	 .new-footer *, .new-footer ::after, .new-footer ::before {
		 box-sizing: border-box;
	}
	 .new-footer footer {
		 display: block;
	}
	 .new-footer ul {
		 margin-top: 0;
		 margin-bottom: 1rem;
	}
	 .new-footer small {
		 font-size: 80%;
	}
	 .new-footer a {
		 color: #007bff;
		 text-decoration: none;
		 background-color: transparent;
	}
	 .new-footer a:hover {
		 color: #0056b3;
		 text-decoration: underline;
	}
	 .new-footer img {
		 vertical-align: middle;
		 border-style: none;
	}
	 .new-footer small {
		 font-size: 80%;
		 font-weight: 400;
	}
	 .new-footer .row {
		 display: -ms-flexbox;
		 display: flex;
		 -ms-flex-wrap: wrap;
		 flex-wrap: wrap;
		 margin-right: -15px;
		 margin-left: -15px;
	}
	 .new-footer .col {
		 position: relative;
		 width: 100%;
		 padding-right: 15px;
		 padding-left: 15px;
	}
	 .new-footer .col {
		 -ms-flex-preferred-size: 0;
		 flex-basis: 0;
		 -ms-flex-positive: 1;
		 flex-grow: 1;
		 max-width: 100%;
	}
	 .new-footer .d-inline-block {
		 display: inline-block !important;
	}
	 .new-footer .d-flex {
		 display: -ms-flexbox !important;
		 display: flex !important;
	}
	 .new-footer .flex-column {
		 -ms-flex-direction: column !important;
		 flex-direction: column !important;
	}
	 .new-footer .align-items-center {
		 -ms-flex-align: center !important;
		 align-items: center !important;
	}
	 .new-footer .align-self-start {
		 -ms-flex-item-align: start !important;
		 align-self: flex-start !important;
	}
	 .new-footer .w-100 {
		 width: 100% !important;
	}
	 .new-footer .my-0 {
		 margin-top: 0 !important;
	}
	 .new-footer .mr-0 {
		 margin-right: 0 !important;
	}
	 .new-footer .mb-0, .new-footer .my-0 {
		 margin-bottom: 0 !important;
	}
	 .new-footer .mb-4 {
		 margin-bottom: 1.5rem !important;
	}
	 .new-footer .mx-auto {
		 margin-right: auto !important;
	}
	 .new-footer .mx-auto {
		 margin-left: auto !important;
	}
	 .new-footer .text-center {
		 text-align: center !important;
		 padding-bottom: 0;
	}
	 .new-footer .font-weight-normal {
		 font-weight: 400 !important;
	}
	 .new-footer .text-white {
		 color: #fff !important;
	}
}
 @media all and (min-width: 576px) {
	 .new-footer .flex-sm-row {
		 -ms-flex-direction: row !important;
		 flex-direction: row !important;
	}
}
 @media all and (min-width: 992px) {
	 .new-footer .flex-lg-row {
		 -ms-flex-direction: row !important;
		 flex-direction: row !important;
	}
}
 @media all and (min-width: 992px) {
	 .new-footer .mr-lg-auto {
		 margin-right: auto !important;
	}
}
 @media all {
	 .new-footer [class*=" icon-"] {
		 font-family: 'icomoon' !important;
		 speak: never;
		 font-style: normal;
		 font-weight: 400;
		 font-variant: normal;
		 text-transform: none;
		 line-height: 1;
		 -webkit-font-smoothing: antialiased;
		 -moz-osx-font-smoothing: grayscale;
	}
	 .new-footer .icon-facebook-logo:before {
		 content: "\e911";
	}
	 .new-footer .icon-instagram:before {
		 content: "\e914";
	}
	 .new-footer .icon-linkedin:before {
		 content: "\e916";
	}
	 .new-footer .icon-twitter:before {
		 content: "\e922";
	}
	 .new-footer .icon-youtube-logotype:before {
		 content: "\e904";
	}
	 .new-footer ::selection {
		 color: #fff;
		 background: #434950;
	}
	 .new-footer ul {
		 padding-left: 0;
		 list-style: none;
	}
	 .new-footer .sprintax-container {
		 max-width: 1810px;
		 padding: 0 15px;
		 margin: 0 auto;
	}
	 .new-footer .dark-bg {
		 background-color: #031c2b;
	}
	 .new-footer .border--dark {
		 border-bottom: #354955 1px solid;
	}
	 .new-footer .socials {
		 padding: 40px 0;
	}
	 .new-footer .social__link {
		 font-size: 31px;
		 color: #fff;
		 margin: 20px;
		 text-decoration: none;
	}
	 .new-footer .social__link:hover {
		 text-decoration: none;
	}
	 .new-footer .social__icon {
		 -webkit-transition: ease 0.5s;
		 -o-transition: ease 0.5s;
		 transition: ease 0.5s;
	}
	 .new-footer .social__link:hover .social__icon {
		 color: #a0a0a0;
	}
	 .new-footer .footer-links {
		 padding: 40px 0;
	}
	 .new-footer .footer-links__box {
		 text-align: left;
	}
	 .new-footer .footer-list__item:not(:last-child) {
		 margin-bottom: 5px;
	}
	 .new-footer .footer-list__item:first-child {
		 font-weight: 600;
		 margin-bottom: 15px;
	}
	 .new-footer .footer-list__item a, .new-footer .footer-rights__text {
		 font-size: 14px;
		 color: #a1a1a1;
	}
	 .new-footer .footer-rights__text {
		 margin-right: 25px;
	}
	 .new-footer .footer .logo {
		 margin-bottom: 25px;
	}
	 .new-footer .footer-rights {
		 padding: 45px 0;
	}
	 .new-footer .footer-rights .footer-list__item {
		 margin-right: 40px;
	}
}
 @media all and (min-width: 992px) {
	 .new-footer .sprintax-container {
		 padding: 0 45px !important;
	}
}
 @media all and (max-width: 1199px) {
	 .new-footer .footer-links__box {
		 -webkit-box-flex: 1;
		 -ms-flex: 1 0 24%;
		 flex: 1 0 24%;
	}
}
 @media all and (max-width: 991px) and (min-width: 768px) {
	 .new-footer .footer-rights .footer-list__item, .new-footer .footer-rights__text {
		 margin-right: 20px;
	}
}
 @media all and (max-width: 767px) and (min-width: 576px) {
	 .new-footer .footer-list__item:first-child {
		 font-size: 14px;
	}
}
 @media all and (max-width: 767px) {
	 .new-footer .footer-rights .footer-list__item {
		 margin-right: 20px;
	}
	 .new-footer .footer-rights .footer-list__item:last-child, .new-footer .footer-rights__text {
		 margin-right: 0;
	}
	 .new-footer .footer-rights__text {
		 margin-right: 0;
	}
}
 @media all and (max-width: 575px) {
	 .new-footer .footer-links__box {
		 -webkit-box-flex: 1;
		 -ms-flex: 1 0 50%;
		 flex: 1 0 50%;
	}
	 .new-footer .footer-rights .footer-list__item {
		 margin-right: 0;
		 margin-bottom: 15px !important;
		 text-align: center;
	}
	 .new-footer .footer-rights {
		 padding: 20px 0;
	}
	 .new-footer .social__link {
		 margin: 10px;
	}
}
 @font-face {
	 font-family: 'icomoon';
	 src: url(https://www.sprintax.com/wp-content/themes/Sprintax/fonts/icomoon.eot?yrqi1u);
	 src: url('https://www.sprintax.com/wp-content/themes/Sprintax/fonts/icomoon.eot?yrqi1u#iefix') format('embedded-opentype'), url(https://www.sprintax.com/wp-content/themes/Sprintax/fonts/icomoon.ttf?yrqi1u) format('truetype'), url(https://www.sprintax.com/wp-content/themes/Sprintax/fonts/icomoon.woff?yrqi1u) format('woff'), url('https://www.sprintax.com/wp-content/themes/Sprintax/fonts/icomoon.svg?yrqi1u#icomoon') format('svg');
	 font-weight: 400;
	 font-style: normal;
	 font-display: swap;
}
 

.footer-links.row.text-white.border--dark {
    display: none;
}

h1.welcome__title {
    margin-bottom: 10px;
}

.welcome__words {
    margin-bottom: 17px;
}

.header__menu.js-mobile-menu a {
    -webkit-transition: ease .5s;
    -o-transition: ease .5s;
    transition: ease .5s;
    color: #000;
    border-right: 1px solid #000;
    padding-right: 15px;
}

.header__menu.js-mobile-menu a:hover {
    color: #e66d62;
}

a.header__search.is-hidden--sm-down.js-search-toggle {
    border: none;
}
span.header__span a {
    border-left: 1px solid #000;
    padding-left: 12px;
    color: #000;
}


.welcome__ctas {
    display: flex;
    align-items: center;
    margin: 0 -15px;
    margin-bottom: 20px;
}

.welcome__ctas a {
    display: flex;
    margin: 0 15px;
    background: #e66d62;
    transition: ease .5s;
    border: 0;
    border-radius: 50px;
    padding: 10px 20px;
    color: #fff;
    box-sizing: border-box;
}

.welcome__ctas a:hover {
    background: #cf6258;
}

a.ctafull {
    background: transparent;
    color: #000;
    box-sizing: border-box;
}

a.ctafull:hover {
    color: #fff;
}

.welcome__search input[type=search] {
    border-radius: 50px;
    border-color: #fff;
    background: transparent;
    border-width: 3px;
    height: 55px;
    padding-left: 30px;
    font-size: 20px;
    /* color: #fff !important; */
}

.welcome__search::after {
    color: #fff;
    font-size: 26px;
}
.welcome__search input[type=search]:hover,.welcome__search input[type=search]:focus,.welcome__search input[type=search]:active {
    border-color: #fff;
}

 
.welcome__search ::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  color: #fff;
}
.welcome__search ::-moz-placeholder { /* Firefox 19+ */
  color: #fff;
}
.welcome__search :-ms-input-placeholder { /* IE 10+ */
  color: #fff;
}
.welcome__search :-moz-placeholder { /* Firefox 18- */
  color: #fff;
}

zd-autocomplete-announcement {
    height: 100%;
}

zd-autocomplete {
    margin-top: 40px;
    box-shadow: 0 0 2px 0 rgba(0, 0, 0, .2), 0 2px 4px 0 rgba(0, 0, 0, .1);
    border: 0px solid #09c3ae;
}

zd-autocomplete-title-multibrand {
    color: #000 !important;
}

[dir] zd-autocomplete-multibrand, [dir] zd-autocomplete-option {
    border-bottom-color: #fff !important;
    padding-top: 8px;
    padding-bottom: 8px;
}

zd-autocomplete-breadcrumbs-multibrand {display: none !important;}

zd-autocomplete-header {
    display: none;
}










.new-hp {
  /*! CSS Used from: https://www.sprintax.com/wp-content/themes/Sprintax/css/bootstrap.min.css?ver=6.5.4 ; media=all */
  /*! CSS Used from: https://www.sprintax.com/wp-content/cache/min/1/wp-content/themes/Sprintax/style.css?ver=1718352304 ; media=all */
}
@media all {
  .new-hp *, .new-hp ::after, .new-hp ::before {
    box-sizing: border-box;
  }
  .new-hp section {
    display: block;
  }
  .new-hp h3 {
    margin-top: 0;
    margin-bottom: 0.5rem;
  }
  .new-hp p {
    margin-top: 0;
    margin-bottom: 1rem;
  }
  .new-hp img {
    vertical-align: middle;
    border-style: none;
  }
  .new-hp h3 {
    margin-bottom: 0.5rem;
    font-weight: 500;
    line-height: 1.2;
  }
  .new-hp h3 {
    font-size: 1.75rem;
  }
  .new-hp .d-flex {
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .new-hp .flex-wrap {
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important;
  }
  .new-hp .mb-0 {
    margin-bottom: 0 !important;
  }
  .new-hp .mb-3 {
    margin-bottom: 1rem !important;
  }
  .new-hp .pr-0 {
    padding-right: 0 !important;
  }
  .new-hp .pl-0 {
    /* padding-left: 0 !important; */
  }
  .new-hp .text-center {
    text-align: center !important;
  }
  .new-hp .font-weight-bold {
    font-weight: 700 !important;
  }
}
@media print {
  .new-hp *, .new-hp ::after, .new-hp ::before {
    text-shadow: none !important;
    box-shadow: none !important;
  }
  .new-hp img {
    page-break-inside: avoid;
  }
  .new-hp h3, .new-hp p {
    orphans: 3;
    widows: 3;
  }
  .new-hp h3 {
    page-break-after: avoid;
  }
}
@media all {
  .new-hp ::selection {
    color: #fff;
    background: #434950;
  }
  .new-hp h3 {
    font: 300 36px/52px "Poppins", sans-serif;
  }
  .new-hp .sprintax-container {
    max-width: 1810px;
    padding: 0 15px;
    margin: 0 auto;
  }
  .new-hp .feature {
    width: 35%;
    /* padding: 0 10px; */
    margin: 20px;
  }
  .new-hp .feature__body {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    padding: 50px 55px 35px;
    border-radius: 20px;
    background: #fff;
    -webkit-box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.1);
  }
  .new-hp .feature__title {
    margin: 40px 0 30px;
    font-size: 16px;
    line-height: 26px;
  }
}
@media (max-width: 1920px) and (min-width: 992px) {
  .new-hp h3 {
    font: 300 1.875vw/2.7vw "Poppins", sans-serif;
  }
}
@media (min-width: 992px) {
  .new-hp .sprintax-container {
    padding: 0 45px !important;
    justify-content: center;
  }
}
@media (max-width: 1199px) and (min-width: 768px) {
  .new-hp .feature {
    width: 50%;
    padding: 10px;
  }
}
@media (max-width: 1199px) {
  .new-hp .feature:nth-child(2) {
    padding-right: 0;
  }
  .new-hp .feature:nth-child(3) {
    padding-left: 0;
  }
}
@media (max-width: 991px) {
  .new-hp h3 {
    font-size: 24px;
    line-height: 36px;
  }
}
@media (max-width: 767px) {
  .new-hp .feature {
    width: 100%;
    padding: 10px 0 !important;
  }
}
@media (max-width: 575px) {
  .new-hp .feature__body {
    padding: 30px;
  }
}


section.new-hp {
    padding-top: 100px;
    padding-bottom: 100px;
}


@media all {
  .new-about *, .new-about ::after, .new-about ::before {
    box-sizing: border-box;
  }
  .new-about section {
    display: block;
  }
  .new-about h3 {
    margin-top: 0;
    margin-bottom: 0.5rem;
  }
  .new-about p {
    margin-top: 0;
    margin-bottom: 1rem;
  }
  .new-about img {
    vertical-align: middle;
    border-style: none;
  }
  .new-about h3 {
    margin-bottom: 0.5rem;
    font-weight: 500;
    line-height: 1.2;
  }
  .new-about h3 {
    font-size: 1.75rem;
  }
  .new-about .row {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
  }
  .new-about .no-gutters {
    margin-right: 0;
    margin-left: 0;
  }
  .new-about .no-gutters > [class*=col-] {
    padding-right: 0;
    padding-left: 0;
  }
  .new-about .col, .new-about .col-lg-5, .new-about .col-lg-7 {
    position: relative;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
  }
  .new-about .col {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%;
  }
  .new-about .order-1 {
    -ms-flex-order: 1;
    order: 1;
  }
  .new-about .order-2 {
    -ms-flex-order: 2;
    order: 2;
  }
}
@media (min-width: 992px) {
  .new-about .col-lg-5 {
    -ms-flex: 0 0 41.666667%;
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }
  .new-about .col-lg-7 {
    -ms-flex: 0 0 58.333333%;
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }
  .new-about .order-lg-1 {
    -ms-flex-order: 1;
    order: 1;
  }
  .new-about .order-lg-2 {
    -ms-flex-order: 2;
    order: 2;
  }
}
@media all {
  .new-about .fade {
    transition: opacity 0.15s linear;
  }
}
@media (prefers-reduced-motion: reduce) {
  .new-about .fade {
    transition: none;
  }
}
@media all {
  .new-about .tab-content > .tab-pane {
    display: none;
  }
}
@media all {
  .new-about .tab-content > .active {
    display: block;
  }
}
@media all {
  .new-about .d-inline-block {
    display: inline-block !important;
  }
}
@media all {
  .new-about .d-flex {
    display: -ms-flexbox !important;
    display: flex !important;
  }
}
@media all {
  .new-about .flex-wrap {
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important;
  }
}
@media all {
  .new-about .mb-3 {
    margin-bottom: 1rem !important;
  }
}
@media all {
  .new-about .mb-4 {
    margin-bottom: 1.5rem !important;
  }
}
@media (min-width: 992px) {
  .new-about .text-lg-right {
    text-align: right !important;
  }
}
@media all {
  .new-about .font-weight-normal {
    font-weight: 400 !important;
  }
}
@media print {
  .new-about *, .new-about ::after, .new-about ::before {
    text-shadow: none !important;
    box-shadow: none !important;
  }
  .new-about img {
    page-break-inside: avoid;
  }
  .new-about h3, .new-about p {
    orphans: 3;
    widows: 3;
  }
  .new-about h3 {
    page-break-after: avoid;
  }
}
@media all {
  .new-about ::selection {
    color: #fff;
    background: #434950;
  }
  .new-about h3 {
    font: 300 36px/52px "Poppins", sans-serif;
  }
  .new-about .sprintax-container {
    max-width: 1810px;
    padding: 0 15px;
    margin: 0 auto;
  }
  .new-about .pb_55 {
    padding-bottom: 55px;
  }
  .new-about .transform-photo {
    display: block;
    position: relative;
  }
  .new-about .transform-photo:before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    border-radius: 20px;
  }
  .new-about .transform-photo--right:before {
    left: 50%;
    right: 0;
  }
  .new-about .transform-photo--mint:before {
    background: #1360A0;
  }
  .new-about .transform-img {
    position: relative;
    width: auto !important;
    height: auto;
    border-radius: 10px;
  }
  .new-about .transform-img--right {
    -webkit-transform: translate(-2.6vw, 2.6vw);
    -ms-transform: translate(-2.6vw, 2.6vw);
    transform: translate(-2.6vw, 2.6vw);
  }
  .new-about .tab__text p {
    max-width: 735px;
  }
  .new-about .sprintax-posibilites {
    padding-bottom: 40px;
  }
  .new-about .top-spacing {
  }
}
@media (min-width: 1920px) {
  .new-about .top-spacing {
    padding-top: 100px;
  }
}
@media (max-width: 1920px) and (min-width: 992px) {
  .new-about h3 {
    font: 300 1.875vw/2.7vw "Poppins", sans-serif;
  }
}
@media (min-width: 992px) {
  .new-about .sprintax-container {
    padding: 0 45px !important;
  }
}
@media (max-width: 991px) {
  .new-about h3 {
    font-size: 24px;
    line-height: 36px;
  }
  .new-about .transform-img {
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
  }
  .new-about .transform-photo:before {
    content: none;
  }
  .new-about .sprintax-posibilites {
    padding-bottom: 0;
  }
  .new-about .top-spacing {
    padding-top: 0;
  }
}

.feature.text-center {
    cursor: pointer;
}

.col-lg-7.tab__text.order-2.order-lg-1 {
    padding-right: 60px;
}

.d-flex.flex-wrap.no-gutters.pb_55 {
    align-items: center;
}

.col-lg-7.tab__text.order-2.order-lg-1 > img {
    width: 70px;
}



.new-follow {
  /*! CSS Used from: https://www.sprintax.com/wp-content/themes/Sprintax/css/bootstrap.min.css?ver=6.5.4 ; media=all */
  /*! CSS Used from: https://www.sprintax.com/wp-content/cache/min/1/wp-content/themes/Sprintax/style.css?ver=1718352304 ; media=all */
}
@media all {
  .new-follow *, .new-follow ::after, .new-follow ::before {
    box-sizing: border-box;
  }
  .new-follow section {
    display: block;
  }
  .new-follow h2 {
    margin-top: 0;
    margin-bottom: 0.5rem;
  }
  .new-follow h2 {
    margin-bottom: 0.5rem;
    font-weight: 500;
    line-height: 1.2;
  }
  .new-follow h2 {
    font-size: 2rem;
  }
  .new-follow .row {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
  }
  .new-follow .col-12 {
    position: relative;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
  }
  .new-follow .col-12 {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
  .new-follow .position-relative {
    position: relative !important;
  }
  .new-follow .mb-5 {
    margin-bottom: 3rem !important;
  }
  .new-follow .pt-0 {
    padding-top: 0 !important;
  }
  .new-follow .pb-5 {
    padding-bottom: 3rem !important;
  }
}
@media (min-width: 992px) {
  .new-follow .pt-lg-5 {
    padding-top: 3rem !important;
  }
}
@media (min-width: 1200px) {
  .new-follow .mb-xl-0 {
    margin-bottom: 0 !important;
  }
}
@media all {
  .new-follow .text-center {
    text-align: center !important;
  }
}
@media print {
  .new-follow *, .new-follow ::after, .new-follow ::before {
    text-shadow: none !important;
    box-shadow: none !important;
  }
  .new-follow h2 {
    orphans: 3;
    widows: 3;
  }
  .new-follow h2 {
    page-break-after: avoid;
  }
}
@media all {
  .new-follow ::selection {
    color: #fff;
    background: #434950;
  }
  .new-follow h2 {
    font: 600 64px/86px "Source Serif Pro", serif;
  }
  .new-follow .sprintax-container {
    max-width: 1810px;
    padding: 0 15px;
    margin: 0 auto;
  }
  .new-follow .gray-bg {
    background-color: rgba(242, 242, 242, 0.5);
  }
  .new-follow .partners-logos {
    padding: 7.8vw 0;
  }
  .new-follow .partners-logos:not(.partners-logos--calculus):after {
    content: "";
    max-width: 1810px;
    height: 1px;
    background: #ccc;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
  }
  .new-follow .partners-logos--industries h2 em {
    font-style: normal;
    position: relative;
  }
  .new-follow .partners-logos--industries h2 em::before {
    content: "";
    height: 100%;
    position: absolute;
    left: 0;
    right: 0;
    bottom: -20px;
    background-repeat: no-repeat;
    background-position-y: bottom;
    background-image: url(https://www.sprintax.com/wp-content/themes/Sprintax/assets/stroke-green.svg);
  }
  .new-follow .partners-logos--industries h2 em::before {
    bottom: -20px;
    background-image: url(https://www.sprintax.com/wp-content/themes/Sprintax/assets/stroke-blue.svg);
  }
  .new-follow .partners-logos--industries::after {
    display: none;
  }
  .new-follow .partners-logos--industries h2 {
    margin-bottom: 30px;
  }
}
@media (min-width: 1920px) {
  .new-follow .partners-logos {
    padding: 140px 0;
  }
}
@media (max-width: 1920px) and (min-width: 992px) {
  .new-follow h2 {
    font: 600 3.333vw/4.5vw "Source Serif Pro", serif;
  }
}
@media (min-width: 992px) {
  .new-follow .sprintax-container {
    padding: 0 45px !important;
  }
}
@media (max-width: 991px) {
  .new-follow h2 {
    font-size: 36px;
    line-height: 48px;
  }
  .new-follow .partners-logos:not(.partners-logos--calculus):after {
    left: 15px;
    right: 15px;
  }
}

.new-follow .partners-logos--industries p {
    max-width: 620px;
    margin: 0 auto;
}

.new-follow .gray-bg {
    padding-bottom: 10px;
}

.socials.mx-auto.border--dark svg {
    height: 39px;
}

.socials.mx-auto.border--dark a {
    margin: 20px !important;
}

.socials.mx-auto.border--dark {margin-top: 20px;}

.new-follow .partners-logos--industries h2 {
    margin-top: 20px;
}

.socials.mx-auto.border--dark a:hover {opacity: .8;transform: scale(1.1);}
.feature.text-center:hover {
  transform: scale(1.005);
}
.feature.text-center:hover .feature__body {

    -webkit-box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.20);
    box-shadow: 0 0 30px 0 rgb(0 0 0 / 20%);
}

.socials.mx-auto.border--dark a,.feature.text-center {
    display: flex;
    justify-content: center;
    -webkit-transition: ease 0.5s;
    -o-transition: ease 0.5s;
    transition: ease .2s;
}

.socials.mx-auto.border--dark {
    display: flex;
    justify-content: center;
    align-items: center;
}






.new-article {
  /*! CSS Used from: https://www.sprintax.com/wp-content/themes/Sprintax/css/bootstrap.min.css?ver=6.5.4 ; media=all */
  /*! CSS Used from: https://www.sprintax.com/wp-content/cache/min/1/wp-content/themes/Sprintax/style.css?ver=1718352304 ; media=all */
}
@media all {
  .new-article *, .new-article ::after, .new-article ::before {
    box-sizing: border-box;
  }
  .new-article section {
    display: block;
  }
  .new-article h2, .new-article h3 {
    margin-top: 0;
    margin-bottom: 0.5rem;
  }
  .new-article h2, .new-article h3 {
    margin-bottom: 0.5rem;
    font-weight: 500;
    line-height: 1.2;
  }
  .new-article h2 {
    font-size: 2rem;
  }
  .new-article h3 {
    font-size: 1.75rem;
  }
  .new-article .container {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
  }
}
@media (min-width: 576px) {
  .new-article .container {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  .new-article .container {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  .new-article .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .new-article .container {
    max-width: 1140px;
  }
}
@media all {
  .new-article .row {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
  }
}
@media all {
  .new-article .col {
    position: relative;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
  }
}
@media all {
  .new-article .col {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%;
  }
}
@media all {
  .new-article .m-0 {
    margin: 0 !important;
  }
}
@media (min-width: 1200px) {
  .new-article .my-xl-4 {
    margin-top: 1.5rem !important;
  }
  .new-article .my-xl-4 {
    margin-bottom: 1.5rem !important;
  }
  .new-article .py-xl-5 {
    padding-top: 3rem !important;
  }
  .new-article .py-xl-5 {
    padding-bottom: 3rem !important;
  }
}
@media all {
  .new-article .text-center {
    text-align: center !important;
  }
}
@media print {
  .new-article *, .new-article ::after, .new-article ::before {
    text-shadow: none !important;
    box-shadow: none !important;
  }
  .new-article h2, .new-article h3 {
    orphans: 3;
    widows: 3;
  }
  .new-article h2, .new-article h3 {
    page-break-after: avoid;
  }
  .new-article .container {
    min-width: 992px !important;
  }
}
@media all {
  .new-article ::selection {
    color: #fff;
    background: #434950;
  }
  .new-article h2 {
    font: 600 64px/86px "Source Serif Pro", serif;
  }
  .new-article h3 {
    font: 300 36px/52px "Poppins", sans-serif;
  }
  .new-article .container {
    max-width: 1230px !important;
    padding: 0 15px !important;
  }
  .new-article .gray-bg {
    background-color: rgba(242, 242, 242, 0.5);
  }
  .new-article .mint-bg {
    background-color: #1360A0;
  }
  .new-article .section__title {
    padding: 7.3vw 0;
  }
  .new-article .sprintax-forms__table {
    box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.1);
    -webkit-box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.1);
    border-radius: 20px;
    margin-bottom: 7vw;
    overflow: hidden;
  }
  .new-article .sprintax-forms__thead {
    padding: 30px 20px;
    border: none;
    font-weight: 600;
    border-radius: 20px 20px 0 0;
    border-bottom: none !important;
  }
  .new-article .table-subtitle {
    font: 700 16px/26px "Poppins", sans-serif;
  }
}
@media (min-width: 1920px) {
  .new-article .section__title {
    padding: 140px 0;
  }
}
@media (max-width: 1920px) and (min-width: 992px) {
  .new-article h2 {
    font: 600 3.333vw/4.5vw "Source Serif Pro", serif;
  }
  .new-article h3 {
    font: 300 1.875vw/2.7vw "Poppins", sans-serif;
  }
}
@media (min-width: 992px) {
  .new-article .container {
    padding: 0 45px !important;
  }
}
@media (max-width: 991px) {
  .new-article h2 {
    font-size: 36px;
    line-height: 48px;
  }
  .new-article h3 {
    font-size: 24px;
    line-height: 36px;
  }
}
@media (max-width: 575px) {
  .new-article .section__title {
    padding: 50px 0;
  }
  .new-article .sprintax-forms__table {
    margin-bottom: 50px;
  }
}

ol.breadcrumbs {
    margin-bottom: 0;
}

ol.breadcrumbs a,ol.breadcrumbs li {
    color: #fff;
}

.sprintax-forms__tbody.sprintax-forms__tbody--returns {
    padding: 20px 40px;
}

.linkovi {
    display: flex;
}

.linkovi>div {flex: 1 0 45%;}

.linkovi h2 {
    font-size: 28px;
    line-height: 1.2;
}

.inner-page__rightbar {
    padding: 15px;
}

.inner-page__rightbar + .inner-page__rightbar {
    margin-top: 0;
    border: none;
    padding-top: 15px;
}

.linkovi li a {
    font-size: 14px;
}

.markdown[itemprop="articleBody"] {
    min-height: 190px;
}

h4.article-vote__title {
    margin-bottom: 15px;
}


.welcomesub h1.welcome__title {
    display: none;
}

.welcomesub .welcome__words {
    display: none;
}

.welcomesub .welcome__ctas {
    display: none;
}

.welcomesub .col-md-5.is-hidden--sm-down {display: none;}

.welcomesub .col-md-7 {
    justify-content: center;
    width: 100%;
    max-width: unset;
}

.welcomesub .row.align-items-center {
    justify-content: center;
}

section.sprintax-forms.gray-bg.section {
    padding-top: 0;
}

.category-tree__articles a {
    font-size: 14px;
}

a.h3.category-tree__section-name {
    font-size: 24px;
}

a.btn.btn--color-primary.btn--md {
    font-size: 13px;
}
.comment__body .articles__body {
    font-size: 14px;
}

.sr .articles__body {
    margin-bottom: 10px;
}
h2.srh2.section__title.text-center.py-xl-5.my-xl-4 span {
    display: block;
    font-size: 22px;
    margin-top: -10px;
}
h1.welcome__title {
    color: #fff;
}

.welcome__words {
    color: #fff;
}

a.ctafull {
    color: #fff;
}
.welcome__search input[type=search] {
    color: #fff;
}

.header-search .smallll.welcome__search input[type=search] {
    color: #000 !important;
}

header.header {
    position: relative;
}

.header-placeholder {
    display: none;
}



.feature.text-center > div:hover {
    background: rgb(170 217 255);
}
.heroinner {
    width: 100%;
    max-width: 720px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: 0 auto;
}

.heroinner h1 {
    margin-bottom: 30px;
    text-align: center;
}

section.welcome {
    padding-top: 140px;
    padding-bottom: 310px;
}

section.features {
    margin-top: -320px;
}




.new-hp .feature {
    flex: 1 0 20%;
    margin: 10px;
}

.new-hp .sprintax-container {
    max-width: 1220px;
}

.new-hp .feature__body {
    padding: 40px 20px;
}

.new-hp .mb-0+p {
    font-size: 14px !important;
}

.new-about .sprintax-posibilites {
    padding-top: 30px;
}

section.welcome.welcomesub {
    padding-bottom: 60px;
      padding-top: 60px;
}







.webinar .sprintax-forms__thead.mint-bg {
    display: none;
}

.webinar .sprintax-forms__table {
    box-shadow: unset !important;
    box-shadow: unset !important;
}

.webinar .markdown .iframe {
    width: 400px;
    height: unset !important;
    padding-bottom: 0px !important;
    margin-bottom: 50px;
    margin-right: 30px;
}

.webinar .markdown p {
    display: flex;
}

.webinar .markdown h2 {
    font-size: 27px;
    line-height: 1.2 !important;
    margin-bottom: 0;
}

.webinar .new-article .section__title {
    text-align: left !important;
    padding-left: 40px;
    padding-top: 70px !important;
}

.webinar .article-vote {
    display: none;
}

.webinar .linkovi {
    display: none;
}



/* Modal styles */
.modal {
    display: none;
    position: fixed;
    z-index: 999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.9);
    padding-top: 0;
}

.modal-content {
    position: relative;
    margin: 0;
    padding: 0;
    border: none;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.close {
    color: #fff;
    position: absolute;
    top: 40px;
    right: 20px;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 1000;
}

.close:hover,
.close:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
}

.video-container {
    position: relative;
    width: 90%;
    height: 90%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Overlay styles */
.iframe-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0);
    cursor: pointer;
    z-index: 10;
}

.iframe-wrapper {
    position: relative;
    display: inline-block;
    width: 100%;
    height: 340px;
}

section.welcome {background-size: cover;background-position: bottom;}

section.welcome .col-md-5.is-hidden--sm-down {
    display: none;
}

	
.container > ol.breadcrumbs li a,.container > ol.breadcrumbs li,
.col-12 > ol.breadcrumbs li a,.col-12 > ol.breadcrumbs li{
    color: #000;
}

.container > ol.breadcrumbs,
.col-12 > ol.breadcrumbs {
    margin-bottom: 20px;
}



/* General article box styling */
.article_box {
    border-radius: 5px;
    padding: 15px;
    margin-bottom: 10px;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    width: auto;
    min-width: 400px;
}

.article_box i {
    margin-right: 10px;
    font-size: 19px; /* Adjust size as needed */
}

/* Info box styling */
.info_box {
    background-color: #d9edf7;
    border: 1px solid #bce8f1;
    color: #31708f;
}

.info_box i {
    color: #31708f;
}

/* Success box styling */
.success_box {
    background-color: #dff0d8;
    border: 1px solid #d6e9c6;
    color: #3c763d;
}

.success_box i {
    color: #3c763d;
}

/* Warning box styling */
.warning_box {
    background-color: #fcf8e3;
    border: 1px solid #faebcc;
    color: #8a6d3b;
}

.warning_box i {
    color: #8a6d3b;
}

/* Error box styling */
.error_box {
    background-color: #f2dede;
    border: 1px solid #ebccd1;
    color: #a94442;
}

.error_box i {
    color: #a94442;
}
.specialcat {
    display: none;
}

h3.table-subtitle.m-0.articltit,.articltit {
    color: #fff;
    font-size: 25px;
    text-align: center;
}

a.category-list__item {
    border: 1px solid #1360A0;
}

section.category-list {
    padding-top: 0;
}
.special-category-html section.new-article.not-special-cat {
    display: none;
}

.special-category-html .specialcat {
    display: block;
}

.seclist {
    display: flex;
    flex-direction: column;
}

.wrap-cat {
    display: flex;
    padding: 0 15px;
    min-height: 500px;
      padding-top: 40px;

}

.seclist a {
    padding: 7px 0;
}


.article-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.article-title .arrow {
    transition: transform 0.3s ease; /* Smooth transition for arrow rotation */
}

.article-body {
    display: none; /* Initially hide article bodies */
}

.read-more {
    display: none; /* Initially hide "Read more" links */
}

/* Use Font Awesome for the down and up arrows */
.article-title .fa-chevron-down.arrow {
    transform: rotate(0deg); /* Default position for down arrow */
}

.article-title .fa-chevron-up.arrow {
    transform: rotate(180deg); /* Rotated position for up arrow */
}

.wrap-cat-right {
    padding: 0 30px;
    flex: 1 0 80%;
}

.wrap-cat-left {
    flex: 1 0 20%;
}

.article-item h3 {
    font-size: 19px;
    font-weight: 500;
}

.article-item .article-body {
    font-size: 14px;
}

.article-item a.read-more {
    font-weight: bold;
    font-size: 13px;
    margin-bottom: 50px;
    margin-top: 30px;
    text-decoration: underline;
}

.article-item .fa-chevron-up {
    transform: rotate(0deg) !important;
}
.wrap-cat-left h2 {
    font-size: 21px;
    margin: 0;
    line-height: 1.4;
    display: inline;
    border-bottom: 1px solid #cbcbcb;
}
.new-article h2 {
    font-size: 24px;
    line-height: 20px;
    margin-bottom: 0;
}

.special-category-html h3.article-title {
    padding-right: 30px;
    line-height: 1.4;
    position: relative;
}

.special-category-html .article-title .arrow {
    position: absolute;
    right: 0;
}

.special-category-html .wrap-cat-right {
    padding-right: 0;
}

.special-category-html .article-item {
    margin-bottom: 30px;
}
.special-category-html .article-item .article-body {
      padding-right: 30px;

}
.special-category-html ol.breadcrumbs, .inner-page-heading ol.breadcrumbs {
    margin-bottom: 0;
}
.header__menu.js-mobile-menu a:last-child {
    border-right: unset;
    padding-right: 0;
}

