/* google fonts */
@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;500;600;700&family=Roboto:wght@300;400;500;700&display=swap");

/*========== document root: START ==========*/
:root {
  /* colors */
  --7x-moderate-red: 231 3 43;
  --7x-black: 255 255 255;
  --7x-very-dark-blue: 10 58 98;
  --7x-border-color: 233 233 233;
  --7x-very-dark-gray: 103 103 103;
  --7x-black: 0 0 0;
  --7x-white: 255 255 255;
  --7x-ezp-border: 80 86 88;

  /* alpha level */
  --7x-bg-opacity: 1;
  --7x-text-opacity: 1;
  --7x-border-opacity: 1;
  --7x-fill-opacity: 1;
  --7x-shadow-opacity: 0.31;

  /* utilities */
  --7x-border-radius: 0.25rem;
  --7x-border-md-radius: 0.5rem;
  --7x-border-lg-radius: 0.75rem;
  --7x-border-xl-radius: 1rem;

  --7x-z-index-0: 0;
  --7x-z-index-10: 10;
  --7x-z-index-20: 20;
  --7x-z-index-30: 30;
  --7x-z-index-40: 40;
  --7x-z-index-50: 50;

  --7x-transition-duration: 200ms;
  --7x-transition-md-duration: 300ms;
  --7x-transition-lg-duration: 450ms;
  --7x-transition-xl-duration: 650ms;

  /* font families */
  --font-roboto-sans: "Roboto", sans-serif;
  --font-open-sans: "Open Sans", sans-serif;
}
/*========== document root: END ==========*/

/*========== common styles: START ==========*/
*,
::before,
::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
}

body {
  font-family: var(--font-open-sans);
  font-size: 1rem;
  line-height: 1.5;
  text-align: unset;
  color: rgba(var(--7x-black) / var(--7x-text-opacity));
  overflow-x: hidden;
  background-color: var(--7x-white);
  background: linear-gradient(115deg, #fff, #fff);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-roboto-sans);
  font-weight: 500;
  line-height: 1.25;
  margin-bottom: 0.625rem;
  color: rgba(var(--7x-black) / var(--7x-text-opacity));
}

.content-view-full h1,
.content-view-full h2,
.content-view-full h3,
.content-view-full h4,
.content-view-full h5,
.content-view-full h6 {
  font-family: var(--font-roboto-sans);
  font-weight: 500;
  line-height: 1.25;
  margin-bottom: 0.625rem;
  margin-top: 0.625rem;
  color: rgba(var(--7x-black) / var(--7x-text-opacity));
}

.attribute-header h1,
.class-folder h2
{
  margin-left: 0.32rem;
  margin-top: unset;
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
  color: inherit;
}

h1,
.h1 {
  font-size: 2rem;
}

h2,
.h2 {
  font-size: 1.75rem;
}

h3,
.h3 {
  font-size: 1.5rem;
}

h4,
.h4 {
  font-size: 1.375rem;
}

h5,
.h5 {
  font-size: 1.25rem;
}

h6,
.h6 {
  font-size: 1rem;
}

p {
  margin-bottom: 1rem;
}

a {
  --7x-link-color: var(--7x-moderate-red);

  color: rgba(var(--7x-link-color) / var(--7x-text-opacity));
  text-decoration: none;
  transition: var(--7x-transition-duration);
}

a:hover {
  --7x-link-color: 0 9 255;

  color: rgba(var(--7x-link-color) / var(--7x-text-opacity));
}

ul,
ol {
  padding-left: 1.5rem;
  margin-top: 0.68rem;
  margin-bottom: 00.42rem;
  margin-left: unset;
  display: grid;
  gap: 0.25rem;
}

ul li,
ol li {
  padding-left: 0;
}

ul li {
  list-style-type: disc;
}

ol li {
  list-style-type: decimal;
}

table {
  width: 100%;
}

table,
table td,
table th {
  --7x-border-opacity: 0.1;

  border: 1px solid rgba(var(--7x-very-dark-gray) / var(--7x-border-opacity));
}

table td,
table th {
  padding: 0.5rem 0.75rem;
  border-width: 0 1px 1px 0;
  display: inline-block;
  word-break: break-word;
}

table td:last-of-type,
table th:last-of-type {
  border-right: 0;
}

table tbody tr:last-of-type th,
table tbody tr:last-of-type td {
  border-bottom: 0;
}

.container {
  max-width: 92%;
  padding-bottom: 0rem;
  margin-bottom: 0rem;
  padding-right: 1rem;
  padding-left: 1rem;
  padding-top: 0rem;
  margin-inline: auto;
  background-color: rgba(var(--7x-white) / var(--7x-bg-opacity));
  border-radius: 0.5rem;
}

.main-sections {
  padding-top: 5.5rem;
}

html body main.main-sections div.container div.content-view-full div.class-frontpage.leftcolumn.norightcolumn div.attribute-billboard a img {
  position: relative;
  left: -0.7rem;
  width: 21rem;
}

.overflow-x-hidden {
  overflow-x: hidden !important;
}

.overflow-y-hidden {
  overflow-y: hidden !important;
}

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

.gb-icon {
  width: 1rem;
  height: 1rem;
}

.link-dark-blue {
  --7x-link-color: var(--7x-black);
}

.link-dark-blue:hover {
  --7x-link-color: var(--7x-moderate-red);
}

.link-black {
  --7x-link-color: var(--7x-black);
}

.link-black:hover {
  --7x-link-color: var(--7x-moderate-red);
}

.line-clamp {
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.line-clamp-2 {
  -webkit-line-clamp: 1;
}
/*========== common styles: END ==========*/

/*========== header: START ==========*/
.header-main {
  position: fixed;
  z-index: var(--7x-z-index-50);
  inset: 0 0 auto 0;
  background: rgba(var(--7x-white) / var(--7x-bg-opacity));
  border-bottom: 1px solid rgba(var(--7x-very-dark-gray) / 0.1);
}

.header-main.sticky {
  box-shadow: 0 0.5rem 2rem 0
    rgba(var(--7x-black) / var(--7x-shadow-opacity));
}

.navbar-main .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-block: 0.5rem;
  margin-bottom: 0;
}

.navbar-brand {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  font-size: 1.5rem;
  color: rgba(var(--7x-black) / var(--7x-text-opacity));
  padding-block: 0.25rem;
}

.navbar-brand > img {
  width: 17rem;
  height: auto;
  max-width: 100%;
  object-fit: contain;
  object-position: center;
  transition: var(--7x-transition-md-duration);
}

i.fa-solid.fa-cart-shopping {
  position: relative;
  right: 0.6rem;
  top: -1.7rem;
  float: right;
}

.navbar-toggle {
  --togger-width: 1.75rem;

  appearance: none;
  border: 0;
  background-color: transparent;
  padding: 0;
  width: var(--togger-width);
  height: 1.25rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}

.navbar-toggle span {
  width: var(--togger-width);
  height: 0.1875rem;
  background-color: rgba(var(--7x-black) / var(--7x-bg-opacity));
  border-radius: 50rem;
  transition: var(--7x-transition-md-duration);
}

.navbar-toggle.active span:nth-of-type(1) {
  transition-delay: 50ms;
  transform: rotate(45deg) translate(0.375rem, 0.375rem);
}

.navbar-toggle.active span:nth-of-type(2) {
  --7x-bg-opacity: 0;
}

.navbar-toggle.active span:nth-of-type(3) {
  transition-delay: 50ms;
  transform: rotate(-45deg) translate(0.375rem, -0.375rem);
}

.navbar-collapse {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: calc(100vh - 76px);
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--7x-transition-md-duration),
    visibility var(--7x-transition-md-duration);
  overflow: hidden auto;
  padding-bottom: 4rem;
}

.navbar-collapse.show {
  opacity: 1;
  visibility: visible;
  background-color: rgba(var(--7x-white) / var(--7x-bg-opacity));
}

.navbar-nav {
  margin: 0;
  padding: 0;
  list-style-type: none;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.navbar-nav li {
  padding-left: 0;
  margin-bottom: 0;
  background: none;
  list-style-type: none;
}

.nav-link,
.dropdown-link,
.dropdown-button {
  --7x-border-opacity: 0.1;
  --7x-bg-opacity: 0;

  background-color: transparent;
  border-top: 1px solid rgba(var(--7x-moderate-red) / var(--7x-border-opacity));
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: rgba(var(--7x-black) / var(--7x-text-opacity));
  background-color: rgba(var(--7x-moderate-red) / var(--7x-bg-opacity));
  font-size: 1rem;
  font-weight: 500;
  transition: var(--7x-transition-md-duration);
  position: relative;
  word-break: normal;
}

:not(.dropdown) .nav-link {
  padding: 0.625rem 1rem 0.625rem 5.7rem;
}

.dropdown-link {
  padding: 0.425rem 1rem;
}

.navbar-nav li:last-of-type .nav-link,
.navbar-nav li:last-of-type .dropdown-button {
  border-bottom-color: rgba(
    var(--7x-black) / var(--7x-border-opacity)
  );
}

.dropdown-button a {
  flex-grow: 1;
  color: rgba(var(--7x-black) / var(--7x-text-opacity));
}

.nav-link:hover,
.dropdown:hover a,
.dropdown.active a {
  color: rgba(var(--7x-moderate-red) / var(--7x-text-opacity));
}

.dropdown-button {
  display: flex;
  justify-content: flex-end;
  flex-direction: row-reverse;
  width: 100%;
  cursor: pointer;
}

.dropdown-toggle {
  flex-shrink: 0;
  width: 5rem;
  height: 100%;
  display: inline-flex;
  padding: 1.25rem;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 0;
  border-right: 1px solid
    rgba(var(--7x-black) / var(--7x-border-opacity));
  background-color: transparent;
  cursor: pointer;
}

.dropdown-toggle::before,
.dropdown-toggle::after {
  --7x-border-opacity: 1;
  --7x-bg-color: var(--7x-black);

  content: "";
  width: 0.75rem;
  height: 0.125rem;
  display: inline-block;
  background-color: rgba(var(--7x-bg-color) / var(--7x-border-opacity));
  transition: var(--7x-transition-lg-duration);
  transform-origin: 50% 50%;
}

.dropdown-toggle::before {
  transform: rotate(45deg) translate(-2px, 4px);
}

.dropdown-toggle::after {
  transform: rotate(-45deg) translate(3px, 2px);
}

.dropdown.active .dropdown-toggle::before {
  --7x-bg-color: var(--7x-moderate-red);

  width: 1rem;
  transform: translateY(1px);
}

.dropdown.active .dropdown-toggle::after {
  --7x-bg-color: var(--7x-moderate-red);

  width: 1rem;
  transform: translateY(-1px);
}

.dropdown-menu {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows var(--7x-transition-lg-duration);
  text-align: left;
}

.dropdown.active .dropdown-menu {
  grid-template-rows: 1fr;
}

.dropdown-menu > div {
  overflow: hidden;
}

.dropdown-nav {
  margin: 0;
  padding: 0;
  list-style-type: none;
  gap: 0;
}

.dropdown-link {
  padding-left: 2rem;
}

.dropdown-link:hover {
  --7x-bg-opacity: 0.1;
}
/*========== header: END ==========*/

/*========== navbar top: START ==========*/
.navbar-top {
  --7x-bg-opacity: 0.1;

  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  transition: grid-template-rows var(--7x-transition-md-duration);
  background-color: rgba(var(--7x-black) / var(--7x-bg-opacity));
}

.header-main.sticky .navbar-top {
  grid-template-rows: 0fr;
}

.navbar-top .container {
  overflow: hidden;
  width: calc(100% - 1rem * 2);
}

.navbar-top .inner-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-block: 0.5rem;
  font-size: 0.875rem;
  color: rgba(var(--7x-white) / var(--7x-text-opacity));
}

.topbar-link {
  font-size: 0.875rem;
}

.topbar-content {
  display: none;
}
/*========== navbar top: END ==========*/

/*========== social media: START ==========*/
.social-media {
  padding: 0;
  margin: 0;
  list-style-type: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.navbar-top .social-media {
  margin-left: auto;
}

.social-media li {
  padding-left: 0;
  margin-bottom: 0;
  background: none;
}

.social-link {
  --7x-border-color: var(--7x-very-dark-gray);
  --7x-border-opacity: 0.75;
  --7x-fill-color: var(--7x-very-dark-gray);
  --7x-fill-opacity: 0.75;
  --7x-bg-opacity: 0;

  width: 1.375rem;
  height: 1.375rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(var(--7x-border-color) / var(--7x-border-opacity));
  border-radius: 50rem;
  background-color: rgba(var(--7x-moderate-red) / var(--7x-bg-opacity));
}

.social-link:hover {
  --7x-border-opacity: 1;
  --7x-border-color: var(--7x-moderate-red);
  --7x-fill-opacity: 1;
  --7x-fill-color: var(--7x-white);
  --7x-bg-opacity: 1;
}

.social-link .gb-icon {
  width: 0.875rem;
  height: 0.875rem;

  transition: fill var(--7x-transition-duration);
}
/*========== social media: END ==========*/

/*========== footer styles: END ==========*/
.footer-main::before {
  content: "";
  display: block;
  clear: both;
}

.footer-main .container {
  text-align: center;
  font-size: 0.875rem;
  /* padding-block: 2rem; */
  line-height: 1.75;
}

.copyright-text {
  padding: 0.5rem;
/*
  background-image: url(/extension/ezwebin/design/ezwebin/images/footer_bg.png);
  background-position: top center;
  background-repeat: no-repeat;
  background-size: 100% auto;
*/
  margin-bottom: 1rem;
}

.social-footer-toolbar {
  display: inline-flex;
  text-align: center;
  padding: 0.42rem;
}

.social-footer-toolbar-item {
  padding: 0.71rem;
}

.duration-300 {
  transition-duration: 300ms;
}
.transition-all {
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.text-white {
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1));
}
.text-lg {
  font-size: 1.125rem;
  line-height: 1.75rem;
}
.bg-orange-500 {
  --tw-bg-opacity: 1;
  background-color: rgb(249 115 22 / var(--tw-bg-opacity, 1));
}
.rounded-full {
  border-radius: 9999px;
}
.justify-center {
  justify-content: center;
}
.items-center {
  align-items: center;
}
.w-10 {
  width: 1.50rem;
}
.h-10 {
  height: 1.50rem;
}
.inline-flex {
  display: inline-flex;
}

/*========== footer styles: END ==========*/

#debug {
  background-color: #fff;
}

#debug h1, #debug h2, #debug h3, #debug h4, #debug h5 {
  color: rgba(var(--7x-black) / var(--7x-text-opacity));
}

#debug th, #debug td {
  color: rgba(var(--7x-black) / var(--7x-text-opacity));
}


/*========== existing styles: END ==========*/
.object-right,
.content-view-embed
  .content-view-line:first-of-type
  + .separator
  + .content-view-line
  .class-article
  .attribute-image,
.content-view-full
  > .class-article:first-of-type
  > .attribute-header
  + .attribute-image,
.border-box:not(.portfolio-box) .class-folder .class-article .attribute-image {
  float: right;
  margin-left: 1rem;
}

.content-view-full > .class-article:first-of-type {
  display: block;
}

.object-right a,
.content-view-embed .attribute-image a,
.content-view-full
  > .class-article:first-of-type
  > .attribute-header
  + .attribute-image
  a,
.border-box:not(.portfolio-box)
  .class-folder
  .class-article
  .attribute-image
  a {
  /*  width: 8rem;
  aspect-ratio: 3 / 4;  */
  display: block;
  /*BC: border: 1px solid rgba(var(--7x-very-dark-gray) / 0.25); */
  padding: 0.3125rem;
  border-radius: 0.25rem;
}

.content-view-line {
  clear: both;
}

/* .class-article {
  margin-top: 1rem;
} */

.vertically_listed_sub_items {
  clear: both;
  padding-top: 1.5rem;
}

.content-view-embed .class-article {
  display: block;
}

.object-right,
.attribute-image {
  text-align: center;
}

div.attribute-image {
  border: unset;
}

.attribute-image a {
/*  aspect-ratio: 16 / 9; */
  display: flex;
  /* BC: border: 1px solid rgba(var(--7x-very-dark-gray) / 0.25); */
  padding: 0.3125rem;
  border-radius: 0.25rem;
}

.object-center {
  display: flex;
  justify-content: center;
}

.object-right img,
.attribute-image img {
  /* BC: width: 100%; */
    width: 48%;
    height: 71%;
/*   max-width: 100%; *
/*   height: 100%; 
  object-fit: cover; */
}

.pagenavigator p {
  --7x-border-opacity: 0.21;

  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.pagenavigator .pages {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem;
}

.pagenavigator .pages span.current,
.pagenavigator .pages a {
  --7x-bg-opacity: 0;
  --7x-border-color: var(--7x-very-dark-gray);

  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid rgba(var(--7x-border-color) / var(--7x-border-opacity));
  border-radius: 0.125rem;
  background-color: rgba(var(--7x-moderate-red) / var(--7x-bg-opacity));
  transition: var(--7x-transition-md-duration);
  color: rgba(var(--7x-moderate-red) / var(--7x-text-opacity));
}

.pagenavigator .pages span.current,
.pagenavigator .pages a:hover {
  --7x-bg-opacity: 1;
  --7x-border-color: var(--7x-moderate-red);

  color: rgba(var(--7x-white) / var(--7x-text-opacity));
}

.renderedtable td,
.renderedtable th {
  padding: 0.5rem 0.75rem;
}

.highlighted_object .attribute-image {
  float: right;
}

.highlighted_object .attribute-image img {
  width: 10rem;
}

table.list,
table.list th,
table.list td {
  --7x-border-opacity: 0;
}

form h4 {
  font-size: 1rem;
  margin-bottom: 0rem;
  font-weight: 400;
  margin-bottom: 0.25rem;
}

form h4 + div {
  margin-bottom: 0.5rem;
}

textarea,
input:not([type="checkbox"], [type="radio"]) {
  --7x-outline-opacity: 0;
  --7x-border-opacity: 0.25;

  padding: 0.5rem 1rem;
  border: 1px solid rgba(var(--7x-very-dark-gray) / var(--7x-border-opacity));
  border-radius: 0.25rem;
  transition: var(--7x-transition-duration) ease-in-out;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  margin-bottom: 0.5rem;
  resize: none;
  outline: 0.25rem solid
    rgba(var(--7x-moderate-red) / var(--7x-outline-opacity));
  font-family: var(--font-open-sans);
}

textarea:focus,
input:focus {
  --7x-outline-opacity: 0.5;
}

textarea {
  min-height: 5rem;
}

input[type="submit"],
.btn-primary {
  border: 1px solid rgba(var(--7x-moderate-red) / var(--7x-border-opacity));
  background-color: rgba(var(--7x-moderate-red) / var(--7x-bg-opacity));
  color: rgba(var(--7x-white) / var(--7x-text-opacity));
  font-size: 1rem;
  font-weight: 500;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 0.625rem 1rem;
  text-transform: capitalize;
  border-radius: 0.25rem;
  transition: var(--7x-transition-md-duration);
  cursor: pointer;
}

input[type="submit"]:hover,
.btn-primary:hover {
  --7x-border-opacity: 0.8;
  --7x-bg-opacity: 0.8;
}

.class-blog .attribute-description .attribute-image a {
  width: auto;
  aspect-ratio: 1 / 1;
  border: 0;
  padding: 0;
}

.class-blog .content-view-line {
  margin-bottom: 1.5rem;
}

.class-blog
  .content-view-line
  .attribute-body
  .content-view-embed
  .class-image
  .attribute-image {
  width: 16rem;
  aspect-ratio: 16 / 9;
}

.calendar table th,
.calendar table td {
  padding: 0.375rem;
  text-align: center;
  vertical-align: middle;
}

.class-blog .columns-blog {
  display: grid;
  gap: 1.5rem;
}

.extrainfo-column {
  --7x-border-opacity: 0.21;

  border: 1px solid rgba(var(--7x-black) / var(--7x-border-opacity));
  border-radius: 0.375rem;
  padding: 0.75rem;
}

.border-box:not(.portfolio-box) .class-folder .class-article {
  display: block;
  overflow-wrap: break-word;
}

.border-rounded {
  --7x-border-opacity: 0.21;

  border: 1px solid rgba(var(--7x-black) / var(--7x-border-opacity));
  border-radius: 0.375rem;
  padding: 0.75rem;
  margin-top: 0.5rem;
}

.rss-feed,
.social-view-embed .attribute-image {
    /*
  display: flex;
  justify-content: space-between;
*/
}

.rss-feed > *,
.social-view-embed .attribute-image {
  float: none;
}

.class-blog .rss-feed .attribute-image a,
.social-view-embed .attribute-image a {
  width: 7.875rem;
/*   aspect-ratio: 1 / 1; */
  border: 0;
  padding: 0;
}

.left-column-position {
  clear: both;
}

.left-column-position .object-center .attribute-image {
  float: left;
  margin-right: 0.5rem;
}

.shop-basket ul {
  padding: 0;
  margin: 0 0 1.5rem;
  list-style-type: none;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
}
.shop-basket ul li {
  list-style-type: none;
}

.shop-userregister ul {
  padding: 0;
  margin: 0 0 1.5rem;
  list-style-type: none;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
}
.shop-userregister ul li {
  list-style-type: none;
}

.shop-confirmorder ul {
  padding: 0;
  margin: 0 0 1.5rem;
  list-style-type: none;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
}
.shop-confirmorder ul li {
  list-style-type: none;
}

.shop-orderview ul {
  padding: 0;
  margin: 0 0 1.5rem;
  list-style-type: none;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
}
.shop-orderview ul li {
  list-style-type: none;
}

.shop-basket ul li.selected {
  font-weight: 700;
}

.shop-userregister ul li.selected {
  font-weight: 700;
}

.shop-confirmorder ul li.selected {
  font-weight: 700;
}

.shop-orderview ul li.selected {
  font-weight: 700;
}

.myGallery {
  display: grid;
  gap: 2.5rem 2rem;
  grid-template-columns: repeat(auto-fit, minmax(264px, 1fr));
  margin-top: 1rem;
}

.gallery-items-main {
  display: grid;
  gap: 2.5rem 2rem;
  /* grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); */
  grid-template-columns: repeat(auto-fit, minmax(100%, 1fr));
  margin-top: 1rem;
}

h1.name {
  margin-top: 3rem;
}

.myGallery .imageElement,
.gallery-items-main .content-view-line {
  display: flex;
  flex-direction: column;
  background-color: rgb(var(--7x-white) / var(--7x-bg-opacity));
  padding: 1rem;
  border-radius: 0.5rem;
  border: 1px solid rgb(var(--7x-border-color) / var(--7x-border-opacity));
}

.imageElement figure a,
.gallery-items-main .attribute-image a {
  display: block;
  border-radius: 0.5rem;
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

.gallery-items-main .attribute-short {
/*  margin-top: 1rem; */
}

.gallery-items-main h2 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  /* -webkit-line-clamp: 1; */
  overflow: visible;
  color: #000000;
}

.imageElement figure a img,
.gallery-items-main .attribute-image img {
  border-radius: inherit;
  width: 100%;
  max-width: 100%;
  height: 100%;
  object-fit: cover;
  /*  aspect-ratio: 4 / 3; */
  transition: 300ms;
}

.imageElement a:hover img,
.gallery-items-main .attribute-image a:hover img {
  transform: scale(1.1);
}

.imageElement figcaption {
  text-align: center;
  font-size: 0.875rem;
  margin-top: 0.5rem;
}

div#path {
  padding: unset;
  font-size: unset;
}

div.content-view-full
  div.class-frontpage
  div.columns-frontpage
  div.left-column-position {
  width: unset;
  margin-left: unset;
  float: unset;
  display: unset;
}
div.horizontally_listed_sub_items
  div.content-view-embed
  div.content-view-horizontallylistedsubitems
  div.content-image {
  width: unset;
}
div.horizontally_listed_sub_items
  div.content-view-horizontallylistedsubitems
  div.class-image {
  padding-top: unset;
}
div.split div.three-left {
  width: unset;
  float: unset;
}
div.split div.three-right {
  width: unset;
  float: unset;
}
div.split div.three-center {
  margin: unset;
}
div.content-view-full div.class-frontpage div.columns-frontpage {
  padding: unset;
}


pre
{
    word-break: all;
    overflow-y: scroll;
}


*========== status page styles: START ==========*/

.box-container {
  width: 99%;
  max-width: 1000px;
  background: white;
  padding-left: 3%;
  padding-right: 3%;
  padding-bottom: 40px;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  text-align: center;
  padding-bottom: 1rem;
  padding-top: 2px;
}
.box-container.check-status {
  width: 98%;
  /* max-width: 1000px; */
  background: white;
  padding-left: 40px;
  padding-right: 40px;
  padding-bottom: 40px;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  text-align: center;
  padding-bottom: 1rem;
  padding-top: 10px;
}
.input-container {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin-bottom: 25px;
}
div.input-container input {
            flex: 1;
            padding: 18px;
            font-size: 20px;
            border: 3px solid #ccc;
            border-radius: 10px;
            outline: none;
            transition: 0.3s;
        }
div.input-container input:focus {
            border-color: #007bff;
        }
div.input-container button {
            padding: 18px 22px;
            font-size: 20px;
            border: none;
            cursor: pointer;
            background: #007bff;
            color: white;
            border-radius: 10px;
            transition: 0.3s;
        }
div.input-container button:hover {
            background: #0056b3;
        }
.display-status {
            font-size: 22px;
            font-weight: bold;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
            padding: 20px;
            border-radius: 12px;
            margin-bottom: 25px;
            background: #f8f9fa;
            color: #555;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}
.online { color: green; }
.offline { color: red; }
.section {
            padding: 20px;
            background: white;
            border-radius: 12px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
            text-align: left;
            margin-bottom: 15px;
        }
.section h3 {
            font-size: 22px;
            font-weight: bold;
            margin-bottom: 8px;
            color: #444;
        }
.section p {
            font-size: 18px;
            color: #666;
            margin: 0;
        }

/* Server container with spacing */
.server-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  /* padding: 20px; */
}

/* Server card styling */
.server {
  background-color: #2a2a40; /* Darker card background */
  border-radius: 10px;
  padding: 20px;
  width: 300px;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  margin: 10px;
}

/* Server icons */
.server i {
  font-size: 40px;
  color: #4caf50; /* Green color for icons */
}

/* Server title */
.server-name {
  font-size: 18px;
  font-weight: bold;
  margin-top: 10px;
  color: #fff;
}

/* Server status badge */
.server-status {
  font-size: 14px;
  padding: 5px;
  border-radius: 5px;
  margin-top: 5px;
  background-color: #4caf50; /* Green for online */
  color: #fff;
  padding: 5px 10px;
}

/* Input container with different color */
.box-container.input-container.input {
  margin-top: 15px;
  background-color: #444466; /* Different dark shade for separation */
  padding: 10px;
  border-radius: 5px;
}

.box-container.input-container.button {
  margin-top: 15px;
  background-color: #444466; /* Different dark shade for separation */
  padding: 10px;
  border-radius: 5px;
}

/* Separation line with unique color */
.separator {
  width: 80%;
  margin: 30px auto;
  height: 3px;
  background-color: #ff9800; /* Orange separator for contrast */
  border-radius: 5px;
}

/* Below Content Section */
.content-below {
  text-align: center;
  background-color: #29293d; /* Different dark shade for separation */
  padding: 20px;
  border-radius: 10px;
  width: 80%;
  margin: auto;
}

div.contact-area.style-three.inner div.container div.row.add-white-bg div.col-lg-8.col-md-12 div.single-contact-box div div.banner p:first-of-type {
  left: 8%;
  display: flex;
  position: relative;
  /* top: -32px; */
}

div.contact-area.style-three.inner div.container div.row.add-white-bg div.col-lg-8.col-md-12 div.single-contact-box div.attribute-header.top {
  padding-bottom: 0.3rem;
}

div.contact-area.style-three.inner div.container div.row.add-white-bg div.col-lg-8.col-md-12 div.single-contact-box div h3 div.banner {
  padding-left: 1rem;
}
/*========== status page styles: END ==========*/

/*========== support home page styles: START ==========*/

.box-container-support {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    width: 100%;
    margin: 35px auto;
}
.box-item {
    background: white;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    transition: transform 0.3s;
}
.box-item:hover {
    transform: translateY(-5px);
}
.box-item .image {
    width: 50px;
    height: 50px;
    margin-bottom: 10px;
}
.box-item h2 {
    color: #0056b3;
}
.box-btn {
    display: inline-grid;
    margin-top: 10px;
    padding: 10px 15px;
    background: #ffcc00;
    color: #000;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s;
    /* margin-left: 10%; */
}
.box-btn:hover {
    font-weight: bolder;
    color: #000;
}
#intro {
    background: linear-gradient(to right, #23395d, #1a1f71);
    color: white;
    padding: 1rem 20px;
    text-align: center;
    position: relative;
    top: 1rem;
    padding-bottom:2.3rem;
}
#intro h1 {
    font-size: 2.5em;
    margin-bottom: 15px;
    color: white;
}

/*========== support home page styles: END ==========*/

/*========== support org page styles: START ==========*/


.org-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    padding: 20px;
}
.org-item {
    background: white;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
    text-align: center;
}
.org-logo {
    width: 80px;
    height: 80px;
    margin: 0 auto 10px;
    border-radius: 5px;
    /* background-color: #ddd; */
    display: flex;
    align-items: center;
    justify-content: center;
}
.org-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
div.class-folder-org div.content-view-children.gallery-items-main.org-list div.content-view-line div.class-folder-org h2 {
    font-weight: bold;
    font-size: 18px;
    color: #0056b3;
    text-align:center;
}
.org-desc {
    margin: 5px 0 10px;
    color: #333;
    height: 20px;
}
.learn-more {
    display: inline-block;
    padding: 10px 15px;
    margin-left: 24%;
    background: #ffcc00;
    color: #000;
    text-align:center;
    text-decoration: none;
    font-weight: bolder;
    border-radius: 5px;
}

/*========== support org page styles: END ==========*/



/*========== support org view page styles: START ==========*/

div.content-view-full div.class-folder div.content-view-children.gallery-items-main div.content-view-line div.class-contribution div.attribute-byline.float-break {
  /* padding-bottom: 2rem; */
}

/*========== support org view page styles: END ==========*/

/*========== existing styles: END ==========*/

/*========== magnific popup: START ==========*/
/* overlay at start */
.mfp-fade.mfp-bg {
  opacity: 0;
  transition: all 0.15s ease-out;
}
/* overlay animate in */
.mfp-fade.mfp-bg.mfp-ready {
  opacity: 0.8;
}
/* overlay animate out */
.mfp-fade.mfp-bg.mfp-removing {
  opacity: 0;
}

/* content at start */
.mfp-fade.mfp-wrap .mfp-content {
  opacity: 0;
  transition: all 0.15s ease-out;
}
/* content animate it */
.mfp-fade.mfp-wrap.mfp-ready .mfp-content {
  opacity: 1;
}
/* content animate out */
.mfp-fade.mfp-wrap.mfp-removing .mfp-content {
  opacity: 0;
}

.mfp-with-zoom .mfp-container,
.mfp-with-zoom.mfp-bg {
  opacity: 0;
  transition: all 0.3s ease-out;
}

.mfp-with-zoom.mfp-ready .mfp-container {
  opacity: 1;
}
.mfp-with-zoom.mfp-ready.mfp-bg {
  opacity: 0.8;
}

.mfp-with-zoom.mfp-removing .mfp-container,
.mfp-with-zoom.mfp-removing.mfp-bg {
  opacity: 0;
}
/*========== magnific popup: END ==========*/

.content-navigator {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  padding-block: 2rem;
}

.content-navigator-previous-disabled,
.content-navigator-next-disabled,
.content-navigator-previous,
.content-navigator-next {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}



/* 7x Hero for exponential.earth HP */

.style-one.hero-area {

/*
  background-color: #ff731e;

  background-repeat: no-repeat;
  background-size: cover;
  background-position: -43rem center;
  background-position: center center;
*/
  min-height: 445px;
  /* width: 500px !important; */

  /* top: 3.6rem; */
  /*    position: relative; */
}

.style-one .hero-content h4 {
  font-size: 25px;
  font-weight: 600;
  color: #000;
  text-transform: uppercase;
  margin: 0 0 21px;
}

.style-one .hero-content h1 {
  font-size: 74px;
  color: #000;
  font-weight: 700;
  line-height: 26px;
  /* text-transform: uppercase; */
}

.style-one .hero-content p {
 /* width: 48%; */
  color: #000;
  font-size: 17px;
  line-height: 25px;
  margin: 26px 0 0;
}

.style-one.hero-button {
  margin-top: 49px;
}

.style-one .hero-button.style-one a {
  display: inline-block;
  background: #0c5adb;
  border: 1px solid #0c5adb;
  color: #000;
  padding: 13px 45px;
  font-weight: 500;
  font-size: 17px;
  margin-right: 14px;
  transition: 0.5s;
}

.style-one .hero-button.style-one a:hover {
  background: transparent;
  border: 1px solid #0000006e;
}

.style-one a.button-two {
  background: transparent !important;
  border: 1px solid #0000006e !important;
  padding: 12px 45px !important;
  transition: 0.5s;
}

.style-one a.button-two:hover {
  background: #0c5adb !important;
  color: #000;
  border: 1px solid #0c5adb !important;
}

/* Further */


.style-foure.hero-area {
/*
  background: url(../images/layout/slider/home-4/slider-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
*/
    /* height: 840px; */
}

.hero-area.style-foure .hero-content {
  text-align: center;
}

.style-foure .hero-content h4 {
  font-size: 18px;
  text-transform: uppercase;
  color: #000;
  font-weight: 500;
  margin: 0 0 18px;
  display: inline-block;
  position: relative;
  z-index: 1;
}

.style-foure .hero-content h4::before {
  position: absolute;
  content: "";
  height: 100%;
  width: 100%;
  background: url(../../images/content/home-4/title-shape.png);
  background-repeat: no-repeat;
  left: -11%;
}

.style-foure .hero-content h4::after {
  position: absolute;
  content: "";
  height: 100%;
  width: 100%;
  background: url(../../images/content/home-4/title-shape.png);
  background-repeat: no-repeat;
  right: -103%;
}

.style-foure .hero-content h1 {
  font-size: 66px;
  line-height: 65px;
  color: #000000;
  font-weight: 700;
}

.style-foure .hero-content p {
  width: 48%;
  color: #000;
  font-size: 17px;
  line-height: 25px;
  /* margin: 26px 0 0; */
}

.style-foure.hero-button {
  margin-top: 71px;
  text-align: center;
}

.style-foure .hero-button.style-one a {
  display: inline-block;
  background: #0c5adb;
  color: #000;
  padding: 13px 45px;
  font-weight: 500;
  font-size: 17px;
  margin-right: 14px;
}

.style-foure a.button-two {
  font-size: 16px;
  color: #000000;
  font-weight: 500;
  font-family: "Nunito";
  background: #0c59db;
  padding: 17px 34px;
  border-radius: 30px;
  position: relative;
  z-index: 1;
  transition: 0.5s;
}

.style-foure a.button-two::before {
  position: absolute;
  content: "";
  height: 100%;
  width: 100%;
  background: #00004a;
  clip-path: polygon(50% 0, 50% 0, 50% 50%, 50% 100%, 50% 100%, 50% 50%);
  left: 0px;
  right: 0px;
  top: 0px;
  bottom: 0;
  transition: 0.5s;
  border-radius: 30px;
}

.style-foure a.button-two:hover::before {
  clip-path: polygon(
    25% -70%,
    75% -70%,
    120% 50%,
    75% 170%,
    25% 170%,
    -20% 50%
  );
}

.hero_list .owl-nav {
  position: relative;
}

/* .hero_list .owl-prev {
  position: absolute;
  top: -250px;
  left: 1rem;
} */
/* 
.hero_list .owl-next {
  display: inline-block;
  position: absolute;
  top: -250px;
  right: 2rem;
  z-index: 1;
} */

/* .hero_list .owl-prev {
  height: 60px;
  width: 60px;
  line-height: 60px !important;
  text-align: center;
  border-radius: 50%;
  transition: 0.5s;
  border: 2px solid #818181 !important;
} */

/* .hero_list .owl-next i {
  color: #000;
  font-size: 19px;
} */

/* .hero_list .owl-next {
  height: 60px;
  width: 60px;
  line-height: 60px !important;
  text-align: center;
  border-radius: 50%;
  transition: 0.5s;
  border: 2px solid #818181 !important;
} */

/* .hero_list .owl-prev i {
  color: #000;
  font-size: 19px;
}

.hero_list .owl-next:hover {
  background: #ff5420d4 !important;
  color: #000;
  border: 2px solid #0c59db !important;
}

.hero_list .owl-prev:hover {
  background: #ff5420d4 !important;
  color: #000;
  border: 2px solid #0c59db !important;
} */

/* .owl-carousel .owl-stage-outer {
  height: 40.6rem;
} */

/*==================================================*/
/* Date: 15-02-2025 */
/*==================================================*/
/*
.header-area {
  background: url(../../images/content/home-1/footer-bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}
*/

.hero_list .hero-area {
  /* min-height: 183vh; */
  overflow: hidden;
}

/* .hero_list .container {
     padding-block: 10rem 3rem;
    padding-right: 1.3rem;
    padding-left: 1.3rem;
    margin-bottom: 1.3rem;
    margin-top: 0.43rem;
    padding-bottom: 0.43rem;
} */

.hero_list .hero-area .hero-content {
  text-align: left;
}

.btn {
  display: inline-flex;
  gap: 0.625rem;
  background-color: transparent;
  border: 1px solid transparent;
  color: #0c5adb;
  padding: 0.75rem 2rem;
  font-weight: 500;
  font-size: 1rem;
  transition: 300ms ease;
  outline: 1px solid transparent;
  border-radius: 0.25rem;
}

.btn:before,
.btn:after {
  display: none;
}

.btn:hover {
  background-color: #0c5adb;
  color: #ffffff;
}

.btn-blue {
  background-color: #0c5adb;
  color: #ffffff;
  border-color: #0c5adb;
}

.btn-blue:hover {
  background-color: #1063eb;
  color: #ffffff;
  border-color: #1063eb;
}

.btn-outline-white {
  background-color: transparent;
  color: #000;
  border-color: #000;
}

.btn-outline-white:hover {
  background-color: #ffffff;
  color: #0c5adb;
  border-color: #ffffff;
}

.hero_list .hero-button {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 0.736rem;
}

.hero_list .hero-content h4 {
  font-size: 1.65rem;
  font-weight: 500;
}

.hero_list .hero-content h1 {
  font-size: 2rem;
  font-weight: 600;
}
/*==================================================*/
/* Date: 15-02-2025 */
/*==================================================*/



/* 7x styles to integrate */

[id] {
  scroll-margin-top: 100px; /* Adjust to match your fixed header height */
}


.scroll-to-top {
  transition-duration: 500ms;
  position: absolute;
  display: inline-flex;
  right: 2.25rem;
  bottom: 2rem;
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity));
  font-size: 1rem;
  line-height: 1.5rem;
  font-weight: 500;
  padding: 0.5rem;
  --tw-bg-opacity: 1;
  background-color: rgb(212 41 6 / var(--tw-bg-opacity));
  --tw-border-opacity: 1;
  border-color: rgb(249 115 22 / var(--tw-border-opacity));
  border-style: solid;
  border-width: 1px;
  justify-content: center;
  align-items: center;
  width: 2.5rem;
  height: 2.5rem;
  z-index: 30;
  pointer-events: auto;
  transition-property: color, background-color, border-color,
    text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter,
    backdrop-filter, -webkit-backdrop-filter;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

.scroll-to-top-container {
  position: relative;
  margin-left: auto;
  margin-right: auto;
}

.scroll-to-top-box {
  position: fixed;
  z-index: 1020;
  width: 100%;
  left: 0;
  bottom: 4rem;
  pointer-events: none;
}

.scroll-to-top:not(.active) {
  opacity: 0;
  visibility: hidden;
}

@media (min-width: 1024px) {
  .scroll-to-top {
    right: 7.25rem;
  }
  .scroll-to-top-container {
    width: 100%;
  }
}

@media (min-width: 1280px) {
  .scroll-to-top-box {
    bottom: 2rem;
  }
}


/* =============== 02 August, 2025 =============== */
.hero_list  {
  position: relative;
}

.hero_list .owl-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-100%);
  width: 100%;
  display: none;
  justify-content: space-between;
  pointer-events: none;
}

.hero_list .owl-nav .owl-prev,
.hero_list .owl-nav .owl-next {
  pointer-events: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50rem;
  background-color: rgba(var(--7x-very-dark-blue) / 1);
  color: rgba(var(--7x-white) / 1);
  font-size: 1.25rem;
  transition: var(--7x-transition-md-duration);
  border: 1px solid rgba(var(--7x-very-dark-blue) / 1);
  cursor: pointer;
  box-shadow: 0 0.125rem 0.25rem rgba(var(--7x-black) / 0.1);
}

.hero_list .owl-nav .owl-prev {
  transform: translateX(-2.5rem);
}

.hero_list .owl-nav .owl-next {
  transform: translateX(2.5rem);
}

.hero_list .owl-nav .owl-prev:hover ,
.hero_list .owl-nav .owl-next:hover {
  background-color: rgba(var(--7x-very-dark-blue) / 0.9);
  color: rgba(var(--7x-white) / 1);
  border-color: rgba(var(--7x-very-dark-blue) / 0.9);
}

.hero-area .container {
  padding: 0.25rem;
  margin: 0;
  max-width: 100%;
  width: 100%;
}

.hero-area ul {
  list-style-position: inside;
  display: grid;
  gap: 0.25rem;
}

.hero-area p {
  margin-bottom: 1rem;
}

/* =============== 02 August, 2025 =============== */

/* =============== 10 August, 2025 =============== */
/* .content-border-line, */
div.content-view-full div.class-folder div.content-view-children.gallery-items-main div.content-view-line,
.attribute-header {
  border: none;
  border-top: 1px solid rgba(var(--7x-ezp-border) / 1);
  border-radius: 0.5rem 0.5rem 0 0;
  position: relative;
  padding: 0.375rem 0.5rem 0;
}

.attribute-footer {
  border: none;
  border-top: 1px solid rgba(var(--7x-ezp-border) / 1);
  border-radius: 0.5rem 0.5rem 0 0;
  position: relative;
  padding: 0.975rem 0.5rem 0.1rem;
  margin-bottom: 2rem;
}

/* .content-border-line::before, */
div.content-view-full div.class-folder div.content-view-children.gallery-items-main div.content-view-line::before,
/* .content-border-line::after, */
div.content-view-full div.class-folder div.content-view-children.gallery-items-main div.content-view-line::after,
.attribute-header::before,
.attribute-header::after {
  content: '';
  position: absolute;
  top: 0;
  z-index: 1;
  pointer-events: none;
  width: 3rem;
  height: 3rem;
  border-color : rgba(var(--7x-ezp-border) / 1);
  border-width: 1px;
}

.attribute-footer::before,
.attribute-footer::after {
  content: '';
  position: absolute;
  top: 0;
  z-index: 1;
  pointer-events: none;
  width: 3rem;
  height: 3rem;
  border-color : rgba(var(--7x-ezp-border) / 1);
  border-width: 1px;
}


/* .content-border-line::before, */
div.content-view-full div.class-folder div.content-view-children.gallery-items-main div.content-view-line::before,
.attribute-header::before {
  left: 0;
  border-left-style: solid;
  border-top-left-radius: 0.5rem;
}


.attribute-footer::before {
  left: 0;
  border-left-style: solid;
  border-top-left-radius: 0.5rem;
  border-bottom-left-radius: 0.5rem;
}

/* .content-border-line::after, */
div.content-view-full div.class-folder div.content-view-children.gallery-items-main div.content-view-line::after,
.attribute-header::after {
  right: 0;
  border-right-style: solid;
  border-top-right-radius: 0.5rem;
}

.attribute-footer::after {
  right: 0;
  border-right-style: solid;
  border-top-right-radius: 0.5rem;
  border-bottom-right-radius: 0.5rem;
}

.category_image {
  float: right;
  padding-top: 2.7rem;
  padding-right: 1rem;
  padding-left: 1.7rem;
  transform: translateY(-2rem);
}

.category_image a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  aspect-ratio: 1 / 1;
}
.category_image.about-about-ez-publish {
  float: right;
  padding: 0 1rem;
  transform: translateY(-3rem);
  margin-right: 3.8rem;
}
.category_image img {
  /* max-width: 100%;
  width: 100%; */
  height: 100%;
  object-fit: contain;
}

/* .class-feedback-form .attribute-image {
  padding-right: 5.89rem;
  scale: 134%;
} */

.class-folder .attribute-short {
  padding-bottom: 0.562rem;
}

.class-folder .attribute-long {
  padding-bottom: 0.562rem;
}

.content-view-full .attribute-image img
{
/*
  width: 48%;
  height: 71%;
*/  
}

.sitemap {
  margin-top: 2rem;
}

/* =============== 10 August, 2025 =============== */

/* =============== 16 September, 2025 =============== */

/* =============== 16 September, 2025 =============== */



/* End / Fin */
