* {
    box-sizing: border-box;
}

:root {
    --primery: #fe4f70;
    --border-radius: 16px;
}

body {
    padding: 0;
    max-width: 1400px;
    margin: auto;
}

.mtadminbar {
    margin-top: 32px;
}

button:focus-visible {
    outline: none;
}

a {
    text-decoration: none;
}

img {
    max-width: 100%;
}

img.size-full {
    height: 100%;
    border-radius: 5px;
}


/* header style*/

header {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 0 18px;
    margin-bottom: 15px;
    border-radius: 0 0 var(--border-radius) var(--border-radius);
    box-shadow: 0 12px 50px 10px rgb(61 130 179 / 8%);
    gap: 30px;
    background-color: #fff;
    z-index: 9;
    position: relative;
}

a.header-logo img {
    max-width: 140px;
    vertical-align: middle;
    padding: 14px 0;
}

.left-box-header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header nav ul.menu {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    align-content: center;
    padding: 0;
    margin: 0;
    list-style: none;
    position: relative;
    gap: 6px;
}

header ul#header-menu>.menu-item {
    padding: 20px 0;
}

header .menu a {
    padding: 0 8px;
    transition: .3s;
    color: #212529;
    text-decoration: none;
}

header nav ul.menu li.current-menu-item a {
    color: var(--primery);
}

header .menu a:hover {
    color: var(--primery);
}

header .menu a::after path {
    fill: #a82727;
}

header .social-links ul {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    align-content: center;
    flex-direction: row;
    padding: 0;
    margin: 0;
    list-style: none;
}

header .social-links a {
    color: #212529;
    text-decoration: none;
    padding: 0 8px;
}

header .social-links a svg {
    transition: .3s;
    width: 16px;
    height: 16px;
}

header .social-links a:hover svg {
    fill: var(--primery);
}

button.icon-menu-moblie {
    display: none;
}

button.close-menu-moblie {
    display: none;
}


/* dropdown menu */

header li.dropdown>ul.sub-menu {
    position: absolute;
    display: none;
    padding: 10px;
    z-index: 2;
    min-width: 280px;
    border-radius: var(--border-radius);
    background: #fff;
    box-shadow: 0 15px 30px #4b506930;
    line-height: 43px;
    list-style: none;
    transition: 1s;
    right: 0;
    top: 55px;
}

header li.menu-item-has-children.dropdown {
    position: relative;
}

header li.menu-item-has-children.dropdown::after {
    content: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 384 512'%3e%3cpath d='M192 384c-8.188 0-16.38-3.125-22.62-9.375l-160-160c-12.5-12.5-12.5-32.75 0-45.25s32.75-12.5 45.25 0L192 306.8l137.4-137.4c12.5-12.5 32.75-12.5 45.25 0s12.5 32.75 0 45.25l-160 160C208.4 380.9 200.2 384 192 384z'/%3e%3c/svg%3e");
    width: 9.4px;
    height: 10px;
    margin-left: 5px;
    margin-top: 2px;
}

header ul.menu>li.dropdown:hover ul.sub-menu {
    display: block;
}

header ul.menu>li:hover>a,
header li.menu-item-has-children:hover {
    color: var(--primery);
}


/* megamenu */

nav.header-nav-menu li.megamenu {
    position: relative;
}

header li.menu-item-has-children.megamenu::after {
    content: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 384 512'%3e%3cpath d='M192 384c-8.188 0-16.38-3.125-22.62-9.375l-160-160c-12.5-12.5-12.5-32.75 0-45.25s32.75-12.5 45.25 0L192 306.8l137.4-137.4c12.5-12.5 32.75-12.5 45.25 0s12.5 32.75 0 45.25l-160 160C208.4 380.9 200.2 384 192 384z'/%3e%3c/svg%3e");
    width: 9.4px;
    height: 10px;
    margin-left: 5px;
    margin-top: 2px;
}

nav.header-nav-menu ul {
    list-style: none;
}

nav.header-nav-menu li.megamenu:hover .sub-menu:nth-child(2) {
    display: block;
    opacity: 1;
}

nav.header-nav-menu li.megamenu>.sub-menu>li {
    cursor: pointer;
}

nav.header-nav-menu li.megamenu>.sub-menu>li:first-child {
    border-top-right-radius: 15px;
}

nav.header-nav-menu li.megamenu>.sub-menu>li:hover {
    background: #dddddd2e;
}

nav.header-nav-menu li.megamenu>.sub-menu>li:hover>a {
    color: var(--primery) !important;
    font-weight: 500 !important;
}

nav.header-nav-menu li.megamenu>.sub-menu>li:hover>a:after {
    color: var(--primery);
}

nav.header-nav-menu li.megamenu>.sub-menu:nth-child(2) li {
    padding: 15px;
    position: unset;
    border-top: 1px solid #09090900;
    border-bottom: 1px solid #0909090f;
}

nav.header-nav-menu li.megamenu>.sub-menu>li:hover>.sub-menu {
    opacity: 1 !important;
    z-index: 4 !important;
}

nav.header-nav-menu li.megamenu:hover ul li:nth-child(1) .sub-menu {
    opacity: 1 !important;
}

nav.header-nav-menu li.megamenu>.sub-menu>li>.sub-menu>li {
    border: none !important;
    flex: 0 0 25%;
    max-width: 25%;
    position: relative !important;
    padding: 0 0 5px 0 !important;
    background: none !important;
}

nav.header-nav-menu li.megamenu>.sub-menu>li>.sub-menu>li:before {
    content: '';
    display: inline-block;
    width: 2px;
    height: 14px;
    background-color: var(--primery);
    position: absolute;
    top: 3px;
    right: 7px;
}

nav.header-nav-menu li.megamenu:hover>.sub-menu>li>.sub-menu>li ul li:hover>a {
    color: var(--primery);
}

nav.header-nav-menu li.megamenu>.sub-menu>li>.sub-menu>li>a {
    display: block;
    padding: 0 15px;
    color: #000;
    margin-bottom: 10px;
}

nav.header-nav-menu li.megamenu>.sub-menu>li>.sub-menu>li>a:after {
    margin-right: 10px;
    margin-top: 0;
    color: #000;
    font-size: 9px;
    position: relative;
    top: -1px;
}

nav.header-nav-menu li.megamenu:hover>.sub-menu li .sub-menu li>ul {
    position: relative !important;
    width: auto !important;
    right: 0 !important;
}

nav.header-nav-menu li.megamenu:hover>.sub-menu li .sub-menu li ul li {
    float: none !important;
    width: 100%;
}

nav.header-nav-menu li.megamenu>.sub-menu>li>a {
    color: #535353;
    cursor: pointer;
    font-size: 13px;
    width: 100%;
    z-index: 4;
}

nav.header-nav-menu li.megamenu:hover>.sub-menu>li.menu-item-has-children>.sub-menu {
    position: absolute;
    top: 0;
    right: 100%;
    z-index: 3;
    background-color: #fff;
    opacity: 0;
    width: 863px;
    overflow: unset;
    border: none;
    padding: 10px 15px;
    border-radius: var(--border-radius) 0 0 var(--border-radius);
    height: 100%;
    display: flex;
    flex-wrap: wrap;
    box-shadow: rgb(99 99 99 / 20%) -5px 2px 8px 0px;
}

nav.header-nav-menu li.megamenu .sub-menu>li.menu-item-has-children>.sub-menu>li .sub-menu {
    box-shadow: none;
    padding: 0;
    border-radius: 0;
}

nav.header-nav-menu li.megamenu .sub-menu>li.menu-item-has-children>.sub-menu>li .sub-menu a {
    color: #535353;
    font-size: 14px;
}

nav.header-nav-menu li.megamenu>.sub-menu li.menu-item-has-children .sub-menu li {
    padding: 0 8px;
    border-bottom: 0;
    margin-bottom: 3px;
}

nav.header-nav-menu li.megamenu>.sub-menu {
    display: none;
    opacity: 0;
    position: absolute;
    top: 55px;
    background-color: #fff;
    width: 220px;
    min-height: 350px;
    box-shadow: rgb(99 99 99 / 20%) 0px 2px 8px 0px;
    z-index: 3;
    border-bottom-right-radius: var(--border-radius);
    border-bottom-left-radius: 0;
    border-top-left-radius: 0;
    padding: 0;
}


/* supermenu */

header li.menu-item-has-children.supermenu::after {
    content: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 384 512'%3e%3cpath d='M192 384c-8.188 0-16.38-3.125-22.62-9.375l-160-160c-12.5-12.5-12.5-32.75 0-45.25s32.75-12.5 45.25 0L192 306.8l137.4-137.4c12.5-12.5 32.75-12.5 45.25 0s12.5 32.75 0 45.25l-160 160C208.4 380.9 200.2 384 192 384z'/%3e%3c/svg%3e");
    width: 9.4px;
    height: 10px;
    margin-left: 5px;
    margin-top: 2px;
}

nav.header-nav-menu li.supermenu ul a:hover {
    color: var(--primery) !important;
}

nav.header-nav-menu li.supermenu {
    position: relative;
}

nav.header-nav-menu li.supermenu>.sub-menu:nth-child(2) {
    position: absolute;
    z-index: 2;
    min-width: 600px;
    padding: 0;
    display: none;
    border-radius: var(--border-radius);
    background: #fff;
    box-shadow: 0 15px 30px #4b506930;
    line-height: 43px;
    list-style: none;
    transition: 1s;
    right: 0;
    top: 55px;
    overflow: hidden;
}

li.supermenu.menu-item.menu-item-type-custom.menu-item-object-custom.menu-item-has-children:hover>.sub-menu:nth-child(2) {
    display: block;
}

nav.header-nav-menu li.supermenu>.sub-menu>li.menu-item-has-children {
    background-color: #4b5069;
    display: flex;
    max-width: 150px;
    flex-direction: column;
    padding: 10px;
    text-align: center;
}

nav.header-nav-menu li.supermenu>.sub-menu li.menu-item-has-children a {
    color: #fff;
}

nav.header-nav-menu li.supermenu>.sub-menu li.menu-item-has-children .sub-menu {
    display: none;
}

nav.header-nav-menu li.supermenu>.sub-menu li.active-item-menu .sub-menu {
    position: absolute;
    right: 25%;
    top: 0px;
    text-align: right;
    padding: 0;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    height: 100%;
    background-color: slategray;
}

nav.header-nav-menu li.supermenu>.sub-menu li.active-item-menu .sub-menu li {
    padding: 10px;
    background-color: slategray;
    min-width: 155px;
    text-align: right;
}

nav.header-nav-menu li.supermenu>.sub-menu li.active-item-menu .sub-menu li.menu-item-has-children ul {
    position: absolute;
    right: 100%;
    top: 0;
    min-width: 150px;
    background-color: rgb(67, 130, 194);
    display: none;
}

nav.header-nav-menu li.supermenu>.sub-menu li.active-item-menu .sub-menu li.menu-item-has-children.active-item-menu ul {
    display: block;
}

nav.header-nav-menu li.supermenu>.sub-menu li.active-item-menu .sub-menu li.menu-item-has-children ul>li {
    background-color: rgb(67, 130, 194);
}


/* footer */

footer {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    background-color: #ffffff;
    border-radius: var(--border-radius);
    padding: 10px;
    box-shadow: 0 12px 50px 10px rgb(61 130 179 / 8%);
    margin-bottom: 15px;
    gap: 25px;
}

footer .footer-col:nth-child(1) {
    flex: 2;
}

.footer-col:nth-child(1) p {
    text-align: justify;
}

.footer-col:nth-child(1) ul {
    list-style: none;
    display: flex;
    justify-content: center;
    align-content: center;
    gap: 20px;
    padding: 0;
}

.footer-col:nth-child(1) li a {
    color: #fff;
    background-color: var(--primery);
    border-radius: 6px;
    display: flex;
    padding: 10px;
    transition: all 140ms ease-in-out;
}

.footer-col:nth-child(1) li a svg {
    fill: #fff;
    width: 16px;
    height: 16px;
}

.footer-col:nth-child(1) li a:hover {
    opacity: .9;
}

footer .footer-col:nth-child(2) {
    flex: 1;
}

.footer-col:nth-child(2) .tagcloud {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    padding: 0;
}

.footer-col:nth-child(2) .tag-cloud-link {
    background: transparent;
    border-radius: 5px;
    border: 1px solid var(--primery);
    color: #000;
    padding: 5px 13px;
    transition: all 0.3s;
    font-size: 16px !important;
}

.footer-col:nth-child(2) .tag-cloud-link:hover {
    background: var(--primery);
    color: #fff;
}

footer .footer-col:nth-child(3) {
    flex: 1;
}

.footer-col:nth-child(3) .tagcloud {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-col:nth-child(3) .tag-cloud-link {
    flex-basis: 45%;
    transition: all 140ms ease-in-out;
    position: relative;
    padding-right: 15px;
    color: #000;
    font-size: 16px !important;
}

.footer-col:nth-child(3) .tag-cloud-link:before {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #a5a5a5;
    transition: all 0.3s ease;
}

.footer-col:nth-child(3) .tag-cloud-link:hover:before {
    background-color: var(--primery);
}

.developer-name {
    color: #6b7074;
    display: flex;
    align-items: center;
    justify-content: center;
    align-content: center;
    gap: 5px;
    margin-bottom: 15px;
}

.developer-name svg {
    width: 17px;
}

.developer-name svg path {
    fill: #ff9eb0;
}

.developer-name a {
    color: #55595c;
}


/* home page */


/* slider */

.silder-homepage {
    display: none;
}

.silder-homepage:hover img {
    transform: scale(1.1);
}

.silder-homepage img {
    vertical-align: middle;
    height: 350px;
    object-fit: cover;
    transition: 1s;
}

.slideshow-container,
section#slideshow {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius);
}

.text-over-slier {
    padding: 8px 38px;
    position: absolute;
    bottom: 15px;
    width: 100%;
}

a.post-category-slider {
    background-color: var(--primery);
    color: #fff;
    padding: 5px 10px;
    border-radius: 3px;
    font-size: 14px;
}

a.post-title-slider {
    color: #fff;
    font-size: 18px;
}

.container-dot-slider {
    position: absolute;
    top: 10px;
    left: 10px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.dot-slider {
    cursor: pointer;
    height: 15px;
    width: 11px;
    margin: 0 2px;
    background-color: #cccccc;
    border-radius: 50rem;
    display: inline-block;
    transition: 0.6s ease;
}

.dot-slider.active {
    background-color: var(--primery);
    height: 25px;
}

.fade-slider {
    animation-name: fade-slider;
    animation-duration: 1.5s;
}

@keyframes fade-slider {
    from {
        opacity: .8
    }

    to {
        opacity: 1
    }
}


/* category-banner*/

section.category-banner-homepage {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.item-category-banner {
    position: relative;
    width: 100%;
}

.item-category-banner {
    border-radius: var(--border-radius);
    overflow: hidden;
    height: 150px;
}

.item-category-banner:hover img {
    transform: scale(1.1);
}

.item-category-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 1s;
}

.item-category-banner h4 {
    position: absolute;
    bottom: 0;
    color: #fff;
    width: 100%;
    margin: 0;
    text-align: center;
    background-color: #00000066;
    padding: 5px 0;
    cursor: pointer;
}


/* lists-post  */

h4.title-lists-latest-post {
    position: relative;
    margin-top: 25px;
}

h4.title-lists-latest-post::before {
    content: "";
    position: absolute;
    height: 1px;
    top: 50%;
    left: 5%;
    right: 2%;
    background-color: #e4e8ee;
    background-image: linear-gradient(to right, white 0%, #e5e9ef 50%, white 100%);
    z-index: -1;
}

.lists-post-index {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 50px;
}

.lists-post-index-item {
    background-color: #fff;
    border-radius: var(--border-radius);
    margin-bottom: 60px;
    box-shadow: 0 5px 20px 0 rgb(69 67 96 / 10%);
    padding: 13px;
    transition: .5s;
    flex-basis: 32%;
}

.lists-post-index-item:hover {
    transform: translateY(-4px);
}

.lists-post-index-item:hover .footer-post-card a {
    color: #fff;
    background-color: var(--primery);
}

.lists-post-index-item>img {
    width: 100%;
    border-radius: var(--border-radius);
    position: relative;
    bottom: 38px;
    height: 240px;
    object-fit: cover;
}

.footer-post-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-post-card a {
    padding: 7px 22px;
    border-radius: var(--border-radius);
    color: var(--primery);
    border: 2px solid var(--primery);
    font-size: 14px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    align-content: center;
    transition: .5s;
}

.bottom-item-post-index {
    margin-top: -38px;
}

.post-card-author {
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    gap: 15px;
    line-height: 19px;
}

.post-card-author p {
    margin: 0;
}

.post-card-author img {
    border-radius: 50%;
    width: 40px;
}

.post-card-author span {
    font-size: 12px;
    color: #718096;
}

.bottom-item-post-index>a {
    color: #000;
}

.bottom-item-post-index>a h3 {
    height: 52px;
}

.bottom-item-post-index>p {
    text-align: justify;
    font-size: 14px;
    color: #506172;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    margin-bottom: 25px;
}

.container-load-more-post-lists {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: -30px;
    margin-bottom: 30px;
}

button.load-more-post-lists {
    padding: 8px 25px;
    margin: 0;
    background-color: var(--primery);
    color: #fff;
    font-size: 16px;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: .5s;
    border: 2px solid transparent;
}

button.load-more-post-lists:hover {
    color: var(--primery);
    border: 2px solid var(--primery);
    background-color: transparent;
}


/* latest-videos */

h4.title-lists-latest-videos {
    position: relative;
    margin-top: 25px;
}

.container-title-top-latest-videos {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

div.container-title-top-latest-videos::before {
    content: "";
    position: absolute;
    height: 1px;
    top: 50%;
    left: 5%;
    right: 2%;
    background-color: #e4e8ee;
    background-image: linear-gradient(to right, white 0%, #e5e9ef 50%, white 100%);
    z-index: -1;
}

div.container-title-top-latest-videos>a {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #a3a3a3;
    transition: .5s;
}

div.container-title-top-latest-videos svg {
    width: 12px;
    height: 12px;
    fill: #a3a3a3;
    transition: .5s;
}

div.container-title-top-latest-videos>a:hover {
    color: var(--primery);
}

div.container-title-top-latest-videos>a:hover svg {
    fill: var(--primery);
}

.latest-videos-container-items {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    flex-wrap: nowrap;
    gap: 15px;
    margin-bottom: 30px;
}

.latest-videos-container-items img {
    width: 100%;
    position: relative;
    height: 100%;
    object-fit: cover;
    transition: .5s;
}

.latest-videos-item {
    position: relative;
    height: 100%;
    border-radius: var(--border-radius);
    overflow: hidden;
}

.latest-videos-item:hover img {
    filter: brightness(120%);
}

.latest-videos-item:hover svg {
    transform: scale(1.1);
}

.latest-videos-item a:first-child:after {
    content: "";
    position: absolute;
    right: 0;
    left: 0;
    bottom: 0;
    top: 0;
    background-color: rgba(46, 39, 37, 0.514);
}

.latest-videos-item>.text-over-video {
    position: absolute;
    right: 50%;
    bottom: 50%;
    color: #fff;
    transform: translate(50%, 50%);
    width: 100%;
    text-align: center;
}

a.text-over-video svg {
    width: 60px;
    height: 60px;
    fill: var(--primery);
    transition: 1s;
}

.video-right-item {
    flex: 2;
}

.video-left-item {
    flex: 1;
    gap: 7.5px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-end;
}


/* sigle page */

main.single-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 25px;
    margin-top: 33px;
}

.single-main-content {
    flex: 70%;
}

.post-content-single {
    background-color: #ffffff;
    padding: 30px;
    border-radius: var(--border-radius);
    margin-bottom: 30px;
    box-shadow: 0px 5px 20px 0px rgb(69 67 96 / 10%);
    margin-top: 33px;
}

img.thumbnail-post-single {
    margin-top: -65px;
    border-radius: var(--border-radius);
    width: 100%;
    max-height: 430px;
    object-fit: cover;
}

.single-main-content h1 {
    font-size: 1.3rem;
}

.single-main-content P {
    margin-top: 15px;
    margin-bottom: 15px;
    color: #6b7074;
}


/* comments */

section.single-comments {
    background-color: #ffffff;
    padding: 30px;
    border-radius: var(--border-radius);
    margin-bottom: 30px;
    box-shadow: 0px 5px 20px 0px rgb(69 67 96 / 10%);
    margin-top: 33px;
}

section.single-comments h3#reply-title {
    border-right: 3px solid var(--primery);
    padding-right: 5px;
    font-size: 18px;
    margin: 0;
}

section.single-comments p.comment-notes {
    display: none;
}

section.single-comments p.comment-form-comment {
    display: flex;
    flex-direction: column;
    flex: 100%;
}

section.single-comments span.required-field-message {
    display: none;
}

span.required {
    font-family: initial;
    vertical-align: bottom;
    padding-right: 5px;
    color: var(--primery);
}

section.single-comments p.comment-form-comment textarea#comment {
    resize: none;
    width: 100%;
    background-color: #fdfdfd;
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 22px 20px;
    color: #152035;
    margin-top: 8px;
}

section.single-comments input#author,
section.single-comments input#email {
    width: 100%;
    background-color: #fdfdfd;
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 10px;
    color: #152035;
    margin-top: 8px;
}

section.single-comments form#commentform textarea:focus-visible,
section.single-comments form#commentform input:focus-visible {
    outline: none;
    border: 1px dashed var(--primery);
}

section.single-comments form#commentform {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

section.single-comments p.comment-form-author,
section.single-comments p.comment-form-email {
    width: 49%;
    display: flex;
    flex-direction: column;
}

section.single-comments p.form-submit input#submit {
    border: 2px solid var(--primery);
    padding: 10px 25px;
    background-color: var(--primery);
    color: #fff;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: .5s;
}

section.single-comments p.form-submit input#submit:hover {
    background-color: #fff;
    color: var(--primery);
}

section.single-comments h3#comments {
    display: none;
}

section.single-comments ol.commentlist {
    list-style: none;
    padding: 0;
    margin: 0;
    background-color: #f6f9ff;
    border-radius: 8px;
}

section.single-comments li.comment {
    padding: 10px;
    margin: 20px 0;
    position: relative;
}

section.single-comments .comment-author.vcard {
    display: flex;
    align-items: center;
    margin-bottom: 3px;
}

section.single-comments .comment-author.vcard img.avatar {
    border-radius: 50rem;
    margin-left: 8px;
}

section.single-comments em.comment-awaiting-moderation {
    color: #ff9900;
    background-color: antiquewhite;
    padding: 6px 15px;
    font-size: 14px;
    border-radius: 8px;
    margin-right: 30px;
    display: block;
    text-align: center;
}

section.single-comments .comment-meta.commentmetadata {
    position: absolute;
    top: 15px;
    left: 15px;
    font-size: 14px;
}

.comment-meta.commentmetadata a {
    color: #4b5069;
}

section.single-comments .reply {
    display: flex;
    justify-content: flex-end;
}

section.single-comments .reply>a {
    border: 2px solid var(--primery);
    padding: 5px 25px;
    background-color: var(--primery);
    color: #fff;
    border-radius: 50rem;
    cursor: pointer;
    transition: .5s;
}

section.single-comments ul.children {
    list-style: none;
    background-color: #e5e9ef;
    padding: 0;
    margin-right: 50px;
    border-radius: 8px;
}


/* navigation-post */

.navigation-post {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
    flex-direction: row;
}

.navigation-post a {
    transition: .5s;
    border: 1px solid var(--primery);
}

.navigation-post a:hover {
    background-color: transparent;
    color: var(--primery);
}

.navigation-post a:hover svg {
    fill: var(--primery);
}

.navigation-post-prev {
    box-shadow: 0px 5px 20px 0px rgb(69 67 96 / 10%);
    background-color: #fff;
    border-radius: var(--border-radius);
    padding: 10px;
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
    flex: 50%;
    flex-direction: row-reverse;
    text-align: end;
}

.navigation-post-next {
    box-shadow: 0px 5px 20px 0px rgb(69 67 96 / 10%);
    background-color: #fff;
    border-radius: var(--border-radius);
    padding: 10px;
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
    flex: 50%;
}

.text-navigation-post>a {
    background-color: var(--primery);
    color: #fff;
    font-size: 13px;
    padding: 5px 10px;
    border-radius: var(--border-radius);
}

.navigation-post-prev a>svg {
    margin-left: 13px;
    height: 15px;
    vertical-align: middle;
    fill: #fff;
}

.navigation-post-next a>svg {
    margin-right: 13px;
    height: 15px;
    vertical-align: middle;
    fill: #fff;
}

.navigation-post img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 8px;
}


/* aside */

aside.aside-single {
    flex: 30%;
    position: sticky;
    top: 0;
}

.widget-aside-single {
    background-color: #ffffff;
    padding: 30px;
    border-radius: var(--border-radius);
    margin-bottom: 30px;
    box-shadow: 0px 5px 20px 0px rgb(69 67 96 / 10%);
    margin-top: 33px;
    padding-top: 10px;
}

div#author-aside {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-top: 20px;
}

div#author-aside img {
    border-radius: 50%;
    width: 96px;
}

div#author-aside h5 {
    font-size: 20px;
    margin: 20px 0;
}

div#author-aside p {
    text-align: justify;
    margin: 5px;
}


/* menu aside */

.widget-aside-single ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.widget-aside-single .menu ul {
    display: none;
    animation-name: fadeInDown;
    animation-duration: 1s;
}

@keyframes fadeInDown {
    0% {
        opacity: 0;
        transform: translateY(-1.25em);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.widget-aside-single .menu a {
    color: #000;
}

.active-item-menu-aside ul.open-menu {
    display: block;
}

.widget-aside-single .menu-item-has-children {
    line-height: 40px;
    transition: .5s;
}

.widget-aside-single .menu-item-has-children a {
    transition: .5s;
    padding-right: 21px;
}

.widget-aside-single .menu-item-has-children:hover>a {
    color: var(--primery);
}

.widget-aside-single .menu ul>li {
    margin-right: 15px;
}

.widget-aside-single .menu ul>li::before {
    content: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'%3e%3cpath fill='%23747474' d='M192 448c-8.188 0-16.38-3.125-22.62-9.375l-160-160c-12.5-12.5-12.5-32.75 0-45.25l160-160c12.5-12.5 32.75-12.5 45.25 0s12.5 32.75 0 45.25L77.25 256l137.4 137.4c12.5 12.5 12.5 32.75 0 45.25C208.4 444.9 200.2 448 192 448z'/%3e%3c/svg%3e");
    width: 9.4px;
    height: 10px;
    padding-left: 10px;
    position: absolute;
    margin-top: 2px;
}

.widget-aside-single .menu-item-has-children::before {
    content: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'%3e%3cpath fill='%23506172' d='M432 256c0 17.69-14.33 32.01-32 32.01H256v144c0 17.69-14.33 31.99-32 31.99s-32-14.3-32-31.99v-144H48c-17.67 0-32-14.32-32-32.01s14.33-31.99 32-31.99H192v-144c0-17.69 14.33-32.01 32-32.01s32 14.32 32 32.01v144h144C417.7 224 432 238.3 432 256z'/%3e%3c/svg%3e");
    width: .66em;
    margin-left: 5px;
    position: absolute;
    margin-top: 2px;
}

.widget-aside-single .menu-item-has-children.change-to-minus::before {
    content: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'%3e%3cpath fill='%2var(--primery)' d='M400 288h-352c-17.69 0-32-14.32-32-32.01s14.31-31.99 32-31.99h352c17.69 0 32 14.3 32 31.99S417.7 288 400 288z'/%3e%3c/svg%3e");
    width: .66em;
    position: absolute;
    margin-top: 2px;
}


/* serche */

.widget-aside-single form#searchform label.screen-reader-text {
    display: none;
}

.widget-aside-single form#searchform input#s {
    background-color: #fff;
    border: 1px solid #a5a5a5;
    padding: 10px;
    font-size: 16px;
    color: #5e5e5e;
    width: 100%;
    border-radius: 5px;
    outline: none;
    margin: 0;
}

.widget-aside-single form#searchform input#searchsubmit {
    width: 100%;
    margin-top: 10px;
    padding: 10px;
    color: #fff;
    border: none;
    background-color: var(--primery);
    border-radius: 5px;
    cursor: pointer;
}


/* Latest-posts-aside */

.widget-aside-single:nth-child(4) ul {
    padding: 0;
    margin: 0;
}

.widget-aside-single:nth-child(4) li {
    display: flex;
    flex-direction: column;
    background-color: #f0f8ff;
    margin: 10px 0;
    border-radius: 8px;
    padding: 10px;
    line-height: 28px;
}

div#Latest-posts-aside {
    box-shadow: 0px 5px 20px 0px rgb(69 67 96 / 10%);
    background-color: #fff;
    border-radius: var(--border-radius);
    padding: 10px;
    margin-bottom: 30px;
}

.widget-aside-single h4 {
    border-right: 3px solid var(--primery);
    padding-right: 5px;
    font-size: 18px;
}

.item-latest-posts-aside {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
    gap: 12px;
    margin: 15px 0;
}

.right-box-Latest-posts-aside img {
    width: 85px;
    height: 85px;
    object-fit: cover;
    border-radius: var(--border-radius);
}

.right-box-Latest-posts-aside {
    flex: 30%;
}

.left-box-Latest-posts-aside {
    flex: 70%;
}

.left-box-Latest-posts-aside a {
    color: #000;
}

.left-box-Latest-posts-aside span {
    font-size: 14px;
    color: #c5c5c5;
}

.left-box-Latest-posts-aside p {
    margin: 5px 0;
}


/* tags-aside */

aside .tagcloud {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    padding: 0;
}

aside .tag-cloud-link {
    background: transparent;
    border-radius: 5px;
    border: 1px solid var(--primery);
    color: #000;
    padding: 5px 13px;
    transition: all 0.3s;
    font-size: 16px !important;
}

aside .tag-cloud-link:hover {
    background: var(--primery);
    color: #fff;
}


/* calendar */

aside table#wp-calendar {
    width: 100%;
}

aside table#wp-calendar caption {
    margin: 10px 0;
}

aside table#wp-calendar tr {
    text-align: center;
}

aside table#wp-calendar td {
    width: 24px !important;
    height: 24px !important;
}

aside table#wp-calendar a {
    color: var(--primery);
}

nav.wp-calendar-nav {
    margin-top: 10px;
}

aside span.wp-calendar-nav-prev {
    background-color: var(--primery);
    padding: 5px 10px;
    border-radius: 5px;
}

aside span.wp-calendar-nav-prev a {
    color: #fff;
}


/* pages style */

.page-container h1.title-page {
    text-align: center;
    font-weight: 900;
    font-size: 30px;
}

.page-container .page-content {
    background-color: #ffffff;
    padding: 30px;
    border-radius: var(--border-radius);
    margin-bottom: 30px;
    box-shadow: 0px 5px 20px 0px rgb(69 67 96 / 10%);
}

.container-loader {
    width: 100%;
    height: 100%;
    background-color: #fff;
    position: fixed;
    right: 0;
    left: 0;
    top: 0;
    bottom: 0;
    z-index: 20;
    display: flex;
    justify-content: center;
    align-items: center;
}

.loader {
    width: 48px;
    height: 48px;
    border: 5px solid #dbdbdb;
    border-bottom-color: var(--primery);
    border-radius: 50%;
    display: inline-block;
    box-sizing: border-box;
    animation: rotation 1s linear infinite;
}

@keyframes rotation {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

#btn-back-to-top {
    position: fixed;
    bottom: 15px;
    left: 15px;
    border: none;
    background: var(--primery);
    border-radius: 8px;
    width: 40px;
    height: 40px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: 1s;
}

#btn-back-to-top.show {
    opacity: 1;
    visibility: visible;
}


#btn-back-to-top svg {
    fill: #fff;
    width: 16px;
    height: 16px;
}

.progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 4px;
    background-color: var(--primery);
    transition: all linear 0.1s;
    max-width: 100%;
    z-index: 999999;
}


/* table-last-posts */

.table-last-posts {
    border-collapse: collapse;
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
}

.table-last-posts td,
.table-last-posts th {
    border: 1px solid #dddddd;
    padding: 2px 10px;
    text-align: center;
}

.table-last-posts td>h3 {
    text-align: right;
    font-size: 17px;
}

.table-last-posts tr:hover {
    background-color: #ffcaca;
}

.table-last-posts td>img {
    width: 85px;
    height: 50px;
    object-fit: cover;
    margin: auto;
    display: block;
    border-radius: 5px;
}

.table-last-posts #header-table {
    color: #ffffff;
    background: var(--primery);
}

.table-last-posts #header-table th {
    padding: 14px;
    text-align: center;
    font-weight: 900;
}

.table-last-posts td>a {
    color: var(--primery);
    border: 1px dashed var(--primery);
    padding: 10px;
    border-radius: 8px;
    font-size: 14px;
    transition: .8s;
}

.table-last-posts tr:hover a {
    background-color: var(--primery);
    color: #fff;
}