@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400;500;600;700&family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap'); * {
    box-sizing: border-box;
}

*,*:focus,*:hover,*:active,*:before,*:after {
    outline: 0;
}

*::-moz-selection {
    background: rgb(144 144 144 / 19%);
}

*::selection {
    background: rgb(144 144 144 / 19%);
}

::-webkit-scrollbar {
    width: 5px;
}

::-webkit-scrollbar-track, {
    background: #66230f;
}

::-webkit-scrollbar-thumb {
    background: #441c10;
}

html {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    position: relative;
}

body {
    width: 100%;
    background: #131313 url(https://i.imgur.com/ZoJWhW5.png) no-repeat;
    background-size: cover;
    background-attachment: fixed;
    font-family: montserrat, sans-serif;
    -webkit-font-smoothing: antialiased;
    color: #ffffff;
}

a {
    text-decoration: none;
    color: #ffffff;
    border: 0;
    cursor: pointer;
}

p, h1, h2, h3, h4, h5 {
    margin: 0;
    color: #ffffff;
}

.gh-card-meta {
    color: #ffffff;
}

.section-main, nav, footer {
    min-width: 100%;
    position: relative;
    display: block;
}

.navbar-in, .header-in, .section-in, .footer-in {
    width: 100%;
    padding-left: 40px;
    height: 100%;
    margin-left: auto;
    max-width: 1500px;
    position: relative;
    z-index: 5;
    padding-right: 40px;
    margin-right: auto;
}

.navbar-in {
    display: flex;
    align-items: center;
}

.navbar-logo {
    color: #FFF;
    font-family: 'Dancing Script', cursive;
}

.navbar-m {
    margin-left: 50px;
    margin-right: auto;
    display: flex;
    align-items: center;
    grid-gap: 40px;
}

.navbar-link, .footer-link {
    text-transform: uppercase;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 1px;
    color: #fff;
    transition: 150ms ease 0s;
}

.navbar-r {
    display: flex;
    align-items: center;
    grid-gap: 20px;
}

.navbar-ico {
    background: #090909;
    height: 37px;
    width: 37px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 18px;
    transition: 150ms ease 0s;
}

.navbar-link.c {
    border: 2px solid #f9f0d9;
    border-radius: 100px;
    padding: 8px 20px;
    transition: 200ms ease 0s;
}

.navbar-link:hover, .footer-link:hover {
    transform: translateX(5px);
    color: #f9f0d9;
}

.navbar-link.c:hover {
    transform: none;
    background: #f9f0d9;
    color: #160b07;
}

.navbar-ico:hover {
    background: #202020;
}

.header {
    height: 85vh;
    padding-top: 100px;
    position: relative;
    border-bottom: 2px solid #090909;
    padding-bottom: 100px;
}

.header-background {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
    top: 0;
    left: 0;
}

.header-background video {
    width: 100%;
    object-fit: cover;
    object-position: 50% 50%;
    height: 100%;
}

.header:before {
    content: "";
    width: 100%;
    height: 100%;
    background-color: rgb(10 2 2 / 88%);
    background-repeat: repeat-x;
    backdrop-filter: blur(2px);
    top: 0;
    left: 0;
    position: absolute;
}

.header-in {
    display: flex;
    align-items: center;
}

.header-l {
    width: 55%;
}

.header-title {
    font-weight: 900;
    text-transform: uppercase;
    font-size: 57px;
    color: #f9f0d9;
}

.header-title span {
    -webkit-text-stroke-width: 2px;
    -webkit-text-stroke-color: #ffffff;
    color: transparent;
}

.header-desc {
    font-size: 15px;
    color: #e9e9e9;
    margin: 20px 0;
    line-height: 30px;
}

.header-btn {
    border: 2px solid #f9f0d9;
    padding: 10px 30px;
    border-radius: 0 100px 100px 0;
    display: block;
    width: fit-content;
    font-size: 16px;
    letter-spacing: 1px;
}

.header-btn:hover i {
    transform: translateX(5px);
}

.header-btn i {
    transition: 150ms ease 0s;
}

.promo-cate {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 40px;
    margin-top: -100px;
    margin-bottom: 140px;
}

.promo-cate-card {
    position: relative;
    height: 250px;
    border: 1px solid #322821;
    border-radius: 5px;
}

.promo-cate-bg {
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    overflow: hidden;
    width: 100%;
    height: 100%;
    border-radius: 5px;
}

.promo-cate-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 350ms ease 0s;
}

.promo-cate-in {
    height: 100%;
    width: 100%;
    position: relative;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    z-index: 1;
}

.promo-cate-card:before {
    content: "";
    background: #441c10;
    box-shadow: 3px 3px 15px 1px rgb(0 0 0 / 60%);
    border-radius: 5px;
    transform: translate(5px,5px);
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    position: absolute;
    z-index: -1;
}

.promo-cate-in h1 {
    color: #f9f0d9;
    font-family: 'Dancing Script', cursive;
    font-size: 33px;
}

.promo-cate-card:after {
    position: absolute;
    top: 0;
    left: 0;
    content: "";
    width: 100%;
    height: 100%;
    background: #0c0301;
    opacity: 0.6;
    transition: 369ms ease 0s;
}

.promo-cate-in p {
    font-size: 15px;
    color: #fff;
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: 1px;
}

.promo-cate-card:hover:after {
    opacity: 0.2;
}

.promo-cate-card:hover .promo-cate-bg img {
    transform: scale(1.1);
}

.about-container {
    width: 58%;
    margin-left: auto;
}

.about-img {
    height: 400px;
    width: 40%;
    position: absolute;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 0 5px 5px 0;
    border: 1px solid #322821;
    border-left: 0;
    top: 0;
    bottom: 0;
    margin: auto 0;
}

.about {
    display: flex;
    align-items: center;
    height: 400px;
}

.about-container h3 {
    font-size: 18px;
    color: #f9f0d9;
    font-weight: 400;
    letter-spacing: 0.5px;
}

.about-container h1 {
    font-size: 36px;
    font-weight: 600;
    color: #fff;
    margin: 20px 0;
    line-height: 48px;
}

.about .section-in {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-container p {
    font-size: 16px;
    color: #f9f0d9;
    line-height: 26px;
    letter-spacing: 0.5px;
    font-weight: 300;
}

.about-container a {
    margin-top: 18px;
    display: block;
    width: fit-content;
    text-transform: uppercase;
    font-weight: 500;
}

.about-container a i {
    margin-left: 6px;
}

.feedback {
    padding: 80px 0;
    position: relative;
    margin: 100px 0;
}

.feedback:before {
    content: "";
    position: absolute;
    width: 200%;
    height: 100%;
    background: rgb(0 0 0 / 20%);
    backdrop-filter: blur(2px);
    left: -50%;
    top: 0;
    z-index: -1;
}

.feedback-title {
    text-align: center;
    font-weight: 600;
    font-family: 'Dancing Script', cursive;
    color: #fff;
    font-size: 50px;
}

.feedback-holder {
    margin-top: 50px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 60px;
}

.feedback-container {
    position: relative;
}

.feedback-body {
    font-size: 16px;
    line-height: 26px;
    letter-spacing: 0.5px;
    font-weight: 200;
    color: #f9f0d9;
}

.feedback-footer {
    display: flex;
    align-items: center;
    grid-gap: 20px;
    margin-top: 20px;
}

.feedback-author-img {
    width: 60px;
    height: 60px;
    border-radius: 5px;
    background-position: center;
    background-size: cover;
}

.feedback-author {
    position: relative;
}

.feedback-author h4 {
    color: #fff;
    letter-spacing: 1px;
    font-weight: 600;
    font-size: 19px;
}

.feedback-author p {
    color: #fff;
    font-weight: 300;
    font-size: 14px;
}

.feedback-body .fa-quote-left {
    margin-right: 10px;
    color: #f9f0d9;
}

.feedback-body .fa-quote-right {
    margin-left: 10px;
    color: #f9f0d9;
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    margin-top: 100px;
}

.footer-main {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    margin-top: 20px;
    margin-bottom: 30px;
}

.footer-m {
    display: flex;
    align-items: center;
    grid-gap: 20px;
    margin: 0 auto;
}

.footer-m .navbar-ico {
    border-radius: 100px;
    font-size: 16px;
}

.footer-l {
    align-items: center;
    display: flex;
    grid-gap: 20px;
}

.footer-r {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    grid-gap: 10px;
}

.footer-credit {
    font-size: 15px;
    color: #fff;
    font-weight: 400;
}

.footer-credit.xn {
    background: #0000003d;
    padding: 2px 7px;
    border-radius: 5px;
}

.footer-logo:before, .footer-logo:after {
    height: 3px;
    width: 40%;
    content: "";
    background: #ffffff1f;
}

.gallery-item:before {
    position: absolute;
    top: 0;
    left: 0;
    content: "";
    width: 100%;
    height: 100%;
    background: #0c0301;
    transition: 360ms ease 0s;
    z-index: 1;
    opacity: 0;
}

.gh-foot, .gh-foot a {
    color: #ffffff;
}

.overflow-none {
    overflow: hidden;
}

.gallery-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(330px, 1fr));
    justify-content: center;
    grid-gap: 40px;
    align-items: center;
}

.gallery-image {
    width: 100%;
    height: 400px;
    overflow: hidden;
    border-radius: 5px;
    box-shadow: 6px 6px #441c10;
}

.gallery-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    border-radius: 5px;
    transition: 150ms ease 0s;
}

.gallery-image:hover img {
    transform: scale(1.1);
}

.xn-header {
    display: flex;
    align-items: center;
    grid-gap: 70px;
}

.xn-header .gh-article-image {
    margin: 0;
    height: 500px;
    width: 100%;
    max-width: 600px;
}

.xn-header .gh-article-image img {
    border-radius: 10px;
    height: 100%;
    object-fit: cover;
}

.xn-posts-cards {
    margin-bottom: 0;
    margin-top: var(--header-spacing, 80px);
}

@media screen and (max-width: 1024px) {
    .header-title {
        font-size: 26px;
    }

    .header-l {
        width: 100%;
        padding: 60px 0;
    }

    .promo-cate {
        grid-template-columns: 1fr;
    }

    .header {
        height: auto;
        padding-top: 60px;
    }

    #gh-head .gh-head-menu {
        flex-direction: column;
    }

    .footer-main {
        grid-template-columns: 1fr;
        align-items: center;
        justify-content: center;
    }

    .footer-r {
        flex-direction: column;
    }

    .footer-l {
        justify-content: center;
        flex-wrap: wrap;
    }

    .footer-m {
        padding: 20px 0;
    }

    .navbar-r {
        flex-wrap: wrap;
        justify-content: center;
    }

    .about-container {
        width: 100%;
    }

    .about-img {
        position: relative;
        width: calc(100% - 80px);
        height: 200px;
        border-radius: 10px;
        margin-bottom: 40px;
    }

    .about {
        flex-direction: column;
        height: auto;
    }

    .feedback-holder {
        grid-template-columns: 1fr;
    }

    .gallery-image {
        height: 250px;
    }

    .gh-head-logo img {
        max-height: 30px;
    }

    #gh-head .gh-head-brand {
        height: 90px;
    }

    .gh-article-title {
        font-size: 29px;
        line-height: 44px;
        font-weight: 800;
    }

    .xn-header {
        flex-direction: column;
    }

    .xn-header .gh-article-image {
        height: 210px;
    }

    .gh-article-excerpt {
        margin-top: 10px;
    }

    .gh-feed {
        grid-template-columns: 1fr;
    }

}
