
/* colors */
:root {
    --white: #ffffff;
    --light: #f8f8f8;
    --light-extra:#676767;
    --info: #fcf7ff;
    --dark: #404040;
    --secondary: #404040;
    --warning: #f8f8f8;
    --danger: #292929;
    --danger-2: #292929;
    --danger-3: #ef0251;
    --shadow: rgba(230, 230, 230, 0.6);
}

.home {
    height: 100% !important; 
}

.content-wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    justify-content: space-between;
}

#hallwn-blog {
    flex: 1;
}

.white-text {
    color: var(--white);
}
.dark-text {
    color: var(--dark);
}
.danger-text {
    color: var(--danger);
}
.secondary-text {
    color: var(--secondary);
}

.white-bg {
    background: var(--white);
}
.light-bg {
    background: var(--light);
}
.warning-bg {
    background: var(--warning);
}
.info-bg {
    background: var(--info);
}
.danger-bg {
    background: var(--danger-2);
}
.secondary-bg {
    background: var(--secondary);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-weight: normal;
    font-style: normal;
    color: var(--secondary);
    transition: all 0.3s linear;
    min-height:100%;
    line-height:30px;
}

ul {
    margin: 0;
    padding: 0;
    list-style:inside;
}
a {
    text-decoration: none;
    color: var(--dark);
    cursor: pointer;
}
a:focus {
    text-decoration: none;
}
a:hover {
    text-decoration: none !important;
    color: var(--dark);
}
button {
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
    font-weight: normal;
    font-style: normal;
    border: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: bold;
    color: var(--dark);
    margin-top: 0;
    margin-bottom: 0;
    font-style: normal;
}
h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
    color: inherit;
}

h2 {
    font-size: 2.25rem;
}
h3 {
    font-size: 1.5rem;
}
h4 {
    font-size: 1.25rem;
}
h5 {
    font-size: 1.125rem;
}
h6 {
    font-size: 1rem;
}
p {
    padding:0;
    margin:0;
}

.container {
    width: 85%;
    margin: 0 auto;
}

img {

    background-position: 100% 100%;
    background-size: cover;
    object-fit: cover;
    vertical-align: middle;
}

.card-img,
.card-img-bottom,
.hallwn-card-img-top {
    width: 100%;
}
::-moz-selection {
    background: var(--danger-2);
    color: #fff;
    text-shadow: none;
}
::selection {
    background: var(--danger-2);
    color: #fff;
    text-shadow: none;
}
*::-moz-placeholder {
    background: var(--secondary);
    font-size: 14px;
    opacity: 1;
}
*::placeholder {
    background: var(--secondary);
    font-size: 14px;
    opacity: 1;
}
/* input fields */

input,
textarea {
    border: none;
}

iframe {
    width: 100%;
    height: 200px;
    border-radius: 12px;
}

/* buttons */

.hallwn-primary-btn {
    display: inline-block;
    background-color: var(--danger-2);
    color: var(--white);
    border-radius: 50px;
    padding: 0.5em 1em;
    cursor: pointer;
}
button.hallwn-primary-btn.hallwn-post-category a{
   color: var(--white); 
}
.hallwn-primary-btn:hover {
    color: var(--white);
}
.white-btn {
    background-color: var(--white);
}
.search-btn {
    width: 40px;

    height: 40px;
    border-radius: 20px;
    box-shadow: 0 0 10px 2px var(--shadow);
}
.hallwn-subscribe-btn {
    padding: 15px 0;
    font-size: 1em;
    border-radius: 30px;
    cursor: pointer;
}
.subscribe-btn-header{
    padding: 15px 40px;
    font-size: 1em;
    border-radius: 30px;
    margin-left: 30px;
    cursor: pointer;
}
.hallwn-comment-btn {
    display: inline-block;
    border-radius: 30px;
    padding: 15px 40px;
    background-color: var(--light);
    cursor: pointer;
}
.hallwn-comment-btn.subscribe-btn{
    display: inline-block;
    border-radius: 30px;
    padding: 1em 1.5em;
    background-color: var(--danger-2);
    cursor: pointer;
    color:var(--white);
    margin-left:0;
}
.hallwn-comment-btn i {
    padding-right: 8px;
    color: var(--danger-2);
}
.more-post-btn {
    display: inline-block;
    padding: 15px 40px;
    background: var(--white);
    color: var(--danger-2);
    font-weight: 500;
    transition: 0.3s linear;
    font-weight: bold;
    height: max-content;
}
.more-post-btn:hover {
    background: var(--danger-2);
    color: var(--white);
}
.btn {
    margin-right: 10px;
}
.section-title {
    display: flex;
    justify-content: space-between;
}

/* card  */

.card-inner {
    padding: 30px;
}
.hallwn-card {
    background-color: var(--white);
    border-radius: 12px;
    border: none;
    height: max-content;
    width: revert;
}
.hallwn-card-img-top {
    object-fit: cover;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    height: 540px;
}
.page-img-top{
    object-fit: cover;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    height: 740px;
}
.page-img-top {
    width: 100%;
}

/* similler css  */

/* socials icons start */

.hallwn-social-icons {
    display: flex;
    justify-content: space-evenly;
}
.hallwn-social-icons .hallwn-icons {
    height: 50px;
    min-width: 50px;
    border-radius: 25px;
    background-color: var(--warning);
    display: grid;
    place-items: center;
    color: var(--dark);
    font-size: 20px;
    transition: 0.3s ease;
}
.hallwn-icon-bg {
    height: 40px;
    display: grid;
    width: 40px;
    place-items: center;
    border-radius: 100%;
}

.hallwn-social-icons.addon-hallwn-social-icons.mb-25 .hallwn-icon-bg{
    height: 40px;
    display: grid;
    width: 40px;
    place-items: center;
    border-radius: 20px; 
}
.hallwn-icon-bg i {
    font-size: 1.1rem;
}
.hallwn-social-icons .hallwn-icon-bg:hover {
    background: var(--white);
    box-shadow: 0 0 10px 2px var(--shadow);
    color: var(--danger-2);
    padding:0 8px 0 8px;
}

/* social icons end*/

.hallwn-img-overlay {
    position: relative;
    background-repeat: no-repeat;
    object-fit: cover;
    border-radius: 12px;
    min-height: 557px;
    background-size: cover;
    background-position: 100% 100%;
}
.hallwn-overlay-bg {
    position: absolute;
    bottom: 0%;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: end;
    align-items: flex-start;
    background-repeat: no-repeat;
    background-size: cover !important;

    border-radius: 12px;
}
.hallwn-overlay-bg h4 a:hover {
    color: var(--white);
}
.section-heading span {
    position: relative;
}
.section-heading span::after {
    content: "";
    bottom: 2px;
    left: 4%;
    display: block;
    position: absolute;
    height: 6px;
    width: 110%;
    background: var(--danger-2);
    opacity: 0.3;
}
.post-heading span {
    position: relative;
}

.hallwn-post-img {
    position: relative;
}
.hallwn-post-category {
    position: absolute;
    border-radius: 25px;
    left: 30px;
    bottom: 30px;
}
.post-heading span::after{
    content: "";
    bottom:0;
    left: 5%;
    display: block;
    position: absolute;
    height: 6px;
    width: 100%;
    background: var(--danger-2);
    opacity: 0.3;
}

/* post  */

.hallwn-post-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 0;
}
.hallwn-post-footer a {
    color: var(--dark);
    position: relative;
}
.hallwn-post-footer a:hover {
    color: var(--dark);
}

.hallwn-post-footer a:hover::after {
    content: "";
    position: absolute;
    bottom: 0px;
    left: 8%;
    height: 4px;
    width: 100%;
    background: var(--danger-2);
    opacity: 0.3;
}

.hallwn-post-author {
    background-color: transparent;
    display: flex;
    gap: 14px;
    justify-content: space-around;
    align-items: center;
    padding: 10px 15px 10px 0px;
    border-radius: 30px;
}
.hallwn-post-author.single-post{
  margin-top:0;  
}

/* owl casousel start  */

.owl-carousel .owl-dots {
    display: none;
}
.owl-theme .owl-dots .owl-dot {
    display: none;
}
.owl-theme .owl-nav.disabled {
    display: block !important;
}
.owl-theme .owl-nav button {
    position: absolute;
    border-radius: 25px !important;
    height: 50px;
    width: 50px;
    background: var(--danger-2);
}
.owl-theme .owl-nav button span {
    color: var(--white);
    font-size: 2rem;
    line-height: 65%;
}
.owl-theme .owl-nav .owl-prev {
    left: -5.5% !important;
    top: 40%;
}
.owl-theme .owl-nav .owl-next {
    top: 40%;
    right: -5.5%;
}

.post-heading {
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* standard-post & standard-img-post start */

.home .hallwn-post-cards .hallwn-standard-img-post {
    border-radius: 10px;
}
.home .hallwn-standard-img-post .hallwn-post-author {
    border-radius: 20px;
}

.home .hallwn-post-cards .standard-post {
    border-radius: 10px;
}
.home .standard-post .hallwn-post-title {
    margin-top: 25px;
}
.home .standard-post .hallwn-post-author {
    border-radius: 20px;
}
.home .standard-post .read-more {
    color: var(--dark);
}
.home .standard-post .read-more {
    color: var(--dark);
}

.home .travel .hallwn-post-excerpt {
    min-height: 75px;
}

.home .improve .hallwn-post-excerpt {
    min-height: 75px;
}
/*  standard-post & standard-img-post end */

/* standard-video start  */

.hallwn-standard-video .hallwn-post-img {
    position: relative;
}
.hallwn-standard-video .play-img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.hallwn-standard-video .play-img img {
    width: 100%;
}

/* standard-video end  */

.hallwn-profile-card {
    text-align: center;
}
.hallwn-profile-img img {
    margin:0 auto;
}

/* gallery post start */

.image-area {
    height: 100px;
    width: 100%;
    max-width: 100%;
    background-size: cover;
    background-position: center;
    border-radius: 10px;
}

.hallwn-gallery-post {
    background-color: transparent;
    border-radius: 10px;
}
.hallwn-gallery-post .hallwn-post-heading {
    margin-bottom: 20px;
}
.hallwn-gallery-post .hallwn-comment-btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    background: var(--white);
    width: fit-content;
    margin-top: 30px;
    text-align: center;
}
.hallwn-gallery-header {
    display: flex;
    justify-content: space-between;
    flex-direction: row !important;
    flex-wrap: wrap;
    align-items: center;
}
.hallwn-gallery-post-nav {
    display: flex !important;
    flex-wrap: wrap;
    justify-content: space-between !important;
    align-items: center;
}
.hallwn-gallery-post-nav ul {
    margin: 0;
    padding: 0;
}

.hallwn-gallery-header a {
    font-size: 16px;
    color: var(--dark);
}
.hallwn-gallery-cards {
    display: grid;
    grid-template-columns: 32% 32% 32%;
    justify-content:space-between;
}
.hallwn-gallery-card {
    background-color: var(--light);
    border-radius:10px;
}

.hallwn-gallery-content {
    position: relative;
    padding: 30px;
    display: flex;
    flex-direction: column;
    border-radius:10px;
}
.hallwn-gallery-post img {
    width: 100%;
    height: 100%;
    border-radius: 10px 10px 0 0;
}
.hallwn-gallery-post.mt-40.single-page img{
    width: 100%;
    height: 200px;
    border-radius: 10px 10px 0 0; 
}

.hallwn-gallery-content button {
    position: absolute;
    top: -17px;
    left: 10%;
    font-size: 14px;
    border-radius: 25px;
}

.hallwn-gallery-content p {
    max-height: auto;
    font-size: 18px;
    overflow: hidden;
}
.hallwn-gallery-content span {
    font-size: 14px;
    color:#292929;
}

/* gallery post end */

/* ads banner start */

.ads {
    position: relative;
    background-image: url("../images/others/ads-bg.png");
    background-size: cover;
    background-position: center;
    object-fit: cover;
    display: grid;
    place-items: center;
    height: 505px;
    max-width: 387px;
    border-radius: 12px;
    background-position: center;
}
.ads-banner-content {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-size: cover;
    border-radius: 12px;
}
.ads-banner-content p {
    color: var(--white);
}
.ads-banner-content p:nth-child(1) {
    font-size: 14px;
}
.ads-banner-content p:nth-child(2) {
    font-size: 30px;
    margin: 15px 0 30px 0;
}
.ads-banner-content .primary-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    height: 50px;
    width: 140px;
    font-size: 14px;
    border-radius: 70px;
}
.ads-banner-content a:hover {
    color: var(--white);
}

/* ads banner start */

/* Quote start */

.qoute-container p {
    font-size: 18px;
}
.qoute-container .quote-para::after {
    content: "";
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--warning);
    margin-top: 25px;
    margin-bottom: 25px;
}
.qoute-container .quote-para {
    margin-top: 20px;
}
.quote-author {
    display: flex;
    gap: 20px;
    align-items: center;
}
.qoute-container .hallwn-author-img {
    height: 70px;
    max-width: 70px;
    border-radius: 50%;
}
.quote-author p {
    max-width: 225px;
    font-size: 16px;
}
.quote-author span {
    font-size: 14px;
}
.quote-para-2 {
    display: grid;
    place-items: center;
}

/* quote-2 start  */

.quote-2 {
    text-align: center;
}

/*social profile start*/

.hallwn-social-profile-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.hallwn-social-profile .hallwn-social-icons {
    position: relative;
    width: 85%;
    display: grid;
    grid-template-columns: 50px 1fr;
    align-items: center;
    border-top-left-radius: 30px;
    border-bottom-left-radius: 30px;
    background-color: var(--light);
    text-align:center;
    height:53px;
}
.hallwn-social-profile .hallwn-icons {
    background-color: var(--white);
}
.hallwn-social-profile span {
    justify-self: center;
    font-size: 16px ;
}
.hallwn-social-profile .hallwn-social-icons::after {
    position: absolute;
    content: "";
    top: 0;
    left: 100%;
    height: 53px;
    width: 50px;
    background-color: var(--white);
    border-top-right-radius: 25px;
    border-bottom-right-radius: 25px;
    background-image: url("../img/feather-external-link.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: inherit;
    transition: all 0.5s ease;
}

.hallwn-social-profile .hallwn-social-icons:hover::after{
    position: absolute;
    content: "";
    top: 0;
    left: 100%;
    height: 53px;
    width: 50px;
    background-color: var(--white);
    border-top-right-radius: 25px;
    border-bottom-right-radius: 25px;
    background-image: url("../img/external-link.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: inherit;
    transition: all 0.5s ease;
}

.hallwn-social-profile .hallwn-social-icons:hover::after {
    background-color: var(--danger-2);
}
.hallwn-social-profile .hallwn-icons:hover {
    color: var(--danger-2) !important;
}

/* -- POST END--*/

/* --Highlight POST START--*/

.hallwn-hl-post {
    height: auto;
    width: 100%;
}
.hallwn-hl-post .card {
    width: unset;
}
#hallwn-blog .hallwn-card{
    overflow:hidden;
}
.hallwn-hl-post .hallwn-post-author {
    background-color: transparent;
}

/* image-overlay start  */

.hallwn-hl-post .hallwn-img-overlay {
    position: relative;
    background-size: cover;
    object-fit: cover;
    border-radius: 12px;
    background-repeat: no-repeat;
}
.hallwn-hl-post .hallwn-post-author {
    padding: 0;
}

.hallwn-hl-post .hallwn-post-title {
    margin-top: 15px;
}
.hallwn-hl-post .section-heading {
    margin-bottom: 45px;
}

.hallwn-hl-post .hallwn-overlay-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: end;
    align-items: flex-start;
    background: url("../img/Ov.png") !important;
    object-fit: cover;
    border-radius: 12px;
    background-size: cover !important;
}


.hallwn-hl-post .hallwn-overlay-content h4 {
    color: var(--white);
    line-height: 30px;
}
.hallwn-hl-post .hallwn-overlay-content a:hover {
    color: var(--white);
}


.quick-access .post-cards {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}
.hallwn-hl-post .owl-theme .owl-nav .owl-prev {
    left: -6% !important;
    top: 49%;
    transform: translateY(-50%);
}
.hallwn-hl-post .owl-theme .owl-nav .owl-next {
    right: -6% !important;
    top: 49%;
    transform: translateY(-50%);
}

/* subscription start  */

.hallwn-subscription .post-heading {
    padding-bottom: 20px;
    gap: 20px;
    border-bottom: 3px solid var(--warning);
    width:-webkit-fill-available;
    justify-content:flex-start;
}

.subscribe-title span {
    font-size: 18px;
}

.subscribe-title span {
    transition: 0.5s linear;
    cursor: pointer;
}

.subscribe-title {
    display: flex;
    justify-content: space-around;
}

.subscription-period {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    align-items: center;
    border-radius: 30px;
}
.subscription-period span.monthly,
.subscription-period span.yearly {
    padding: 1em 0px;
    width: 50%;
    text-align: center;
    border-radius: 50px;
}

.subscription-period .primary-btn {
    width: 50%;
    text-align: center;
}
.subscription-offer {
    border-radius: 12px;
}
.subscription-offer li {
    line-height: 30px;
}
.subscription-offer i {
    color: #3ab467;
}
.subscription-offer li:nth-child(2) i {
    color: #ef0251;
}
.subscription-offer li:nth-child(4) i {
    color: #ef0251;
}

#middle.subscription-offer li:nth-child(2) i {
    color: #3ab467;
}
#enterprise.subscription-offer li:nth-child(2) i,
#enterprise.subscription-offer li:nth-child(4) i {
    color: #3ab467;
}
.hallwn-subscribe-btn-2 {
    margin-left: 0;
    font-size: 14px;
}
.hallwn-subscribe-btn-2 span {
    color: var(--danger-2);
    font-weight: 700;
    font-size: 16px;
    margin-right: 10px;
}
.primary-btn.hallwn-subscribe-btn-2 {
    color: var(--white);
    background-color: var(--danger);
}

.subscribe-now-img img {
    width: 100%;
    background-size: cover;
    background-position: center;
}

.hallwn-top-categories .hallwn-single-category-items li {
    position: relative;
    font-size: 18px;
    color: #292929;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
.hallwn-top-categories .hallwn-single-category-items.sidebar-widget li{
    position: relative;
    font-size: 18px;
    color: #292929;
    display: flex;
    justify-content: space-between !important;
}
.hallwn-top-categories .hallwn-single-category-items.sidebar-widget li::before{
    content:none;
}

.hallwn-top-categories .hallwn-single-category-items li::before {
   
    content: "";
    height: 3px;
    width: 30px;
    background-color: var(--warning);
    margin-right: 10px;
}
.hallwn-top-categories .hallwn-single-category-items ul {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* tags start   */

.hallwn-tags .hallwn-tags-btn{
    display: flex;
    justify-content: start;
    flex-wrap: wrap;
    gap: 15px;
    row-gap: 15px;
}
.hallwn-tags .hallwn-tags-btn a{
    background-color: var(--light);
    color: var(--dark);
    transition: all 0.3s linear;
    display: grid;
    place-items: center;
    padding: .5em 1em;
    border-radius: 50px;
}
.hallwn-tags .hallwn-tags-btn a:hover {
    background-color: var(--danger-2);
    color: var(--white);
}

/* tags end   */

input {
    border: none;
    width: 100%;
    height: 50px;
}
input::-webkit-input-placeholder {
    background-color: var(--white);
}
textarea::-webkit-input-placeholder {
    background-color: var(--white);
}


.blog-dual-img {
    gap: 1rem;
}
.blog-dual-img img {
    max-width: 100%;
}
.blog-img-1,
.blog-img-2 {
    max-width: 445px;
}

.our-secvice-offer {
    padding: 5% 15%;
}
.our-secvice-offer ul {
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.hallwn-blog-quote {
    text-align: center;
    border-radius: 10px;
}
.hallwn-blog-qoute-content {
    row-gap: 20px;
    flex-direction: column;
}
.hallwn-blog-qoute-content i {
    color: var(--dark);
}

.hallwn-blog-qoute-content p:nth-child(3) {
    color: var(--dark);
}
.hallwn-blog-qoute-content span {
    color: var(--dark);
}
.blog-single-img {
    max-width: 917px;
}
.blog-single-img img {
    max-width: 100%;
}

/* tab start*/

.hallwn-tab,
.tab2,
.hallwn-tab3 {
    overflow: hidden;
    margin-bottom: 20px;
    display: flex;
    justify-content: space-between;
}

.hallwn-tab button,
.tab2 button,
.hallwn-tab3 button {
    position: relative;
    background-color: inherit;
    float: left;
    border: none;
    cursor: pointer;
    padding: 0.2em 0.5em;
    transition: 0.3s;
    font-size: 17px;
    border-bottom: 3px solid transparent !important;
    transition: 0.3s linear;
}

button.tablink,
button.tablink2,
button.tablink3 {
    background-color: transparent;
}

.tab button.active,
.tab2 button.active,
.hallwn-tab3 button.active {
    border-bottom: solid var(--danger-2) !important;
}

.tabcontent,
.tabcontent2,
.hallwn-tabcontent3 {
    display: none;
    border-top: none;
}

.tabcontent,
.tabcontent2,
.hallwn-tabcontent3 {
    animation: fadeEffect 1s;
}

@keyframes fadeEffect {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.blog-tab-section {
    display: flex;
    flex-wrap: wrap;
    gap: 10%;
}
.tab-section-left {
    flex: 1 1 30%;
}

.tab-section-right {
    flex: 1 1 50%;
}

/* tab end  */

.our-secvice-offer2 ul {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.our-secvice-offer2 li i {
    font-size: 5px;
    color: #833ab4;
    line-height: 3;
}
.share-blog-post.social-share .share-left {
    flex-flow: column;
    justify-content: start;
}
.social-share.share-left span {
    margin: 0 !important;
}
.social-share .hallwn-tags .primary-btn {
    border: 1px solid #e3e3e3;
    background-color: var(--white);
    color: var(--dark);
}
.social-share .hallwn-tags li {
    margin-bottom: 15px;
}

.size-feature-thumb{
    width: 100%;
    height: 100%;
}

h4.hallwn-profile-title{
    text-align:center !important;
}

.hallwn-post-author.hallwn-post-widget div{
    display:flex;
    align-items:center;
}