@import "./assets/css/color.css";
@import "./assets/css/fonts.css";
:root {
    --heloshia-border-radius: 1rem;
    --heloshia-line-height: 1.7;
    --heloshia-menu-height: 102px;
}
a {
    color: var(--heloshia-color-2);
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    text-decoration: none;
}
a:hover {
    color: var(--heloshia-color-1);
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    text-decoration: none;
}
::-moz-selection {
    color: var(--heloshia-color-2);
    background: var(--heloshia-color-1);
}
::selection {
    color: var(--heloshia-color-2);
    background: var(--heloshia-color-1);
}
.transition-heloshia {
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
body {
    position: relative;
    font: 1em PeydaWebFaNum;
    font-weight: normal;
    margin: 0 auto;
    background-color: #fff;
    height: 100%;
}
body.rtl-mode {
    text-align: right;
}
body.ltr-mode {
    text-align: left;
}
body, html {
    height: 100%;
    margin: 0;
    width: 100%;
}
html {
    scroll-behavior: smooth;
}
.clear-n {
    clear: both;
}
#main-body-heloshia {
    margin: 0 auto;
    width: 100%;
}
*:focus-visible {
    outline: none !important;
}
.img-cover {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 101%;
    height: 101%;
    object-fit: cover;
    -o-object-fit: cover;
}
.img-contain {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    object-fit: contain;
    -o-object-fit: contain;
}
.limit-line-1 {
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.limit-line-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.limit-line-3 {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.limit-line-4 {
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.limit-line-5 {
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.limit-line-6 {
    display: -webkit-box;
    -webkit-line-clamp: 6;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.disable-select {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.btn-primary {
    --bs-btn-color: var(--heloshia-color-bg);
    --bs-btn-bg: var(--heloshia-color-2);
    --bs-btn-border-color: var(--heloshia-color-2);
    --bs-btn-hover-color: var(--heloshia-color-bg);
    --bs-btn-hover-bg: #49a842;
    --bs-btn-hover-border-color: #49a842;
    --bs-btn-focus-shadow-rgb: 49,132,253;
    --bs-btn-active-color: var(--heloshia-color-bg);
    --bs-btn-active-bg: var(--heloshia-color-2);
    --bs-btn-active-border-color: var(--heloshia-color-2);
    --bs-btn-active-shadow: none;
    --bs-btn-disabled-color: var(--heloshia-color-bg);
    --bs-btn-disabled-bg: var(--heloshia-color-2);
    --bs-btn-disabled-border-color: var(--heloshia-color-2);
}
.btn-heloshia {
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50rem;
    padding: 0.6rem 1.5rem;
}
@-webkit-keyframes rotate-infinitely {
    0%, 100% {
        -webkit-transform: rotate(-1deg);
        transform: rotate(-1deg);
    }
    50% {
        -webkit-transform: rotate(1deg);
        transform: rotate(1deg);
    }
}
@keyframes rotate-infinitely {
    0%, 100% {
        -webkit-transform: rotate(-1deg);
        transform: rotate(-1deg);
    }
    50% {
        -webkit-transform: rotate(1deg);
        transform: rotate(1deg);
    }
}
.rotate-infinitely:hover {
    -webkit-animation-name: rotate-infinitely;
    animation-name: rotate-infinitely;
    -webkit-animation-duration: 0.75s;
    animation-duration: 0.75s;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
}
.navbar-heloshia {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1rem 0;
    z-index: 1000;
    background-color: var(--heloshia-color-bg);
}
.navbar-logo {
    display: inline-block;
    height: 70px;
    width: auto;
}
.navbar-logo:hover {
    opacity: .8;
}
.navbar-heloshia-items ul {
    padding: 0;
    margin: 0;
}
.navbar-heloshia-items a {
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    border-radius: 50rem;
    padding: .5rem .5rem .5rem 1rem;
    color: var(--heloshia-color-bg);
    font-weight: 600;
    font-size: 1.1rem;
}
.navbar-heloshia-items a:hover {
    filter: brightness(110%);
    -webkit-filter: brightness(110%);
}
.navbar-heloshia-items a .icon {
    width: 2rem;
    height: 2rem;
    background-color: var(--heloshia-color-2);
    border-radius: 50%;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}
.navbar-heloshia-items a .icon img {
    display: inline-block;
    height: 50%;
}
.navbar-heloshia-fixed {
    position: fixed;
    padding: .5rem 0;
}
.navbar-heloshia-fixed .navbar-logo {
    height: 60px;
}
.navbar-heloshia-fixed .navbar-heloshia-items a {
    padding: .4rem .4rem .4rem 1rem;
    font-size: .9rem;
}
.pt-page {
    padding-top: var(--heloshia-menu-height);
}
.header-section {
    position: relative;
    width: 100%;
    background-color: var(--heloshia-color-1);
}
.header-box-item {
    position: relative;
    width: 100%;
    height: 100%;
    background-color: var(--heloshia-color-bg);
    border-radius: var(--heloshia-border-radius);
    padding: 1rem;
    overflow: hidden;
}
.header-box-thumb-parent {
    position: relative;
    width: 100%;
    margin-bottom: 1rem;
    min-height: 100px;
}
.header-box-thumb {
    position: relative;
    width: 100%;
    padding-top: 73.5%;
    overflow: hidden;
    border-radius: .5rem;
    z-index: 1;
}
.header-box-thumb img {
    z-index: 1;
}
.header-box-thumb .h-badge {
    position: absolute;
    top: 1rem;
    left: 0;
    border-radius: 0 .5rem .5rem 0;
    background-color: var(--heloshia-color-2);
    color: var(--heloshia-color-text);
    padding: .25rem 1.35rem;
    font-size: 1rem;
    font-weight: 700;
    z-index: 2;
}
.header-box-thumb-parent .icon {
    z-index: 2;
    position: absolute;
    bottom: -1.6rem;
    left: -0.5rem;
    width: 5.5rem;
    height: 5.5rem;
    border-radius: 50%;
    border: .7rem solid var(--heloshia-color-bg);
}
.header-box-thumb-parent .icon.small {
    width: 4.5rem;
    height: 4.5rem;
}
.header-box-thumb-parent .icon img {
    display: inline-block;
    height: 55%;
    width: auto;
}
.header-box-thumb-2 {
    padding-top: 33%;
}
.header-box-thumb-3 {
    padding: 0;
    height: 100%;
}
.header-box-item h3 {
    color: var(--heloshia-color-text);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0;
    line-height: var(--heloshia-line-height);
}
.header-box-item:hover h3 {
    color: var(--heloshia-color-2);
}
.header-box-item:hover .header-box-thumb img {
    opacity: .9;
}
.my-section {
    margin-top: 7.5rem;
    margin-bottom: 7.5rem;
}
.about-section {
    position: relative;
    width: 100%;
}
.title-section {
    position: relative;
    width: 100%;
    color: var(--heloshia-color-text);
    margin-bottom: 1.5rem;
    text-align: center;
}
.title-section h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0;
}
.about-section p {
    font-size: 1rem;
    font-weight: normal;
    color: var(--heloshia-color-text);
    margin-bottom: 1rem;
    text-align: justify;
    line-height: var(--heloshia-line-height);
}
.about-section .btn {
    width: 100%;
    max-width: 400px;
}
/*.about-thumb {*/
/*    position: relative;*/
/*    width: 100%;*/
/*    padding-top: 100%;*/
/*}*/
/*.about-thumb img {*/
/*    object-position: center bottom;*/
/*    -o-object-position: center bottom;*/
/*}*/
.characters-section {
    position: relative;
    width: 100%;
}
.character-item {
    position: relative;
    width: 100%;
    text-align: center;
}
.character-thumb {
    position: relative;
    width: 100%;
    border-radius: 50%;
    overflow: hidden;
    padding-top: 100%;
    margin-bottom: 1rem;
}
.character-item h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--heloshia-color-text);
    margin-bottom: 0;
}
.character-item:hover .character-thumb img {
    opacity: .95;
}
.character-item:hover h4 {
    color: var(--heloshia-color-2);
}
#footer {
    position: relative;
    width: 100%;
    background-color: var(--heloshia-color-2);
    color: #ffffff;
    box-shadow: 0 -6px 15px 0 rgba(0, 0, 0, 0.06);
    -webkit-box-shadow: 0 -6px 15px 0 rgba(0, 0, 0, 0.06);
}
.logo-footer {
    display: inline-block;
    width: 110px;
    height: auto;
    margin-bottom: 1rem;
}
.logo-footer:hover {
    opacity: .9;
}
.logo-title-footer {
    font-size: 1.7rem;
    font-weight: 700;
    margin-bottom: 0;
    color: #ffffff;
}
.footer-title {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1.3rem;
}
.footer-menu {
    padding: 0;
    margin: 0;
    font-weight: normal;
    font-size: .9rem;
    line-height: var(--heloshia-line-height);
}
.footer-menu li:not(:last-child) {
    margin-bottom: .7rem;
}
.footer-menu a {
    color: #ffffff;
}
.footer-menu a:hover {
    color: var(--heloshia-color-1);
}
.social-footer {
    position: relative;
    width: 100%;
    text-align: center;
}
.social-footer a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 2.7rem;
    height: 2.7rem;
    color: #ffffff;
    font-size: 1.9rem;
    margin: 0 .25rem .25rem;
}
.social-footer a:hover {
    color: var(--heloshia-color-1);
}
.copyright-footer {
    font-size: .85rem;
    font-weight: normal;
    margin-bottom: 0;
    line-height: var(--heloshia-line-height);
}
.copyright-footer a {
    color: var(--heloshia-color-3);
}
.copyright-footer a:hover {
    color: var(--heloshia-color-1);
}
.gallery-page,
.poem-page,
.story-page,
.character-page {
    position: relative;
    width: 100%;
    background-image: url("./assets/img/pattern.svg");
    background-repeat: repeat;
    background-size: 250px;
}
.character-navbar {
    position: sticky;
    top: var(--heloshia-menu-height);
    width: 100%;
    box-shadow: 0 6px 15px 0 rgba(0, 0, 0, 0.12);
    -webkit-box-shadow: 0 6px 15px 0 rgba(0, 0, 0, 0.12);
    padding: 1rem 0;
    text-align: center;
    z-index: 900;
}
.character-navbar h2 {
    margin-bottom: 0;
    font-size: 2rem;
    font-weight: 700;
}
.single-character-thumb {
    width: 240px;
    height: 240px;
    border-radius: 50%;
    overflow: hidden;
    display: block;
    margin: 2rem auto 1.3rem;
    position: relative;
}
.character-title-2 {
    text-align: center;
    color: var(--heloshia-color-bg);
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: 0;
}
.content-single-page {
    width: 100%;
    position: relative;
    color: var(--heloshia-color-text);
    font-weight: normal;
    font-size: 1.1rem;
    line-height: var(--heloshia-line-height);
    text-align: justify;
}
.content-single-page h1 {
    margin-bottom: .5rem;
    font-weight: 800;
    font-size: 1.5rem;
}
.content-single-page h2 {
    margin-bottom: .5rem;
    font-weight: 800;
    font-size: 1.4rem;
}
.content-single-page h3 {
    margin-bottom: .5rem;
    font-weight: 600;
    font-size: 1.3rem;
}
.content-single-page h4 {
    margin-bottom: .5rem;
    font-weight: 600;
    font-size: 1.2rem;
}
.content-single-page h5 {
    margin-bottom: .5rem;
    font-weight: 600;
    font-size: 1.1rem;
}
.content-single-page h6 {
    margin-bottom: .5rem;
    font-weight: 600;
    font-size: 1rem;
}
.content-single-page ul {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem;
}
.content-single-page li {
    position: relative;
    padding-right: 1.25rem;
    margin-bottom: .25rem;
}
.content-single-page li:before {
    content: '';
    position: absolute;
    top: .7rem;
    right: 0;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--heloshia-color-2);
}
.content-single-page img {
    max-width: 100% !important;
    display: block;
    margin: 0 auto 1.5rem;
    border-radius: var(--heloshia-border-radius);
}
.content-single-page p {
    margin-bottom: .75rem;
}
.content-single-page strong {
    font-weight: 800;
}
.content-single-page a {
    color: var(--heloshia-color-2);
}
.content-single-page a:hover {
    color: var(--heloshia-color-3);
}
.single-character-content {
    position: relative;
    width: 100%;
    background-color: var(--heloshia-color-bg);
    box-shadow: -2px 5px 15px 0 rgba(102, 115, 122, 0.15);
    -webkit-box-shadow: -2px 5px 15px 0 rgba(102, 115, 122, 0.15);
    border-radius: var(--heloshia-border-radius);
    padding: 3rem 6rem;
    color: var(--heloshia-color-text);
}
.single-character-content h4 {
    font-size: 1.7rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}
.single-character-content p {
    font-size: 1.1rem;
    line-height: var(--heloshia-line-height);
    text-align: justify;
    margin-bottom: .5rem;
    font-weight: normal;
}
.character-gallery-item {
    position: relative;
    width: 100%;
    background-color: var(--heloshia-color-bg);
    border-radius: var(--heloshia-border-radius);
    padding: .8rem;
    cursor: pointer;
}
.character-gallery-frame {
    position: relative;
    width: 100%;
    padding-top: 100%;
    overflow: hidden;
    border-radius: .7rem;
}
.character-gallery-item:hover img {
    opacity: .85;
}
.lg-container {
    direction: ltr;
}
.lg-outer .lg-thumb-item {
    border-radius: .5rem !important;
    border: 2px solid transparent;
}
.lg-outer .lg-thumb-item.active,
.lg-outer .lg-thumb-item:hover {
    border-color: var(--heloshia-color-1) !important;
}
.lg-sub-html {
    text-align: center !important;
    font-family: PeydaWebFaNum, serif !important;
    font-size: 1.25rem;
}
.episodes-page {
    position: relative;
    width: 100%;
}
.episodes-video-box-frame {
    position: relative;
    width: 100%;
    background-color: var(--heloshia-color-bg);
    border-radius: var(--heloshia-border-radius);
    padding: 1rem;
}
.episodes-video-box {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: .6rem;
}
.story-item {
    position: relative;
    width: 100%;
    text-align: center;
    filter: drop-shadow(0px 0px 3px var(--heloshia-color-bg));
    -webkit-filter: drop-shadow(0px 0px 3px var(--heloshia-color-bg));
}
.story-thumb {
    position: relative;
    overflow: hidden;
    border-radius: 50%;
    width: 130px;
    height: 130px;
    margin: 0 auto -1.2rem;
    border: .5rem solid var(--heloshia-color-2);
    z-index: 2;
}
.story-item h4 {
    color: var(--heloshia-color-text);
    font-weight: 700;
    font-size: 1.2rem;
    width: 100%;
    border-radius: var(--heloshia-border-radius);
    /*border: 2px solid var(--heloshia-color-bg);*/
    background-color: var(--heloshia-color-2);
    padding: 1rem .5rem .6rem;
    z-index: 1;
    position: relative;
}
.story-slider-section {
    position: relative;
    width: 100%;
    padding: 0 2.5rem;
}
.story-slide-item-parent {
    position: relative;
    width: 100%;
    border-radius: 50%;
}
.story-slide-item {
    position: relative;
    width: 100%;
    padding-top: 100%;
    border-radius: 50%;
    overflow: hidden;
}
.story-slide-item img {
    z-index: 1;
}
.story-slide-item:hover img {
    opacity: .9;
}
.swiper-button-next,
.swiper-button-prev {
    top: 50%;
    width: 1.8rem;
    height: 1.8rem;
    margin-top: -0.9rem;
    color: var(--heloshia-color-bg);
    background-color: var(--heloshia-color-2);
    border-radius: 50%;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: .9rem;
}
.swiper-button-prev,
.rtl-mode .swiper-button-next {
    left: 0;
    right: auto;
}
.swiper-button-next,
.rtl-mode .swiper-button-prev {
    right: 0;
    left: auto;
}
.swiper-button-prev::after,
.rtl-mode .swiper-button-next::after {
    content: 'prev';
}
.swiper-button-next::after,
.rtl-mode .swiper-button-prev::after {
    content: 'next';
}
.heloshia-tooltip {
    --bs-tooltip-bg: var(--heloshia-color-2);
    --bs-tooltip-color: var(--heloshia-color-bg);
    font-family: PeydaWebFaNum, serif;
    font-size: 1rem;
    font-weight: 500;
    opacity: 1;
}
.gallery-box-item {
    position: relative;
    width: 100%;
    padding: .8rem;
    border-radius: var(--heloshia-border-radius);
    background-color: var(--heloshia-color-bg);
}
.gallery-box-item-thumb {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: .5rem;
    border: 1px solid var(--heloshia-color-text);
    padding-top: 100%;
}
.gallery-box-item:hover img {
    opacity: .9;
}
.swiper-button-next-gallery,
.swiper-button-prev-gallery {
    background-color: var(--heloshia-color-3);
}
.gallery-item-parent {
    position: relative;
    width: 100%;
    background-color: var(--heloshia-color-3);
    border-radius: var(--heloshia-border-radius);
    padding: .8rem;
}
.gallery-item {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    overflow: hidden;
    border-radius: .5rem;
}
.gallery-item-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.news-box-item {
    position: relative;
    width: 100%;
    border: 8px solid var(--heloshia-color-13);
    border-radius: var(--heloshia-border-radius);
    background-color: var(--heloshia-color-bg);
    padding: 2.5rem;
}
.news-page {
    position: relative;
    width: 100%;
    background-image: url("./assets/img/pattern-2.svg");
    background-repeat: repeat;
    background-size: 250px;
}
.news-logo {
    position: relative;
    display: block;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background-color: var(--heloshia-color-bg);
    margin: 0 auto 1rem;
    border: .5rem solid var(--heloshia-color-13);
}
.news-logo::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    width: calc(100% - 1rem);
    height: calc(100% - 1rem);
    z-index: 1;
    border: .5rem solid var(--heloshia-color-13);
    border-radius: 50%;
}
.news-logo img {
    display: inline-block;
    height: 47%;
    width: auto;
}
.news-page-title {
    text-align: center;
    color: var(--heloshia-color-bg);
    font-weight: 700;
    margin-bottom: 0;
    font-size: 2rem;
}
.news-box-thumb-parent {
    position: relative;
    width: 100%;
    border-radius: var(--heloshia-border-radius);
    padding: .8rem;
}
.news-box-thumb {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    border-radius: .5rem;
    overflow: hidden;
}
.news-box-item-parent:nth-child(3n+1) .news-box-thumb-parent {
    background-color: var(--heloshia-color-12);
}
.news-box-item-parent:nth-child(3n+2) .news-box-thumb-parent {
    background-color: var(--heloshia-color-2);
}
.news-box-item-parent:nth-child(3n) .news-box-thumb-parent {
    background-color: var(--heloshia-color-1);
}
.news-box-item h6 {
    font-weight: normal;
    font-size: .9rem;
    margin-bottom: 1rem;
    color: var(--heloshia-color-text);
}
.news-box-item h3 {
    font-weight: 700;
    font-size: 1.7rem;
    margin-bottom: .35rem;
    color: var(--heloshia-color-text);
    line-height: var(--heloshia-line-height);
}
.story-heloshia {
    padding: .15rem;
    background-color: var(--heloshia-color-11);
    border: 2px solid var(--heloshia-color-2);
    cursor: pointer;
}
.story-heloshia.is-seen {
    border-color: #A1A1AA;
}



@media only screen and (min-width: 576px) {

}
@media only screen and (min-width: 768px) {

}
@media only screen and (min-width: 992px) {

}
@media only screen and (min-width: 1200px) {

}
@media only screen and (min-width: 1400px) {

}

@media only screen and (max-width: 1399.98px) {

}
@media only screen and (max-width: 1199.98px) {
    .title-section h3 {
        font-size: 1.6rem;
    }
    .about-section p {
        font-size: .95rem;
    }
    .character-item h4 {
        font-size: 1.15rem;
    }
    .single-character-thumb {
        width: 200px;
        height: 200px;
    }
}
@media only screen and (max-width: 991.98px) {
    :root {
        --heloshia-menu-height: 76px;
    }
    .container, .container-fluid, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
        --bs-gutter-x: 3rem;
    }
    .navbar-heloshia {
        padding: .5rem 0;
    }
    .navbar-logo {
        height: 60px !important;
    }
    .navbar-heloshia-items a {
        border-radius: 0 !important;
        padding: 0 !important;
        background: none !important;
    }
    .navbar-heloshia-items a span {
        display: none;
    }
    .navbar-heloshia-items a .icon {
        margin: 0 !important;
        width: 2.5rem;
        height: 2.5rem;
    }
    .header-box-thumb-3 {
        padding-top: 33%;
        height: auto;
    }
    .my-section {
        margin-top: 5rem;
        margin-bottom: 5rem;
    }
    .logo-title-footer {
        margin-bottom: 1.2rem;
    }
    .footer-menu {
        margin-bottom: .8rem;
    }
    .character-navbar h2 {
        font-size: 1.5rem;
    }
    .character-navbar {
        padding: .7rem 0;
    }
    .px-lg-zero {
        padding-right: 0 !important;
        padding-left: 0 !important;
    }
    .single-character-content {
        border-radius: 0;
        padding: 3rem 1.5rem;
    }
    .single-character-content h4 {
        font-size: 1.4rem;
        margin-bottom: 1.35rem;
    }
    .single-character-content p {
        font-size: 1rem;
    }
}
@media only screen and (max-width: 767.98px) {
    .heloshia-disable-animation [data-aos-delay] {
        -webkit-transition-delay: 0s !important;
        -o-transition-delay: 0s !important;
        transition-delay: 0s !important;
    }
    .title-section h3 {
        font-size: 1.5rem;
    }
    .character-item h4 {
        font-size: 1.1rem;
    }
    .single-character-thumb {
        width: 170px;
        height: 170px;
    }
    .single-character-content h4 {
        font-size: 1.25rem;
    }
    .character-title-2 {
        font-size: 1.3rem;
    }
    .character-gallery-item {
        padding: .5rem;
    }
    .episodes-video-box-frame {
        padding: .5rem;
    }
    .footer-menu li:not(:last-child) {
        margin-bottom: .35rem;
    }
    .footer-title {
        margin-bottom: .7rem;
    }
}
@media only screen and (max-width: 575.98px) {
    :root {
        --heloshia-menu-height: 66px;
    }
    .navbar-logo {
        height: 50px !important;
    }
    /*.navbar-heloshia-items a .icon {*/
    /*    width: 2rem;*/
    /*    height: 2rem;*/
    /*}*/
    .header-box-thumb {
        padding-top: 73.5% !important;
    }
    .header-box-thumb-parent .icon {
        width: 4.5rem !important;
        height: 4.5rem !important;
    }
    .header-box-item h3 {
        font-size: 1rem;
    }
    .about-section .btn {
        max-width: unset;
    }
    .title-section h3 {
        font-size: 1.4rem;
    }
    .about-section p {
        font-size: .9rem;
    }
    .btn-heloshia {
        font-size: .95rem;
    }
    .character-item h4 {
        font-size: 1rem;
    }
    .character-navbar h2 {
        font-size: 1.3rem;
    }
    .single-character-thumb {
        width: 140px;
        height: 140px;
        margin-top: 1rem;
    }
    .content-single-page {
        font-size: .9rem;
    }
    .content-single-page h1 {
        font-size: 1.35rem;
    }
    .content-single-page h2 {
        font-size: 1.3rem;
    }
    .content-single-page h3 {
        font-size: 1.2rem;
    }
    .content-single-page h4 {
        font-size: 1.1rem;
    }
    .content-single-page h5 {
        font-size: 1rem;
    }
    .content-single-page h6 {
        font-size: .9rem;
    }
    .story-item h4 {
        font-size: 1rem;
    }
    .news-logo {
        width: 150px;
        height: 150px;
        border: .4rem solid var(--heloshia-color-13);
    }
    .news-logo::before {
        width: calc(100% - .8rem);
        height: calc(100% - .8rem);
        border: .4rem solid var(--heloshia-color-13);
    }
    .news-page-title {
        font-size: 1.4rem;
    }
    .news-box-item {
        border: 6px solid var(--heloshia-color-13);
        padding: 1rem;
    }
    .news-box-thumb-parent {
        padding: .35rem;
    }
    .news-box-item h3 {
        font-size: 1.3rem;
    }
    .news-box-item h6 {
        font-size: .8rem;
    }
    .header-box-thumb .h-badge {
        padding: .25rem 1rem;
        font-size: .9rem;
    }
}
@media only screen and (max-width: 500px) {
    .header-box-thumb-parent .icon {
        width: 4rem !important;
        height: 4rem !important;
    }
    .story-thumb {
        width: 100px;
        height: 100px;
    }
    .story-item h4 {
        font-size: .9rem;
    }
}