/* Import third party CSS library */
@import url(vendor/bootstrap.min.css);
@import url(vendor/owl.carousel.min.css);
@import url(vendor/ticker-style.css);
@import url(vendor/elegant-icons.css);
@import url(vendor/slick.css);
@import url(vendor/slicknav.css);
@import url(vendor/animate.min.css);
@import url(vendor/nice-select.css);
@import url(vendor/perfect-scrollbar.css);
@import url('font-awesome.min.css');
@import url('icon-pack.css');
@import url('swiper.css');
@import url('fancy.css');
@import url('https://fonts.googleapis.com/css2?family=Fira+Sans:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');


:root {
    --color-mode: "light";
    --color-primary: #00b9f2;
    --color-secondary: #ff2e17;
    --color-success: #09815c;
    --color-danger: #e3363e;
    --color-warning: #e38836;
    --color-info: #4da7d4;
    --color-light: #f8f9f9;
    --color-grey: #f7f8f9;
    --color-dark: #000c2d;
    --color-muted: #687385;
    --color-white: #ffffff;
    --primary-border-color: #9b9b9b;
    --secondary-border-color: #f0f8ff;
    --mutted-border-color: #eaecee;
    --box-shadow-normal: 0 10px 10px rgba(0, 0, 0, 0.08);
    --box-shadow-hover: 0 4px 60px 0 rgba(0, 0, 0, 0.2);
    --button-shadow-color-normal: hsla(0, 0%, 42.4%, 0.2);
    --button-shadow-color-hover: hsla(0, 0%, 42.4%, 0.3);
}

/*Bootstrap color customize*/
.text-primary {
    color: var(--color-primary) !important;
}
.text-secondary {
    color: var(--color-secondary) !important;
}
.text-success {
    color: var(--color-success) !important;
}
.text-danger {
    color: var(--color-danger) !important;
}
.text-warning {
    color: var(--color-warning) !important;
}
.text-info {
    color: var(--color-info) !important;
}
.text-light {
    color: var(--color-light) !important;
}
.text-dark {
    color: var(--color-dark) !important;
}
.text-muted,
.text-muted a {
    color: var(--color-muted) !important;
}
.text-white {
    color: var(--color-white) !important;
}
.bg-primary {
    background-color: var(--color-primary) !important;
}
.bg-secondary {
    background-color: var(--color-secondary) !important;
}
.bg-success {
    background-color: var(--color-success) !important;
}
.bg-danger {
    background-color: var(--color-danger) !important;
}
.bg-warning {
    background-color: var(--color-warning) !important;
}
.bg-info {
    background-color: var(--color-info) !important;
}
.bg-light {
    background-color: var(--color-light) !important;
}
.bg-grey {
    background-color: var(--color-grey) !important;
}
.bg-dark {
    background-color: var(--color-dark) !important;
}
.bg-white {
    background-color: var(--color-white) !important;
}
.btn-primary {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
}
.btn-secondary {
    background-color: var(--color-secondary);
    border-color: var(--color-secondary);
}
.btn-success {
    background-color: var(--color-success);
    border-color: var(--color-success);
}
.btn-danger {
    background-color: var(--color-danger);
    border-color: var(--color-danger);
}
.btn-warning {
    background-color: var(--color-warning);
    border-color: var(--color-warning);
}
.btn-info {
    background-color: var(--color-info);
    border-color: var(--color-info);
}
.form-control:focus {
    outline: none;
    border-color: var(--mutted-border-color);
}
a.bg-primary:focus,
a.bg-primary:hover,
button.bg-primary:focus,
button.bg-primary:hover {
    background-color: #333 !important;
}
.border-radius-3 {
    border-radius: 3px;
}
.border-radius-5 {
    border-radius: 8px;
}
.border-radius-10 {
    border-radius: 10px;
}

/* GENERAL */
body {
    font-family: "Fira Sans", sans-serif;
    font-weight: normal;
    font-style: normal;
    font-size: 14px;
}
h1,
h2,
h3,
h4,
h5,
h6,
.font-heading,
.btn,
.post-title {
    font-style: normal;
    font-weight: 500;
    text-transform: none;
    font-family: "Fira Sans", sans-serif;
}
p {
    margin-bottom: 1.2em;
    font-weight: 400;
}
.img {
    max-width: 100%;
    -webkit-transition: all 0.2s ease-out 0s;
    -moz-transition: all 0.2s ease-out 0s;
    -ms-transition: all 0.2s ease-out 0s;
    -o-transition: all 0.2s ease-out 0s;
    transition: all 0.2s ease-out 0s;
}
.img-circle {
    border-radius: 50%;
}
.overflow-hidden {
    overflow: hidden;
}
.clear {
    clear: both;
}
a,
.button {
    -webkit-transition: all 0.2s ease-out 0s;
    -moz-transition: all 0.2s ease-out 0s;
    -ms-transition: all 0.2s ease-out 0s;
    -o-transition: all 0.2s ease-out 0s;
    transition: all 0.2s ease-out 0s;
}
*:focus {
    text-decoration: none;
    outline: none;
}
a {
    color: var(--color-muted);
}
a:hover {
    color: var(--color-primary);
}
a:focus,
a:hover,
.portfolio-cat a:hover,
.footer -menu li a:hover {
    text-decoration: none;
}
.transition-02s,
.transition-02s:hover {
    -webkit-transition: all 0.2s ease-out 0s;
    -moz-transition: all 0.2s ease-out 0s;
    -ms-transition: all 0.2s ease-out 0s;
    -o-transition: all 0.2s ease-out 0s;
    transition: all 0.2s ease-out 0s;
}
*:focus,
select:focus,
.custom-select:focus,
button:focus,
textarea:focus,
textarea.form-control:focus,
input.form-control:focus,
input[type="text"]:focus,
input[type="password"]:focus,
input[type="email"]:focus,
input[type="number"]:focus,
[type="text"].form-control:focus,
[type="password"].form-control:focus,
[type="email"].form-control:focus,
[type="tel"].form-control:focus,
[contenteditable].form-control:focus {
    outline: none !important;
    box-shadow: none;
}
input:focus::-moz-placeholder {
    opacity: 0;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
}
h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
    color: inherit;
}
ul {
    margin: 0px;
    padding: 0px;
}
li {
    list-style: none;
}
hr {
    border-bottom: 1px solid #eceff8;
    border-top: 0 none;
    margin: 30px 0;
    padding: 0;
}
img,
image,
video {
    max-width: 100%;
}
ul {
    padding: 0;
    margin: 0;
}
figure {
    position: relative;
}
::placeholder {
    color: #838383;
}
.section-padding {
    padding-top: 120px;
    padding-bottom: 120px;
}
.font-x-small {
    font-size: 10px;
}
.font-small {
    font-size: 12px;
}
.font-medium {
    font-size: 14px;
}
.font-large {
    font-size: 20px;
}
.font-weight-500 {
    font-weight: 500;
}
.font-weight-bold {
    font-weight: 700;
}
.font-weight-ultra {
    font-weight: 900;
}
.has-top-border,
.separator {
    border-top: 1px solid rgb(225, 225, 255);
}
.btn {
    font-weight: 700;
}
.btn.focus,
.btn:focus {
    outline: 0;
    box-shadow: none;
}
#scrollUp {
    right: 31px;
    bottom: 18px;
    font-size: 22px;
}
.img-link {
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 1;
}
.font-weight-900 {
    font-weight: 600;
}
.has-border {
    border: 1px solid var(--mutted-border-color);
}

/*Color*/
.primary-color,
a.active,
sup {
    color: #000c2d;
}
.excerpt {
    color: rgb(105, 105, 105);
}

/*Background*/
.primary-bg,
.boxed-btn:hover {
    background: var(--color-primary) !important;
}

/*sticky*/
.sticky-bar {
    left: 0;
    margin: auto;
    position: fixed;
    top: 0;
    width: 100%;
    -webkit-box-shadow: 0px 0px 40px 0px rgba(0, 0, 0, 0.05);
    box-shadow: 0px 0px 40px 0px rgba(0, 0, 0, 0.05);
    z-index: 1008;
    -webkit-animation: 300ms ease-in-out 0s normal none 1 running fadeInDown;
    animation: 300ms ease-in-out 0s normal none 1 running fadeInDown;
    -webkit-box-shadow: 0px 0px 40px 0px rgba(0, 0, 0, 0.05);
    background: #fff;
}
.sticky-bar .divider-2 {
    display: none;
}
.preloader {
    position: fixed;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100vh;
    background-color: #fff;
    z-index: 999999;
    -webkit-transition: 0.6s;
    -o-transition: 0.6s;
    transition: 0.6s;
}
.circle {
    margin: 40px auto;
    position: relative;
    width: 12px;
    height: 12px;
    background-color: var(--color-secondary);
    box-shadow: -20px 0px 0px var(--color-secondary);
    border-radius: 50%;
    -webkit-animation: circle_classic 1s ease-in-out infinite alternate;
    -moz-animation: circle_classic 1s ease-in-out infinite alternate;
    animation: circle_classic 1s ease-in-out infinite alternate;
}
@-webkit-keyframes circle_classic {
    0% {
        opacity: 0.1;
        -webkit-transform: rotate(0deg) scale(0.5);
    }
    100% {
        opacity: 1;
        -webkit-transform: rotate(360deg) scale(1.2);
    }
}
@-moz-keyframes circle_classic {
    0% {
        opacity: 0.1;
        -moz-transform: rotate(0deg) scale(0.5);
    }
    100% {
        opacity: 1;
        -moz-transform: rotate(360deg) scale(1.2);
    }
}
@keyframes circle_classic {
    0% {
        opacity: 0.1;
        transform: rotate(0deg) scale(0.5);
    }
    100% {
        opacity: 1;
        transform: rotate(360deg) scale(1.2);
    }
}
.hide {
    opacity: 0;
    transition-delay: 0.5s;
    pointer-events: none;
}
.text-limit-2-row {
    overflow: hidden !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 2 !important;
    -webkit-box-orient: vertical;
}
.text-limit-3-row {
    overflow: hidden !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 3 !important;
    -webkit-box-orient: vertical;
}
.scroll-progress {
    height: 3px;
    width: 0px;
    z-index: 9999999;
    position: fixed;
    top: 0;
}
.dropdown-menu-language {
    min-width: 100px !important;
    box-shadow: 0px 40px 40px 0px rgba(0, 0, 0, 0.05);
    -moz-box-shadow: 0px 40px 40px 0px rgba(0, 0, 0, 0.05);
    -webkit-box-shadow: 0px 40px 40px 0px rgba(0, 0, 0, 0.05);
    -o-box-shadow: 0px 40px 40px 0px rgba(0, 0, 0, 0.05);
    -ms-box-shadow: 0px 40px 40px 0px rgba(0, 0, 0, 0.05);
    padding: 10px;
}
.dropdown-menu-language li {
    padding: 3px 0;
}

/*cursor*/
#off-canvas-toggle,
.user-account,
.subscribe,
.search-close,
button.slick-arrow,
.off-canvas-close,
.search-button,
button.search-icon,
.single-more-articles-close,
.search-btn {
    cursor: pointer;
}

/*Header*/
h1.logo {
    font-weight: 700;
    font-size: 30px;
    line-height: 1;
    margin: 0;
}
.divider-2 {
    width: 100%;
    border-bottom: 3px double #000;
}
.line-dots {
    width: 100%;
    border-bottom: dotted 1px #222;
    height: 1px;
    display: block;
    position: relative;
}
.line-dots::before {
    content: "";
    height: 1px;
    width: 100%;
    border-bottom: dotted 1px #222;
    position: absolute;
    top: -2px;
    left: 0;
}
.line-dots::after {
    content: "";
    height: 1px;
    width: 100%;
    border-bottom: dotted 1px #222;
    position: absolute;
    top: 2px;
    left: 0;
}
button.search-icon {
    border: none;
    background: none;
    padding: 0;
    font-weight: 500;
    line-height: 1;
}
.header-social-network {
    line-height: 1;
}
.header-social-network .list-inline-item a {
    background: var(--color-primary);
    width: 24px;
    display: block;
    height: 24px;
    border-radius: 30px;
    line-height: 24px;
    text-align: center;
    font-size: 11px;
    color: #fff !important;
}
.header-social-network .list-inline-item:not(:last-child) {
    margin-right: 7px;
}

/*Offcanvas Sidebar*/
#off-canvas-toggle span,
#off-canvas-toggle span::before,
#off-canvas-toggle span::after {
    background: var(--color-muted);
    display: inherit;
    height: 2px;
    position: relative;
    width: 15px;
}
#off-canvas-toggle span::before,
#off-canvas-toggle span::after {
    content: "";
    left: 0;
    position: absolute;
    right: 0;
}
#off-canvas-toggle span::before {
    top: -10px;
    width: 20px;
}
#off-canvas-toggle span::after {
    top: -5px;
    width: 20px;
}
#off-canvas-toggle p {
    display: inline;
    font-size: 12px;
    margin: 0 0 0 5px;
}
.off-canvas-close {
    background: none;
    border: 0;
    width: 30px;
    height: 30px;
    position: absolute;
    right: 10px;
    top: 10px;
}
.off-canvas-close i {
    font-size: 24px;
}
.off-canvas-toggle-cover {
    text-align: right;
}
#sidebar-wrapper {
    background: #fff;
    height: 100%;
    right: 0;
    overflow-y: auto;
    overflow-x: hidden;
    position: fixed;
    width: 0;
    z-index: 1009;
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    transition: all 0.2s ease;
    top: 0;
    box-shadow: 0 0px 15px rgba(0, 0, 0, 0.15);
}
#sidebar-wrapper.position-right {
    right: 0;
    left: unset;
}
.canvas-opened #sidebar-wrapper {
    width: 350px;
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    transition: all 0.2s ease;
}
.canvas-opened #off-canvas-toggle span {
    background: none;
}
.canvas-opened #off-canvas-toggle span::after {
    top: -4px;
    width: 20px;
    transform: rotate(-45deg);
}
.canvas-opened #off-canvas-toggle span::before {
    top: -4px;
    width: 20px;
    transform: rotate(45deg);
}
.sidebar-inner {
    padding: 30px;
    display: table;
    height: 100%;
}
.dark-mark {
    opacity: 0;
    visibility: hidden;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1003;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.55);
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
    -webkit-transition: visibility 0s linear 0.3s, opacity 0.3s ease, -webkit-transform 0.3s ease; /* transition: visibility 0s linear .3s,opacity .3s ease,-webkit-transform .3s ease; */ /* transition: visibility 0s linear .3s,transform .3s ease,opacity .3s ease; */
    transition: visibility 0s linear 0.3s, transform 0.3s ease, opacity 0.3s ease, -webkit-transform 0.3s ease;
}
.canvas-opened .dark-mark {
    opacity: 1;
    visibility: visible;
    -webkit-transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
    transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
    transition: transform 0.3s ease, opacity 0.3s ease;
    transition: transform 0.3s ease, opacity 0.3s ease, -webkit-transform 0.3s ease;
}

/*Search form*/
body.open-search-form {
    overflow: hidden;
}
header .search-icon .ti-close,
.open-search-form header .search-icon .ti-search {
    display: none;
}
.open-search-form header .search-icon .ti-close {
    display: inline;
}
.main-search-form {
    transform: scaleY(0);
    height: 0px;
    width: 100%;
}
.open-search-form .main-search-form {
    overflow: hidden;
    transition: transform 0.2s ease-in-out;
    height: 100vh;
    transform: scaleY(1);
    transform-origin: top;
    position: absolute;
    background: #fff;
    z-index: 2;
}
.search-text-bg {
    font-size: 80px;
    text-transform: uppercase;
    opacity: 0.1;
}
.main-search-form-cover {
    max-width: 800px;
}
.search-header {
    border-bottom-width: 3px;
    border-bottom-style: solid;
    border-bottom-color: var(--color-muted);
    font-style: italic;
}
.search-header .form-control {
    border-width: 0;
}
.search-header input[type="text"] {
    font-size: 18px;
}
.search-header .custom-select {
    border: 0;
    border-radius: 0;
    height: 48px;
    background-color: #f5f5f5;
}
.search-header .nice-select {
    -ms-flex-preferred-size: 110px !important;
    flex-basis: 110px !important;
    -webkit-box-flex: 0 !important;
    -ms-flex-positive: 0 !important;
    flex-grow: 0 !important;
    margin-left: 0 !important;
}
.search-header button {
    border-radius: 0;
    padding-left: 15px;
    padding-right: 15px;
}
.input-group-append {
    margin-left: -1px;
}

/*Main header*/
.main-header .main-nav ul li a,
.nav-topbar li a {
    position: relative;
    padding: 15px 0;
    display: block;
    font-size: 14px;
    color: #fff;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: .3px;
}
.main-header .main-nav ul li.mega-menu-item a::after,
.main-header .main-nav ul li ul a::after {
    content: none;
}
.main-header .main-nav ul li.current-menu-item > a::after,
.main-header .main-nav ul li:hover a::after {
    width: 50px;
    -webkit-transition: all 0.2s ease-out 0s;
    -moz-transition: all 0.2s ease-out 0s;
    -ms-transition: all 0.2s ease-out 0s;
    -o-transition: all 0.2s ease-out 0s;
    transition: all 0.2s ease-out 0s;
}
.main-header .main-nav ul li.menu-item-has-children > a,
.nav-topbar li.menu-item-has-children > a {
    padding-right: 15px;
}
.main-header .main-nav ul li.menu-item-has-children > a::before,
.nav-topbar li.menu-item-has-children > a::before {
    content: "\33";
    font-family: "ElegantIcons";
    display: inline-block;
    padding-left: 5px;
    position: absolute;
    right: 0;
    font-size: 14px;
}
.nav-topbar li.menu-item-has-children > ul > li.menu-item-has-children > a::before {
    content: "\35";
    font-family: "ElegantIcons";
    display: inline-block;
    padding-right: 8px;
    position: absolute;
    right: 0;
    font-size: 14px;
}
.nav-topbar ul.sub-menu,
.main-header .main-nav ul ul.sub-menu {
    text-align: left;
    position: absolute;
    min-width: 220px;
    background: #fff;
    left: 0;
    top: 130%;
    visibility: hidden;
    opacity: 0;
    padding: 15px 0;
    -webkit-transition: all 0.2s ease-out 0s;
    -moz-transition: all 0.2s ease-out 0s;
    -ms-transition: all 0.2s ease-out 0s;
    -o-transition: all 0.2s ease-out 0s;
    transition: all 0.2s ease-out 0s;
    -webkit-box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
    z-index: 9999;
    border: 1px solid #fafafa;
    border-radius: 3px;
}
.nav-topbar > li:hover > ul.sub-menu,
.main-header ul > li:hover > ul.sub-menu,
.main-header ul > li:hover > ul.mega-menu {
    visibility: visible;
    opacity: 1;
    top: 100%;
}
.nav-topbar ul.sub-menu,
.main-header .main-nav ul ul.sub-menu {
    display: block;
    padding-left: 15px;
    padding-right: 15px;
}
.nav-topbar ul.sub-menu > li > a,
.main-header .main-nav ul ul.sub-menu > li > a {
    font-weight: 500;
    line-height: 2;
    padding: 5px 0;
    text-transform: none;
    letter-spacing: 0;
}
.main-header .main-nav ul ul.sub-menu > li > a:hover {
    background: none;
}
.main-header .main-nav ul li h6 a {
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.2;
}

/*submenu - level 3*/
.nav-topbar ul.sub-menu li {
    position: relative;
}
.nav-topbar ul.sub-menu li ul.sub-menu {
    left: 100%;
    visibility: hidden;
    opacity: 0;
    top: 130%;
    margin-left: 5px;
}
.nav-topbar ul.sub-menu li:hover ul.sub-menu {
    visibility: visible;
    opacity: 1;
    top: 0;
}
.logo-mobile {
    max-width: 45px;
    z-index: 500;
    position: relative;
}
.nav-topbar > li {
    position: relative;
    padding: 0 5px;
}
.nav-topbar li a {
    position: relative;
    font-size: 12px;
}

/* Mega menu */
.main-menu {
    list-style-type: none;
    margin: 0;
    height: 100%;
    align-items: center;
}
.main-menu > li {
    height: 100%;
    position: relative;
    display: inline-block;
    padding: 0 18px;
}
.main-menu > li.current-item a {
    padding-left: 15px !important;
}
.main-menu > li.current-item a::before {
    content: "";
    background-color: var(--color-primary);
    width: 6px;
    height: 6px;
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 50%;
    margin-top: -3px;
    animation: shadow-pulse 1s infinite;
}
.main-menu > li:first-child {
    padding-left: 0;
}
.main-menu li.has-mega-menu {
    position: static !important;
}
.main-menu .mega-menu {
    position: absolute;
    left: 0;
    top: 140%;
    background-color: #fff;
    width: 100%;
    padding: 15px;
    -webkit-transition: all 0.25s ease 0s;
    transition: all 0.25s ease 0s;
    opacity: 0;
    visibility: hidden;
    border-radius: 0 0 3px 3px;
    z-index: 999;
    border: 1px solid #fafafa;
    -webkit-box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
    display: flex;
    justify-content: space-between;
}
.main-menu > li.current-item.has-mega-menu .mega-menu .sub-mega-menu {
    padding-right: 25px;
}
.main-menu > li.current-item.has-mega-menu .mega-menu a {
    padding: 10px 0;
    font-weight: 400;
}
.main-menu > li.current-item.has-mega-menu .mega-menu a::before {
    content: none;
}
.main-menu > li.current-item.has-mega-menu .mega-menu a.menu-title {
    font-weight: bold;
    font-size: 14px;
}

/* sticky-bar */
.header-sticky.sticky-bar.sticky .header-flex {
    justify-content: space-between;
}
.header-sticky.sticky-bar.sticky .header-btn .get-btn {
    padding: 20px 20px;
}
.header-area .slicknav_btn {
    top: -51px;
    right: 17px;
}
.slicknav_menu .slicknav_nav a:hover {
    background: transparent;
}
.slicknav_menu {
    background: transparent;
}
.mobile_menu {
    position: fixed;
    right: 0px;
    width: 100%;
    z-index: 99;
}
.header-top {
}
.header-top-right {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}
.header-tools {
    padding: 15px 0;
}
.vertical-divider {
    width: 1px;
    height: 20px;
    background-color: var(--primary-border-color);
}
.header-style-1 .divider-2 {
    margin-top: -2px;
}
.main-header.header-style-1 h1.logo {
    font-weight: 900;
    font-size: 40px;
    line-height: 65px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

/*Footer layouts*/
.footer-area {
    color: #666;
}
.footer-area ul li + li {
    margin-top: 10px;
}
.footer-bottom-area .footer-border {
    border-top: 1px solid rgb(225, 225, 225);
}
.footer-bottom-area .list-inline-item:not(:last-child) {
    margin-right: 0.8rem;
}
.footer-copy-right {
    overflow: hidden;
}
.footer-bottom-area .footer-copy-right p {
    font-weight: 300;
    line-height: 1;
    margin: 0;
}
.footer-bottom-area .footer-copy-right p a:hover {
    color: #fff;
}
.footer-menu ul li {
    display: inline-block;
    margin-left: 36px;
}
.footer-menu ul li:first-child {
    margin-left: 0px;
}
.footer-copy-right {
    border-top: 1px solid var(--mutted-border-color);
}

/*Pagination*/
.pagination-area .page-item {
    margin: 0;
}
.pagination-area .page-item:first-child {
    margin: 0;
}
.pagination-area .page-link,
#scrollUp {
    border: 0;
    font-size: 13px;
    box-shadow: none;
    outline: 0;
    color: #889097;
    background: #fff;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    text-align: center;
    line-height: 40px;
    padding: 0;
    margin-right: 10px;
    box-shadow: 0 2px 4px var(--button-shadow-color-normal), 0 0 0 transparent;
    transition: all 0.25s cubic-bezier(0.02, 0.01, 0.47, 1);
}
.pagination-area .page-link:hover,
#scrollUp:hover {
    box-shadow: 0 4px 8px var(--button-shadow-color-hover), 0 0 0 transparent;
}
.pagination-area .page-item.active .page-link {
    color: #fff !important;
    background: var(--color-primary) !important;
}
.page-item:last-child .page-link,
.page-item:first-child .page-link {
    border-radius: 50% !important;
    background: none;
}
#scrollUp {
    background-color: var(--color-primary);
    color: #fff;
}
h1.page-404 {
    font-size: 5.2rem;
}

/*Breadcrumb*/
.breadcrumb {
    display: inline-block;
    padding: 0;
    text-transform: capitalize;
    color: #6e6e6e;
    font-size: 0.875rem;
    background: none;
    margin: 0;
    border-radius: 0;
}
.breadcrumb span {
    position: relative;
    text-align: center;
    padding: 0 10px;
}
.breadcrumb span::before {
    content: "\35";
    font-family: "ElegantIcons";
    display: inline-block;
}
.breadcrumb span.no-arrow::before {
    content: none;
}

/*LOOP*/
.border-top-1 {
    border-top: 1px solid rgb(225, 225, 225);
}
.border-bottom-1,
.horizontal-divider {
    border-bottom: 1px solid rgb(225, 225, 225);
}
.border-top-2 {
    border-top: 4px double rgb(225, 225, 225);
}
.vertical-divider {
    overflow: hidden;
    position: relative;
}
.vertical-divider > [class*="col-"]:nth-child(n + 2)::after {
    content: "";
    background-color: rgb(225, 225, 225);
    position: absolute;
    top: 0;
    bottom: 0;
}
@media (max-width: 767px) {
    .vertical-divider > [class*="col-"]:nth-child(n + 2)::after {
        width: 100%;
        height: 1px;
        left: 0;
        top: -4px;
    }
}
@media (min-width: 768px) {
    .vertical-divider > [class*="col-"]:nth-child(n + 2)::after {
        width: 1px;
        height: auto;
        left: -1px;
    }
}
.divider-wave,
.divider-wave-2 {
    position: relative;
}
.loop-grid-3 .first-post .post-title::after,
.divider-wave::after {
    content: "";
    background: url(../imgs/theme/wave-line-1.svg) center center no-repeat;
    width: 59px;
    height: 5px;
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
}
.divider-wave-2::after {
    content: "";
    background: url(../imgs/theme/wave-line-2.svg) center center no-repeat;
    width: 59px;
    height: 11px;
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
}

/*CATEGORY PAGES*/
.archive-header h2 {
    font-size: 45px;
}
.archive .loop-list-1 .first-post .img-hover-slide {
    min-height: 400px;
}
.img-hover-scale img {
    -webkit-transition: -webkit-transform 0.5s;
    transition: -webkit-transform 0.5s;
    -o-transition: transform 0.5s;
    transition: transform 0.5s;
    transition: transform 0.5s, -webkit-transform 0.5s;
}
.img-hover-scale:hover img {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
    -webkit-transition: -webkit-transform 0.5s;
    transition: -webkit-transform 0.5s;
    -o-transition: transform 0.5s;
    transition: transform 0.5s;
    transition: transform 0.5s, -webkit-transform 0.5s;
}
.post-format-icon {
    width: 25px;
    height: 25px;
    display: inline-block;
    background: #ecf0f3;
    line-height: 25px;
    text-align: center;
    border-radius: 5px;
    font-size: 12px;
    color: #91a2ae;
}

/*SINGLE POST*/
.entry-meta .author-avatar {
    float: left;
    margin: -3px 15px 0 0;
}
.entry-meta .author-avatar img {
    height: 40px;
    width: 40px;
    border: 2px solid #fff;
}
.entry-meta span {
    position: relative;
}
.entry-header .entry-title {
    font-size: 3.2em;
    letter-spacing: -1px;
}
.entry-wraper .excerpt p,
.single-excerpt p {
    font-size: 1.2em;
}
.dropcap p:first-child::first-letter {
    font-size: 4em;
    float: left;
    margin-top: 0.15em;
    margin-right: 0.15em;
    line-height: 1;
}
.dropcap blockquote p:first-child::first-letter {
    font-size: inherit;
    margin: 0;
    line-height: inherit;
    float: none;
}
.entry-main-content h1,
.entry-main-content h2,
.entry-main-content h3,
.entry-main-content h4,
.entry-main-content h5,
.entry-main-content h6 {
    font-weight: 700;
}
.entry-wraper {
    position: relative;
}
.entry-left-col {
    position: absolute;
    left: -20%;
    height: 200vh;
    z-index: 2;
    top: 3rem;
    bottom: 0;
}
.social-sticky {
    position: -webkit-sticky;
    position: sticky;
    top: 70px;
}
.social-sticky a {
    display: block;
    color: rgba(0, 0, 0, 0.54);
    border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, 0.34);
    width: 30px;
    height: 30px;
    text-align: center;
    line-height: 30px;
    margin-bottom: 0.5rem;
    font-size: 13px;
}
.single-tools {
    display: table;
    float: right;
    background: #f5f5f5;
    padding: 7px 15px;
    border-radius: 2px;
}
.overflow-hidden {
    overflow: hidden;
}
.single-social-share a {
    width: 35px;
    display: block;
    height: 35px;
    text-align: center;
    line-height: 37px;
    font-size: 12px;
    border-radius: 50%;
    background-color: #eee;
}
.single-thumnail .arrow-cover i {
    color: #fff;
}
.single-excerpt p {
    line-height: 1.5;
}
.entry-main-content {
    font-size: 1.2em;
}
.entry-main-content p {
    line-height: 1.75;
}
.entry-main-content h2 {
    line-height: 1.25;
    margin-top: 30px;
    margin-bottom: 28px;
    font-size: 1.5rem;
}
.entry-main-content p {
    font-size: 1.1em;
}
.entry-main-content figure {
    margin-bottom: 30px;
    margin-top: 30px;
}
.entry-bottom .tags a {
    display: inline-block;
    font-weight: normal;
    text-decoration: none;
    margin-top: 2px;
    margin-bottom: 2px;
    margin-right: 5px;
    border-radius: 2px;
    font-size: 14px;
    text-transform: capitalize;
    font-style: italic;
    border-bottom: 1px solid rgb(225, 225, 225);
}
.related-posts .img-hover-slide {
    min-height: 200px;
}
blockquote {
    position: relative;
    border-left: 0;
    padding: 0px 30px;
    font-weight: 400;
    margin-bottom: 1.5rem;
    font-style: italic;
}
blockquote::before {
    content: "";
    top: 0px;
    height: 100%;
    left: 0;
    width: 4px;
    position: absolute;
    background: #000;
}
blockquote p:last-child,
blockquote ul:last-child,
blockquote ol:last-child {
    margin-bottom: 0;
}
.btn-play-video {
    color: #fff;
    border: 1px solid #fff;
    width: 50px;
    height: 40px;
    display: inline-block;
    border-radius: 5px;
    text-align: center;
    line-height: 40px;
    font-size: 20px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 9;
    background: rgba(0, 0, 0, 0.5);
}
.entry-header-style-2 {
    position: relative;
    background-color: #f6f8fa;
    background-position: center;
    background-size: cover;
    text-align: center;
}
.entry-header-style-2::before {
    display: block !important;
    position: absolute;
    z-index: 1;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(40, 45, 57, 0.3);
    content: "";
    pointer-events: none;
    transition: all 0.3s ease;
}
.entry-header-style-2 .entry-meta .author-avatar {
    float: none;
}
.entry-header-content {
    position: relative;
    z-index: 3;
}

/*Author box*/
.bt-1 {
    border-top: 1px solid;
}
.border-color-1 {
    border-color: rgb(225, 225, 225);
}
.author-bio {
    margin-bottom: 40px;
    text-align: left;
    display: flex;
    border-bottom: 1px solid rgb(225, 225, 225);
    padding-bottom: 40px;
}
.author-bio .author-image img {
    border-radius: 50%;
    width: 90px;
    height: 90px;
}
.author-bio .author-image {
    flex-grow: 0;
    flex-shrink: 0;
    overflow: hidden;
    width: 90px;
    height: 90px;
    margin-right: 40px;
}
.author-bio .author-info {
    flex-grow: 1;
}
.author-bio h3 {
    font-size: 22px;
    margin-bottom: 10px;
}
.author-bio h5 {
    font-size: 12px;
    text-transform: uppercase;
    margin-bottom: 0;
    font-weight: 500;
    color: var(--color-black);
}
.author-bio .author-description {
    margin-top: 15px;
    margin-bottom: 15px;
}
.author-bio .author-bio-link {
    display: inline-block;
    font-weight: normal;
    text-decoration: none;
    margin-right: 20px;
    text-transform: capitalize;
    font-style: italic;
    border-bottom: 1px solid rgb(225, 225, 225);
    color: #666;
}
.author-bio .author-social {
    display: inline-block;
}
.author-bio .author-social-icons {
    margin: 0;
    padding: 0;
    list-style: none;
}
.author-bio .author-social-icons li {
    display: inline-block;
}
.author-bio .author-social-icons li:first-child a {
    margin-left: 0;
}
.author-bio .author-social-icons li a {
    text-align: center;
    font-size: 16px;
    margin-left: -1px;
    padding-top: 0;
    display: block;
    margin-left: 20px;
}
.author-bio .author-social-icons li a i {
    font-size: 14px;
}
.author .author-bio {
    margin: 0;
    padding: 50px;
    border: 0;
    background: #f4f5f9;
    border-radius: 5px;
}

/*comment*/
.comments-area {
    background: transparent;
    margin-top: 50px;
}
.comments-area h4 {
    margin-bottom: 35px;
    color: #2a2a2a;
    font-size: 18px;
}
.comments-area h5 {
    font-size: 16px;
    margin-bottom: 0px;
}
.comments-area a {
    color: #2a2a2a;
}
.comments-area .comment-list {
    padding-bottom: 48px;
}
.comments-area .comment-list:last-child {
    padding-bottom: 0px;
}
.comments-area .comment-list.left-padding {
    padding-left: 25px;
}
.comments-area .thumb {
    margin-right: 20px;
}
.comments-area .thumb img {
    width: 70px;
    border-radius: 50%;
}
.comments-area .date {
    font-size: 14px;
    color: #999999;
    margin-bottom: 0;
    margin-left: 20px;
}
.comments-area .comment {
    margin-bottom: 10px;
    color: #777777;
    font-size: 15px;
}
.comments-area .btn-reply {
    background-color: transparent;
    color: #888888;
    font-size: 14px;
    display: block;
    font-weight: 400;
    border-bottom: 1px solid rgb(225, 225, 225);
    font-style: italic;
}
.comment-form {
    padding-top: 45px;
    margin-top: 50px;
    margin-bottom: 20px;
}
.comment-form .form-group {
    margin-bottom: 30px;
}
.comment-form h4 {
    margin-bottom: 40px;
    font-size: 18px;
    line-height: 22px;
    color: #2a2a2a;
}
.comment-form .name {
    padding-left: 0px;
}
.form-control {
    border: 1px solid rgb(225, 225, 225);
    border-radius: 30px;
    height: 48px;
    padding-left: 18px;
    font-size: 14px;
    background: transparent;
    background: #fff;
}
textarea.form-control {
    border-radius: 10px;
}
.form-control:focus {
    outline: 0;
    box-shadow: none;
}
.form-control::placeholder {
    font-weight: 300;
    color: #999999;
}
.form-control::placeholder {
    color: #777777;
}
.custom_select {
    position: relative;
    width: 100%;
}
.custom_select .nice-select {
    width: 100%;
    margin-bottom: 1rem;
}
.nice-select .list {
    width: 100%;
}
.comment-form textarea {
    padding-top: 18px;
    border-radius: 10px;
    height: 100% !important;
    background: #fff;
}
.comment-form::-webkit-input-placeholder {
    /* Chrome/Opera/Safari */
    font-size: 13px;
    color: #777;
}
.comment-form::-moz-placeholder {
    /* Firefox 19+ */
    font-size: 13px;
    color: #777;
}
.comment-form:-ms-input-placeholder {
    /* IE 10+ */
    font-size: 13px;
    color: #777;
}
.comment-form:-moz-placeholder {
    /* Firefox 18- */
    font-size: 13px;
    color: #777;
}
.button-contactForm {
    background: #ef3f48;
    color: #fff;
    border-color: #ef3f48;
    padding: 12px 25px;
}
.button {
    display: inline-block;
    border: 1px solid transparent;
    font-size: 14px;
    font-weight: 500;
    padding: 12px 54px;
    border-radius: 30px;
    color: #fff;
    border: 1px solid var(--color-primary);
    text-transform: uppercase;
    background: var(--color-primary);
    cursor: pointer;
    transition: all 300ms linear 0s;
}
.button:hover {
    background: #333;
    border: 1px solid #333;
}
.single-comment.depth-2 {
    margin-left: 50px;
}

.wp-block-separator {
    border-top: 1px solid #f4f5f9;
    margin-top: 20px;
    margin-bottom: 20px;
    margin-left: auto;
    margin-right: auto;
}
.wp-block-image,
.wp-block-embed,
.wp-block-gallery {
    margin-bottom: 30px;
}
.blocks-gallery-grid,
.wp-block-gallery {
    display: flex;
    flex-wrap: wrap;
    list-style-type: none;
    padding: 0;
    margin: 0;
}
.blocks-gallery-grid,
.wp-block-gallery {
    display: flex;
    flex-wrap: wrap;
    list-style-type: none;
    padding: 0;
    margin: 0;
}
.blocks-gallery-grid.columns-3 .blocks-gallery-image,
.blocks-gallery-grid.columns-3 .blocks-gallery-item,
.wp-block-gallery.columns-3 .blocks-gallery-image,
.wp-block-gallery.columns-3 .blocks-gallery-item {
    width: calc((100% - 32px) / 3);
    margin-right: 16px;
}
.blocks-gallery-grid.columns-3 .blocks-gallery-image:nth-of-type(3n),
.blocks-gallery-grid.columns-3 .blocks-gallery-item:nth-of-type(3n),
.wp-block-gallery.columns-3 .blocks-gallery-image:nth-of-type(3n),
.wp-block-gallery.columns-3 .blocks-gallery-item:nth-of-type(3n) {
    margin-right: 0;
}
.blocks-gallery-grid.is-cropped .blocks-gallery-image a,
.blocks-gallery-grid.is-cropped .blocks-gallery-image img,
.blocks-gallery-grid.is-cropped .blocks-gallery-item a,
.blocks-gallery-grid.is-cropped .blocks-gallery-item img,
.wp-block-gallery.is-cropped .blocks-gallery-image a,
.wp-block-gallery.is-cropped .blocks-gallery-image img,
.wp-block-gallery.is-cropped .blocks-gallery-item a,
.wp-block-gallery.is-cropped .blocks-gallery-item img {
    height: 100%;
    flex: 1;
    -o-object-fit: cover;
    object-fit: cover;
}
.wp-block-separator.is-style-dots {
    border: none;
    width: auto;
}
.wp-block-separator.is-style-dots {
    background: none !important;
    border: none;
    text-align: center;
    max-width: none;
    line-height: 1;
    height: auto;
}
.wp-block-separator.is-style-dots::before {
    content: "\00b7 \00b7 \00b7";
    color: currentColor;
    font-size: 20px;
    letter-spacing: 2em;
    padding-left: 2em;
    font-family: serif;
}
.wp-block-separator.is-style-dots {
    text-align: center;
    line-height: 1;
}
.wp-block-quote.is-large,
.wp-block-quote.is-style-large {
    padding-left: 50px;
    padding-right: 50px;
    padding-top: 50px;
    padding-bottom: 50px;
    margin-top: 40px;
    margin-bottom: 40px;
}
.wp-block-quote.is-large,
.wp-block-quote.is-style-large {
    margin: 0 0 16px;
    padding: 30px;
    background: #f4f5f9;
    border-radius: 5px;
}
.wp-block-quote.is-large p,
.wp-block-quote.is-style-large p {
    font-size: 30px;
    line-height: 1.3;
    font-style: normal;
}
.wp-block-image {
    margin-bottom: 30px;
}
.entry-main-content figure.alignleft {
    margin-right: 30px;
    margin-top: 20px;
    display: table;
}
.wp-block-image .alignleft {
    float: left;
    margin-right: 1em;
}
.wp-block-image .aligncenter > figcaption,
.wp-block-image .alignleft > figcaption,
.wp-block-image .alignright > figcaption,
.wp-block-image.is-resized > figcaption {
    display: table-caption;
    width: 100%;
    margin: 10px 0;
    caption-side: bottom;
}
.wp-block-image figcaption {
    color: #6a6a6a;
    z-index: 1;
    bottom: 0;
    right: 0;
    line-height: 1.5;
    margin-bottom: 0;
    margin-top: 15px;
    text-align: center;
    font-size: 12px;
}
.tooltip-inner {
    font-size: 0.7em;
}
table {
    width: 100%;
    margin-bottom: 1.5rem;
    color: #212529;
    border-collapse: collapse;
}
table p {
    margin-bottom: 0;
}
.entry-main-content table td,
.entry-main-content table th,
.comment-content table td,
.comment-content table th {
    padding: 0.5em 1em;
    border: 1px solid #e6e6e6;
}
.entry-main-content dd,
.single-comment dd {
    margin: 0 0 1.65em;
}
.entry-main-content ul {
    list-style: disc;
}
.entry-main-content ul li,
.comment-content ul li {
    list-style: disc inside;
    line-height: 2;
}
.entry-main-content ul li.blocks-gallery-item {
    list-style: none;
}
.entry-main-content li > ul,
.entry-main-content li > ol,
.comment-content li > ul,
.comment-content li > ol {
    padding-left: 2rem;
}
.entry-main-content ol {
    padding-left: 0;
}
ol li {
    list-style: decimal inside;
    width: 100%;
    line-height: 2;
}
pre {
    border: 1px solid #eee;
    font-size: 1em;
    line-height: 1.8;
    margin: 15px 0;
    max-width: 100%;
    overflow: auto;
    padding: 1.75em;
    white-space: pre;
    white-space: pre-wrap;
    word-wrap: break-word;
    background: #fff;
    border-radius: 15px;
}
@keyframes shadow-pulse {
    0% {
        box-shadow: 0 0 0 0px rgba(88, 108, 218, 0.8);
    }
    100% {
        box-shadow: 0 0 0 5px rgba(0, 0, 0, 0);
    }
}
@keyframes shadow-pulse-big {
    0% {
        box-shadow: 0 0 0 0px rgba(88, 108, 218, 0.1);
    }
    100% {
        box-shadow: 0 0 0 20px rgba(0, 0, 0, 0);
    }
}





#header_social1{
	display: flex;
	gap: 10px;
}
#header_social1 a{
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: #333 !important;
	height: 24px;
	width: 24px;
	color: #fff;
	border-radius: 50%;
}
#header_social1 a.fb{
	background-color: #1877F2;	
}
#header_social1 a.tw{
	background-color: #000;	
}
#header_social1 a.in{
	background-color: #E1306C;	
}
#header_social1 a.yt{
	background-color: #FF0000;	
}
#hero_slider img{
	border-radius: 8px;
}
#hero_slider h3{
	font-size: 29px;
}
#hero_slider h3 a{
	color: #333;
	overflow: hidden;
	-webkit-line-clamp: 3;
	display: box;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	text-overflow: ellipsis;
	white-space: normal;
}
#hero_slider h3 a span{
    display: block;
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 10px;
    color: var(--color-muted) !important;
}
#hero_slider h5{
	font-size: 16px;
	overflow: hidden;
	-webkit-line-clamp: 3;
	display: box;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	text-overflow: ellipsis;
	white-space: normal;
}
a.btn.btn-radius.bg-primary.text-white.mt-15.font-medium.box-shadow,
a.btn.btn-radius.bg-primary.text-white.ml-15.font-small.box-shadow{
	font-weight: 400;
}
.mainSwiper{
	overflow: hidden;
	position: relative;
}
.mainSwiper .container{
	position: absolute;
	bottom: 15px;
	left: 0;
	padding: 0;
	z-index: 2;
}
.mainSwiper .container.pr_nx_btns{
	top: 50%;
	bottom: auto;
	transform: translateY(-50%);
}
.mainSwiper .container.pr_nx_btns > div{
	display: flex;
	justify-content: space-between;
	padding: 0 20px 0 30px;
}
.pr_nx_btns button{
	border: none;
	background: transparent;
	cursor: pointer;
	width: 50px;
	height: 50px;
	transition: all .3s;
    border-radius: 8px;
    background-color: #00000036;
}
.pr_nx_btns button:hover{
    /* background-color: #00000036; */
}

.pr_nx_btns button svg{
	height: 30px;
}
.pr_nx_btns button:first-child svg{
	transform: rotateY(180deg);
}
.pr_nx_btns button svg *{
	fill: #fff;
}
#mainPagination{
	text-align: center;
}
#mainPagination .swiper-pagination-bullet {
    display: inline-block;
    border-radius: 50%;
    opacity: .5;
    margin: 0px 6px;
    transition: 0.3s;
    width: 12px;
    height: 12px;
    background: #fff;
    position: relative;
}

#mainPagination .swiper-pagination-bullet-active {
    background: #fff !important;
	opacity: 1;
}
.slide_overlay{
	position: relative;
}
.slide_overlay::before{
	content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	background: rgb(233,235,236);
	background: linear-gradient(180deg, rgba(233,235,236,0) 0%, rgba(0,0,0,1) 100%);
	height: 50%;
	border-radius: 0 0 8px 8px;
	opacity: .4;
	pointer-events: none;
}
.vd_title{
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: bold;
    color: #000;
    padding-left: 15px;
}
.vd_title h5{
    margin: 0;
    font-weight: bold;
}
.vd_title svg{
    height: 40px;
}
.ob_svg svg{
    height: 20px;
}
.btn.ob_svg{
    display: inline-flex;
    gap: 10px;
    align-items: center;
    line-height: normal;
    font-weight: 500;
}
.mainSwiper .swiper-slide{
    opacity: 0 !important;
}
.mainSwiper .swiper-slide-active{
    opacity: 1 !important;
}
.btn.ob_svg svg *{
    fill: #fff;
}
.mainSwiper .swiper-slide .btn.ob_svg svg{
    transform: rotateY(180deg);
}
.post-content h5 span{
    height: 51px;
    overflow: hidden;
    -webkit-line-clamp: 2;
    display: box;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    white-space: normal;
    font-size: 15px;
    color: #000;
}
#tgr009{
    justify-content: space-between;
    align-items: center;
    gap: 15px;
}
#prayer-times{
    margin: 15px 0 0;
}
#prayer-times tr:nth-child(odd) td{
    background-color: #f5f5f5;
}
#prayer-times tr td,
#prayer-times tr th{
    padding: 5px 10px;
}
#prayer-times tr:last-child td{
    padding-bottom: 0;
}
.divine_row a{
    border: 1px solid var(--mutted-border-color);
    background-color: #fff;
    padding: 15px;
    display: flex;
    flex-wrap: wrap;
    text-align: center;
    border-radius: 8px;
    height: 100%;
}
.divine_row a div{
    /* padding: 11px 0 0; */
    width: 100%;
}
.divine_row a div strong{
    line-height: 1.2;
    display: block;
}
.divine_row a div span{
    display: block;
}
.divine_row a img{
    width: 100%;
    border-radius: 8px;
    transition: all 1s;
    vertical-align: middle;
    height: 100%;
    object-fit: cover;
}
.pgrd009{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.the_aphorism span{
    display: inline;
}
.the_aphorism span::before,
.the_aphorism span::after{
    font-size: 44px;
    line-height: normal;
}
.the_aphorism span::before{
    content: '“';
    display: block;
    line-height: .4;
    margin-top: 15px;
}
.the_aphorism span::after{
    /* content: '”'; */
}
.the_aphorism strong{
    display: block;
    margin-top: 10px;
}
.cgdx_04{
    display: flex;
    justify-content: space-between;
}
.cgdx_04 button{
    border: none;
    background-color: transparent;
    cursor: pointer;
}
.cgdx_04 button svg{
    height: 15px;
}
.cgdx_04 button:last-child{
    transform: rotateY(180deg);
}
.divine_row a figure{
    margin-bottom: 0;
    width: 100%;
    overflow: hidden;
    border-radius: 8px;
}
.divine_row a:hover img{
    transform: scale(1.2);
}
.the_aphorism{
    background-color: #fff;
    height: 100%;
}
.aphorism_swiper .swiper-slide{
    height: auto;
}
.aphorism_swiper{
    overflow: hidden;
}
.ka_inner{
    margin-top: 40px;
}
.ka_inner.four-page{
    margin-top: 0px;
    display: flex;
    width: 100%;
}
.ka_inner.four-page a{
    background-color: var(--color-secondary);
    color: #fff;
    display: flex;
    align-items: center;
    border-radius: 5px;
    height: 100%;
    font-size: 18px;
    font-weight: 700;
    padding: 15px 15px;
    text-align: center;
    transition: all .3s;
    border: 2px solid var(--color-secondary);
    cursor: default;
    gap: 10px;
    cursor: pointer;
}
.ka_inner.four-page a:hover{
    background-color: white;
    color: var(--color-secondary);
    transform: translateY(-5px);
}
.ka_inner a{
    background-color: var(--color-primary);
    color: #fff;
    display: flex;
    align-items: center;
    border-radius: 5px;
    height: 100%;
    font-size: 18px;
    font-weight: 700;
    padding: 15px 15px;
    text-align: center;
    transition: all .3s;
    border: 2px solid var(--color-primary);
    cursor: default;
    gap: 10px;
    cursor: pointer;
}
.ka_inner a:hover{
    background-color: transparent;
    color: var(--color-primary);
    transform: translateY(-5px);
}
.ka_inner .row{
    row-gap: 30px;
}
.divine_row{
    overflow: hidden;
}
.divine_row .swiper-slide{
    height: auto;
}
.divine_row .swiper-slide article{
    height: 100%;
}
.post-module-2 + .post-module-2{
    margin-top: 30px;
}
.divine_row,
.indexVideos{
    position: relative;
}
.divine_row button,
.indexcmds button{
    position: absolute;
    top: 50%;
    width: 40px;
    height: 40px;
    font-size: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    background-color: var(--color-primary);
    color: #fff;
    border-radius: 50%;
    z-index: 2;
    opacity: 0;
    transition: all .3s;
    cursor: pointer;
}
.dr_prev{
    left: 16px;
    transform: translateX(30px) translateY(-50%);
}
.dr_next{
    right: 16px;
    transform: translateX(-30px) translateY(-50%);
}
.ic_prev{
    left: 30px;
    transform: translateX(30px) translateY(-50%);
}
.ic_next{
    right: 30px;
    transform: translateX(-30px) translateY(-50%);
}
.divine_row:hover > button,
.indexcmds:hover > button{
    transform: translateY(-50%) translateX(0) !important;
    opacity: 1;
}
.divine_row > button.swiper-button-disabled,
.indexcmds > button.swiper-button-disabled{
    display: none;
}
#photoGallery a figure{
    position: relative;
}
#photoGallery a figure::before{
    content: '';
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.656);
    transition: all .3s;
    opacity: 0;
    z-index: 2;
    display: block !important;
}
#photoGallery a:hover figure::before{
    opacity: 1;
}
#photoGallery a figure::after{
    content: "\f083";
    font-family: 'FontAwesome';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    z-index: 2;
    font-size: 40px;
    transition: all .3s;
    opacity: 0;
}
#photoGallery a:hover figure::after{
    opacity: .7;
}
.header-sticky{
    background-color: var(--color-primary) !important;
}
#hero_slider{
    position: relative;
}
#hero_slider::after{
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(7,170,251);
    background: linear-gradient(180deg, rgba(7,170,251,0) 0%, rgba(255,255,255,1) 100%);(247,248,249,1) 100%);
    transform: rotate(180deg);
}
#hero_slider::before{
    content: '';
    position: absolute;
    inset: 0;
    background-image: url(../imgs/texture.jpg);
    background-position: center;
    background-size: cover;
    opacity: .3;
}
#hero_slider > .container{
    position: relative;
    z-index: 2;
}
.post-card-1 .thumb-overlay{
    display: flex;
    align-items: center;
    justify-content: center;
}
.post-card-1 .thumb-overlay i{
    font-size: 44px;
    color: #fff;
    transition: all .3s;
    z-index: 2;
}
.gccx_06{
    position: relative;
}
.gccx_06::after{
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(7, 170, 251);
    background: linear-gradient(180deg, rgba(7, 170, 251, 0) 0%, rgba(255, 255, 255, 1) 100%);
}
.gccx_06 > .container{
    position: relative;
    z-index: 2;
}
/* 
.gccx_06::before{
    content: '';
    position: absolute;
    inset: 0;
    background-image: url(../imgs/texture4.jpg);
    background-position: center;
    background-size: cover;
    opacity: .1;
}
*/
/*.widget_categories li.cat-item a::before{
    content: '\e804';
    font-family: 'icon-pack';
    margin-right: 4px;
}*/
.column_text{
    background-color: #6bb5d1;
    padding: 40px 0;
    position: relative;
}
.column_text .container{
    position: relative;
    z-index: 2;
}
.column_text h3{
    font-size: 32px;
    color: #fff;
    font-weight: 700;
    margin: 0;
    line-height: 1.4;
}
.column_text h3 span{
    font-weight: 300;
    display: block;
}
.column_text a.ttg07{
    background-color: #fff;
    padding: 0 40px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 16px;
    color: #000;
    border-radius: 30px;
}
.column_text a.ttg07:hover{
    background-color: #333;
    color: #fff;    
}
.column_text .row > *{
    align-items: center;
    display: flex;
    flex-wrap: wrap;
}
.column_text::before{
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: #6bb5d1;
    opacity: 0.2;
    background-image: repeating-linear-gradient(60deg, #ffffff 5px, #ffffff 2px, #fff 2px, transparent 20px);
}
.column_text::after{
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgb(7,170,251);
    background: linear-gradient(90deg, rgba(7,170,251,0) 0%, rgba(107,181,209,1) 100%);
}
.column_text .container .row{
    row-gap: 30px;
}
#ka_full .row{
    row-gap: 0;
}
#ka_full{
    margin-top: 15px;
}
#ka_full a::before{
    font-size: 22px;
    color: var(--color-primary);
}
#ka_full a{
    background-color: transparent;
    color: var(--color-primary);
    border-color: var(--mutted-border-color);
    border-width: 1px;
    font-weight: 400;
    border-radius: 0;
    border-width: 0 0 1px;
    height: auto;
    padding: 8px 15px;
    color: #333;
}
#ka_full a:hover{
    transform: none;
    padding-left: 30px;
}
.entry-wraper .excerpt h1,
.entry-wraper .excerpt h2,
.entry-wraper .excerpt h3,
.entry-wraper .excerpt h4,
.entry-wraper .excerpt h5,
.entry-wraper .excerpt h6{
    font-weight: 600;
    color: #000;
}
@media(min-width:993px){
    .primary-sidebar{
        padding-right: 45px;
    }
}
#pwb_flex{
    text-align: center;
}
#pwb_flex ul{
    margin-top: 15px;
}
#pwb_flex ul li a{
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: all .3s;
}
#pwb_flex ul li a:hover{
    transform: translateY(5px);
}
#pwb_flex h4{
    font-size: 16px;
}
.sideMenu1{
    display: flex;
    gap: 15px;
    flex-direction: column;
}
a{
    cursor: pointer;
}
.sideMenu1 li a{
    display: flex;
    color: #000;
    font-size: 18px;
    align-items: center;
    gap: 5px;
    transition: all .3s;
}
.sideMenu1 li a:hover{
    padding-left: 15px;
}
.sideMenu1 li a i{
    color: var(--color-primary);
}
a.cont_tel{
    color: #212529;
}
.sidebar_box {
    background: #f7f8f9;
    padding: 0px 0px 50px;
    border-radius: 20px;
    user-select: none;
}

h2.sidebar_title {
    font-size: 22px;
    color: rgb(51, 51, 51);
    margin: 0px 0px 30px;
    padding: 45px 50px 0px 70px;
    font-weight: 600;
}

.sidebar_box p {
    margin-bottom: 12px;
}

.sidebar-list ul li {
    font-size: 16px;
    line-height: 38px;
    color: rgb(6, 50, 50);
    font-weight: 400;
}

.sidebar-list ul li i {
    color: rgb(12, 110, 109);
    font-size: 15px;
    margin-right: 15px;
}
.sideMenu {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.sideMenu li {
    position: relative;
}

.sideMenu li a {
    color: rgb(146, 146, 146);
    padding: 0px 15px 0px 70px;
    height: 40px;
    display: flex;
    align-items: center;
}

.sideMenu li::after {
    content: "";
    position: absolute;
    right: 15px;
    width: 70%;
    top: 100%;
    height: 1px;
    background: linear-gradient(90deg, rgba(233, 235, 236, 0) 0%, rgba(195, 195, 195, 0.61) 100%);
}

.sideMenu li a.active {
    font-weight: 600;
    position: relative;
    color: var(--color-primary) !important;
}

.sideMenu li a:hover {
    color: var(--color-primary) !important;
}

.sideMenu li a.active::before {
    content: "";
    position: absolute;
    left: 0px;
    top: 50%;
    height: 160%;
    width: 70px;
    background-image: url("../imgs/shape.png");
    background-size: contain;
    background-repeat: no-repeat;
    transform: translateY(-50%);
}

.sideMenu li a.active::after {
    position: absolute;
    content: '\e801';
    font-family: 'icon-pack';
    top: 50%;
    left: 16px;
    color: #fff;
    z-index: 0;
    transform: translateY(-50%);
    font-size: 23px;
}
.follow_line {
    padding: 50px 0px 15px 70px;
}

.follow_line ul {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.follow_line ul li a {
    background-color: rgba(27, 102, 100, 0.15);
    color: var(--color-primary) !important;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    transition: 0.3s;
}

.follow_line ul li a:hover {
    color: rgb(255, 255, 255) !important;
    background-color: var(--color-primary) !important;
}
.breadcrumb_section{
    padding: 0px 0 0px;
}
@media(max-width:768px){
    .breadcrumb_section{
        padding: 0px 0 0;
    }
}
.breadcrumb_section .breadcrumb{
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
    margin: 0;
}
.breadcrumb_section .breadcrumb a{
    font-size: 13px;
    font-weight: 500;
    color: #969696;
    position: relative;
}
.breadcrumb_section .breadcrumb a + a::before{
    content: '\f105';
    position: relative;
    top: 0px;
    font-family: 'FontAwesome';
    margin: 0 9px;
    color: #969696;
}
.breadcrumb_section .breadcrumb a:last-child{
    color: var(--primaryColor);
    font-weight: 400;
}
.breadcrumb_overlay{
    position: relative;
}
.breadcrumb_overlay img{
    width: 19px;
    pointer-events: none;
    position: relative;
    top: -1px;
}
.breadcrumb_overlay{
    margin-bottom: 15px;
}
.video_cat{
    background-color: #333;
    font-size: 11px;
    display: inline-block;
    vertical-align: middle;
    color: #fff;
    border-radius: 4px;
    margin-bottom: 15px;
    padding: 3px 10px 2px;
    width: auto;
}
.service-details {
    position: relative;
    color: rgb(117, 117, 117);
    background: #fff;
}
.service-details .download-links {
    position: relative;
    margin-bottom: 30px;
}
.pattern2 {
    position: absolute;
    inset: 0px;
    z-index: 0;
    background-color: rgb(234, 234, 234);
    opacity: 0.8;
    background-image: repeating-radial-gradient(circle at 0px 0px, transparent 0px, rgb(234, 234, 234) 10px), repeating-linear-gradient(rgba(204, 204, 204, 0.333), rgb(204, 204, 204));
    pointer-events: none;
}
.staff_bar > .pattern2, .download-links > .pattern2 {
    opacity: 0.1;
}
.service-details .download-links ul {
    position: relative;
    display: block;
    background: #f7f8f9;
    padding: 20px 20px 20px;
    border-radius: 20px;
}
.service-details .download-links ul li {
    position: relative;
    line-height: 24px;
    color: rgb(255, 255, 255);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    padding-bottom: 5px;
    margin-bottom: 5px;
}
.service-details .download-links ul li.title_block1 {
    border: none;
    font-weight: 700;
    margin: 0px 0px 20px;
    padding: 0px;
    font-size: 18px;
    color: #333;
}
.service-details .download-links ul li a {
    position: relative;
    display: block;
    line-height: 24px;
    padding: 10px 15px 10px 45px;
    color: rgb(88 88 88);
    transition: all 0.3s ease 0s;
    background: rgb(161 161 161 / 8%);
    border-radius: 4px;
}
.service-details .download-links ul li .icon {
    position: absolute;
    left: 15px;
    top: 9px;
    line-height: 24px;
    font-size: 20px;
}
.service-details .download-links ul li .ttl {
    position: relative;
}
.service-details .download-links ul li .info {
    position: relative;
    display: block;
    line-height: normal;
    opacity: .6;
}
.service-details .download-links ul li a:hover {
    background-color: rgb(0 0 0 / 50%);
    padding-right: 15px;
    padding-left: 45px;
    color: #fff;
}
.video_filters{
    margin-bottom: 40px;
}
.video_filters label{
    position: relative;
    cursor: pointer;
    transition: all .3s;
    margin: 0;
}
.video_filters label:hover{
    opacity: .7;
}
.video_filters label input{
    position: absolute;
    opacity: 0;
    pointer-events: none;
}
.video_filters label span{
    display: flex;
    height: 40px;
    background-color: #09815c;
    color: #fff;
    padding: 0 30px;
    align-items: center;
    border-radius: 8px;
    gap: 8px;
}
.video_filters .container{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
}
.video_filters label span i{
    width: 20px;
    height: 20px;
    background-color: #fff;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.video_filters label input:checked ~ span i::before{
    content: "\f00c";
    font-family: 'FontAwesome';
    color: #09815c;
    font-style: normal;
}
.d-flex.post-card-content h5 {
    width: 100%;
}
.indexVideos{
    overflow: hidden;
}
#tg_09{
    display: flex;
    gap: 15px;
}
.ghhr_04{
    display: flex;
    align-items: center;
    gap: 7px;
}
.ghhr_04 li button{
    cursor: pointer;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 31px;
    height: 31px;
    font-size: 18px;
    background-color: #333;
    color: #fff;
    border-radius: 5px;
}
.indexVideos{
    padding: 30px;
    margin: -30px;
}
.indexcmds{
    overflow: hidden;
}
#gallery_page > div{
    margin-bottom: 30px;
}
#gallery_page img{
    border-radius: 10px;
}
#gallery_page a{
    position: relative;
    display: flex;
    border-radius: 10px;
    overflow: hidden;
    flex-wrap: wrap;
}
#gallery_page a div{
    padding: 10px 0 0;
    text-align: center;
    width: 100%;
}
.galleryRow.noFilter a img{
    transition: all .3s;
}
.galleryRow.noFilter a:hover img{
    opacity: .7;
}
#gallery_page.noFilter a::before,
#gallery_page.noFilter a::after{
    display: none !important;
}
#gallery_page a div strong{
    display: block;
}
#gallery_page a img{
    width: 100%;
}
#gallery_page > div > a::before,
#gallery_page > div > div > a::before{
    content: '';
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.656);
    transition: all .3s;
    opacity: 0;
    z-index: 2;
    display: block !important;
}
#gallery_page > div > a::after,
#gallery_page > div > div > a::after {
    content: "\55";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-family: 'ElegantIcons';
    z-index: 2;
    font-size: 40px;
    transition: all .3s;
    opacity: 0;
}
#gallery_page a:hover::after,
#gallery_page a:hover::before {
    opacity: 1;
}
.media_topBar img{
    border-radius: 20px;
}
.media_topBar h2{
    font-weight: bold;
    font-size: 36px;
    margin: 0 0 20px;
}
.media_topBar h2 span{
    display: block;
    font-size: 18px;
    opacity: .6;
    font-weight: normal;
    margin-top: 5px;
}
.play_divine{
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 40px;
    background-color: var(--color-primary) !important;
    color: #fff;
    border-radius: 30px;
    height: 45px;
    border: none;
    gap: 10px;
    font-size: 18px;
    letter-spacing: 0;
    cursor: pointer;
}
.play_divine i{
    font-size: 24px;
}
.player-container {
    width: 100%;
    margin-top: 40px;
}

.player {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.controls {
    display: flex;
    justify-content: center;
    align-items: center;
}

.controls button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid #333;
    border-radius: 50%;
    color: #333;
    font-size: 20px;
    margin: 0 10px;
    cursor: pointer;
    transition: background-color 0.3s;
    padding: 0;
    background: #fff;
}
.controls button:first-child{
    padding-right: 3px;
}
.controls button:last-child{
    padding-left: 3px;
}
.controls button#playPauseBtn{
    width: 50px;
    height: 50px;
}

.wfx_04{
    width: 500px;
    margin: 0 auto;
    display: block;
    max-width: 100%;
}

.controls button:hover {
    /* background-color: #0056b3; */
}

.progress-bar-container {
    width: 100%;
    background-color: #e5e5e5;
    border-radius: 5px;
    height: 8px;
    cursor: pointer;
    margin-bottom: 10px;
}

.progress-bar {
    height: 100%;
    background-color: #3e3e3e;
    width: 0;
    border-radius: 5px;
    transition: none;
}

.playlist {
    margin-top: 20px;
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.playlist li {
    padding: 15px 10px 15px 60px;
    cursor: pointer;
    transition: background-color 0.3s;
    background: #f7f8f9;
    border-radius: 10px;
    text-transform: capitalize;
    position: relative;
}
.playlist li::before{
    content: "\f04b";
    font-family: 'FontAwesome';
    position: absolute;
    left: 30px;
    top: 50%;
    transform: translateY(-50%);
}
.playlist li.active::before{
    content: '\f04c';
}
.playlist li b{
    font-weight: normal;
}

.playlist li:hover {
    background-color: #f1f1f1;
}

.playlist li.active {
    background-color: #333;
    color: white;
}

.time-info {
    display: flex;
    justify-content: space-between;
    width: 100%;
    font-size: 14px;
    margin-bottom: 10px;
}

.volume-control {
    display: flex;
    align-items: center;
    margin-top: 10px;
}

.volume-control input[type="range"] {
    margin-left: 10px;
    width: 100px;
}
input[type="range"] {
    -webkit-appearance: none;
    width: 100%;
    height: 10px;
    background: #ddd;
    border-radius: 5px;
    outline: none;
}

input[type="range"]::-webkit-slider-runnable-track {
    background: #007BFF;
    border-radius: 5px;
    height: 10px;
}

input[type="range"]::-moz-range-track {
    background: #007BFF;
    border-radius: 5px;
    height: 10px;
}

input[type="range"]::-ms-track {
    background: #007BFF;
    border-radius: 5px;
    height: 10px;
    border: none;
    color: transparent;
}

input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid #007BFF;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

input[type="range"]::-moz-range-thumb {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid #007BFF;
    cursor: pointer;
}

input[type="range"]::-ms-thumb {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid #007BFF;
    cursor: pointer;
}

input[type="range"]::-webkit-slider-thumb:hover {
    background-color: #007BFF;
}

input[type="range"]::-moz-range-progress {
    background-color: #007BFF;
    height: 10px;
}

input[type="range"]::-ms-fill-lower {
    background-color: #007BFF;
}
.current_song{
    text-align: center;
    margin: 0 0 15px;
    font-size: 14px;
    color: #929292;
    font-weight: 400;
}
.current_song strong{
    color: #333;
    display: block;
    text-transform: capitalize;
    font-size: 18px;
}
#gallery_page.divine > div > div > a::after{
    content: "\f025" !important;
    font-family: 'FontAwesome';
}
#gallery_page.divine h4 a{
    font-size: 18px;
    flex-wrap: wrap;
    margin-top: 15px;
    gap: 5px;
    color: #000;
}
#gallery_page.divine h4 a span{
    display: block;
    width: 100%;
    font-weight: 400;
    font-size: 14px;
    opacity: .6;
}
.gdrx_03:hover > a::before,
.gdrx_03:hover > a::after{
    opacity: 1;
}
.divine > div > div:hover a::before,
.divine > div > div:hover a::after{
    opacity: 1 !important;
}
.iframe_wrapper iframe{
    width: 100%;
    height: 50vh;
    border-radius: 0px;
    margin-bottom: -10px;
}
#ggj_09{
    row-gap: 30px;
}
#ggj_09 article{
    border: 1px solid #eaeaea;
    padding: 15px;
    border-radius: 10px;
}
figure.image.mb-30.m-auto.text-center.border-radius-10 img{
    width: 100%;
}
.detail_others .col-lg-6 .row{
    row-gap: 30px;
}
.detail_others#ggj_09 article{
    height: 100%;
}
.header-top .row > div{
    display: flex;
    align-items: center;
}
.widget-header-1 h5 strong, .widget-header-2 h5 strong{
    font-weight: bold;
}
.download_our_apps{
    margin-bottom: 15px;
}
.download_our_apps .row > div:first-child{
    padding-right: 7.5px;
}
.download_our_apps .row > div:last-child{
    padding-left: 7.5px;
}
.download_our_apps .app_dwn{
    background-color: #fff;
    border: 1px solid var(--mutted-border-color);
    padding: 10px;
    border-radius: 8px;
    color: #000;
    transition: all .3s;
}
.download_our_apps .app_dwn:hover{
    border-color: var(--color-primary);
}
.app_dwn svg{
    width: 100%;
}
.app_dwn{
    display: flex;
}
.app_dwn > div:first-child{
    width: 50px;
}
.app_dwn > div:last-child{
    flex: 1;
    padding-left: 10px;
    font-size: 14px;
    align-items: center;
    display: flex;
    flex-wrap: wrap;
}
.app_dwn > div:last-child > div{
    line-height: 1.2;
}
.footer_apps{
    display: flex;
    gap: 15px;
    justify-content: flex-end;
}
.footer_apps img{
    height: 40px;
}
.footer-copy-right > div{
    row-gap: 15px;
}
.footer-copy-right > div > div:first-child{
    display: flex;
    align-items: center;
}
.main-header .main-nav ul li a{
    position: relative;
}
@media(min-width:993px){
    .main-header .main-nav ul li > a::after{
        content: '';
        position: absolute;
        left: 0;
        bottom: 0;
        width: 0;
        height: 3px;
        background-color: #fff;
        transition: all .3s;
    }
    .main-header .main-nav ul li:hover a::after{
        width: 100%;
    }
    .main-header .main-nav ul ul.sub-menu{
        padding-left: 0;
        padding-right: 0;
    }
    .main-header .main-nav ul ul.sub-menu > li > a{
        padding-left:15px;
        padding-right:15px;
    }
    .main-header .main-nav ul ul.sub-menu > li > a:hover{
        background-color: #f5f5f5;
    }
}




@media(max-width:1200px){
    .main-header .main-nav ul li a, .nav-topbar li a{
        font-size: 13px;
    }
    .main-menu > li{
        padding: 0 11px;
    }
}
@media(max-width:992px){
    #bww_c9{
        flex-direction: column-reverse;
    }
    .widget-area{
        margin-top: 0px;
    }
    .divine_row button{
        display: none;
    }
	.mainSwiper .swiper-slide .row{
		flex-direction: column-reverse;
		gap: 15px;
	}
	.mainSwiper .container.pr_nx_btns > div{
		display: none;
	}
	.mainSwiper .container{
		bottom: auto;
		top: 15px;
	}
	#mainPagination .swiper-pagination-bullet{
		width: 12px;
		height: 4px;
		border-radius: 2px;
	}
	#mainPagination .swiper-pagination-bullet-active{
		width: 24px;
	}
	#mainPagination{
		text-align: right;
	}
}
@media(max-width:768px){
    .media_topBar{
        text-align: center;
    }
    .play_divine{
        position: relative;
        left: 50%;
        transform: translateX(-50%);
    }
    .media_topBar > div:first-child img{
        width: 200px !important;
    }
    .archive-header h2{
        font-size: 36px;
    }
    .footer-copy-right > div > div:first-child,
    .footer_apps{
        justify-content: center;
    }
    #ggj_09{
        row-gap: 15px;
    }
    .media_topBar .breadcrumb_section{
        padding-top: 0;
    }
    .media_topBar h2{
        font-size: 24px;
    }
    .entry-header.entry-header-style-1.mb-30{
        margin-bottom: 15px !important;
    }
    .media_topBar .breadcrumb_overlay.mt-40.mb-10{
        margin-top: 20px !important;
    }
    .ghhr_04{
        display: none;
    }
    .video_filters label span{
        height: 35px;
        padding: 0 10px;
        font-size: 13px;
    }
    .video_filters label span i{
        width: 15px;
        height: 15px;
    }
    .video_filters{
        margin-bottom: 30px;
    }
    .video_filters .container{
        gap: 10px;
    }
    .service-details .download-links ul li .info {
        width: 100%;
        padding-top: 0px;
    }
    .loop-list-style-1 .post-thumb{
        margin-bottom: 15px;
    }
    .sidebar-widget.widget-about.mb-50.pt-30.pr-30.pb-30.pl-30.bg-white.border-radius-5.has-border.animated{
        margin-bottom: 0 !important;
    }
    .ka_inner .row{
        margin: 0 -7.5px;
    }
    .ka_inner .row > div{
        padding: 0 7.5px;
    }
    .column_text h3{
        font-size: 24px;
    }
    .key_aspects{
        padding: 40px 0;
    }
    .ka_inner a{
        font-size: 16px;
    }
    .ka_inner .row{
        row-gap: 15px;
    }
	#hero_slider img{
		border-radius: 15px;
	}
	a .logo{
		height: auto;
		width: 100%;
	}
	#hero_slider h3{
		font-size: 24px;
	}
	#hero_slider h5{
		font-size: 14px;
	}
}