html,
body {
    height: 100%;
    font-family: "Montserrat", sans-serif;
    -webkit-font-smoothing: antialiased;
    font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    color: #111111;
    font-weight: 400;
    font-family: "Montserrat", sans-serif;
}

h1 {
    font-size: 70px;
}

h2 {
    font-size: 36px;
}

h3 {
    font-size: 30px;
}

h4 {
    font-size: 24px;
}

h5 {
    font-size: 18px;
}

h6 {
    font-size: 16px;
}

p {
    font-size: 14px;
    font-family: "Montserrat", sans-serif;
    color: #c4c4c4;
    font-weight: 400;
    line-height: 24px;
    margin: 0 0 15px 0;
}

img {
    max-width: 100%;
}

input:focus,
select:focus,
button:focus,
textarea:focus {
    outline: none;
}

a:hover,
a:focus {
    text-decoration: none;
    outline: none;
    color: #fff;
}

ul,
ol {
    padding: 0;
    margin: 0;
}

/*---------------------
  Helper CSS
-----------------------*/

.section-title {
    margin-bottom: 35px;
}

.section-title h5 {
    color: #000;
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
    font-style: italic;
    padding-left: 16px;
    position: relative;
    letter-spacing: 1px;
}

.section-title h5:after {
    position: absolute;
    left: 0;
    top: 3px;
    height: 15px;
    width: 11px;
    background: #eed840;
    content: "";
    -webkit-transform: skewX(-15deg);
    -ms-transform: skewX(-15deg);
    transform: skewX(-15deg);
}

.set-bg {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top center;
}

.spad {
    padding-top: 100px;
    padding-bottom: 100px;
}

.spad-2 {
    padding-top: 50px;
    padding-bottom: 70px;
}

.text-white h1,
.text-white h2,
.text-white h3,
.text-white h4,
.text-white h5,
.text-white h6,
.text-white p,
.text-white span,
.text-white li,
.text-white a {
    color: #fff;
}

/* buttons */

.primary-btn {
    display: inline-block;
    font-size: 14px;
    padding: 17px 30px 16px;
    color: #ffffff;
    background: #c20000;
    line-height: normal;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 700;
}

.primary-btn.btn-normal {
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.primary-btn.btn-normal:hover {
    background: #c20000;
    border-color: #c20000;
}

/* Preloder */

#preloder {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 999999;
    background: #fff;
}

.loader {
    width: 40px;
    height: 40px;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -13px;
    margin-left: -13px;
    border-radius: 60px;
    animation: loader 0.8s linear infinite;
    -webkit-animation: loader 0.8s linear infinite;
}

@keyframes loader {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
        border: 4px solid #f44336;
        border-left-color: transparent;
    }
    50% {
        -webkit-transform: rotate(180deg);
        transform: rotate(180deg);
        border: 4px solid #673ab7;
        border-left-color: transparent;
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
        border: 4px solid #f44336;
        border-left-color: transparent;
    }
}

@-webkit-keyframes loader {
    0% {
        -webkit-transform: rotate(0deg);
        border: 4px solid #f44336;
        border-left-color: transparent;
    }
    50% {
        -webkit-transform: rotate(180deg);
        border: 4px solid #673ab7;
        border-left-color: transparent;
    }
    100% {
        -webkit-transform: rotate(360deg);
        border: 4px solid #f44336;
        border-left-color: transparent;
    }
}

/* FULLSCREEN SEARCH OVERLAY */
.search-model {
    display: none;
    position: fixed;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 99999;
}

/* CENTER CONTENT */
.search-model .d-flex {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* FORM WRAPPER */
.search-model-form {
    position: relative;
    width: 500px;
}

/* INPUT FIELD */
.search-model-form input {
    width: 100%;
    font-size: 24px;
    border: none;
    border-bottom: 2px solid #555;
    background: transparent;
    color: #fff;
    padding: 5px;
    outline: none;
}

/* PLACEHOLDER COLOR */
.search-model-form input::placeholder {
    color: #aaa;
}

/* RESULTS DROPDOWN */
.search-results-box {
    width: 100%;
    max-height: 250px;
    overflow-y: auto;
    position: absolute;
    top: 100%;
    left: 0;
    margin-top: 12px;
    padding: 8px 0;
    display: none;
    z-index: 999999;

    /* GLASS EFFECT */
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);

    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;

    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.search-results-box a {
    display: block;
    padding: 12px 15px;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transition: 0.3s;
}

.search-results-box a:hover {
    background: rgba(255, 255, 255, 0.08);
}

/* NO RESULT TEXT */
.search-results-box p {
    padding: 10px 15px;
    margin: 0;
    font-size: 14px;
    color: #666;
}

/* CLOSE BUTTON */
.search-close-switch {
    position: absolute;
    width: 50px;
    height: 50px;
    background: #eed840;
    color: #000;
    text-align: center;
    border-radius: 50%;
    font-size: 28px;
    line-height: 50px;
    top: 30px;
    right: 30px;
    cursor: pointer;
    transform: rotate(45deg);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* SCROLLBAR STYLING (OPTIONAL) */
.search-results-box::-webkit-scrollbar {
    width: 6px;
}

.search-results-box::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 10px;
}
.search-item {
    display: block;
    padding: 12px 15px;
    border-bottom: 1px solid #eee;
}

.search-title {
    color: #fff;
}

.search-date,
.search-author {
    color: #ccc;
}

/* META ROW */
.search-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    font-size: 12px;
}
.search-category {
    background: rgba(238, 216, 64, 0.2);
    border: 1px solid rgba(238, 216, 64, 0.4);
    color: #eed840;
    padding: 2px 10px;
    border-radius: 20px;
    font-size: 11px;
}
.search-results-box {
    animation: fadeIn 0.25s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ICON SPACING */
.search-meta i {
    margin-right: 4px;
}
/*---------------------
  Sign Up Form
-----------------------*/

.signup-section {
    background: #0d0909;
    position: fixed;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    overflow: auto;
    z-index: 99;
    display: none;
}

.signup-section .signup-close {
    height: 50px;
    width: 50px;
    border: 2px solid #e10000;
    border-radius: 50%;
    font-size: 18px;
    color: #e10000;
    line-height: 46px;
    text-align: center;
    position: absolute;
    right: 30px;
    top: 30px;
    cursor: pointer;
    z-index: 9;
}

.signup-text {
    text-align: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    min-height: 100%;
    padding: 80px 0;
}

.signup-text .signup-title {
    margin-bottom: 35px;
}

.signup-text .signup-title h2 {
    font-weight: 700;
    color: #ffffff;
    font-weight: 700;
    margin-bottom: 10px;
}

.signup-text .signup-form {
    width: 545px;
    margin: 0 auto;
    text-align: center;
}

.signup-text .signup-form .sf-input-list input {
    width: 100%;
    height: 46px;
    font-size: 14px;
    color: #c4c4c4;
    padding-left: 20px;
    -webkit-transform: skewX(-15deg);
    -ms-transform: skewX(-15deg);
    transform: skewX(-15deg);
    background: transparent;
    border: 1px solid #363636;
    margin-bottom: 20px;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.signup-text .signup-form .sf-input-list input::-webkit-input-placeholder {
    color: #c4c4c4;
    -webkit-transform: skewX(15deg);
    transform: skewX(15deg);
}

.signup-text .signup-form .sf-input-list input::-moz-placeholder {
    color: #c4c4c4;
    -webkit-transform: skewX(15deg);
    transform: skewX(15deg);
}

.signup-text .signup-form .sf-input-list input:-ms-input-placeholder {
    color: #c4c4c4;
    -webkit-transform: skewX(15deg);
    -ms-transform: skewX(15deg);
    transform: skewX(15deg);
}

.signup-text .signup-form .sf-input-list input::-ms-input-placeholder {
    color: #c4c4c4;
    -webkit-transform: skewX(15deg);
    -ms-transform: skewX(15deg);
    transform: skewX(15deg);
}

.signup-text .signup-form .sf-input-list input::placeholder {
    color: #c4c4c4;
    -webkit-transform: skewX(15deg);
    -ms-transform: skewX(15deg);
    transform: skewX(15deg);
}

.signup-text .signup-form .sf-input-list input:focus {
    border-color: #c20000;
}

.signup-text .signup-form .radio-check {
    margin-bottom: 30px;
}

.signup-text .signup-form .radio-check label {
    font-size: 14px;
    color: #c4c4c4;
    position: relative;
    cursor: pointer;
    padding-left: 25px;
}

.signup-text .signup-form .radio-check label input {
    position: absolute;
    visibility: hidden;
}

.signup-text .signup-form .radio-check label input:checked ~ .checkbox {
    background: #c4c4c4;
}

.signup-text .signup-form .radio-check label .checkbox {
    position: absolute;
    left: 0;
    top: 5px;
    height: 11px;
    width: 11px;
    border: 1px solid #c4c4c4;
    border-radius: 2px;
}

.signup-text .signup-form button {
    font-size: 14px;
    color: #ffffff;
    font-weight: 600;
    text-transform: uppercase;
    background: #c20000;
    border: none;
    display: inline-block;
    padding: 12px 32px;
    -webkit-transform: skewX(-15deg);
    -ms-transform: skewX(-15deg);
    transform: skewX(-15deg);
}

.signup-text .signup-form button span {
    display: inline-block;
    -webkit-transform: skewX(15deg);
    -ms-transform: skewX(15deg);
    transform: skewX(15deg);
}

/*---------------------
  Humberger Menu
-----------------------*/

.humberger-menu-overlay {
    position: fixed;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background: rgba(13, 9, 9, 0.8);
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    z-index: 999;
    visibility: hidden;
}

.humberger-menu-overlay.active {
    visibility: visible;
}

.humberger-menu-wrapper {
    background: #fff;
    width: 410px;
    height: 100%;
    overflow-y: auto;
    position: fixed;
    left: -410px;
    top: 0;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    padding: 50px;
}

.humberger-menu-wrapper.show-humberger-menu {
    left: 0;
    opacity: 1;
    visibility: visible;
}

.humberger-menu-wrapper .hw-logo {
    margin-bottom: 45px;
    text-align: center;
}

.humberger-menu-wrapper .hw-logo a {
    display: inline-block;
    width: 200px;
}

.humberger-menu-wrapper .hw-menu {
    display: block;
}

.humberger-menu-wrapper .hw-menu ul li {
    list-style: none;
}

.humberger-menu-wrapper .hw-menu ul li .dropdown {
    display: none;
}

.humberger-menu-wrapper .hw-menu ul li .dropdown li a {
    color: #c4c4c4;
    font-size: 14px;
    padding-left: 20px;
    border: none;
}

.humberger-menu-wrapper .hw-menu ul li:hover > a {
    color: #eed840;
}

.humberger-menu-wrapper .hw-menu ul li a {
    font-size: 16px;
    color: #000;
    text-transform: uppercase;
    font-family: "Cinzel", serif;
    padding: 15px 0;
    border-bottom: 1px solid #151515;
    display: block;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.humberger-menu-wrapper .hw-menu ul li a i {
    font-size: 18px;
    margin-left: 5px;
}

.humberger-menu-wrapper .hw-menu ul li:last-child a {
    border-bottom: none;
}

.humberger-menu-wrapper .slicknav_menu {
    background: transparent;
    padding: 0;
    margin-bottom: 35px;
}

.humberger-menu-wrapper .slicknav_nav ul {
    margin: 0;
}

.humberger-menu-wrapper .slicknav_nav .slicknav_arrow {
    display: none;
}

.humberger-menu-wrapper .slicknav_nav .slicknav_row,
.humberger-menu-wrapper .slicknav_nav a {
    padding: 12px 0;
    margin: 0;
    text-transform: uppercase;
    font-size: 16px;
    color: #888;
}

.humberger-menu-wrapper .slicknav_nav .slicknav_row i,
.humberger-menu-wrapper .slicknav_nav a i {
    font-size: 18px;
    margin-left: 5px;
}

.humberger-menu-wrapper .slicknav_nav li {
    border-bottom: 1px solid #252525;
}

.humberger-menu-wrapper .slicknav_nav li:last-child {
    border-bottom: none;
}

.humberger-menu-wrapper .slicknav_nav li .dropdown {
    border-top: 1px solid #252525;
}

.humberger-menu-wrapper .slicknav_nav li .dropdown li {
    border-bottom: none;
}

.humberger-menu-wrapper .slicknav_nav li .dropdown li a {
    padding-left: 20px;
    font-size: 14px;
    color: #c4c4c4;
}

.humberger-menu-wrapper .slicknav_nav li .dropdown li a:hover {
    color: #eed840;
}

.humberger-menu-wrapper .slicknav_nav .slicknav_row:hover {
    border-radius: 0;
    background: transparent;
    color: #eed840;
}

.humberger-menu-wrapper .slicknav_nav a:hover {
    border-radius: 0;
    background: transparent;
    color: #eed840;
}

.humberger-menu-wrapper .slicknav_btn {
    display: none;
}

.humberger-menu-wrapper .slicknav_nav {
    display: block !important;
}

.humberger-menu-wrapper .hw-copyright {
    font-size: 15px;
    color: #c4c4c4;
    line-height: 25px;
    margin-bottom: 24px;
}

.humberger-menu-wrapper .hw-social {
    margin-left: 7px;
    margin-bottom: 55px;
}

.humberger-menu-wrapper .hw-social a {
    display: inline-block;
    font-size: 14px;
    color: #ffffff;
    background: #252525;
    height: 46px;
    width: 46px;
    line-height: 46px;
    text-align: center;
    -webkit-transform: skewX(-15deg);
    -ms-transform: skewX(-15deg);
    transform: skewX(-15deg);
    margin-right: 4px;
}

.humberger-menu-wrapper .hw-social a i {
    display: inline-block;
    -webkit-transform: skewX(15deg);
    -ms-transform: skewX(15deg);
    transform: skewX(15deg);
}

.humberger-menu-wrapper .hw-insta-media {
    overflow: hidden;
}

.humberger-menu-wrapper .hw-insta-media .section-title {
    margin-bottom: 25px;
}

.humberger-menu-wrapper .hw-insta-media .insta-pic {
    overflow: hidden;
    margin-right: -10px;
}

.humberger-menu-wrapper .hw-insta-media .insta-pic img {
    width: calc(50% - 10px);
    height: 100px;
    float: left;
    margin-bottom: 10px;
    margin-right: 10px;
}

.mobile-menu .dropdown {
    display: none;
    padding-left: 15px;
}

.mobile-menu li.active > a i {
    transform: rotate(180deg);

    transition: 0.3s;
}
/*---------------------
  Header
-----------------------*/

.ht-options {
    background: #9ec090;
    padding: 13px 0;
    /* border-bottom: 1px solid black; */
}

.ht-options .ht-widget ul li {
    font-size: 13px;
    color: #454444;
    list-style: none;
    display: inline-block;
    margin-right: 30px;
    position: relative;
}

.ht-options .ht-widget ul li.signup-open {
    cursor: pointer;
}

.ht-options .ht-widget ul li i {
    font-size: 14px;
    color: #000000;
    margin-right: 5px;
}

.ht-options .ht-widget ul li span {
    font-size: 14px;
    color: #4f4d4d;
}

.ht-options .ht-widget ul li span sup {
    font-size: 12px;
    text-transform: uppercase;
}

.ht-options .ht-widget ul li:after {
    position: absolute;
    right: -18px;
    top: 2px;
    content: "/";
    color: #00000063;
}

.ht-options .ht-widget ul li:last-child {
    margin-right: 0;
}

.ht-options .ht-widget ul li:last-child:after {
    display: none;
}

.ht-options .ht-social {
    text-align: right;
}

.ht-options .ht-social a {
    font-size: 14px;
    color: #000;
    display: inline-block;
    margin-left: 9px;
}

.logo {
    background: #fff;
    padding: 20px 0;
}

.logo a {
    display: inline-block;
    width: 300px;
}
.nav-options {
    background: #181818;
    padding: 10px 0;
    transition: all 0.3s ease;
}
.nav-options.sticky {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
}
.nav-options.sticky + * {
    margin-top: 70px; /* adjust based on nav height */
}
.header-section {
    overflow: visible !important;
}

.nav-options.humberger-change {
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.nav-options.humberger-change .humberger-menu {
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.nav-options.humberger-change .nav-search {
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.nav-options .humberger-menu {
    font-size: 15px;
    color: #ffffff;
    background: #e29d7f;
    float: left;
    padding: 9px 20px;
    -webkit-transform: skewX(-15deg);
    -ms-transform: skewX(-15deg);
    transform: skewX(-15deg);
    cursor: pointer;
    display: inline-block;
}

.nav-options .humberger-menu i {
    -webkit-transform: skewX(15deg);
    -ms-transform: skewX(15deg);
    transform: skewX(15deg);
}

.nav-options .nav-menu {
    text-align: center;
}

.nav-options .nav-menu ul li {
    list-style: none;
    display: inline-block;
    margin-right: 4px;
    position: relative;
}

.nav-options .nav-menu ul li.mega-menu {
    position: static;
}

.nav-options .nav-menu ul li .megamenu-wrapper {
    position: absolute;
    left: 50%;
    top: 295px;
    width: 1170px;
    background: #fff;
    z-index: 99;
    -webkit-transform: translateX(-585px);
    -ms-transform: translateX(-585px);
    transform: translateX(-585px);
    padding: 24px 30px 24px 30px;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

.nav-options .nav-menu ul li .megamenu-wrapper .mw-nav {
    text-align: left;
    position: relative;
    padding-left: 18px;
    margin-bottom: 24px;
}

.nav-options .nav-menu ul li .megamenu-wrapper .mw-nav::before {
    position: absolute;
    left: 0;
    top: 6px;
    height: 13px;
    width: 7px;
    background: #c20000;
    content: "";
    -webkit-transform: skewX(-15deg);
    -ms-transform: skewX(-15deg);
    transform: skewX(-15deg);
}

.nav-options .nav-menu ul li .megamenu-wrapper .mw-nav li {
    margin-right: 40px;
    position: relative;
}

.nav-options .nav-menu ul li .megamenu-wrapper .mw-nav li:last-child:after {
    display: none;
}

.nav-options .nav-menu ul li .megamenu-wrapper .mw-nav li:after {
    position: absolute;
    right: -25px;
    top: 2px;
    content: "/";
    color: #444444;
}

.nav-options .nav-menu ul li .megamenu-wrapper .mw-nav li a {
    padding: 0;
    background: transparent;
    font-size: 14px;
    font-weight: 500;
    font-style: normal;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.nav-options .nav-menu ul li .megamenu-wrapper .mw-nav li a:hover {
    color: #eed840;
    text-shadow: none;
}

.nav-options .nav-menu ul li .megamenu-wrapper .mw-post {
    overflow: hidden;
    margin-right: -30px;
}

.nav-options .nav-menu ul li .megamenu-wrapper .mw-post .mw-post-item {
    width: calc(20% - 30px);
    float: left;
    margin-right: 30px;
}

.nav-options .nav-menu ul li .megamenu-wrapper .mw-post .mw-post-item .mw-text {
    text-align: left;
    padding-top: 15px;
}

.nav-options
    .nav-menu
    ul
    li
    .megamenu-wrapper
    .mw-post
    .mw-post-item
    .mw-text
    h6 {
    -webkit-transform: skewX(15deg);
    -ms-transform: skewX(15deg);
    transform: skewX(15deg);
}

.nav-options
    .nav-menu
    ul
    li
    .megamenu-wrapper
    .mw-post
    .mw-post-item
    .mw-text
    h6
    a {
    font-size: 13px;
    font-weight: 70;
    line-height: 20px;
    color: #000;
    text-transform: uppercase;
    background: transparent;
    padding: 0;
    font-style: normal;
}

.nav-options
    .nav-menu
    ul
    li
    .megamenu-wrapper
    .mw-post
    .mw-post-item
    .mw-text
    ul
    li {
    list-style: none;
    font-size: 12px;
    color: #666666;
    font-style: italic;
    display: inline-block;
    position: relative;
    margin-right: 28px;
}

.nav-options
    .nav-menu
    ul
    li
    .megamenu-wrapper
    .mw-post
    .mw-post-item
    .mw-text
    ul
    li
    i {
    margin-right: 4px;
}

.nav-options
    .nav-menu
    ul
    li
    .megamenu-wrapper
    .mw-post
    .mw-post-item
    .mw-text
    ul
    li:last-child {
    margin-right: 0;
}

.nav-options
    .nav-menu
    ul
    li
    .megamenu-wrapper
    .mw-post
    .mw-post-item
    .mw-text
    ul
    li:last-child:after {
    display: none;
}

.nav-options
    .nav-menu
    ul
    li
    .megamenu-wrapper
    .mw-post
    .mw-post-item
    .mw-text
    ul
    li:after {
    position: absolute;
    right: -18px;
    top: 0;
    content: "/";
    color: #666666;
}

.nav-options .nav-menu ul li .dropdown {
    position: absolute;
    left: -7px;
    top: 62px;
    width: 180px;
    background: #fff;
    z-index: 99;
    text-align: left;
    padding: 13px 0 20px;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.nav-options .nav-menu ul li .dropdown li {
    margin-right: 0;
    display: block;
}

.nav-options .nav-menu ul li .dropdown li a {
    display: block;
    text-transform: none;
    padding: 6px 0 6px 30px;
    font-weight: 400;
    -webkit-transform: skewX(0);
    -ms-transform: skewX(0);
    transform: skewX(0);
    background: transparent;
}
.nav-options .nav-menu ul li .dropdown li:hover a {
    color: #fbdb02;
}

.nav-options .nav-menu ul li .dropdown li a:after {
    display: none;
}

.nav-options .nav-menu ul li:last-child {
    margin-right: 0;
}

.nav-options .nav-menu ul li.active a {
    background: #fbc502;
}

.nav-options .nav-menu ul li:hover > a {
    background: #fbdb02;
    text-shadow: 1px 0px 0px #ffffff;
}

.nav-options .nav-menu ul li:hover .megamenu-wrapper {
    opacity: 1;
    visibility: visible;
    top: 275px;
}

.nav-options .nav-menu ul li:hover .dropdown {
    opacity: 1;
    visibility: visible;
}

.nav-options .nav-menu ul li a {
    font-size: 15px;
    color: #000;
    font-family: "Montserrat", sans-serif;
    text-transform: uppercase;
    padding: 11px 13px 8px 17px;
    display: inline-block;
    background: #fff;
    -webkit-transform: skewX(-15deg);
    -ms-transform: skewX(-15deg);
    transform: skewX(-15deg);
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.nav-options .nav-menu ul li a span {
    -webkit-transform: skewX(15deg);
    -ms-transform: skewX(15deg);
    transform: skewX(15deg);
    display: inline-block;
}

.nav-options .nav-menu ul li a span i {
    font-size: 14px;
    margin-left: 3px;
}

.nav-options .nav-search {
    font-size: 15px;
    color: #ffffff;
    -webkit-transform: skewX(-15deg);
    -ms-transform: skewX(-15deg);
    transform: skewX(-15deg);
    background: #e29d7f;
    padding: 9px 20px;
    display: inline-block;
    float: right;
    cursor: pointer;
}

.nav-options .nav-search i {
    -webkit-transform: skewX(15deg);
    -ms-transform: skewX(15deg);
    transform: skewX(15deg);
}
/*---------------------
  Hero Clean Version
-----------------------*/

.hero-section {
    position: relative;
}

/* SLIDER */

.hero-slider {
    position: relative;
}

/* SLIDE */

.hs-item {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    overflow: hidden;
}

/* IMAGE */

.hero-img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    top: 0;
    left: 0;
    z-index: 1;
}

/* OVERLAY */

.hs-item::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    top: 0;
    left: 0;
    z-index: 1;
}

/* CONTENT WRAPPER */

.hs-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
}

/* TEXT */

.hs-text {
    max-width: 600px;
}

/* LABEL */

.hs-text .label {
    display: inline-block;
    padding: 4px 7px 4px 12px;
    background: #eed74067;
    transform: skewX(-15deg);
}

.hs-text .label span {
    transform: skewX(15deg);
    display: inline-block;
    font-size: 12px;
    color: #fff;
    font-weight: 500;
    font-style: italic;
    text-transform: uppercase;
}

/* TITLE */

.hs-text h3 {
    color: #fff;
    line-height: 42px;
    text-transform: uppercase;
    font-weight: 700;
    margin: 18px 0 20px;
}

/* META */

.hs-text .ht-meta img {
    height: 42px;
    width: 42px;
    border-radius: 50%;
    margin-right: 5px;
}

.hs-text .ht-meta ul {
    display: inline-block;
}

.hs-text .ht-meta ul li {
    list-style: none;
    font-size: 14px;
    color: #c4c4c4;
    font-style: italic;
    display: inline-block;
    margin-right: 20px;
}

/* POSITION CLASSES */

/* LEFT */
.text-left-center .hs-content {
    justify-content: flex-start;
    align-items: center;
    text-align: left;
}

/* RIGHT */
.text-right-center .hs-content {
    justify-content: flex-end;
    align-items: center;
    text-align: right;
}

/* CENTER */
.text-center-center .hs-content {
    justify-content: center;
    align-items: center;
    text-align: center;
}

/* BOTTOM */
.text-bottom-center .hs-content {
    justify-content: center;
    align-items: flex-end;
    padding-bottom: 80px;
    text-align: center;
}

/* DOTS */

.hero-slider.owl-carousel .owl-dots {
    position: absolute;
    bottom: 40px;
    width: 100%;
    text-align: center;
}

.hero-slider.owl-carousel .owl-dots button {
    height: 10px;
    width: 10px;
    border-radius: 50%;
    background: #676868;
    margin: 0 5px;
}

.hero-slider.owl-carousel .owl-dots button.active {
    background: #eed840;
}

/*-------------------------
  Latest Preview Section
-------------------------*/
.latest-preview-section {
    padding: 60px 0;
    background: #fff;
}
.lp-slider .owl-nav {
    display: block !important;
}
.lp-item {
    padding: 10px;
}

.lp-pic {
    height: 320px;
    overflow: hidden;
    border-radius: 10px;
}

.lp-pic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.3s ease;
}

.lp-item:hover img {
    transform: scale(1.05);
}

.lp-text {
    text-align: center;
    margin-top: 15px;
}

.lp-text h6 a {
    color: #000;
    font-weight: 600;
    text-decoration: none;
}

/* Optional navigation styling */
/* Position arrows inside slider */
.lp-slider {
    position: relative;
}

/* Common arrow style */
.lp-slider .owl-nav button {
    position: absolute;
    top: 40%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: #ffffff !important;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    border: none;
    transition: 0.3s;
}

/* Left arrow */
.lp-slider .owl-nav .owl-prev {
    left: -10px;
}

/* Right arrow */
.lp-slider .owl-nav .owl-next {
    right: -10px;
}

/* Icon inside */
.lp-slider .owl-nav span {
    font-size: 18px;
    color: #000;
}

/* Hover effect */
.lp-slider .owl-nav button:hover {
    background: #000 !important;
}

.lp-slider .owl-nav button:hover span {
    color: #fff;
}
/* =========================
   UPDATE NEWS SECTION
========================= */

.update-news-section {
    padding: 60px 0;
    background: #ffffff;
}

/* =====================
   SIDEBAR ABOUT (SAFE)
===================== */

.sidebar-about {
    background: #000 !important;
    padding: 20px !important;
    text-align: center;
}

/* TITLE */
.sidebar-about .about-title {
    color: #fff;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 30px;
}

/* CARD */
.sidebar-about .about-card {
    max-width: 350px;
    margin: 0 auto;
}

/* IMAGE */
.sidebar-about .about-image {
    position: relative;
    overflow: hidden;
    border-radius: 6px;
}

.sidebar-about .about-image img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: 0.4s;
}

/* OVERLAY */
.sidebar-about .about-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
}

/* HOVER */
.sidebar-about .about-image:hover img {
    transform: scale(1.05);
}

/* CONTENT */
.sidebar-about .about-content {
    margin-top: 25px;
}

.sidebar-about .about-content p {
    color: #ddd;
    font-size: 14px;
    line-height: 1.7;
}

/* BUTTON */
.sidebar-about .about-btn {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 25px;
    border: 1px solid #fff;
    color: #fff;
    font-size: 14px;
    text-decoration: none;
    letter-spacing: 1px;
    transition: 0.3s;
}

.sidebar-about .about-btn span {
    margin-left: 8px;
}

.sidebar-about .about-btn:hover {
    background: #fff;
    color: #000;
}

/* =========================
   SECTION TITLE
========================= */

.section-title {
    margin-bottom: 20px;
}

.section-title h5 {
    margin: 0;
}

.section-title h5 span {
    font-size: 16px;
    font-weight: 700;
    color: #c20000;
    border-bottom: 2px solid #c20000;
    padding-bottom: 5px;
    letter-spacing: 1px;
}

/* =========================
   BIG POST
========================= */

.un-big-item {
    position: relative;
    overflow: hidden;
    border-radius: 6px;
    margin-bottom: 25px;
}

.un-big-item img {
    width: 100%;
    height: 470px;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
    position: relative;
    z-index: 0;
}

/* HOVER ZOOM */
/* .un-big-item:hover img {
    transform: scale(1.05);
} */

/* DARK OVERLAY */
.un-big-item::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1; /* ✅ ADD THIS */
    pointer-events: none; /* optional but good */
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.95) 0%,
        rgba(0, 0, 0, 0.75) 40%,
        rgba(0, 0, 0, 0.2) 70%,
        transparent 100%
    );
}

/* TEXT OVER IMAGE */
.ub-text {
    position: absolute;
    bottom: 25px;
    left: 25px;
    right: 25px;
    z-index: 2;
}

/* TITLE FIX */
.ub-text h5 {
    margin: 0;
}

.ub-text h5 a {
    color: #ffffff !important;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.4;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.9);
    display: block;
    text-decoration: none;
}

/* META */
.ub-text ul {
    margin-top: 10px;
    padding: 0;
}

.ub-text ul li {
    list-style: none;
    display: inline-block;
    font-size: 12px;
    color: #eeeeee;
    margin-right: 15px;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.8);
}

.ub-text ul li i {
    margin-right: 5px;
}

.ub-text ul li span {
    color: #eed840;
}

/* =========================
   SMALL POSTS
========================= */

.un-item {
    margin-bottom: 20px;
}

.un_pic img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 5px;
    transition: transform 0.3s ease;
}

.un-item:hover .un_pic img {
    transform: scale(1.05);
}

.un_text {
    padding-top: 10px;
}

.un_text h6 {
    margin-bottom: 5px;
}

.un_text h6 a {
    font-size: 15px;
    font-weight: 600;
    color: #111;
    line-height: 1.4;
    text-decoration: none;
}

.un_text h6 a:hover {
    color: #c20000;
}

/* META SMALL */
.un_text ul {
    padding: 0;
}

.un_text ul li {
    list-style: none;
    display: inline-block;
    font-size: 12px;
    color: #888;
    margin-right: 10px;
}

.un_text ul li i {
    margin-right: 4px;
}

/* =========================
   SIDEBAR
========================= */

.sidebar-option {
    padding-left: 20px;
}

/* =========================
   TRENDING
========================= */

.trending-item {
    display: flex;
    gap: 12px;
    margin-bottom: 18px;
}

.ti-pic img {
    width: 90px;
    height: 70px;
    object-fit: cover;
    border-radius: 4px;
}

.ti-text h6 {
    margin-bottom: 5px;
}

.ti-text h6 a {
    font-size: 14px;
    font-weight: 600;
    color: #111;
    line-height: 1.4;
    text-decoration: none;
}

.ti-text h6 a:hover {
    color: #c20000;
}

/* META TRENDING */
.ti-text ul {
    padding: 0;
}

.ti-text ul li {
    list-style: none;
    display: inline-block;
    font-size: 12px;
    color: #888;
    margin-right: 10px;
}

.ti-text ul li i {
    margin-right: 4px;
}

/* =========================
   ADVERTISEMENT
========================= */
.sidebar-ad {
    margin-top: 30px;
}

/* container for each ad */
.ad-box {
    width: 100%;
    max-height: 350px;
    margin-bottom: 12px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #f5f5f5; /* optional (prevents ugly gaps) */
    border-radius: 15px;
    overflow: hidden;
}

/* image */
.ad-box img {
    width: 100%;
    height: 100%;
    object-fit: contain; /* ✅ NO CROPPING */
    display: block;
}
@media (max-width: 768px) {
    .ad-box {
        max-height: 700px;
    }
}
@media (max-width: 480px) {
    .ad-box {
        max-height: 400px;
    }
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 991px) {
    .sidebar-option {
        padding-left: 0;
        margin-top: 40px;
    }
}

@media (max-width: 576px) {
    .un-big-item img {
        height: 280px;
    }

    .ub-text h5 a {
        font-size: 18px;
    }

    .un_pic img {
        height: 175px;
    }
    .un_pic img {
        object-position: top;
    }
}
/* =========================
   MOM ORGANIZATION SECTION
========================= */

.mom-org-section {
    padding: 70px 0;
    background: #fff;
}

/* =========================
   CARD (LIGHT STYLE)
========================= */

.mom-card {
    display: flex;
    align-items: center;
    gap: 18px;
    background: #fff;
    border: 1px solid #e5e5e5;
    padding: 18px 20px;
    margin-bottom: 25px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

/* HOVER */
.mom-card:hover {
    border-color: #eed840;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    transform: translateY(-3px);
}

.mom-card:hover img {
    background: #eed840;
    border: 1px solid #eed840;
}

/* =========================
   LOGO
========================= */

.mom-logo {
    flex-shrink: 0;
}

.mom-logo img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    border-radius: 50%;
    background: #fafafa;
    padding: 5px;
    border: 1px solid #eee;
}

/* =========================
   TEXT
========================= */

.mom-info h4 {
    font-size: 17px;
    color: #111;
    margin-bottom: 4px;
    font-weight: 600;
}

.mom-info p {
    font-size: 13px;
    color: #777;
    margin: 0;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 768px) {
    .mom-card {
        padding: 15px;
    }

    .mom-logo img {
        width: 50px;
        height: 50px;
    }

    .mom-info h4 {
        font-size: 15px;
    }
}
/* =========================
   INSTAGRAM OWL
========================= */

.insta-section {
    background: #fff;
    padding: 40px 0;
}

.insta-section .container-fluid {
    padding: 0;
}

/* TITLE */
.insta-header {
    text-align: center;
    margin-bottom: 20px;
}

.insta-header h5 {
    font-size: 16px;
    letter-spacing: 2px;
    font-weight: 700;
    color: #111;
}

/* ITEM */
.insta-item {
    width: 100%;
    height: 220px; /* 🔥 FIXED HEIGHT */
    overflow: hidden;
}

/* IMAGE */
.insta-item img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* 🔥 PERFECT CROP */
    display: block;
}

/* REMOVE GAP ISSUE */
.owl-carousel .owl-stage {
    display: flex;
}

.owl-carousel .owl-item {
    margin: 0;
}

/* NAV BUTTONS */
.insta-carousel .owl-nav button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #fff;
    border: 1px solid #ddd;
    width: 40px;
    height: 40px;
}

.insta-carousel .owl-nav .owl-prev {
    left: 10px;
}

.insta-carousel .owl-nav .owl-next {
    right: 10px;
}

.insta-carousel .owl-nav button:hover {
    background: #111;
    color: #fff;
}

/* =========================
   NEWSLETTER SECTION
========================= */

.newsletter-section {
    background: url("../../uploads/mommyimage.jpg") no-repeat center;
    background-size: cover;
    position: relative;
    background-position: top;
}

/* BLACK GRADIENT FROM BOTTOM */
.newsletter-overlay {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.1));
    padding: 100px 0;
}

/* CONTENT */
.newsletter-content {
    text-align: center;
    max-width: 900px;
    margin: auto;
}

/* TITLE */
.newsletter-content h2 {
    font-size: 36px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
}

/* TEXT */
.newsletter-content p {
    font-size: 15px;
    color: #fff;
    margin-bottom: 40px;
}

/* FORM */
.newsletter-form {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* INPUT */
.newsletter-form input {
    width: 300px;
    padding: 14px 15px;
    border: 1.3px solid #eed840;
    background: transparent; /* 🔥 WHITE INPUT */
    color: #eed840;
    outline: none;
}
.newsletter-form input::placeholder {
    color: #eed840;
}

/* BUTTON */
.newsletter-form button {
    padding: 14px 25px;
    border: 1px solid #eed840;
    background: #eed840;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

/* HOVER */
.newsletter-form button:hover {
    background: #000;
    color: #fff;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .newsletter-form input {
        width: 100%;
    }
}

/*---------------------
  Footer
-----------------------*/

.footer-section {
    background: #080808;
    padding-top: 60px;
}

.footer-about {
    margin-bottom: 30px;
}

.footer-about .fa-logo {
    margin-bottom: 22px;
}
.footer-about .fa-logo img {
    background-color: white;
    border-radius: 15px;
    padding: 10px;
    /* border: 2px solid #eed840; */
}

.footer-about .fa-logo a {
    display: inline-block;
}

.footer-about p {
    margin-bottom: 30px;
}

.footer-about .fa-social a {
    display: inline-block;
    font-size: 18px;
    color: #ffffff;
    background: #252525;
    height: 46px;
    width: 46px;
    line-height: 46px;
    text-align: center;
    -webkit-transform: skewX(-15deg);
    -ms-transform: skewX(-15deg);
    transform: skewX(-15deg);
    margin-right: 4px;
}
.footer-about .fa-social a:hover i {
    color: #eed840;
}

.footer-about .fa-social a i {
    display: inline-block;
    -webkit-transform: skewX(15deg);
    -ms-transform: skewX(15deg);
    transform: skewX(15deg);
}

.editor-choice .ec-item {
    margin-bottom: 25px;
    overflow: hidden;
}

.editor-choice .ec-item .ec-pic {
    float: left;
    margin-right: 25px;
}

.editor-choice .ec-item .ec-text {
    overflow: hidden;
    border-bottom: 1px solid wheat;
}

.editor-choice .ec-item .ec-text h6 {
    margin-bottom: 4px;
}

.editor-choice .ec-item .ec-text h6 a {
    font-size: 14px;
    color: #c4c4c4;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 20px;
}

.editor-choice .ec-item .ec-text ul li {
    list-style: none;
    font-size: 12px;
    color: #666666;
    font-style: italic;
    display: inline-block;
    position: relative;
    margin-right: 28px;
}

.editor-choice .ec-item .ec-text ul li i {
    margin-right: 4px;
}

.editor-choice .ec-item .ec-text ul li:last-child {
    margin-right: 0;
}

.editor-choice .ec-item .ec-text ul li:last-child:after {
    display: none;
}

.editor-choice .ec-item .ec-text ul li:after {
    position: absolute;
    right: -18px;
    top: 0;
    content: "/";
    color: #666666;
}

span.highlight {
    color: #eed840;
}
.tags-cloud .tag-list a {
    display: inline-block;
    font-size: 13px;
    color: #c4c4c4;
    padding: 6px 12px 5px;
    border: 1px solid #363636;
    -webkit-transform: skewX(-15deg);
    -ms-transform: skewX(-15deg);
    transform: skewX(-15deg);
    margin-right: 9px;
    margin-bottom: 15px;
}

.tags-cloud .tag-list a span {
    display: inline-block;
    -webkit-transform: skewX(15deg);
    -ms-transform: skewX(15deg);
    transform: skewX(15deg);
}

.tags-cloud .tag-list a:hover {
    border-color: #eed740ac;
}

.copyright-area {
    border-top: 1px solid #252525;
    padding: 24px 0 18px;
    margin-top: 20px;
}

.copyright-area .ca-text {
    font-size: 14px;
    color: #c4c4c4;
}

.copyright-area .ca-text i {
    color: #c20000;
}

.copyright-area .ca-text a {
    color: #c4c4c4;
}

.copyright-area .ca-text a:hover {
    color: #eed840;
}

.copyright-area .ca-links {
    text-align: right;
}

.copyright-area .ca-links a {
    font-size: 14px;
    color: #c4c4c4;
    display: inline-block;
    margin-right: 25px;
}

.copyright-area .ca-links a:last-child {
    margin-right: 0;
}

/* ----------------------------------- Other Pages Styles ----------------------------------- */

/*---------------------
  Breadcrumb
-----------------------*/
.breadcrumb-section {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    /* background-image: url('../'); */
}

/* DARK GRADIENT OVERLAY */
.breadcrumb-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.95) 0%,
        rgba(0, 0, 0, 0.75) 40%,
        rgba(0, 0, 0, 0.2) 70%,
        transparent 100%
    );

    z-index: 1;
}

/* KEEP TEXT ABOVE OVERLAY */
.breadcrumb-section .container {
    position: relative;
    z-index: 2;
}
.breadcrumb-text h3 {
    color: #ffffff;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.breadcrumb-text h3 span {
    color: #eed840;
}

.breadcrumb-text .bt-option a {
    font-size: 15px;
    color: #eaeaea;
    display: inline-block;
    margin-right: 10px;
    position: relative;
}

.breadcrumb-text .bt-option a:after {
    position: absolute;
    right: -10px;
    top: 1px;
    content: "/";
    color: #666666;
}

.breadcrumb-text .bt-option span {
    font-size: 15px;
    color: #eed840;
    display: inline-block;
}

/*---------------------
  Categories Grid
-----------------------*/

.categories-grid-section {
    padding: 70px 0;
}

.cg-item {
    margin-bottom: 35px;
}

.cg-item .cg-pic {
    position: relative;
    height: 257px;
}

.cg-item .cg-pic .label {
    display: inline-block;
    padding: 2px 12px 2px 12px;
    background: #eed74067;
    -webkit-transform: skewX(-15deg);
    -ms-transform: skewX(-15deg);
    transform: skewX(-15deg);
    position: absolute;
    left: 15px;
    bottom: 15px;
}

.cg-item .cg-pic .label span {
    -webkit-transform: skewX(15deg);
    -ms-transform: skewX(15deg);
    transform: skewX(15deg);
    display: inline-block;
    font-size: 12px;
    color: #ffffff;
    font-weight: 500;
    font-style: italic;
    text-transform: uppercase;
}

.cg-item .cg-text {
    padding-top: 25px;
}

.cg-item .cg-text h5 {
    margin-bottom: 8px;
}

.cg-item .cg-text h5 a {
    font-size: 20px;
    color: #000;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 28px;
}

.cg-item .cg-text ul {
    margin-bottom: 14px;
}

.cg-item .cg-text ul li {
    list-style: none;
    font-size: 12px;
    color: #666666;
    font-style: italic;
    display: inline-block;
    position: relative;
    margin-right: 28px;
}

.cg-item .cg-text ul li i {
    margin-right: 4px;
}

.cg-item .cg-text ul li span {
    color: #eed840;
}

.cg-item .cg-text ul li:last-child {
    margin-right: 0;
}

.cg-item .cg-text ul li:last-child:after {
    display: none;
}

.cg-item .cg-text ul li:after {
    position: absolute;
    right: -18px;
    top: 0;
    content: "/";
    color: #666666;
}

.cg-item .cg-text p {
    margin-bottom: 0;
}
.cg-pic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/*---------------------
  Categories List
-----------------------*/

.categories-list-section {
    background: #0d0d0d;
    padding: 70px 0;
}

.cl-item {
    overflow: hidden;
    margin-bottom: 40px;
}

.cl-item .cl-pic {
    float: left;
    margin-right: 30px;
    max-width: 370px;
}

.cl-item .cl-text {
    overflow: hidden;
}

.cl-item .cl-text .label {
    display: inline-block;
    padding: 2px 12px 2px 12px;
    background: rgba(194, 0, 0, 0.3);
    -webkit-transform: skewX(-15deg);
    -ms-transform: skewX(-15deg);
    transform: skewX(-15deg);
    margin-left: 4px;
}

.cl-item .cl-text .label span {
    -webkit-transform: skewX(15deg);
    -ms-transform: skewX(15deg);
    transform: skewX(15deg);
    display: inline-block;
    font-size: 12px;
    color: #ffffff;
    font-weight: 500;
    font-style: italic;
    text-transform: uppercase;
}

.cl-item .cl-text h5 {
    margin-bottom: 8px;
    margin-top: 14px;
}

.cl-item .cl-text h5 a {
    font-size: 20px;
    color: #ffffff;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 28px;
}

.cl-item .cl-text ul {
    margin-bottom: 14px;
}

.cl-item .cl-text ul li {
    list-style: none;
    font-size: 12px;
    color: #666666;
    font-style: italic;
    display: inline-block;
    position: relative;
    margin-right: 28px;
}

.cl-item .cl-text ul li i {
    margin-right: 4px;
}

.cl-item .cl-text ul li span {
    color: #c20000;
}

.cl-item .cl-text ul li:last-child {
    margin-right: 0;
}

.cl-item .cl-text ul li:last-child:after {
    display: none;
}

.cl-item .cl-text ul li:after {
    position: absolute;
    right: -18px;
    top: 0;
    content: "/";
    color: #666666;
}

.cl-item .cl-text p {
    margin-bottom: 0;
}

/* =========================
   HERO SECTION (COMPLETE FIX)
========================= */

.hero-section {
    position: relative;
}

.hero-slider {
    position: relative;
}

/* EACH SLIDE */
.hs-item {
    position: relative;
    height: 780px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}

/* IMAGE */
.hero-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* DARK GRADIENT OVERLAY */
.hs-item::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.95) 0%,
        rgba(0, 0, 0, 0.75) 40%,
        rgba(0, 0, 0, 0.3) 70%,
        transparent 100%
    );
    z-index: 1;
}

/* CONTENT WRAPPER */
.hs-content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 60px;
}

/* TEXT BLOCK */
.hs-text {
    max-width: 650px;
    padding-bottom: 30px;
}

/* LABEL */
.hs-text .label {
    display: inline-block;
    padding: 4px 14px;
    background: #f3e47fc2;
    transform: skewX(-15deg);
}

.hs-text .label span {
    display: inline-block;
    transform: skewX(15deg);
    font-size: 12px;
    color: #000;
    text-transform: uppercase;
    font-style: italic;
}

/* TITLE */
.hs-text h3 {
    color: #fff;
    font-size: 34px;
    font-weight: 700;
    line-height: 44px;
    margin: 15px 0 10px;
    text-transform: uppercase;
}

/* META */
.ht-meta ul {
    padding: 0;
    margin: 0 0 10px;
}

.ht-meta ul li {
    list-style: none;
    display: inline-block;
    font-size: 13px;
    color: #ddd;
    margin-right: 20px;
    position: relative;
}

.ht-meta ul li:after {
    content: "/";
    position: absolute;
    right: -12px;
    top: 0;
}

.ht-meta ul li:last-child:after {
    display: none;
}

/* BUTTON */
.hs-text .btn {
    margin-top: 10px;
    font-size: 14px;
    padding: 8px 18px;
}

/* =========================
   TEXT POSITION VARIATIONS
========================= */

/* LEFT */
.text-left-center .hs-content {
    text-align: left;
}

/* RIGHT */
.text-right-center .hs-content {
    text-align: right;
    margin-left: auto;
}

/* CENTER BOTTOM */
.text-bottom-center .hs-content {
    text-align: center;
    margin: 0 auto;
}

/* =========================
   OWL NAV DOTS
========================= */

.hero-slider .owl-dots {
    position: absolute;
    left: 50%;
    bottom: 20px;
    transform: translateX(-50%);
}

.hero-slider .owl-dots button {
    width: 10px;
    height: 10px;
    margin: 5px;
    border-radius: 50%;
    background: #fff;
    opacity: 0.5;
    border: none;
}

.hero-slider .owl-dots .active {
    opacity: 1;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 992px) {
    .hs-item {
        height: 600px;
    }

    .hs-text h3 {
        font-size: 26px;
        line-height: 34px;
    }
}

@media (max-width: 768px) {
    .hs-item {
        height: 500px;
        align-items: flex-end;
    }

    .hs-content {
        padding: 20px;
    }

    .hs-text {
        max-width: 100%;
        text-align: center !important;
    }

    .hs-text h3 {
        font-size: 20px;
        line-height: 28px;
    }

    .hs-text .label span {
        font-size: 10px;
    }

    .ht-meta ul li {
        font-size: 11px;
    }

    .hs-text .btn {
        font-size: 12px;
        padding: 6px 14px;
    }
}

@media (max-width: 480px) {
    .hs-item {
        height: 420px;
    }

    .hs-text h3 {
        font-size: 18px;
        line-height: 24px;
    }
}
/*---------------------
  Details Post
-----------------------*/
.details-hero-section {
    position: relative;
    height: 400px;
    overflow: hidden;
    border-radius: 6px;
}

.details-hero-section .hero-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100% !important;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.45);
}

.details-hero-text {
    position: absolute;
    bottom: 25px;
    left: 20px;
    right: 20px;
    color: #fff;
    z-index: 2;
}

.details-hero-text h3 {
    font-size: 28px;
    font-weight: 700;
    line-height: 1.4;
}
.details-body-text {
    text-align: left;
    margin-top: 20px;
}

.details-body-text p {
    font-size: 16px;
    color: #666;
}

.details-text {
    padding-top: 10px;
}

/* 🔥 IMPORTANT */
.details-text p {
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 15px;
    color: #444;
}

.details-text img {
    max-width: 100%;
    height: auto;
    margin: 15px 0;
    border-radius: 6px;
}

.details-text h1,
.details-text h2,
.details-text h3,
.details-text h4 {
    margin-top: 25px;
    margin-bottom: 10px;
    font-weight: 600;
}

.details-text ul {
    padding-left: 20px;
    margin-bottom: 15px;
}
.dt-quote {
    background: #f9f9f9;
    padding: 20px;
    border-left: 5px solid #eed840;
    margin: 25px 0;
    font-style: italic;
    font-size: 16px;
}
.dt-share {
    margin-top: 20px;
    display: flex;
    align-items: center;
}

.dt-share .ds-title {
    margin-right: 10px;
    font-weight: 600;
}

.ds-links a {
    margin-right: 10px;
    font-size: 16px;
    color: #555;
    transition: 0.3s;
}

.ds-links a:hover {
    color: #eed840;
}

.details-body-text {
    text-align: center;
}
.details-body-text p {
    font-style: italic;
    font-size: 13px;
}
.details-post-section {
    background: #fff;
    padding: 70px 0;
}

.details-text.gallery-page .dt-item,
.gallery-page.contact-form .dt-item {
    margin-bottom: 15px;
}

.details-text.gallery-page .dt-pic-item .dp-text ul,
.gallery-page.contact-form .dt-pic-item .dp-text ul {
    margin-bottom: 0;
}

.details-text .dt-desc,
.contact-form .dt-desc {
    margin-bottom: 30px;
}

.details-text .dt-quote,
.contact-form .dt-quote {
    background: #fff;
    padding: 26px 25px 24px 30px;
    position: relative;
    z-index: 1;
    margin-bottom: 30px;
}

.details-text .dt-quote:after,
.contact-form .dt-quote:after {
    position: absolute;
    left: -2px;
    top: -2px;
    width: 100%;
    height: 100%;
    background: #fff;
    border: 2px solid #eed840;
    content: "";
    z-index: -1;
}

.details-text .dt-quote p,
.contact-form .dt-quote p {
    font-size: 16px;
    color: #000;
    font-weight: 500;
    font-style: italic;
    background-image: 30px;
    margin-bottom: 0;
}

.details-text .dt-quote p span,
.contact-form .dt-quote p span {
    color: #eed840;
}

.details-text .dt-item,
.contact-form .dt-item {
    margin-bottom: 30px;
}

.details-text .dt-item p:first-child,
.contact-form .dt-item p:first-child {
    margin-bottom: 25px;
}

.details-text .dt-item h5,
.contact-form .dt-item h5 {
    font-size: 20px;
    color: #000;
    font-weight: 700;
    text-transform: uppercase;
    margin-top: 8px;
    margin-bottom: 25px;
}

.details-text .dt-pic-item,
.contact-form .dt-pic-item {
    overflow: hidden;
    margin-bottom: 10px;
}

.details-text .dt-pic-item .dp-pic,
.contact-form .dt-pic-item .dp-pic {
    float: left;
    margin-right: 20px;
}

.details-text .dt-pic-item .dp-text,
.contact-form .dt-pic-item .dp-text {
    overflow: hidden;
}

.details-text .dt-pic-item .dp-text ul,
.contact-form .dt-pic-item .dp-text ul {
    margin-bottom: 20px;
}

.details-text .dt-pic-item .dp-text ul li,
.contact-form .dt-pic-item .dp-text ul li {
    list-style: none;
    font-size: 14px;
    color: #c4c4c4;
    line-height: 30px;
    position: relative;
    padding-left: 18px;
}

.details-text .dt-pic-item .dp-text ul li:before,
.contact-form .dt-pic-item .dp-text ul li:before {
    position: absolute;
    left: 0;
    top: 12px;
    height: 5px;
    width: 5px;
    background: #555555;
    content: "";
}

.details-text .dt-last-desc,
.contact-form .dt-last-desc {
    margin-bottom: 32px;
}

.details-text .dt-tags,
.contact-form .dt-tags {
    margin-bottom: 25px;
}

.details-text .dt-tags a,
.contact-form .dt-tags a {
    display: inline-block;
    font-size: 13px;
    color: #c4c4c4;
    padding: 6px 12px 5px;
    border: 1px solid #363636;
    -webkit-transform: skewX(-15deg);
    -ms-transform: skewX(-15deg);
    transform: skewX(-15deg);
    margin-right: 9px;
    margin-bottom: 15px;
}

.details-text .dt-tags span,
.contact-form .dt-tags span {
    display: inline-block;
    -webkit-transform: skewX(15deg);
    -ms-transform: skewX(15deg);
    transform: skewX(15deg);
}

.details-text .dt-share,
.contact-form .dt-share {
    border: 1px solid #252525;
    padding: 9px 0 9px 30px;
    margin-bottom: 55px;
}

.details-text .dt-share .ds-title,
.contact-form .dt-share .ds-title {
    font-size: 15px;
    color: #000;
    font-weight: 500;
    text-transform: uppercase;
    display: inline-block;
    margin-right: 30px;
}

.details-text .dt-share .ds-links,
.contact-form .dt-share .ds-links {
    display: inline-block;
}

.details-text .dt-share .ds-links a,
.contact-form .dt-share .ds-links a {
    display: inline-block;
    font-size: 13px;
    color: #c4c4c4;
    height: 36px;
    width: 36px;
    line-height: 36px;
    text-align: center;
    -webkit-transform: skewX(-10deg);
    -ms-transform: skewX(-10deg);
    transform: skewX(-10deg);
    background: #252525;
    margin-right: 6px;
}

.details-text .dt-share .ds-links a.wide,
.contact-form .dt-share .ds-links a.wide {
    width: 70px;
}

.details-text .dt-share .ds-links a i,
.contact-form .dt-share .ds-links a i {
    display: inline-block;
    -webkit-transform: skewX(10deg);
    -ms-transform: skewX(10deg);
    transform: skewX(10deg);
}

.details-text .dt-share .ds-links a span,
.contact-form .dt-share .ds-links a span {
    display: inline-block;
    -webkit-transform: skewX(10deg);
    -ms-transform: skewX(10deg);
    transform: skewX(10deg);
    margin-left: 6px;
    font-size: 14px;
}

.details-text .dt-related-post,
.contact-form .dt-related-post {
    margin-bottom: 55px;
}

.details-text .dt-related-post .rp-prev,
.contact-form .dt-related-post .rp-prev {
    display: block;
}

.details-text .dt-related-post .rp-prev span,
.contact-form .dt-related-post .rp-prev span {
    display: block;
    font-size: 14px;
    color: #ffffff;
    font-weight: 500;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.details-text .dt-related-post .rp-prev .rp-pic,
.contact-form .dt-related-post .rp-prev .rp-pic {
    float: left;
    margin-right: 20px;
}

.details-text .dt-related-post .rp-prev .rp-text,
.contact-form .dt-related-post .rp-prev .rp-text {
    overflow: hidden;
}

.details-text .dt-related-post .rp-prev .rp-text h6,
.contact-form .dt-related-post .rp-prev .rp-text h6 {
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    line-height: 20px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.details-text .dt-related-post .rp-prev .rp-text ul li,
.contact-form .dt-related-post .rp-prev .rp-text ul li {
    list-style: none;
    font-size: 12px;
    color: #666666;
    font-style: italic;
    display: inline-block;
    position: relative;
    margin-right: 28px;
}

.details-text .dt-related-post .rp-prev .rp-text ul li i,
.contact-form .dt-related-post .rp-prev .rp-text ul li i {
    margin-right: 4px;
}

.details-text .dt-related-post .rp-prev .rp-text ul li:last-child,
.contact-form .dt-related-post .rp-prev .rp-text ul li:last-child {
    margin-right: 0;
}

.details-text .dt-related-post .rp-prev .rp-text ul li:last-child:after,
.contact-form .dt-related-post .rp-prev .rp-text ul li:last-child:after {
    display: none;
}

.details-text .dt-related-post .rp-prev .rp-text ul li:after,
.contact-form .dt-related-post .rp-prev .rp-text ul li:after {
    position: absolute;
    right: -18px;
    top: 0;
    content: "/";
    color: #666666;
}

.details-text .dt-related-post .rp-next,
.contact-form .dt-related-post .rp-next {
    display: block;
    text-align: right;
}

.details-text .dt-related-post .rp-next span,
.contact-form .dt-related-post .rp-next span {
    display: block;
    font-size: 14px;
    color: #ffffff;
    font-weight: 500;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.details-text .dt-related-post .rp-next .rp-pic,
.contact-form .dt-related-post .rp-next .rp-pic {
    float: right;
    margin-left: 20px;
}

.details-text .dt-related-post .rp-next .rp-text,
.contact-form .dt-related-post .rp-next .rp-text {
    overflow: hidden;
}

.details-text .dt-related-post .rp-next .rp-text h6,
.contact-form .dt-related-post .rp-next .rp-text h6 {
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    line-height: 20px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.details-text .dt-related-post .rp-next .rp-text ul li,
.contact-form .dt-related-post .rp-next .rp-text ul li {
    list-style: none;
    font-size: 12px;
    color: #666666;
    font-style: italic;
    display: inline-block;
    position: relative;
    margin-right: 28px;
}

.details-text .dt-related-post .rp-next .rp-text ul li i,
.contact-form .dt-related-post .rp-next .rp-text ul li i {
    margin-right: 4px;
}

.details-text .dt-related-post .rp-next .rp-text ul li:last-child,
.contact-form .dt-related-post .rp-next .rp-text ul li:last-child {
    margin-right: 0;
}

.details-text .dt-related-post .rp-next .rp-text ul li:last-child:after,
.contact-form .dt-related-post .rp-next .rp-text ul li:last-child:after {
    display: none;
}

.details-text .dt-related-post .rp-next .rp-text ul li:after,
.contact-form .dt-related-post .rp-next .rp-text ul li:after {
    position: absolute;
    right: -18px;
    top: 0;
    content: "/";
    color: #666666;
}

.details-text .dt-author,
.contact-form .dt-author {
    background: #080808;
    padding: 25px 30px 30px 30px;
    margin-bottom: 55px;
}

.details-text .dt-author .da-pic,
.contact-form .dt-author .da-pic {
    float: left;
    margin-right: 30px;
}

.details-text .dt-author .da-pic img,
.contact-form .dt-author .da-pic img {
    height: 90px;
    width: 90px;
    border-radius: 50%;
}

.details-text .dt-author .da-text,
.contact-form .dt-author .da-text {
    overflow: hidden;
}

.details-text .dt-author .da-text h5,
.contact-form .dt-author .da-text h5 {
    color: #ffffff;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.details-text .dt-author .da-text .da-links,
.contact-form .dt-author .da-text .da-links {
    margin-left: 5px;
}

.details-text .dt-author .da-text .da-links a,
.contact-form .dt-author .da-text .da-links a {
    display: inline-block;
    font-size: 13px;
    color: #c4c4c4;
    height: 36px;
    width: 36px;
    line-height: 36px;
    text-align: center;
    -webkit-transform: skewX(-10deg);
    -ms-transform: skewX(-10deg);
    transform: skewX(-10deg);
    background: #252525;
    margin-right: 6px;
}

.details-text .dt-author .da-text .da-links a i,
.contact-form .dt-author .da-text .da-links a i {
    display: inline-block;
    -webkit-transform: skewX(10deg);
    -ms-transform: skewX(10deg);
    transform: skewX(10deg);
}

.details-text .dt-comment,
.contact-form .dt-comment {
    margin-bottom: 35px;
}

.details-text .dt-comment h4,
.contact-form .dt-comment h4 {
    color: #000;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 35px;
}

.details-text .dt-comment .dc-item,
.contact-form .dt-comment .dc-item {
    margin-bottom: 10px;
    border: 1px solid gray;
    border-radius: 15px;
    padding: 15px;
}

.details-text .dt-comment .dc-item.reply-item,
.contact-form .dt-comment .dc-item.reply-item {
    margin-left: 116px;
}

.details-text .dt-comment .dc-item .dc-pic,
.contact-form .dt-comment .dc-item .dc-pic {
    float: left;
    margin-right: 25px;
}

.details-text .dt-comment .dc-item .dc-pic img,
.contact-form .dt-comment .dc-item .dc-pic img {
    height: 90px;
    width: 90px;
    border-radius: 50%;
}

.details-text .dt-comment .dc-item .dc-text,
.contact-form .dt-comment .dc-item .dc-text {
    overflow: hidden;
    position: relative;
}

.details-text .dt-comment .dc-item .dc-text .reply-btn,
.contact-form .dt-comment .dc-item .dc-text .reply-btn {
    display: inline-block;
    padding: 4px 12px 4px 12px;
    background: #252525;
    -webkit-transform: skewX(-10deg);
    -ms-transform: skewX(-10deg);
    transform: skewX(-10deg);
    position: absolute;
    right: 6px;
    top: 0;
}

.details-text .dt-comment .dc-item .dc-text .reply-btn span,
.contact-form .dt-comment .dc-item .dc-text .reply-btn span {
    -webkit-transform: skewX(10deg);
    -ms-transform: skewX(10deg);
    transform: skewX(10deg);
    display: inline-block;
    font-size: 12px;
    color: #000;
    font-weight: 500;
    text-transform: uppercase;
}

.details-text .dt-comment .dc-item .dc-text h5,
.contact-form .dt-comment .dc-item .dc-text h5 {
    color: #000;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.details-text .dt-comment .dc-item .dc-text .c-date,
.contact-form .dt-comment .dc-item .dc-text .c-date {
    font-size: 12px;
    color: #666666;
    font-style: italic;
    display: block;
    margin-bottom: 6px;
}

.details-text .dt-leave-comment h4,
.contact-form .dt-leave-comment h4 {
    color: #000;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 35px;
}

.details-text .dt-leave-comment form .input-list,
.contact-form .dt-leave-comment form .input-list {
    margin-right: -20px;
}

.details-text .dt-leave-comment form .input-list input,
.contact-form .dt-leave-comment form .input-list input {
    width: calc(50% - 20px);
    margin-right: 20px;
    float: left;
    height: 46px;
    background: transparent;
    font-size: 14px;
    color: #444444;
    border: 1px solid #363636;
    padding-left: 20px;
    margin-bottom: 20px;
}

.details-text
    .dt-leave-comment
    form
    .input-list
    input::-webkit-input-placeholder,
.contact-form
    .dt-leave-comment
    form
    .input-list
    input::-webkit-input-placeholder {
    color: #444444;
}

.details-text .dt-leave-comment form .input-list input::-moz-placeholder,
.contact-form .dt-leave-comment form .input-list input::-moz-placeholder {
    color: #444444;
}

.details-text .dt-leave-comment form .input-list input:-ms-input-placeholder,
.contact-form .dt-leave-comment form .input-list input:-ms-input-placeholder {
    color: #444444;
}

.details-text .dt-leave-comment form .input-list input::-ms-input-placeholder,
.contact-form .dt-leave-comment form .input-list input::-ms-input-placeholder {
    color: #444444;
}

.details-text .dt-leave-comment form .input-list input::placeholder,
.contact-form .dt-leave-comment form .input-list input::placeholder {
    color: #444444;
}

.details-text .dt-leave-comment form .input-list input:last-child,
.contact-form .dt-leave-comment form .input-list input:last-child {
    margin-right: 0;
}

.details-text .dt-leave-comment form textarea,
.details-text .dt-leave-comment form textarea::-webkit-input-placeholder,
.contact-form .dt-leave-comment form textarea::-webkit-input-placeholder {
    color: #444444;
}

.details-text .dt-leave-comment form textarea::-moz-placeholder,
.contact-form .dt-leave-comment form textarea::-moz-placeholder {
    color: #444444;
}

.details-text .dt-leave-comment form textarea:-ms-input-placeholder,
.contact-form .dt-leave-comment form textarea:-ms-input-placeholder {
    color: #444444;
}

.details-text .dt-leave-comment form textarea::-ms-input-placeholder,
.contact-form .dt-leave-comment form textarea::-ms-input-placeholder {
    color: #444444;
}

.details-text .dt-leave-comment form textarea::placeholder,
.contact-form .dt-leave-comment form textarea::placeholder {
    color: #444444;
}

.details-text .dt-leave-comment form button,
.contact-form .dt-leave-comment form button {
    font-size: 15px;
    color: #ffffff;
    font-weight: 600;
    text-transform: uppercase;
    background: #252525;
    border: none;
    width: 100%;
    padding: 12px 0;
}

.contact-form .form-control:focus {
    border-color: #eed840 !important;
    box-shadow: 0 0 0 0.2rem #eed84038;
}

.details-text .dt-overall-rating,
.contact-form .dt-overall-rating {
    border: 1px solid #252525;
    overflow: hidden;
    margin-bottom: 25px;
}

.details-text .dt-overall-rating .or-heading,
.contact-form .dt-overall-rating .or-heading {
    padding: 30px 30px 0 30px;
}

.details-text .dt-overall-rating .or-heading .or-item,
.contact-form .dt-overall-rating .or-heading .or-item {
    overflow: hidden;
    margin-bottom: 25px;
}

.details-text .dt-overall-rating .or-heading .or-item .or-loader,
.contact-form .dt-overall-rating .or-heading .or-item .or-loader {
    height: 200px;
    width: 200px;
    position: relative;
    z-index: 1;
    float: left;
    margin-right: 30px;
}

.details-text .dt-overall-rating .or-heading .or-item .or-loader:after,
.contact-form .dt-overall-rating .or-heading .or-item .or-loader:after {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    border: 5px solid #363636;
    content: "";
    border-radius: 50%;
    z-index: -1;
}

.details-text .dt-overall-rating .or-heading .or-item .or-loader .review-point,
.contact-form .dt-overall-rating .or-heading .or-item .or-loader .review-point {
    position: absolute;
    left: 40px;
    top: 40px;
}

.details-text
    .dt-overall-rating
    .or-heading
    .or-item
    .or-loader
    .review-point
    div,
.contact-form
    .dt-overall-rating
    .or-heading
    .or-item
    .or-loader
    .review-point
    div {
    font-size: 80px;
    font-weight: 500;
    color: #ffffff;
    line-height: 84px;
}

.details-text
    .dt-overall-rating
    .or-heading
    .or-item
    .or-loader
    .review-point
    span,
.contact-form
    .dt-overall-rating
    .or-heading
    .or-item
    .or-loader
    .review-point
    span {
    font-size: 14px;
    color: #666666;
    text-transform: uppercase;
}

.details-text .dt-overall-rating .or-heading .or-item .or-text,
.contact-form .dt-overall-rating .or-heading .or-item .or-text {
    overflow: hidden;
}

.details-text .dt-overall-rating .or-heading .or-item .or-text h5,
.contact-form .dt-overall-rating .or-heading .or-item .or-text h5 {
    font-size: 20px;
    color: #ffffff;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.details-text .dt-overall-rating .or-heading .or-skill,
.contact-form .dt-overall-rating .or-heading .or-skill {
    overflow: hidden;
    margin-right: -40px;
}

.details-text .dt-overall-rating .or-heading .or-skill .skill-item,
.contact-form .dt-overall-rating .or-heading .or-skill .skill-item {
    position: relative;
    width: calc(50% - 40px);
    float: left;
    overflow: hidden;
    margin-right: 40px;
}

.details-text .dt-overall-rating .or-heading .or-skill .skill-item p,
.contact-form .dt-overall-rating .or-heading .or-skill .skill-item p {
    font-size: 14px;
    color: #c4c4c4;
    margin-bottom: 10px;
}

.details-text .dt-overall-rating .or-heading .or-skill .skill-item .tip,
.contact-form .dt-overall-rating .or-heading .or-skill .skill-item .tip {
    display: none;
}

.details-text .dt-overall-rating .or-heading .or-skill .skill-item .barfiller,
.contact-form .dt-overall-rating .or-heading .or-skill .skill-item .barfiller {
    height: 7px;
    background: #252525;
    border: none;
    margin-bottom: 24px;
}

.details-text
    .dt-overall-rating
    .or-heading
    .or-skill
    .skill-item
    .barfiller
    .bar-point,
.contact-form
    .dt-overall-rating
    .or-heading
    .or-skill
    .skill-item
    .barfiller
    .bar-point {
    font-size: 14px;
    color: #c4c4c4;
    position: absolute;
    right: 0;
    top: -30px;
}

.details-text .dt-overall-rating .or-qualities,
.contact-form .dt-overall-rating .or-qualities {
    padding-top: 25px;
    padding-bottom: 20px;
    padding-left: 30px;
    padding-right: 30px;
    border-top: 1px solid #252525;
    border-bottom: 1px solid #252525;
    overflow: hidden;
    margin-right: -40px;
}

.details-text .dt-overall-rating .or-qualities .qualities-item,
.contact-form .dt-overall-rating .or-qualities .qualities-item {
    width: calc(50% - 40px);
    float: left;
    overflow: hidden;
    margin-right: 40px;
}

.details-text .dt-overall-rating .or-qualities .qualities-item.bad-item i,
.contact-form .dt-overall-rating .or-qualities .qualities-item.bad-item i {
    color: #c20000;
}

.details-text .dt-overall-rating .or-qualities .qualities-item p,
.contact-form .dt-overall-rating .or-qualities .qualities-item p {
    color: #ffffff;
    margin-bottom: 10px;
}

.details-text .dt-overall-rating .or-qualities .qualities-item ul li,
.contact-form .dt-overall-rating .or-qualities .qualities-item ul li {
    list-style: none;
    line-height: 32px;
    font-size: 14px;
    color: #c4c4c4;
}

.details-text .dt-overall-rating .or-qualities .qualities-item ul li i,
.contact-form .dt-overall-rating .or-qualities .qualities-item ul li i {
    color: #16b601;
    font-size: 14px;
    margin-right: 8px;
}

.details-text .dt-overall-rating .or-rating,
.contact-form .dt-overall-rating .or-rating {
    overflow: hidden;
    padding: 25px 30px;
}

.details-text .dt-overall-rating .or-rating p,
.contact-form .dt-overall-rating .or-rating p {
    font-weight: 500;
    float: left;
    margin-bottom: 0;
}

.details-text .dt-overall-rating .or-rating p span,
.contact-form .dt-overall-rating .or-rating p span {
    margin-right: 15px;
}

.details-text .dt-overall-rating .or-rating .rating-star,
.contact-form .dt-overall-rating .or-rating .rating-star {
    float: right;
}

.details-text .dt-overall-rating .or-rating .rating-star i,
.contact-form .dt-overall-rating .or-rating .rating-star i {
    font-size: 14px;
    color: #ffaf24;
    margin-left: -4px;
}

.details-text .dt-title-gallery,
.contact-form .dt-title-gallery {
    margin-bottom: 30px;
}

.details-text .dt-desc-more,
.contact-form .dt-desc-more {
    margin-bottom: 25px;
}

/*-----------------------
  Details Gallery Slider
-------------------------*/

.details-gallery-section {
    background: #0d0d0d;
    padding-top: 30px;
}

.dg-slider.owl-carousel .owl-nav button {
    height: 50px;
    width: 50px;
    font-size: 36px;
    color: #ffffff;
    background: rgba(8, 8, 8, 0.5);
    line-height: 50px;
    text-align: center;
    position: absolute;
    left: 30px;
    top: 50%;
    -webkit-transform: translateY(-25px);
    -ms-transform: translateY(-25px);
    transform: translateY(-25px);
}

.dg-slider.owl-carousel .owl-nav button.owl-next {
    left: auto;
    right: 30px;
}

.dg-slider .dg-item {
    height: 780px;
}

/*---------------------
  Contact
-----------------------*/

.contact-section {
    background: #fff;
    padding: 70px 0;
}

.contact-text .contact-title {
    margin-bottom: 36px;
    text-align: center;
}

.contact-text .contact-title h3 {
    font-weight: 700;
    color: #000;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.contact-form .dt-leave-comment form button {
    background: #eed840;
    font-size: 14px;
}
.post-breadcrumb {
    font-size: 13px;
    color: #888;
    margin-bottom: 25px;
}

.post-breadcrumb a {
    color: #555;
    text-decoration: none;
    transition: 0.3s;
}

.post-breadcrumb a:hover {
    color: #eed840;
}

.post-breadcrumb span {
    margin: 0 5px;
}

.post-breadcrumb .active {
    color: #000;
    font-weight: 500;
}
/* =========================
   ADVERTISE
========================= */
/* HERO */
.advertise-hero {
    background: #000;
    color: #fff;
    padding: 80px 0;
}

.advertise-hero h1 {
    font-size: 42px;
    font-weight: 700;
}

.advertise-hero p {
    color: #ccc;
}

/* SECTION */
.advertise-section {
    padding: 70px 0;
}

.adv-list {
    margin-top: 20px;
}

.adv-list li {
    margin-bottom: 10px;
    color: #555;
}

/* CARDS */
.adv-card {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    transition: 0.3s;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.adv-card:hover {
    transform: translateY(-5px);
}

.adv-card i {
    font-size: 28px;
    margin-bottom: 15px;
    color: #eed840;
}

/* STATS */
.adv-stat h3 {
    font-size: 32px;
    color: #eed840;
}

.adv-stat p {
    color: #666;
}

/* CTA */
.advertise-cta {
    background: #111;
    color: #fff;
    padding: 60px 0;
}

.advertise-cta p {
    color: #bbb;
}

.ad-textarea p {
    color: #6a6868;
}

/* =========================
   image popup
========================= */

/* Make popup take full screen */
.mfp-wrap {
    overflow-y: auto !important;
}

/* Remove height restriction */
.mfp-content {
    max-width: 800px;
    margin: 40px auto;
}

/* Image full width */
.mfp-img {
    width: 75% !important;
    height: auto !important;
    max-height: none !important;
    display: block;
}

/* Remove default padding */
.mfp-figure {
    padding: 0 !important;
}

/* Optional: remove white space */
img.mfp-img {
    padding: 0 !important;
}
/* =========================
   MAGAZINE ARCHIVE - FINAL
========================= */

.magazine-viewer {
    width: 100%;
    padding: 30px 0;
}

/* wrapper */
.flipbook-wrapper {
    position: relative;
    width: 100%;
    max-width: 100%;
    margin: auto;
    padding: 15px;
    background: #f5f5f5;
    border-radius: 12px;
    overflow: hidden; /* 🔥 prevents sidebar overlap */
}

/* flipbook */
#flipbook {
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 3;
    margin: auto;

    border-radius: 8px;
    overflow: hidden;

    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);

    transform: translateZ(0);
}

/* pages */
#flipbook .page {
    width: 50%;
    height: 100%;
    background: #fff;
}

/* canvas */
#flipbook canvas {
    width: 100% !important;
    height: 100% !important;
}

/* ===== buttons ===== */
.nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 20;

    width: 45px;
    height: 45px;

    border: none;
    border-radius: 50%;

    background: rgba(0, 0, 0, 0.6);
    color: #fff;

    display: flex;
    align-items: center;
    justify-content: center;

    cursor: pointer;
    transition: 0.3s;
}

/* keep inside container */
.prev-btn {
    left: 10px;
}
.next-btn {
    right: 10px;
}

.nav-btn:hover {
    background: #000;
    transform: translateY(-50%) scale(1.1);
}

/* show on hover */
.flipbook-wrapper .nav-btn {
    opacity: 0;
}
.flipbook-wrapper:hover .nav-btn {
    opacity: 1;
}

/* ===== magazine list ===== */
.magazine-list {
    display: flex;
    gap: 15px;
    overflow-x: auto;
    padding: 15px 0;
}

/* items */
.mag-item {
    min-width: 120px;
    cursor: pointer;
    text-align: center;
    transition: 0.3s;
}

.mag-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.mag-item:hover {
    transform: translateY(-5px) scale(1.05);
}

/* ===== responsive ===== */
@media (max-width: 768px) {
    #flipbook {
        aspect-ratio: 3 / 4; /* better mobile */
    }

    .nav-btn {
        width: 40px;
        height: 40px;
    }

    .prev-btn {
        left: 5px;
    }
    .next-btn {
        right: 5px;
    }
}

/* error border */
.is-invalid {
    border: 1px solid #dc3545 !important;
}

/* error message */
.invalid-feedback {
    color: #dc3545;
    font-size: 13px;
    margin-top: 5px;
}
/* =========================
   PREMIUM CONTACT SECTION
========================= */

.contact-section {
    background: linear-gradient(135deg, #f3f4f7, #ffffff);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

/* subtle background glow */
.contact-section::before {
    content: "";
    position: absolute;
    top: -100px;
    left: -100px;
    width: 300px;
    height: 300px;
    background: rgba(0, 0, 0, 0.03);
    border-radius: 50%;
}

/* TOP INFO BLOCKS */
.contact-section .row:first-child {
    margin-bottom: 60px;
}

.contact-section .row:first-child .col-md-6 {
    background: #fff;
    padding: 25px 30px;
    border-radius: 8px;
    font-size: 15px;
    line-height: 1.8;
    color: #555;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
}

/* LEFT STORY SECTION */
.contat-text {
    padding-right: 30px;
}

.contat-text h3 {
    font-size: 22px;
    font-weight: 800;
    color: #111;
    margin-bottom: 20px;
    letter-spacing: 1px;
    line-height: 1.4;
}

.contat-text p {
    font-size: 15px;
    color: #666;
    line-height: 1.9;
}

/* EMAIL LINKS */
.contat-text a {
    color: #000;
    font-weight: 600;
    text-decoration: none;
    position: relative;
}

.contat-text a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 100%;
    height: 1px;
    background: #000;
    transition: 0.3s;
}

.contat-text a:hover::after {
    width: 0;
}

/* RIGHT SIDE CARD (FORM CONTAINER ONLY) */
.contact-text {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    padding: 45px;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

/* TITLE TEXT */
.contact-title p {
    font-size: 15px;
    color: #777;
    margin-bottom: 25px;
}

/* BUTTON (only touch allowed) */
.contact-form button {
    background: linear-gradient(45deg, #000, #333);
    color: #fff;
    border: none;
    padding: 12px 40px;
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 30px;
    transition: 0.3s;
}

.contact-form button:hover {
    background: #000;
    transform: translateY(-2px);
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .contat-text {
        padding-right: 0;
        margin-bottom: 40px;
    }

    .contact-text {
        padding: 30px;
    }

    .contact-section .row:first-child .col-md-6 {
        margin-bottom: 20px;
    }
}
/* =========================
   MODERN CONTACT (REFINED)
========================= */

.contact-modern {
    padding: 100px 0;
    background: #f8f9fb; /* softer than pure white */
    color: #000;
}

/* TOP STRIP */
.contact-top {
    display: flex;
    gap: 30px;
    margin-bottom: 70px;
}

.top-box {
    flex: 1;
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    transition: 0.3s;
}

.top-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.top-box h5 {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 12px;
    color: #999;
}

.top-box p {
    font-size: 15px;
    line-height: 1.8;
    color: #444;
}

/* GRID */
.contact-grid {
    display: flex;
    gap: 70px;
    align-items: flex-start;
}

/* LEFT SIDE */
.contact-left {
    flex: 1;
}

.contact-left h3 {
    font-size: 26px;
    font-weight: 800;
    margin-bottom: 25px;
    line-height: 1.5;
    letter-spacing: 0.5px;
}

.contact-left p {
    font-size: 15px;
    color: #555;
    line-height: 2;
}

/* LINKS (FIXED VISIBILITY) */
.contact-left a {
    color: #000; /* FIXED (was white ❌) */
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.3);
    transition: 0.3s;
}

.contact-left a:hover {
    color: #777;
    border-color: #777;
}

/* RIGHT SIDE */
.contact-right {
    flex: 1;
}

/* FORM CARD */
.form-card {
    background: #fff; /* changed from glass → cleaner */
    padding: 45px;
    border-radius: 14px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.08);
    border: 1px solid #eee;
}

/* TITLE */
.contact-title {
    margin-bottom: 25px;
    color: #777;
    font-size: 14px;
}

/* BUTTON */
.form-card button {
    background: #000;
    color: #fff;
    border: none;
    padding: 12px 35px;
    border-radius: 30px;
    font-weight: 600;
    letter-spacing: 1px;
    transition: 0.3s;
}

.form-card button:hover {
    transform: translateY(-2px);
    background: #333;
}

.form-control:focus {
    border-color: #eed840;
    box-shadow: 0 0 0 0.2rem #eed84038;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .contact-top {
        flex-direction: column;
    }

    .contact-grid {
        flex-direction: column;
    }

    .form-card {
        padding: 30px;
    }
}

/* =========================
   ABOUT PAGE - FINAL DESIGN
========================= */

.about-modern {
    padding: 100px 0;
    background: #ffffff;
    color: #111;
    font-family: "Helvetica Neue", sans-serif;
}

/* CONTAINER */
.about-modern .container {
    max-width: 1000px;
}

/* =========================
   HEADER
========================= */

.about-header {
    text-align: center;
    margin-bottom: 70px;
}

.about-header h1 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 15px;
    line-height: 1.3;
}

.about-header .subtitle {
    font-size: 16px;
    color: #777;
}

/* =========================
   CONTENT TEXT
========================= */

.about-content {
    margin-bottom: 80px;
}

.about-content p {
    font-size: 16px;
    line-height: 2;
    color: #444;
    margin-bottom: 25px;
}

/* =========================
   TEAM SECTION
========================= */

.team-section {
    margin-top: 60px;
}

.team-section h2 {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 30px;
    position: relative;
}

/* underline accent */
.team-section h2::after {
    content: "";
    width: 60px;
    height: 3px;
    background: #000;
    display: block;
    margin-top: 10px;
}

/* =========================
   TEAM LAYOUT
========================= */

.team-wrapper {
    display: flex;
    gap: 50px;
    align-items: center;
}

/* IMAGE */
.team-image {
    flex: 0 0 300px;
}

.team-image img {
    width: 100%;
    border-radius: 14px;
    object-fit: cover;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

/* CONTENT */
.team-content {
    flex: 1;
}

.team-content h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
}

.team-content p {
    font-size: 15px;
    color: #555;
    line-height: 1.9;
}

/* =========================
   QUOTE BLOCK
========================= */

.quote {
    margin-top: 25px;
    font-size: 18px;
    font-style: italic;
    color: #000;
    padding-left: 18px;
    border-left: 3px solid #000;
}

/* =========================
   EMAIL
========================= */

.team-contact {
    margin-top: 20px;
    font-size: 14px;
}

.team-contact a {
    color: #000;
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px solid #000;
    transition: 0.3s;
}

.team-contact a:hover {
    opacity: 0.6;
}

/* =========================
   HOVER POLISH (SUBTLE)
========================= */

.team-image img:hover {
    transform: scale(1.02);
    transition: 0.3s;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 992px) {
    .about-header h1 {
        font-size: 32px;
    }

    .team-wrapper {
        flex-direction: column;
        text-align: center;
    }

    .team-image {
        flex: unset;
        max-width: 260px;
    }

    .quote {
        border-left: none;
        border-top: 3px solid #000;
        padding-left: 0;
        padding-top: 10px;
    }
}
/* =========================
   PAGINATION
========================= */

.pagination-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.pagination-item a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 45px;
    height: 45px;
    padding: 0 15px;
    border-radius: 50px;
    background: #f5f5f5;
    color: #333;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

/* Hover */
.pagination-item a:hover {
    background: #eed7407a;
    transform: translateY(-2px);
}

/* Active page */
.pagination-item a.active {
    background: #eed840;
    color: #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Next button special */
.pagination-item a.next {
    padding: 0 20px;
    font-weight: 600;
}

/* Optional: arrow */
.pagination-item a.next::after {
    content: "→";
    margin-left: 6px;
    font-size: 14px;
}
/*---------------------
  404 Section
-----------------------*/

.section-404 {
    background: #0d0d0d;
    padding-top: 70px;
}

.text-404 {
    text-align: center;
    background: #080808;
    padding: 100px 0 120px;
}

.text-404 h1 {
    font-size: 200px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #ffffff;
    line-height: 212px;
}

.text-404 h3 {
    color: #ffffff;
    font-weight: 500;
    font-family: "Montserrat", sans-serif;
    margin-bottom: 12px;
}

.text-404 p {
    margin-bottom: 45px;
}

.text-404 .search-404 {
    width: 470px;
    height: 46px;
    position: relative;
    margin: 0 auto;
}

.text-404 .search-404 input {
    width: 100%;
    height: 46px;
    background: #c20000;
    font-size: 14px;
    color: #ffffff;
    border: none;
    padding-left: 20px;
}

.text-404 .search-404 input::-webkit-input-placeholder {
    color: #ffffff;
}

.text-404 .search-404 input::-moz-placeholder {
    color: #ffffff;
}

.text-404 .search-404 input:-ms-input-placeholder {
    color: #ffffff;
}

.text-404 .search-404 input::-ms-input-placeholder {
    color: #ffffff;
}

.text-404 .search-404 input::placeholder {
    color: #ffffff;
}

.text-404 .search-404 button {
    font-size: 16px;
    color: #ffffff;
    position: absolute;
    right: 0;
    top: 0;
    background: #c20000;
    border: none;
    height: 46px;
    padding: 0 20px;
}

/*---------------------
  Typography
-----------------------*/

.details-text.typography-page .dt-share,
.typography-page.contact-form .dt-share {
    margin-bottom: 0;
}

.details-text .dt-breadcrumb,
.contact-form .dt-breadcrumb {
    margin-bottom: 25px;
}

.details-text .dt-breadcrumb .dt-bread-option,
.contact-form .dt-breadcrumb .dt-bread-option {
    margin-bottom: 20px;
}

.details-text .dt-breadcrumb .dt-bread-option a,
.contact-form .dt-breadcrumb .dt-bread-option a {
    font-size: 12px;
    color: #ffffff;
    position: relative;
    display: inline-block;
    margin-right: 5px;
}

.details-text .dt-breadcrumb .dt-bread-option a:after,
.contact-form .dt-breadcrumb .dt-bread-option a:after {
    position: absolute;
    right: -6px;
    top: 1px;
    content: "/";
}

.details-text .dt-breadcrumb .dt-bread-option span,
.contact-form .dt-breadcrumb .dt-bread-option span {
    font-size: 12px;
    color: #c20000;
    display: inline-block;
}

.details-text .dt-breadcrumb h3,
.contact-form .dt-breadcrumb h3 {
    color: #ffffff;
    font-weight: 700;
    text-transform: uppercase;
}

.details-text .dt-heading-tags,
.contact-form .dt-heading-tags {
    margin-bottom: 45px;
}

.details-text .dt-heading-tags h3,
.contact-form .dt-heading-tags h3 {
    color: #ffffff;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.details-text .dt-heading-tags p,
.contact-form .dt-heading-tags p {
    margin-bottom: 20px;
}

.details-text .dt-heading-tags .heading-list h3,
.contact-form .dt-heading-tags .heading-list h3,
.details-text .dt-heading-tags .heading-list h4,
.contact-form .dt-heading-tags .heading-list h4,
.details-text .dt-heading-tags .heading-list h5,
.contact-form .dt-heading-tags .heading-list h5,
.details-text .dt-heading-tags .heading-list h6,
.contact-form .dt-heading-tags .heading-list h6 {
    color: #c4c4c4;
    font-weight: 700;
    text-transform: uppercase;
}

.details-text .dt-heading-tags .heading-list h3,
.contact-form .dt-heading-tags .heading-list h3 {
    margin-bottom: 22px;
}

.details-text .dt-heading-tags .heading-list h4,
.contact-form .dt-heading-tags .heading-list h4 {
    margin-bottom: 26px;
}

.details-text .dt-heading-tags .heading-list .large-h5,
.contact-form .dt-heading-tags .heading-list .large-h5 {
    font-size: 20px;
    margin-bottom: 28px;
}

.details-text .dt-heading-tags .heading-list h5,
.contact-form .dt-heading-tags .heading-list h5 {
    margin-bottom: 29px;
}

.details-text .dt-heading-tags .heading-list h6,
.contact-form .dt-heading-tags .heading-list h6 {
    margin-bottom: 29px;
}

.details-text .dt-heading-tags .heading-list .small-h6,
.contact-form .dt-heading-tags .heading-list .small-h6 {
    font-size: 14px;
}

.details-text .dt-listing h3,
.contact-form .dt-listing h3 {
    color: #ffffff;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.details-text .dt-listing p,
.contact-form .dt-listing p {
    margin-bottom: 20px;
}

.details-text .dt-listing.unorder-list,
.contact-form .dt-listing.unorder-list {
    margin-bottom: 45px;
}

.details-text .dt-listing.unorder-list ul li,
.contact-form .dt-listing.unorder-list ul li {
    position: relative;
    padding-left: 18px;
}

.details-text .dt-listing.unorder-list ul li.unorder-inner,
.contact-form .dt-listing.unorder-list ul li.unorder-inner {
    margin-left: 30px;
}

.details-text .dt-listing.unorder-list ul li:before,
.contact-form .dt-listing.unorder-list ul li:before {
    position: absolute;
    left: 0;
    top: 12px;
    width: 5px;
    height: 5px;
    background: #555555;
    content: "";
}

.details-text .dt-listing.order-list,
.contact-form .dt-listing.order-list {
    margin-bottom: 30px;
}

.details-text .dt-listing.order-list ul li span,
.contact-form .dt-listing.order-list ul li span {
    margin-right: 10px;
}

.details-text .dt-listing.order-list ul li.order-inner,
.contact-form .dt-listing.order-list ul li.order-inner {
    margin-left: 40px;
}

.details-text .dt-listing ul,
.contact-form .dt-listing ul {
    margin-bottom: 20px;
}

.details-text .dt-listing ul li,
.contact-form .dt-listing ul li {
    list-style: none;
    font-size: 14px;
    color: #c4c4c4;
    line-height: 30px;
}

/*--------------------------------- Responsive Media Quaries -----------------------------*/

@media only screen and (min-width: 1200px) {
    .container {
        max-width: 1170px;
    }
}

/* Medium Device = 1200px */

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .nav-options .nav-menu ul li {
        margin-right: 1px;
    }
    .nav-options .nav-menu ul li .megamenu-wrapper {
        width: 960px;
        -webkit-transform: translateX(-480px);
        -ms-transform: translateX(-480px);
        transform: translateX(-480px);
    }
    .hero-slider.owl-carousel .owl-dots {
        max-width: 930px;
    }
    .ip-item .ip-pic,
    .cl-item .cl-pic {
        max-width: 300px;
    }
}

/* Tablet Device = 768px */

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .nav-options {
        text-align: center;
    }
    .nav-options .nav-menu {
        display: none;
    }
    .nav-options .humberger-menu {
        float: none;
        margin-right: 10px;
    }
    .nav-options .nav-search {
        float: none;
    }
    .hero-slider.owl-carousel .owl-dots {
        bottom: 20px;
        max-width: 690px;
    }
    .hs-text {
        padding-top: 50px;
        padding-bottom: 35px;
    }
    .sidebar-option {
        padding-left: 0;
        padding-top: 40px;
    }
    .details-text .dt-pic-item .dp-pic,
    .contact-form .dt-pic-item .dp-pic {
        float: none;
        margin-right: 0;
    }
    .details-text .dt-pic-item .dp-text,
    .contact-form .dt-pic-item .dp-text {
        overflow: visible;
        padding-top: 20px;
    }
    .details-text .dt-related-post .rp-prev,
    .contact-form .dt-related-post .rp-prev {
        margin-bottom: 30px;
        overflow: hidden;
    }
    .copyright-area .ca-text {
        text-align: center;
        margin-bottom: 11px;
    }
    .copyright-area .ca-links {
        text-align: center;
    }
}

/* Wide Mobile = 480px */

@media only screen and (max-width: 767px) {
    .logo {
        padding: 25px 0;
    }
    .logo img {
        max-width: 120px;
    }
    .nav-options {
        text-align: center;
    }
    .nav-options .nav-menu {
        display: none;
    }
    .nav-options .humberger-menu {
        float: none;
        margin-right: 10px;
    }
    .nav-options .nav-search {
        float: none;
    }
    .hero-slider.owl-carousel .owl-dots {
        max-width: 100%;
        margin-left: 0;
        margin-right: 15px;
        bottom: 0;
        left: 50%;
    }
    .hs-text {
        padding-top: 50px;
        padding-bottom: 20px;
    }
    .sidebar-option {
        padding-left: 0;
        padding-top: 40px;
    }
    .details-text .dt-pic-item .dp-pic,
    .contact-form .dt-pic-item .dp-pic {
        float: none;
        margin-right: 0;
    }
    .details-text .dt-pic-item .dp-text,
    .contact-form .dt-pic-item .dp-text {
        overflow: visible;
        padding-top: 20px;
    }
    .details-text .dt-related-post .rp-prev,
    .contact-form .dt-related-post .rp-prev {
        margin-bottom: 30px;
        overflow: hidden;
    }
    .tab-elem .nav-tabs {
        position: relative;
        right: 0;
        top: 0;
        margin-bottom: 20px;
    }
    .un-slider.owl-carousel .owl-nav {
        top: -46px;
    }
    .video-guide-section .tab-elem .nav-tabs {
        top: 0;
        right: 0;
    }
    .vg-slider.owl-carousel .owl-nav {
        top: -46px;
    }
    .ip-item .ip-pic {
        float: none;
        margin-right: 0;
        max-width: 100%;
    }
    .ip-item .ip-pic img {
        width: 100%;
    }
    .ip-item .ip-text {
        overflow: visible;
        padding-top: 30px;
    }
    .copyright-area .ca-text {
        text-align: center;
        margin-bottom: 11px;
    }
    .copyright-area .ca-links {
        text-align: center;
    }
    .ht-options .ht-widget {
        text-align: center;
        margin-bottom: 10px;
    }
    .ht-options .ht-social {
        display: none;
    }
    .categories-grid-section .col-lg-8,
    .categories-grid-section .col-lg-4 {
        padding-right: 15px !important;
        padding-left: 15px !important;
    }
    .categories-list-section .col-lg-8,
    .categories-list-section .col-lg-4 {
        padding-right: 15px !important;
        padding-left: 15px !important;
    }
    .cl-item .cl-pic {
        float: none;
        margin-right: 0;
        max-width: 100%;
    }
    .cl-item .cl-pic img {
        width: 100%;
    }
    .cl-item .cl-text {
        overflow: visible;
        padding-top: 30px;
    }
    .details-post-section .col-lg-8,
    .details-post-section .col-lg-4 {
        padding-right: 15px !important;
        padding-left: 15px !important;
    }
    .details-text .dt-leave-comment form .input-list input,
    .contact-form .dt-leave-comment form .input-list input {
        width: 100%;
        margin-right: 0;
        float: none;
    }
    .details-text .dt-leave-comment form .input-list,
    .contact-form .dt-leave-comment form .input-list {
        margin-right: 0;
    }
    .details-text .dt-comment .dc-item.reply-item,
    .contact-form .dt-comment .dc-item.reply-item {
        margin-left: 40px;
    }
    .details-text .dt-overall-rating .or-heading .or-item .or-loader,
    .contact-form .dt-overall-rating .or-heading .or-item .or-loader {
        float: none;
    }
    .details-text .dt-overall-rating .or-heading .or-item .or-text,
    .contact-form .dt-overall-rating .or-heading .or-item .or-text {
        overflow: visible;
        padding-top: 30px;
    }
    .text-404 .search-404 {
        width: 440px;
    }
    .signup-text .signup-form {
        width: 410px;
    }
    .dg-slider .dg-item {
        height: 480px;
    }
    .search-model-form input {
        width: 100%;
    }
}

/* Small Device = 320px */

@media only screen and (max-width: 479px) {
    .humberger-menu-wrapper {
        width: 300px;
        padding: 30px;
    }
    .trending-post {
        padding: 35px 20px 40px 20px;
    }
    .tab-elem .nav-item {
        margin-right: 5px;
    }
    .details-text .dt-share .ds-title,
    .contact-form .dt-share .ds-title {
        display: block;
        margin-right: 0;
        margin-bottom: 10px;
    }
    .details-text .dt-share .ds-links a,
    .contact-form .dt-share .ds-links a {
        margin-right: 6px;
        margin-bottom: 10px;
    }
    .details-text .dt-author .da-pic,
    .contact-form .dt-author .da-pic {
        float: none;
        margin-right: 0;
    }
    .details-text .dt-author .da-text,
    .contact-form .dt-author .da-text {
        overflow: visible;
        padding-top: 30px;
    }
    .details-text .dt-author .da-text .da-links a,
    .contact-form .dt-author .da-text .da-links a {
        margin-right: 4px;
        margin-bottom: 8px;
    }
    .details-text .dt-comment .dc-item .dc-pic,
    .contact-form .dt-comment .dc-item .dc-pic {
        float: none;
        margin-right: 0;
    }
    .details-text .dt-comment .dc-item .dc-text,
    .contact-form .dt-comment .dc-item .dc-text {
        overflow: visible;
        padding-top: 30px;
    }
    .details-text .dt-comment .dc-item .dc-text .reply-btn,
    .contact-form .dt-comment .dc-item .dc-text .reply-btn {
        position: relative;
        right: 0;
        top: 0;
    }
    .details-text .dt-overall-rating .or-heading .or-skill,
    .contact-form .dt-overall-rating .or-heading .or-skill {
        overflow: visible;
        margin-right: 0;
    }
    .details-text .dt-overall-rating .or-heading .or-skill .skill-item,
    .contact-form .dt-overall-rating .or-heading .or-skill .skill-item {
        width: 100%;
        float: none;
        overflow: visible;
        margin-right: 0;
    }
    .details-text .dt-overall-rating .or-qualities,
    .contact-form .dt-overall-rating .or-qualities {
        overflow: visible;
        margin-right: 0;
    }
    .details-text .dt-overall-rating .or-qualities .qualities-item,
    .contact-form .dt-overall-rating .or-qualities .qualities-item {
        width: 100%;
        float: none;
        overflow: visible;
        margin-right: 0;
    }
    .details-text .dt-overall-rating .or-rating p,
    .contact-form .dt-overall-rating .or-rating p {
        float: none;
        margin-bottom: 5px;
    }
    .details-text .dt-overall-rating .or-rating .rating-star,
    .contact-form .dt-overall-rating .or-rating .rating-star {
        float: none;
    }
    .text-404 h1 {
        font-size: 135px;
    }
    .text-404 .search-404 {
        width: 290px;
    }
    .copyright-area .ca-links a {
        margin-right: 15px;
    }
    .signup-text .signup-form {
        width: 280px;
    }
    .editor-choice .ec-item .ec-pic {
        float: none;
        margin-bottom: 15px;
    }
    .search-model-form input {
        font-size: 28px;
    }
}
