/*--basic css--*/

body {
    overflow-x: hidden;
}

ul {
    list-style: none;
    padding-left: 0;
    margin-left: 0;
}

body ol,
ul,
dl {
    margin: 0;
}

::selection {
    background: var(--yuno-primary);
    color: var(--yuno-white);
}


/* keyboard */

a:hover,
a:active,
a:focus {
    transition: var(--yuno-transition);
    color: var(--yuno-primary);
    text-decoration: underline;
    text-decoration-style: dotted;
}

a,
area,
button,
input,
label,
select,
summary,
textarea {
    touch-action: manipulation;
    transition: transparent;
}

button,
input,
optgroup,
select,
textarea {
    margin: 0;
}

.btn:focus {
    box-shadow: 0 0 0 3px rgb(121 82 179 / 25%);
}

.btn.focus,
.btn:focus,
button:focus,
input:focus,
select:focus,
option:focus,
textarea:focus {
    box-shadow: 0 0 0 0.25rem rgb(13 110 253 / 50%) !important;
}

.btn-check:focus+.btn-outline-primary,
.btn-outline-primary:focus {
    box-shadow: 0 0 0 0.25rem rgb(13 110 253 / 50%);
}

.btn-check:focus+.btn,
.btn:focus {
    outline: 0;
    box-shadow: 0 0 0 0.25rem rgb(13 110 253 / 25%);
}

.btn-primary:hover,
.btn-primary:focus-within,
.btn-primary:not(:disabled):not(.disabled):active,
.btn-primary:focus {
    overflow: hidden;
    border-radius: 5px;
    color: var(--yuno-white);
    border-color: var(--yuno-primary);
    background: var(--yuno-primary);
    box-shadow: 0px 20px 20px 0px rgba(157, 157, 157, 0.5);
    border-width: 2px;
}

a {
    color: var(--yuno-secondary);
    text-decoration: none;
    background-color: transparent;
}

*,
::after,
::before {
    box-sizing: border-box;
}

a:-webkit-any-link:focus {
    outline-offset: 1px #000;
}

:focus {
    outline: -webkit-focus-ring-color auto 1px #000;
}

.select2-container--default:focus,
.select2-selection--single:focus,
select:focus,
input[type=text]:focus,
input[type=email]:focus,
input[type=url]:focus,
input[type=password]:focus,
input[type=search]:focus,
input[type=number]:focus,
input[type=tel]:focus,
input[type=date]:focus,
input[type=month]:focus,
input[type=week]:focus,
input[type=time]:focus,
input[type=datetime]:focus,
input[type=datetime-local]:focus,
input[type=color]:focus,
textarea:focus {
    color: var(--yuno-secondary);
    outline-offset: -6px !important;
    outline: 2px dotted var(--yuno-secondary) !important;
}


/*=================================================
09:: Theme button
=================================================*/

body .btn-primary:hover,
body .btn-primary:focus-within {
    background-color: var(--yuno-secondary);
    border-color: var(--yuno-secondary);
}

.btn.btn-theme,
button {
    text-align: center;
    cursor: pointer;
    border-radius: 0;
    -webkit-box-shadow: 5px 7px 14px #00000057;
    box-shadow: 5px 7px 14px #00000057;
    font-size: 20px;
    line-height: 1;
    padding: 14px 20px;
    background-color: var(--yuno-primary);
    color: #fff;
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
}

.btn.btn-theme i.fas.fa-long-arrow-alt-right,
button i.fas.fa-long-arrow-alt-right {
    margin-left: 7px;
}

.btn.btn-theme:hover,
button:hover {
    background-color: var(--yuno-secondary);
    color: #fff;
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
    letter-spacing: 1.4px;
}

.btn.btn-theme.btn-white {
    text-align: center;
    cursor: pointer;
    line-height: 1;
    padding: 10px 20px;
    background-color: var(--yuno-white);
    color: var(--yuno-secondary);
}

.btn.btn-theme.btn-lg {
    padding: 15px 30px;
}

.btn-theme.btn-md {
    padding: 14px;
    font-size: 16px;
}


/*--header--*/

header {
    position: relative;
    z-index: 9;
}

header .dropdown-menu:after {
    content: "";
    display: block;
    border-bottom: 8px solid transparent;
    border-right: 8px solid transparent;
    border-left: 8px solid var(--yuno-white);
    border-top: 8px solid var(--yuno-white);
    width: 13px;
    height: 13px;
    position: absolute;
    right: 25%;
    left: auto;
    z-index: -1;
    top: -8px;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

.contact-infobar .container.content-center {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-infobar {
    padding: 10px 0;
    background-color: var(--yuno-secondary);
    color: #fff;
}

.social-media .nav-link {
    color: #fff;
    margin: 0 4px;
    width: 50px;
    font-size: 16px;
    height: 49px;
    line-height: 33px;
    -webkit-clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
    background-color: var(--yuno-primary);
    text-align: center;
    transition: all 0.5s;
}

.social-media .nav-link:hover {
    transition: all 0.5s;
    transform: rotateY(180deg);
}

.nav.social-media {
    margin-right: 40px;
    margin-top: -8px;
}

.contact-list {
    margin: 0 10px;
}

.contact-list i {
    color: var(--yuno-primary);
    transition: all 0.5s;
}

.contact-list:hover i {
    transition: all 0.5s;
    color: #fff;
    transform: scale(1.2);
}

.contact-list span {
    padding-left: 10px;
    margin-left: 4px;
    border-left: 1px solid var(--yuno-white);
    transition: all 0.5s;
}

header .nav-link:hover,
header .nav-link:focus {
    color: var(--yuno-gray);
}

.navbar-nav {
    text-align: left;
}

.navbar-nav .nav-link {
    text-transform: capitalize;
    font-size: 18px;
}

nav .dropdown li:hover,
nav .dropdown li:focus-within {
    width: 100%;
    background-color: var(--yuno-primary);
    transition: var(--yuno-transition);
}

.navbar .dropdown-toggle::after {
    display: none;
}

.navbar {
    background-color: transparent;
    position: relative;
    z-index: 99;
    width: 100%;
    color: var(--yuno-white);
    padding: 0;
}

.navbar .container {
    background-color: var(--yuno-white)26;
    padding: 0 0 0 20px;
}

.site-header.sticky .navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 99;
}

.site-header.sticky .navbar .container {
    background-color: transparent;
    margin-top: 0;
}

.site-header .navbar {
    transition: var(--yuno-transition);
}

.site-header.sticky .navbar {
    background-color: var(--yuno-primary);
    transition: var(--yuno-transition);
    padding: 0;
}

.site-header.sticky .navbar .container img.custom-logo {
    max-width: 140px;
}

.sticky .menu-item a {
    padding: 10px 10px;
}

.admin-bar .site-header.sticky .navbar {
    top: 30px;
}

.site-title {
    margin-bottom: 0;
    color: var(--yuno-white);
}

.site-title a {
    font-size: 30px;
    padding: 0;
    font-weight: bold;
    color: var(--yuno-white) !important;
    text-transform: uppercase;
}

img.custom-logo {
    max-width: 160px;
    transition: var(--yuno-transition);
}

img.custom-logo:hover,
img.custom-logo:focus,
img.custom-logo:focus-within {
    transform: scale(1.1) !important;
    transition: var(--yuno-transition);
}

.navbar.sticky img.custom-logo {
    max-width: 160px;
    transition: var(--yuno-transition);
}

button.menu-toggle.on {
    padding: 0;
}

body #site-navigation .menu-toggle {
    width: 28px;
    height: 30px;
    margin: 10px auto;
    padding: 0;
    background-color: transparent;
    box-shadow: none;
    font-size: 24px;
}

#site-navigation .nav-link.search-btn {
    color: var(--yuno-white);
    padding: 30px 35px;
    margin: 0;
    font-size: 20px;
}

.sticky #site-navigation .nav-link.search-btn {
    background-color: var(--yuno-secondary);
    transition: all 0.5s;
}

#site-navigation .nav-link.search-btn i {
    transition: all 0.5s;
}

#site-navigation .nav-link.search-btn:hover i {
    -webkit-transform: scaleX(-1);
    transform: scaleX(-1);
    transition: all 0.5s;
}

.tab-hiddn-btn {
    width: 0 !important;
    padding: 0;
    height: 0 !important;
    overflow: auto;
    opacity: 0;
}

.site-title a,
.site-description {
    color: #ffffff;
}

.main-navigation li>a {
    color: #ffffff;
}

.site-description {
    margin-bottom: 0 !important;
    margin-top: 0 !important;
}


/* search box */

#search-form {
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    border: 0;
    border-radius: 0;
    background-color: var(--yuno-white);
    box-shadow: 10px 6px 10px #00000014;
    z-index: 999;
}

#search-form .card.card-body {
    border: 0;
    border-radius: 0;
    max-width: 1270px;
    margin: 0 auto;
    background-color: transparent;
}

#search-form form {
    width: 100%;
    display: flex;
    height: 160px;
    align-items: center;
}

#search-form .btn-search {
    padding: 18px 26px;
    background-color: var(--yuno-secondary);
    color: var(--yuno-white);
    border-bottom: 1px solid var(--yuno-primary);
    border-radius: 0;
}

#search-form .btn-search-close {
    padding: 18px 26px;
    color: var(--yuno-white);
    background-color: var(--yuno-primary);
    border-radius: 0;
}

#search-form input.form-control {
    background-color: transparent;
    border: 0;
    border-radius: 0;
    padding: 8px 15px;
    border-bottom: 1px solid var(--yuno-primary);
    min-height: 60px;
}


/*=================================================
09:: Section Title
=================================================*/

.section-title {
    margin-bottom: 40px;
    max-width: 600px;
}

.section-title.white * {
    color: #fff !important;
}

.section-title.text-center,
.section-title.text-center h5 {
    margin-left: auto;
    margin-right: auto;
}

.section-title h5 {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: var(--yuno-primary);
    width: -webkit-fit-content;
    width: -moz-fit-content;
}

.section-title h5:after,
.section-title h5::before {
    content: '';
    background-color: var(--yuno-primary);
}

.section-title h5:after {
    width: 40px;
    height: 2px;
    margin-left: 10px;
    -webkit-animation: zoomeffect 2s infinite;
    animation: zoomeffect 2s infinite;
}

.section-title h5::before {
    width: 40px;
    height: 2px;
    margin-right: 10px;
}

.section-title h2 {
    text-transform: capitalize;
}


/*--weights-sidebar--*/

td#today {
    background-color: var(--yuno-primary);
    color: var(--yuno-white);
}

td#today a {
    color: var(--yuno-white);
}

.calendar_wrap {
    background-color: #cccccc0a;
    padding: 15px;
}

#wp-calendar {
    text-align: center;
    caption-side: top;
}

#wp-calendar caption {
    color: var(--yuno-primary) !important;
    text-align: left;
    text-align: center;
    font-size: 20px;
    padding: 4px;
    margin-bottom: 10px;
}

#wp-calendar span.btn-group {
    width: 100%;
}

#wp-calendar span.btn-group a.btn.text-left {
    text-align: left;
}

#wp-calendar span.btn-group a.btn.text-right {
    text-align: right;
}

#wp-calendar span.btn-group i {
    padding: 5px;
    background-color: var(--yuno-primary);
    color: var(--yuno-white);
}

#wp-calendar td {
    padding: 8px;
}

#wp-calendar td.today {
    background-color: var(--yuno-primary);
    color: var(--yuno-white);
}

#wp-calendar a.btn.active {
    text-transform: uppercase;
    font-weight: bold;
    font-size: 20px;
}

.widget {
    margin: 0 0 1.5em;
    padding: 20px;
    border-radius: 0px;
    box-shadow: -4px 8px 30px 0px #00000021;
}

.widget li i.fas.fa-chevron-down.caret-desktop {
    display: none;
}

.widget ul {
    padding-left: 0;
    margin-left: 0;
}

.widget ul ul {
    padding-left: 10px;
    border-left: 1px solid #ccc;
}

.widget li {
    list-style: none;
    margin-bottom: 2px;
}

.widget li a {
    position: relative;
    line-height: 21px;
    z-index: 0;
    padding: 7px 1px;
    border: 0;
    display: inline-block !important;
    transition: var(--yuno-transition);
    color: var(--yuno-black);
}

.widget li>a:hover {
    color: var(--yuno-primary);
}

.widget li>a:hover,
.widget li>a:focus {
    transition: var(--yuno-transition);
    color: var(--yuno-primary) !important;
}

.widget a:focus,
.widget li>li a:hover,
.widget li>li a:focus {
    transition: var(--yuno-transition);
    color: var(--yuno-primary) !important;
}

.widget .gallery {
    margin-bottom: 4px;
    display: grid;
    grid-gap: 4px;
}

.widget .gallery-item {
    margin-bottom: 0 !important;
}

.widget .gallery-item img {
    width: 100%;
}

.mphb_widget_search-form label {
    padding-top: 8px;
}

.mphb_widget_search-form {
    padding: 15px;
}

.mphb_widget_search-form select,
.mphb_widget_search-form input {
    width: 100%;
    height: 46px;
    padding: 10px;
}

body .tagcloud a {
    color: var(--yuno-secondary);
    background-color: #edecec;
    padding: 3px 12px !important;
    line-height: 1.8;
    display: inline-block;
    margin: 2px 1px;
    font-size: 18px !important;
    text-decoration: none;
    word-break: break-word;
    border-radius: 0;
    text-align: center;
    transition: var(--yuno-transition);
}

.tagcloud a:hover,
.tagcloud a:focus {
    background-color: var(--yuno-primary);
    color: var(--yuno-white);
    transition: var(--yuno-transition);
}

.menu .menu-item a {
    display: flex !important;
    align-content: center;
    justify-content: space-between;
}

.comments-area {
    margin-top: 60px;
}

.comments-area input,
.comments-area select,
.comments-area textarea {
    min-height: 50px;
    width: 100%;
}

p.form-submit {
    width: fit-content;
}

.comment-form-cookies-consent {
    display: flex;
    align-items: center;
}

.comment-form-cookies-consent input#wp-comment-cookies-consent {
    width: 20px;
    margin-right: 10px;
}

.comments-area {
    margin-top: 60px;
    padding: 40px;
    background-color: #edecec;
}

.container-space {
    padding-top: 80px;
    padding-bottom: 80px;
}

main.site-main.col-lg-8,
aside.widget-area.col-lg-4 {
    padding-top: 80px;
    padding-bottom: 60px;
}


/*--blog-post--*/

.post-info.content-center {
    border-top: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
    margin: 15px 0;
    padding: 7px 0;
}

article.blog-item {
    background-color: #fff;
}

article figure {
    margin-bottom: 0;
}

article .btn.btn-theme {
    text-align: center;
    cursor: pointer;
    border-radius: 0;
    -webkit-box-shadow: 5px 7px 14px #00000057;
    box-shadow: none;
    font-size: 16px;
    line-height: 1;
    color: var(--yuno-primary);
    ;
    border: 1px solid var(--yuno-primary);
    padding: 12px 15px;
    background-color: transparent;
    margin-top: 10px;
}

article .btn.btn-theme:hover {
    color: #fff;
    border-color: var(--yuno-primary);
    background-color: var(--yuno-primary);
    -webkit-box-shadow: 5px 7px 14px #00000057;
}


/*.blog-item .btn.btn-theme {
    background-color: var(--yuno-secondary);
}*/

.blog-item .btn.btn-theme:hover {
    background-color: var(--yuno-primary);
}


/* 
.blog-body .meta-tags {
    margin-top: 95px;
} */

.post-date a {
    margin: 8px;
    width: 50px;
    height: 50px;
    border-radius: 100%;
    overflow: hidden;
    display: block;
    margin-top: -11px;
    border: 2px solid #162238;
    -webkit-box-shadow: 2px 2px 10px #162238;
    box-shadow: 2px 2px 10px #162238;
}

.post-taxonomies a i {
    color: var(--yuno-primary);
    padding-right: 6px;
    border-right: 1px solid #939393;
}

.post-taxonomies a {
    color: var(--yuno-secondary-dark);
    margin-right: 6px;
}

.post-comment {
    color: var(--yuno-primary);
    min-width: 60px;
    text-align: right;
}

.blog-title {
    padding: 10px 0;
}

.blog-title a {
    color: var(--yuno-secondary)!important;
}

a.post-comment {
    color: var(--yuno-primary);
}

.post-thumbnail {
    overflow: hidden;
    text-align: center;
    position: relative;
}

.blog-item .post-thumbnail img {
    transform: scale(1);
    transition: all 0.5s;
}

.blog-item:hover .post-thumbnail img {
    transform: scale(1.2);
    transition: all 0.5s;
}

.post-thumbnail img {
    margin: -15px;
    min-height: 200px;
    object-fit: cover;
    width: 100%;
    background-color: #d5d5d5;
}

article .post-date {
    text-align: center;
    background-color: var(--yuno-secondary-dark);
    position: absolute;
    top: 0;
    left: 0;
    z-index: 999;
    color: #fff;
}

article .post-date span {
    padding: 5px 11px;
    background-color: var(--yuno-primary);
    display: block;
    font-weight: bold;
    font-size: 22px;
    min-width: 70px;
}

article .post-date small {
    padding-bottom: 7px;
    display: block;
}

time i.far.fa-calendar-alt {
    margin-right: 7px;
}

.author_left {
    align-items: center;
    display: flex;
    color: #fff;
}

h5.author_name {
    color: #fff;
    font-size: 14px;
    margin-left: 12px;
    margin-bottom: 0;
}

.post-author-img {
    border-radius: 100%;
    width: 30px;
    height: 30px;
    margin-right: 6px;
}

.post-thumbnail {
    overflow: hidden;
    text-align: center;
    min-height: 130px;
    background-color: #e5ecf3;
}

.blog_item_inner {
    display: flex;
    align-items: center;
}

a.post-author-link {
    flex: none;
    margin-right: 20px;
    text-decoration: none!important;
    color: #000;
}

nav.navigation.pagination {
    margin-top: 20px;
    margin-bottom: 20px;
    min-height: 100px;
    display: flex;
    align-items: center;
}

.navigation.pagination .page-numbers {
    transition: var(--yuno-transition);
}

.navigation.pagination .page-numbers:hover,
.navigation.pagination .page-numbers:focus {
    background-color: var(--yuno-primary);
    border-color: var(--yuno-primary);
    color: var(--yuno-white);
    transition: var(--yuno-transition);
}

.col-lg-8 main article {
    margin: 15px!important;
}

main article {
    box-shadow: 15px 18px 48px #0c0c0c1f;
    box-shadow: 8px 8px 30px 0px #12121217;
    background-color: #fff;
    margin: 15px!important;
}

article {
    box-shadow: 15px 18px 48px #0c0c0c1f;
    box-shadow: 8px 8px 30px 0px #cccccc69;
    background-color: #fff;
}

figcaption.blog-body {
    padding: 20px;
}

.wp-block-quote {
    border-color: var(--yuno-primary);
}

.entry-title a {
    text-decoration: none;
    color: #000;
    text-transform: capitalize;
}

ol.wp-block-latest-comments {
    margin-left: 0;
    padding-left: 0;
}

.widget h2 {
    transform: translate(-20px, -20px);
    width: calc(100% + 40px) !important;
    padding: 10px 15px;
    border-left: 3px solid var(--yuno-primary);
    color: var(--yuno-white);
    background-color: var(--yuno-secondary);
    text-transform: capitalize;
    font-size: 24px;
}

.mphb_sc_search-wrapper input,
.mphb_sc_search-wrapper select {
    width: 100%;
    height: 46px;
    padding: 10px;
}

span.meta-nav {
    color: var(--yuno-secondary);
    font-size: 20px;
    text-decoration: none;
}

.recentcomments {
    margin: 10px 0;
}

form#commentform {
    background-color: #efefef;
    padding: 24px 30px!important;
    margin: 0;
}


/*--form---*/

.form-control,
.search-field {
    border-radius: 0;
    display: block;
    line-height: 1.5;
    font-size: 0.97rem;
    font-weight: 500;
    padding: 0.65rem 1.25rem;
    min-height: 50px;
    background-color: #03a9f417;
    border: 1px solid var(--yuno-gray-light);
    outline: none;
    letter-spacing: 0.5px;
    box-shadow: none;
    transition: var(--yuno-transition);
}

.search-form input[type="submit"] {
    background-color: var(--yuno-primary);
    font-size: 14px !important;
    font-weight: 600;
    font-size: 19px;
    padding: 13px 29px;
    color: var(--yuno-white);
    cursor: pointer;
    box-shadow: none;
    text-align: center;
    border: none;
    background-size: 300% 100%;
    transition: var(--yuno-transition);
}

.wp-block-search__inside-wrapper button.wp-block-search__button {
    border-radius: 0;
    font-size: 15px;
    background-color: var(--yuno-primary);
    padding: 12px 17px;
    color: var(--yuno-white);
    border-radius: 3px;
    border: 0;
}

.search-form {
    display: flex;
    overflow: hidden;
    align-content: center;
}

.wp-block-search__inside-wrapper .wp-block-search .wp-block-search__input {
    border: 0;
    padding-left: 15px !important;
    width: 100%;
    border: 0 !important;
}

.search-form label {
    width: 100%;
    margin-bottom: 0;
}


/* --footer css -- */

.page-progress {
    position: fixed;
    bottom: 0;
    z-index: 999999;
    left: 0;
    height: 5px;
    background-color: var(--yuno-primary);
    transition: all linear 0.1s;
    min-width: 0;
    overflow: hidden;
}

.site-footer .widget li a {
    color: var(--yuno-white);
}

.site-footer {
    background-color: var(--yuno-secondary);
    padding: 60px 0 0 0;
}

.site-footer .widget {
    color: var(--yuno-white);
    box-shadow: none;
}

footer .widget-title {
    display: block;
    transform: initial;
    padding: 10px 15px;
    margin-bottom: 40px;
    width: 100% !important;
    background-color: rgb(255 255 255 / 4%);
}

.site-info {
    background-color: var(--yuno-secondary-dark);
    text-align: center;
    padding: 15px;
    color: var(--yuno-white);
    margin-top: 40px;
}

body .site-info a {
    color: var(--yuno-white);
}

footer .gallery-item {
    margin-bottom: 0;
}

footer .widget {
    padding: 0;
}

footer .gallery {
    margin-bottom: 0;
    display: grid;
    grid-gap: 10px;
}

#primary article.post-navigation {
    padding: 15px;
}


/*--comment-box--*/

.comment-list article {
    margin: 30px 0!important;
    background-color: var(--yuno-white);
    padding: 30px;
}


/* --breadcrumb-- */


/* section.page-title.breadcrumb-main {
    padding-top: 200px;
}
 */

.breadcrumb-container {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    text-align: center;
    position: relative;
    z-index: 9;
}

.breadcrumb-container ol.breadcrumb {
    margin-left: 0;
}

.breadcrumb-main .page-title {
    padding-top: 20px;
    color: var(--yuno-white);
    margin-bottom: 22px;
    font-size: calc(3vw);
}

ol.breadcrumb {
    margin-bottom: 20px;
    text-align: center;
    justify-content: center;
    color: #fff;
}

.breadcrumb-item a {
    color: var(--yuno-white) !important;
}

.breadcrumb-item+.breadcrumb-item::before {
    color: var(--yuno-white);
}

.header-wrapper {
    background-position: center;
    position: relative;
    background-size: cover;
    background-repeat: no-repeat;
    background-color: #000000;
}

.header-wrapper.remove-slider {
    min-height: 300px;
}

.header-wrapper:after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    background-color: #000;
    opacity: 0.8;
}

.breadcrumb-item.active {
    color: var(--yuno-primary);
}

.breadcrumb-item {
    font-size: 18px;
}

.btn-yuno-button {
    background-color: var(--yuno-secondary);
    border-left: 3px solid var(--yuno-primary) !Important;
    font-size: 17px !important;
    font-weight: 600;
    padding: 7px 17px;
    border-radius: 0;
    margin-top: 15px;
    color: var(--yuno-white) !important;
    cursor: pointer;
    box-shadow: none;
    text-align: center;
    border: none;
    background-size: 300% 100%;
    transition: var(--yuno-transition);
    box-shadow: 8px 8px 30px 0px #cccccc73;
}

.btn-yuno-button i.fa.fa-arrow-right {
    font-size: 12px;
    margin-left: 4px;
}

.btn-yuno-button:hover,
.btn-yuno-button:focus {
    background-color: var(--yuno-primary);
    transition: var(--yuno-transition);
    letter-spacing: 1.1px;
}

.entry-footer span {
    margin-right: 10px;
    font-weight: 600;
}

.entry-meta span {
    font-weight: 600;
}

.navigation.post-navigation,
.navigation.posts-navigation {
    margin-top: 30px;
    padding: 23px 20px;
    background-color: #eaedf3;
    border: 1px solid #eaedf3;
}

.navigation.pagination .page-numbers {
    padding: 8px 14px;
    font-size: 18px;
    box-shadow: 8px 8px 30px 0px #d7d3d36b;
    margin-right: 6px;
    border: 1px solid var(--yuno-secondary);
    border-radius: 0;
    color: var(--yuno-secondary);
}

.navigation.pagination .page-numbers.current {
    background-color: var(--yuno-primary);
    border: 1px solid var(--yuno-primary);
    color: var(--yuno-white) !important;
    padding: 8px 14px;
    font-size: 16px;
}

.post .entry-title a {
    color: #000000c2;
    text-decoration: none;
}

.recentcomments a {
    text-decoration: underline;
}


/* preloader */

.preloader {
    overflow: hidden;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100vw;
    height: 100vh;
    background-color: var(--yuno-white);
    z-index: 999;
    align-items: center;
    justify-content: center;
}

.preloader-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100vw;
    height: 100vh;
}

.loader {
    width: 100px;
    height: 100px;
    font-size: 10px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.loader .face {
    position: absolute;
    border-radius: 50%;
    border-style: solid;
    animation: animate 3s linear infinite;
}

.loader .face:nth-child(1) {
    width: 100%;
    height: 100%;
    color: var(--yuno-primary);
    border-color: currentColor transparent transparent currentColor;
    border-width: 0.2em 0.2em 0em 0em;
    --deg: -45deg;
    animation-direction: normal;
}

.loader .face:nth-child(2) {
    width: 70%;
    height: 70%;
    color: var(--yuno-secondary);
    border-color: currentColor currentColor transparent transparent;
    border-width: 0.2em 0em 0em 0.2em;
    --deg: -135deg;
    animation-direction: reverse;
}

.loader .face .circle {
    position: absolute;
    width: 50%;
    height: 0.1em;
    top: 50%;
    left: 50%;
    background-color: transparent;
    transform: rotate(var(--deg));
    transform-origin: left;
}

.loader .face .circle::before {
    position: absolute;
    top: -0.5em;
    right: -0.5em;
    content: "";
    width: 1em;
    height: 1em;
    background-color: currentColor;
    border-radius: 50%;
    box-shadow: 0 0 2em, 0 0 4em, 0 0 6em, 0 0 8em, 0 0 10em, 0 0 0 0.5em rgba(255, 255, 0, 0.1);
}

@keyframes animate {
    to {
        transform: rotate(1turn);
    }
}


/*back to top */

.scroll-to-top {
    display: block !important;
    position: fixed !important;
    z-index: 9;
    display: none;
    color: var(--yuno-secondary);
    background-color: var(--yuno-primary);
    padding: 6px 12px 9px 12px;
    font-size: 16px;
    border-radius: 100%;
    right: 40px;
    bottom: 40px;
    opacity: 0;
}

.scroll-to-top i {
    position: relative;
    z-index: 9;
    color: var(--yuno-white);
}

.scroll-to-top:hover {
    color: var(--yuno-white);
}

.scroll-to-top.show {
    opacity: 1;
}

.animation-ripple {
    text-align: center;
    background-color: var(--yuno-primary);
    border-radius: 100%;
    transition: var(--yuno-transition);
    position: relative;
}

.animation-ripple i {
    position: relative;
    z-index: 2;
}

.animation-ripple::after,
.animation-ripple::before {
    content: '';
    border: 5px solid;
    border-color: inherit;
    width: 150%;
    height: 150%;
    border-radius: 50%;
    position: absolute;
    left: -25%;
    top: -25%;
}

.animation-ripple::before {
    border-color: var(--yuno-primary);
    background: var(--yuno-primary);
    opacity: 0.7;
    animation: 3s videomodule-anim linear infinite;
}

.animation-ripple::after {
    border-color: var(--yuno-primary);
    background: var(--yuno-primary);
    opacity: 0.5;
    animation: 2s videomodule-anim linear infinite;
}

.no-header-transparent nav#site-navigation {
    background: var(--yuno-primary);
}


/* .no-header-transparent .breadcrumb-container {
    padding-top: 60px;
} */

.no-header-transparent .navbar {
    position: relative;
}

.no-breadcrumb .main-navigation .container {
    margin-top: 0px;
    background-color: transparent;
}

.no-breadcrumb .nav-link.search-btn {
    background-color: var(--yuno-secondary);
}

.no-breadcrumb .container-space {
    padding-top: 170px;
}

.post.sticky {
    background: #ff006614;
    box-shadow: 8px 8px 30px 0px #e3e2e25c;
}

.comment-author img.avatar.avatar-60.photo {
    border-radius: 50%;
    margin-right: 10px;
}

.comment-metadata a {
    color: #333;
}

.comment-metadata {
    margin-bottom: 12px;
    font-weight: bold;
    color: #333;
}

.comment-author.vcard {
    margin-bottom: 10px;
}

.post-navigation .col-6.text-right {
    text-align: right;
}

.site-footer .widget_nav_menu .dropdown-menu,
aside#secondary .widget_nav_menu .dropdown-menu {
    display: block;
    position: relative;
    background: transparent;
    border-right: transparent;
    border-top: transparent;
    border-bottom: transparent;
    border-radius: 0;
}

.site-footer .widget_nav_menu button.caret,
aside#secondary .widget_nav_menu button.caret {
    display: none;
}

.post footer.entry-footer {
    margin-top: 10px;
}

.post-navigation h4,
.post-navigation span {
    color: #212529;
}

#secondary ul.dropdown.dropdown-menu {
    z-index: 1;
}

.post a {
    text-decoration: underline;
}

.post a.icon-read-more-btn {
    text-decoration: none;
}

.post-navigation img {
    height: 100px;
    object-fit: cover;
}

@-webkit-keyframes videomodule-anim {
    0% {
        transform: scale(0.68);
    }
    100% {
        transform: scale(1.4);
        opacity: 0;
    }
}

@media screen and (min-width: 1024px) {
    .boxed-layout,
    .frame-layout {
        background-color: #696969;
    }
    .boxed-layout #page,
    .frame-layout #page {
        max-width: 1400px;
        width: 90%;
        margin-left: auto;
        margin-right: auto;
        background-color: var(--yuno-white);
    }
    .boxed-layout .site-header.sticky,
    .frame-layout .site-header.sticky {
        max-width: 1400px;
        width: 90%;
        margin-left: auto;
        margin-right: auto;
    }
    .frame-layout #page {
        margin: 50px auto;
    }
}


/* add new */

@media (max-width: 991.98px) {}