/* colors */
:root {
    --white: #ffffff;
    --light: #f8f8f8;
    --info: #fcf7ff;
    --dark: #292929;
    --secondary: #676767;
    --warning: #3965ad21;
    --danger: #3965ad;
    --danger-2: #3965ad;
    --shadow: rgba(230, 230, 230, 0.6);
}

/* text colors */
.white-text {
    color: var(--white);
}

.dark-text {
    color: var(--dark);
}

.danger-text {
    color: var(--danger);
}

.secondary-text {
    color: var(--secondary);
}

/* background colors */
.white-bg {
    background: var(--white);
}

.light-bg {
    background: var(--light);
}

.warning-bg {
    background: #3965ad11;
}

.info-bg {
    background: var(--info);
}

.danger-bg {
    background: var(--danger-2);
}

.secondary-bg {
    background: var(--secondary);
}

* {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    box-sizing: border-box;
}

body {
    font-weight: normal;
    font-style: normal;
    color: var(--secondary);
    -webkit-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear;
}

ul {
    margin: 0;
    padding: 0;
}

button {
    -webkit-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
    outline: none;
    font-family: "Mulish", sans-serif;
    font-weight: normal;
    font-style: normal;
    border: none;
}

button:focus {
    outline: none !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Inter", sans-serif;
    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 {
    font-size: 1em;
    font-weight: normal;
    line-height: 28px;
    color: var(--secondary);
    margin-bottom: 0;
}

li {
    list-style: none;
}


img {
    max-width: 100% !important;
    background-position: 100% 100%;
    background-size: cover;
    -o-object-fit: cover;
    object-fit: cover;
    vertical-align: middle;
}

.card-img,
.card-img-bottom,
.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;
}

*::-webkit-input-placeholder {
    background: var(--secondary);
    font-size: 14px;
    opacity: 1;
}

*:-ms-input-placeholder {
    background: var(--secondary);
    font-size: 14px;
    opacity: 1;
}

*::-ms-input-placeholder {
    background: var(--secondary);
    font-size: 14px;
    opacity: 1;
}

*::placeholder {
    background: var(--secondary);
    font-size: 14px;
    opacity: 1;
}

/* input fields */
textarea:focus,
input:focus {
    outline: none !important;
}

input:focus,
textarea:focus {
    border: none;
}

input,
textarea {
    border: none;
}

iframe {
    width: 100%;
    height: 200px;
    border-radius: 12px;
}

/* buttons */
.primary-btn {
    display: inline-block;
    background-color: var(--danger-2);
    color: var(--white);
    border-radius: 26px;
    padding: 0.5em 1em;
    cursor: pointer;
}

.primary-btn:hover {
    color: var(--white);
}

.white-btn {
    background-color: var(--white);
}

.search-btn {
    width: 40px;
    cursor: pointer;
    height: 40px;
    border-radius: 20px;
    -webkit-box-shadow: 0 0 10px 2px var(--shadow);
    box-shadow: 0 0 10px 2px var(--shadow);
}

.subscribe-btn {
    padding: 15px 40px;
    font-size: 1em;
    border-radius: 30px;
    margin-left: 30px;
    cursor: pointer;
}

.comment-btn {
    display: inline-block;
    border-radius: 30px;
    padding: 1em 1.5em;
    background-color: var(--warning);
    cursor: pointer;
}

.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);
    border-radius: 30px;
    font-weight: 500;
    -webkit-transition: 0.3s linear;
    -o-transition: 0.3s linear;
    transition: 0.3s linear;
    outline: 2px solid var(--danger-2) !important;
    font-weight: bold;
    height: -webkit-max-content;
    height: -moz-max-content;
    height: max-content;
}

.more-post-btn:hover {
    background: var(--danger-2);
    color: var(--white);
}

.btn {
    margin-right: 10px;
}

.section-title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

/* card  */
.card-inner {
    padding: 30px;
}

.card {
    background-color: var(--white);
    border-radius: 12px;
    border: none;
    height: -webkit-max-content;
    height: -moz-max-content;
    height: max-content;
    width: revert;
}

.card-img-top {
    -o-object-fit: cover;
    object-fit: cover;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

/* similler css  */

/* socials icons start */
.social-icons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: space-evenly;
    -ms-flex-pack: space-evenly;
    justify-content: space-evenly;
}

.social-icons .icons {
    height: 50px;
    min-width: 50px;
    border-radius: 25px;
    background-color: var(--warning);
    display: -ms-grid;
    display: grid;
    place-items: center;
    color: var(--dark);
    font-size: 20px;
    -webkit-transition: 0.3s ease;
    -o-transition: 0.3s ease;
    transition: 0.3s ease;
}

.icon-bg {
    height: 40px;
    display: -ms-grid;
    display: grid;
    width: 40px;
    place-items: center;
    border-radius: 20px;
}

.icon-bg i {
    font-size: 1.5rem;
}

.social-icons .icon-bg:hover {
    background: var(--white);
    -webkit-box-shadow: 0 0 10px 2px var(--shadow);
    box-shadow: 0 0 10px 2px var(--shadow);
    color: var(--danger-2);
}

/* social icons end*/

.img-overlay {
    position: relative;
    background-repeat: no-repeat;
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: 12px;
    min-height: 557px;
    background-size: cover;
    background-position: 100% 100%;
}

.overlay-bg {
    position: absolute;
    bottom: 0%;
    left: 0;
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: end;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    background-repeat: no-repeat;
    background-size: cover !important;

    border-radius: 12px;
}

.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;
}

.post-img {
    position: relative;
}

.post-category {
    position: absolute;
    border-radius: 25px;
    left: 30px;
    bottom: 30px;
}

.post-heading span::after {
    content: "";
    bottom: 0px;
    left: 5%;
    display: block;
    position: absolute;
    height: 6px;
    width: 100%;
    background: var(--danger-2);
    opacity: 0.3;
}

/* post  */

.post-footer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.post-footer a {
    color: var(--dark);
    position: relative;
}

.post-footer a:hover {
    color: var(--dark);
}

.post-footer a:hover::after {
    content: "";
    position: absolute;
    bottom: 3px;
    left: 14%;
    height: 4px;
    width: 100%;
    background: var(--danger-2);
    opacity: 0.3;
}

.post-author {
    background-color: var(--warning);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 14px;
    -ms-flex-pack: distribute;
    justify-content: space-around;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 15px;
    margin-top: 20px;
    border-radius: 30px;
}

/* 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) !important;
}

.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 {
    right: -5.5% !important;
    top: 40%;
}

/* nav-bar start  */
header .container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    height: 100px;
}

nav.hero-nav ul {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-grid-column-align: center;
    justify-self: center;
    gap: 10%;
}

nav.hero-nav {
    width: 100%;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 11fr 3fr;
    grid-template-columns: 11fr 3fr;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.navbar-right {
    -ms-grid-column-align: end;
    justify-self: end;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: revert;
    flex-direction: revert;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

#menu-bars {
    position: absolute;
    right: 8%;
    z-index: 111111111111;
    padding: 1rem 1.5rem;
    border-radius: 0.5rem;
    color: var(--danger);
    cursor: pointer;
    font-size: 2rem;
    display: none;
}

.hero-nav ul li {
    position: relative;
    padding: 1rem 0;
    margin-top: 20px !important;
}

.hero-nav ul li a {
    font-size: 16px !important;
}

.hero-nav ul li:hover::after {
    content: "";
    position: absolute;
    bottom: 11px;
    left: -15%;
    height: 4px;
    width: 100%;
    background: var(--danger-2);
    opacity: 0.3;
    -webkit-transition: all 1s linear;
    -o-transition: all 1s linear;
    transition: all 1s linear;
}

/* full screen secrch bar  */
.search-overlay {
    height: 100%;
    width: 100%;
    display: none;
    position: fixed;
    z-index: 100000000;
    top: 0;
    left: 0;
    background-color: var(--warning);
}

.search-overlay-content {
    position: relative;
    top: 46%;
    width: 80%;
    text-align: center;
    margin-top: 30px;
    margin: auto;
}

.search-overlay .closebtn {
    position: absolute;
    top: 20px;
    right: 5%;
    font-size: 60px;
    cursor: pointer;
    color: var(--danger);
    -webkit-transition: 0.5s linear;
    -o-transition: 0.5s linear;
    transition: 0.5s linear;
}

.search-overlay .closebtn:hover {
    color: var(--danger-2);
}

.search-overlay form {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    row-gap: 30px;
}

.search-overlay input[type="text"] {
    padding: 30px;
    font-size: 17px;
    border: none;
    background: var(--white);
    border-radius: 50px;
    text-align: left;
    width: 75%;
}

.search-overlay button {
    padding: 15px 40px;
    background: var(--danger-2);
    font-size: 2em;
    border-radius: 30px;
    cursor: pointer;
    -webkit-transition: 0.5s linear;
    -o-transition: 0.5s linear;
    transition: 0.5s linear;
    color: var(--white);
    font-weight: bold;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 10px;
}

/* full secrch bar end   */

/* subscribe-overlay start  */
.subscribe-overlay {
    height: 100%;
    width: 100%;
    display: none;
    position: fixed;
    z-index: 100000000;
    top: 0;
    left: 0;
    background-color: var(--warning);
}

.subscribe-overlay button i {
    font-size: 2rem;
}

.subscribe-overlay button:hover {
    background: var(--secondary) !important;
}

.subscribe-overlay-content {
    position: relative;
    top: 0;
    display: -ms-grid;
    display: grid;
    text-align: center;
    place-items: center;
    margin-top: 30px;
    margin: auto;
    height: 100%;
}

.subscribe-overlay .closebtn {
    position: absolute;
    top: 20px;
    right: 5%;
    font-size: 60px;
    cursor: pointer;
    color: var(--danger);
    -webkit-transition: 0.5s linear;
    -o-transition: 0.5s linear;
    transition: 0.5s linear;
    z-index: 10000000000000000;
}

.subscribe-overlay .closebtn:hover {
    color: var(--danger-2);
}

/* dropdown start  */
.dropdown {
    float: left;
}

.dropdown .dropbtn {
    font-size: 16px;
    border: none;
    outline: none;
    color: var(--dark);
    background-color: inherit;
    font-family: inherit;
    margin: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 5px;
}

.dropdown-content {
    display: none;

    position: absolute;
    background-color: #f9f9f9;
    min-width: 160px;
    -webkit-box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 1000000000000000000;
    top: 40px;
}

.dropdown-content a {
    float: none;
    color: var(--secondary);
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: left;
}

.dropdown-content a:hover {
    background-color: var(--warning);
}

.hero-nav li:hover .dropdown-content {
    display: block !important;
}

/* dropdown end  */

/*==================================================
                    1. HOME PAGE START
====================================================*/

/* header */
.home .header-nav li a {
    color: var(--dark) !important;
    font-size: 1.125em;
}

.post-heading {
    margin-bottom: 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}


.hero-slider .img-overlay.io-2 .post-title span {
    position: relative;
    color: var(--white);
}


.home .overlay-content h4 {
    color: var(--white);
    line-height: 30px;
}

.home .overlay-content a:hover {
    color: var(--white);
}

.home .slider .post-author {
    background-color: transparent;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: start;
    margin-top: 20px;
    padding: 0;
}

.home .slider .post-author span {
    color: var(--white);
}

.home .hero-slider .owl-theme .owl-nav .owl-prev {
    left: -5.5% !important;
    top: 40%;
}

.home .hero-slider .owl-theme .owl-nav .owl-next {
    right: -5.5% !important;
    top: 40%;
}

/* --FEATURED POST START--*/

/* standard-post & standard-img-post start */

.home .post-cards .standard-img-post {
    border-radius: 10px;
}

.home .standard-img-post .post-author {
    border-radius: 20px;
}

.home .post-cards .standard-post {
    border-radius: 10px;
}

.home .standard-post .post-title {
    margin-top: 25px;
}

.home .standard-post .post-author {
    border-radius: 20px;
}

.home .standard-post .read-more {
    color: var(--dark);
}

.home .standard-post .read-more {
    color: var(--dark);
}

.home .travel .post-excerpt {
    min-height: 75px;
}

.home .improve .post-excerpt {
    min-height: 75px;
    
}

/*  standard-post & standard-img-post end */

/* standard-video start  */

.standard-video .post-img {
    position: relative;
}

.standard-video .play-img {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.standard-video .play-img img {
    width: 100%;
}

/* standard-video end  */
.profile-card {
    text-align: center;
}

.profile-img img {
    max-width: 200px !important;
    height: 200px;
    border: 8px solid var(--warning);
    border-radius: 50%;
}

/* gallery post start */
.image-area {
    height: 100px;
    width: 100%;
    max-width: 100%;
    background-size: cover;
    background-position: center;
    border-radius: 10px;
}

.popup-gallery {
    display: -ms-grid;
    display: grid;
    gap: 10px;
    -ms-grid-columns: 1fr 10px 1fr 10px 1fr !important;
    grid-template-columns: 1fr 1fr 1fr !important;
}

.gallery-post {
    background-color: var(--white);
    border-radius: 10px;
}

.gallery-post .post-heading {
    margin-bottom: 20px;
}

.gallery-post .comment-btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background: var(--white);
    width: 127px;
    margin-top: 30px;
    text-align: center;
    white-space: nowrap;
}

.gallery-header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: row !important;
    flex-direction: row !important;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.gallery-post-nav {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify !important;
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.gallery-post-nav ul {
    margin: 0;
    padding: 0;
}

.gallery-header a {
    font-size: 16px;
    color: var(--dark);
}

.gallery-cards {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 32% 2% 32% 2% 32%;
    grid-template-columns: 32% 32% 32%;
    row-gap: 2rem;
    gap: 2%;
    text-align: center;
}

.gallery-card {
    background-color: var(--warning);
}

.gallery-content {
    position: relative;
    padding: 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.gallery-post img {
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.gallery-content button {
    position: absolute;
    top: -17px;
    left: 10%;
    font-size: 14px;
    border-radius: 25px;
}

.gallery-content a:hover {
    color: var(--white);
}

.gallery-content p {
    max-height: 120px;
    font-size: 18px;
    overflow: hidden;
}

.gallery-content span {
    font-size: 14px;
}

/* gallery post end */

/* ads banner start */
.ads {
    position: relative;
    background-size: cover;
    background-position: center;
    -o-object-fit: cover;
    object-fit: cover;
    display: -ms-grid;
    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: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: 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: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 5px;
    height: 50px;
    max-width: 145px;
    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: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 20px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.qoute-container .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: -ms-grid;
    display: grid;
    place-items: center;
}

/* quote-2 start  */
.quote-2 {
    text-align: center;
}

/* Quote end */

/* popup gallery start */
.image-area {
    height: 100px;
    width: 100%;
    max-width: 100%;
    background-size: cover;
    background-position: center;
    border-radius: 10px;
}

.popup-gallery {
    display: -ms-grid;
    display: grid;
    gap: 10px;
    -ms-grid-columns: 1fr 10px 1fr 10px 1fr !important;
    grid-template-columns: 1fr 1fr 1fr !important;
}

/* popup gallery end */

/* recent post start */

.recent-post .post-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 20px;
}

.post-column {
    border-bottom: 3px solid var(--warning);
}

.recent-post .post-column h4 {
    margin: 15px auto;
}

.recent-post .post-column:last-child {
    margin-bottom: 25px;
}

/*social profile start*/
.social-profile-cards {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 20px;
}

.social-profile .social-icons {
    position: relative;
    width: 85%;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 50px 1fr;
    grid-template-columns: 50px 1fr;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border-top-left-radius: 30px;
    border-bottom-left-radius: 30px;
    background-color: var(--warning);
}

.social-profile .icons {
    background-color: var(--white);
}

.social-profile span {
    -ms-grid-column-align: center;
    justify-self: center;
    font-size: 16px !important;
}

.social-profile .social-icons::after {
    position: absolute;
    content: "";
    top: 0;
    left: 100%;
    height: 50px;
    width: 50px;
    background-color: var(--white);
    border-top-right-radius: 25px;
    border-bottom-right-radius: 25px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: inherit;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.social-profile .social-icons:hover::after {
    background-color: var(--danger-2);
}

.social-profile .icons:hover {
    color: var(--danger-2) !important;
}

/* social profile end */

/* mini-card section stat  */
.mini-card {
    border-radius: 10px;
}

.mini-card h4 {
    margin-top: 15px;
    color: var(--dark);
}

/* -house start*/
.home .house {
    -o-object-fit: fill;
    object-fit: fill;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.home .house h4 {
    margin-top: 15px;
    color: var(--white);
}

.home .house h4 a:hover {
    color: var(--white);
}

/* -house end*/
/* -audio start  */
.audio {
    -o-object-fit: cover;
    object-fit: cover;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.audio-container {
    padding: 20px;
}

.audio-content {
    margin-top: 80px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.audio-content span {
    margin-left: 5px;
    color: var(--white);
    font-size: 16px;
}

/* -audio end  */
/* mini-card section end  */

/* instagram-post start  */

.instagram-gallery {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 13px;
}

.instagram-gallery img {
    max-width: 30%;
}

.instagram-post button {
    background-color: var(--warning);
    margin-top: 30px;
}

/* instagram-post end  */

/* -- POST END--*/

/* --Highlight POST START--*/
.hl-post {
    height: 100%;
    width: 100%;
}

.hl-post .card {
    width: unset;
}

.hl-post .post-author {
    background-color: var(--white);
}

/* image-overlay start  */
.hl-post .img-overlay {
    position: relative;
    background-size: cover;
    -o-object-fit: cover;
    object-fit: cover;
    min-height: 335px;
    max-width: 387px;
    border-radius: 12px;
    background-repeat: no-repeat;
}

.hl-post .post-author {
    padding: 0;
    margin: 12px 15px;
}

.hl-post .post-title {
    margin-top: 15px;
}

.hl-post .section-heading {
    margin-bottom: 45px;
}

.hl-post .overlay-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: end;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: 12px;
}

.hl-post .overlay-content h4 {
    color: var(--white);
    line-height: 30px;
}

.hl-post .overlay-content a:hover {
    color: var(--white);
}

.suggested-post .post-cards,
.quick-access .post-cards {
    display: -ms-grid !important;
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.hl-post .owl-theme .owl-nav .owl-prev {
    left: -6% !important;
    top: 40%;
}

.hl-post .owl-theme .owl-nav .owl-next {
    right: -6% !important;
    top: 40%;
}

/* Popular post start  */

.popular-post .post-column {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 10px;
    min-height: 105px;
}

.popular-post .post-author {
    background-color: unset;
}

.popular-post .post-column h5 {
    line-height: 28px;
    font-size: 16px;
}

.popular-post .post-column img {
    min-height: 80px;
    min-width: 90px;
}

.popular-post .post-title {
    margin: 0;
}

.popular-post .post-author {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin: 0;
}

.post-column {
    /* min-height: 105px; */
    border-bottom: 3px solid var(--warning);
}

.post-column:not(:first-child) {
    margin-top: 20px;
}

.post-column:last-child {
    border-bottom: unset;
}

/* image-overlay end  */

/* --Highlight POST End--*/

/* EDITOR CHOICE START  */
.home .editor-choice .post-author {
    margin: 12px 0 0 0;
    padding: 0;
    background-color: unset;
}

.home .editor-choice .img-overlay {
    background-size: cover;
    background-position: center;
}

/* subscription start  */
.subscription .post-heading {
    padding-bottom: 20px;
    gap: 20px;
    border-bottom: 3px solid var(--warning);
}

.subscribe-title span {
    font-size: 18px;
}

.subscribe-title span {
    /* position: relative; */
    -webkit-transition: 0.5s linear;
    -o-transition: 0.5s linear;
    transition: 0.5s linear;
    cursor: pointer;
}

.subscribe-title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: distribute;
    justify-content: space-around;
}

.subscription-period {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 30px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    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;
}

.subscribe-btn-2 {
    margin-left: 0;
    font-size: 14px;
}

.subscribe-btn-2 span {
    color: var(--danger-2);
    font-weight: 700;
    font-size: 16px;
    margin-right: 10px;
}

.primary-btn.subscribe-btn-2 {
    color: var(--dark);
    background-color: var(--warning);
}

.subscribe-now-img img {
    width: 100%;
    background-size: cover;
    background-position: center;
}

.top-categories .single-category-items li {
    position: relative;
    font-size: 18px;
    color: var(--dark);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.top-categories .single-category-items li::before {
    position: absolute;
    content: "";
    height: 3px;
    width: 30px;
    background-color: var(--warning);
    top: 50%;
    right: 104%;
}

.top-categories .single-category-items ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 20px;
}

/* tags start   */
.tags .tags-btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: start;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 15px;
    row-gap: 15px;
}

.tags .tags-btn .primary-btn {
    background-color: var(--warning);
    color: var(--dark);
    -webkit-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear;
    display: -ms-grid;
    display: grid;
    place-items: center;
}

.tags .tags-btn .primary-btn:hover {
    background-color: var(--danger-2);
    color: var(--white);
}

/* tags end   */
/* subscribe-now start  */
.subscribe-now .subscribe-container {
    text-align: center;
}

.subscribe-now .subscribe-now-bottom {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    row-gap: 30px;
    color: var(--dark);
}

.subscribe-now .subscribe-now-bottom p {
    color: var(--dark);
}

.subscribe-now .email-field p {
    color: #d8d8d8;
}

.subscribe-now .email-field {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: start;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 10px;
    width: 100%;
    height: 50px;
    background: var(--white);
    border-radius: 30px;
    font-size: 14px;
    font-weight: 700;
    color: #d8d8d8;
}

.subscribe-now .email-field i {
    height: 50px;
    width: 50px;
    border: 1px solid var(--warning);
    line-height: 3.5;
    border-radius: 30px;
    color: var(--danger-2);
}

.subscribe-now .primary-btn {
    padding: 15px 0px !important;
    color: var(--light) !important;
    font-size: 16px !important;
    width: 150px;
}

.subscribe-now .primary-btn i {
    font-size: 16px;
}

input {
    border: none;
    width: 100%;
    height: 20px;
}

input::-webkit-input-placeholder {
    background-color: var(--white);
}

textarea::-webkit-input-placeholder {
    background-color: var(--white);
}

.subscribe-now .email-field i {
    height: 50px;
    width: 60px;
    border: 1px solid var(--warning);
    line-height: 3.5;
    border-radius: 30px;
    color: var(--danger-2);
}

.subscribe-now .primary-btn a {
    color: var(--light) !important;
}

/* --Highlight POST END--*/

.home .ft-posts .post-cards {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 49% 2% 49%;
    grid-template-columns: 49% 49%;
    gap: 2%;
}

.home .ft-posts .card {
    width: unset;
}

.home .post-author {
    margin-bottom: 20px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: self-start;
    -ms-flex-align: self-start;
    align-items: self-start;
}

.home .ft-posts .left-area {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    row-gap: 30px;
    -webkit-box-flex: 1;
    -ms-flex: 1 1 50%;
    flex: 1 1 50%;
}

.ft-posts .left-area .block-1 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 30px;
    row-gap: 30px;
}

.ft-posts .left-area .block-3 {
    -webkit-columns: 2;
    -moz-columns: 2;
    columns: 2;
    gap: 30px;
    row-gap: 30px;
}

.ft-posts .left-area .block-3 .card {
    -webkit-column-break-inside: avoid;
    -moz-column-break-inside: avoid;
    break-inside: avoid;
    margin-bottom: 30px;
}

.ft-posts .left-area .block-3 .ads {
    max-height: 352px;
}

.home .ft-posts .right-area {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 30px;
}

.middle-block .card,
.middle-block .audio {
    margin-bottom: 30px;
}

.middle-block {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 50%;
    flex: 1 1 50%;
}

.end-block {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 50%;
    flex: 1 1 50%;
}

.end-block .card {
    margin-bottom: 30px;
}

.ft-post .mini-card,
.ft-post .mini-card.audio,
.editor-choice .card.mini-card,
.editor-choice .mini-card.audio,
.editor-choice .card {
    max-width: unset !important;
    width: unset !important;
}

.editor-choice .post-cards {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 30px 1fr;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.editor-left-top {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 30px 1fr;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.editor-right-area {
    display: -ms-grid;
    display: grid;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-grid-columns: 1fr 30px 1fr;
    grid-template-columns: 1fr 1fr;
    row-gap: 30px;
    gap: 30px;
}

.editor-right-block1 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    row-gap: 30px;
}

.editor-right-block2 .top-categories {
    margin-bottom: 30px;
}

/*==================================================
                    1. HOME PAGE END 
====================================================*/

/*==================================================
                    1. HOME PAGE-2 START 
====================================================*/

.home-2 .card {
    width: unset;
}

.home-2 .grid-cards {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 30px;
}

.home-2 .grid-cards .post-cards {
    display: -ms-grid;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));

    gap: 30px;
    -webkit-box-flex: 1;
    -ms-flex: 1 1 70%;
    flex: 1 1 70%;
}

.home-2 .grid-cards .side-bar {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 320px;
    flex: 1 1 320px;
}

.home-2 .grid-cards .post-author {
    border-radius: 30px;
    margin-bottom: 20px;
}

/*==================================================
                  1. HOME PAGE-2 END 
====================================================*/

/*==================================================
                  1. HOME PAGE-3 START 
====================================================*/
.home.home-3 .full-width-slider .img-overlay {
    /* width: 100vw; */
    background-size: cover;
    background-position: center;
}

.home.home-3 .full-width-slider .overlay-bg {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: end;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: start;
}

.home.home-3 .overlay-content {
    text-align: unset;
    width: 100%;
}

.home.home-3 .full-width-slider .post-author {
    background-color: transparent;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: start;
    padding: 0;
}

.home.home-3 .owl-theme .owl-nav button {
    background-size: cover !important;
}

.home.home-3 .owl-theme .owl-nav button span {
    display: none;
}

.home.home-3 .author-quote {
    border-radius: 10px;
}

.home.home-3 .author-quote .card-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 30px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.home.home-3 .author-quote .card-inner i {
    font-size: 50px;
    color: #e3e3e3;
}

/*==================================================
                  1. HOME PAGE-3 END 
====================================================*/

/*==================================================
                  1. HOME PAGE-4 START 
====================================================*/

.home.home-4 .full-width-slider .img-overlay {
    height: 771px;
    background-size: cover;
    background-position: center;
    width: 100%;
}

.home.home-4 .owl-theme .owl-nav .owl-prev {
    display: none;
}

.home-4 .owl-theme .owl-nav .owl-next {
    display: none;
}

.home .full-width-slider .overlay-bg {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.home .overlay-content {
    text-align: center;
}

.home .overlay-content h1 {
    font-size: 32px;
    color: var(--white);
    line-height: 50px;
    width: 90%;
}

.home .full-width-slider a:hover {
    color: var(--white);
}

.home .full-width-slider .post-author {
    background-color: transparent;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 0;
}

.home .full-width-slider .post-author span {
    color: var(--white);
}

.home .full-width-slider .primary-btn {
    font-size: 14px;
}

.home .owl-theme .owl-nav .owl-prev {
    left: -5% !important;
}

.home .owl-theme .owl-nav .owl-next {
    right: -5% !important;
}

.home .post-img {
    position: relative;
}

.home .read-more {
    color: var(--danger-2);
}

/* home4-posts start  */

.home4-posts .large-card {
    border-radius: 10px;
    margin-bottom: 2rem;
}

.large-card .post-author {
    background-color: transparent;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: start;
    gap: 40px;
    padding: 0;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.home4-posts .large-card .post-title {
    font-size: 2.25rem;
}

.large-card .post-author>div {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.large-card .post-author>div .icon-bg {
    font-size: 14px;
    background-color: var(--warning);
    margin-right: 10px;
    color: var(--danger);
}

.home4-posts.home3-posts .large-card .post-excerpt span {
    color: var(--danger);
}

.social-icons .icon-bg {
    background: var(--warning);
    -webkit-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear;
}

.home .grid-cards {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 30px 1fr 30px 1fr 30px 1fr 30px 1fr 30px 1fr 30px 1fr 30px 1fr 30px 1fr 30px 1fr 30px 1fr 30px 1fr;
    grid-template-columns: repeat(12, 1fr);
    gap: 30px;
}

.home .card,
.home .large-cards,
.home .lg-cards {
    width: unset;
}

.home-2 .grid-cards .post-author {
    border-radius: 30px;
    margin-bottom: 20px;
}

/*==================================================
                    1. HOME PAGE-4 END 
====================================================*/

/*==================================================
                    1. HOME PAGE BLOG START 
====================================================*/


.home-blog .large-card .post-title {
    font-size: 2.25rem;
    font-weight: unset;
}

.home-blog .large-card .icon-bg {
    height: 30px;
    width: 30px;
}

.lg-cards {
    -ms-grid-column: 1;
    -ms-grid-column-span: 9;
    grid-column: 1 / 10;
}

.side-bar {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    row-gap: 30px;
    -ms-grid-column: 10;
    -ms-grid-column-span: 6;
    grid-column: 10 / 16;
    row-gap: 30px;
}

.share-blog-post {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.share-blog-post .share-left span a i {
    color: var(--white);
}

.share-blog-post .share-left span a {
    border-radius: 15px;
}

.share-blog-post .share-left span {
    margin-left: 40px;
    gap: 5px;
}

.share-blog-post .share-left span a:nth-child(1) {
    background-color: #3b5998;
}

.share-blog-post .share-left span a:nth-child(2) {
    background-color: #ff0000;
}

.share-blog-post .share-left span a:nth-child(3) {
    background-color: #3f729b;
}

.share-blog-post .share-left span a:nth-child(4) {
    background-color: #00acee;
}

.share-blog-post .share-left span a:nth-child(5) {
    background-color: #e3e3e3;
}

.share-right {
    text-align: center;
    width: 255px;
    padding: 10px 30px;
    border-radius: 25px;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.share-right span i {
    color: var(--danger-2);
    margin-right: 5px;
}

.share-right span {
    font-size: 16px;
}

.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: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 30px;
}

.blog-quote {
    text-align: center;
    border-radius: 10px;
}

.blog-qoute-content {
    row-gap: 20px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.blog-qoute-content i {
    color: var(--dark);
}

.blog-qoute-content p:nth-child(3) {
    color: var(--dark);
}

.blog-qoute-content span {
    color: var(--dark);
}

.blog-single-img {
    max-width: 917px;
}

.blog-single-img img {
    max-width: 100%;
}

/* tab start*/
.tab,
.tab2,
.tab3 {
    overflow: hidden;
    margin-bottom: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.tab button,
.tab2 button,
.tab3 button {
    position: relative;
    background-color: inherit;
    float: left;
    border: none;
    outline: none;
    cursor: pointer;
    padding: 0.2em 0.5em;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    font-size: 17px;
    border-bottom: 3px solid transparent !important;
    -webkit-transition: 0.3s linear;
    -o-transition: 0.3s linear;
    transition: 0.3s linear;
}

button.tablink,
button.tablink2,
button.tablink3 {
    background-color: transparent;
}

.tab button.active,
.tab2 button.active,
.tab3 button.active {
    border-bottom: solid var(--danger-2) !important;
}

.tabcontent,
.tabcontent2,
.tabcontent3 {
    display: none;
    border-top: none;
}

.tabcontent,
.tabcontent2,
.tabcontent3 {
    -webkit-animation: fadeEffect 1s;
    animation: fadeEffect 1s;
}

@-webkit-keyframes fadeEffect {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes fadeEffect {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.blog-tab-section {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 6%;
}

.tab-section-left {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 47%;
    flex: 1 1 47%;
}

.tab-section-right {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 47%;
    flex: 1 1 47%;
}

/* tab end  */

.our-secvice-offer2 ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    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 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column;
    flex-flow: column;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: start;
}

.social-share.share-left span {
    margin: 0 !important;
}

.social-share .tags .primary-btn {
    border: 1px solid #e3e3e3;
    background-color: var(--white);
    color: var(--dark);
}

.social-share .tags li {
    margin-bottom: 15px;
}

.blogger-details {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 20px;
    gap: 10px;
    border: 1px solid #e3e3e3;
    border-radius: 12px;
}

.blogger-details img {
    border-radius: 50px;
    max-width: 100px;
    max-height: 100px;
    -webkit-box-shadow: 0px 0px 20px -5px rgba(173, 168, 168, 0.75);
    box-shadow: 0px 0px 20px -5px rgba(173, 168, 168, 0.75);
}



.content {
    font-size: 18px;
    line-height: 1.7;
    overflow: hidden
}

@media (max-width: 767px) {
    .content {
        font-size: 16px;
        line-height: 1.55
    }
}

.content * {
    word-break: break-word;
    overflow-wrap: break-word;
    margin-bottom: 25px
}

.content :first-child {
    margin-top: 0
}

.content :last-child {
    margin-bottom: 0 !important
}

.content .lightense-wrap {
    margin-bottom: 0 !important
}

.content .h1,
.content .h2,
.content .h3,
.content .h4,
.content .h5,
.content .h6,
.content h1,
.content h2,
.content h3,
.content h4,
.content h5,
.content h6 {
    margin-top: 30px;
    margin-bottom: 15px
}

.content strong {
    font-weight: 500
}

.content a:not(.btn) {
    font-weight: 400
}

.content img {
    max-width: 100%;
    height: auto;
    display: inline-block;
    margin-bottom: 20px
}

.content figure img {
    margin-bottom: 0
}

.content figure figcaption {
    margin-top: 10px;
    text-align: center;
    font-style: italic;
    color: #000;
    line-height: 1.2;
    font-size: 90%
}

.content .img-left {
    float: left;
    margin-right: 25px
}

.content .img-right {
    float: right;
    margin-left: 25px
}

.content .img-left,
.content .img-right {
    margin-bottom: 0
}

@media (max-width: 767px) {

    .content .img-left,
    .content .img-right {
        float: none;
        margin-left: 0;
        margin-right: 0;
        width: 100% !important
    }
}

.content div {
    clear: both
}

.content .gallery {
    display: grid;
    grid-template-columns: repeat(3, auto);
    justify-content: center;
    align-content: center;
    grid-gap: 20px
}

@media (max-width: 991px) {
    .content .gallery {
        grid-template-columns: repeat(2, auto)
    }
}

.content .gallery * {
    margin-bottom: 0
}

.content ol,
.content ul {
    padding-left: 20px
}

.content ol li,
.content ul li {
    margin-bottom: 7px !important
}

.content ol {
    padding-left: 0
}

.content ul {
    padding-left: 0;
    margin-bottom: 25px;
    list-style-type: none
}

.content ul li {
    padding-left: 22px;
    position: relative
}

.content ul li::before {
    position: absolute;
    content: "";
    height: 10px;
    width: 10px;
    background: #3965ad;
    left: 0;
    top: 10px
}

@media (max-width: 767px) {
    .content ul li::before {
        top: 6px
    }
}

.content table {
    width: 100%;
    max-width: 100%;
    margin-bottom: 1rem;
    border: 1px solid #ddd;
    background-color: #fff
}

.content table>:not(:first-child) {
    border-top: 2px solid #ddd
}

.content table,
.content tbody,
.content td,
.content tfoot,
.content th,
.content thead,
.content tr {
    word-break: initial
}

.content table td,
.content table th {
    padding: .6rem 1.2rem;
    vertical-align: top;
    margin-bottom: 0;
    border-left: 1px solid #ddd
}

.content tr:not(:last-child) {
    border-bottom: 1px solid #ddd
}

.content th {
    font-weight: 500;
    color: #000
}

.content thead {
    margin-bottom: 0
}

.content thead tr {
    border-bottom: 1px solid #ddd
}

.content tbody {
    background: #fff;
    margin-bottom: 0
}

.content blockquote {
    padding: 30px;
    padding-left: 40px;
    margin: 40px 0 40px 23px;
    background-color: #fff;
    position: relative;
    color: #0a101a;
    border: 1px solid #d1d1d1
}

.content blockquote p {
    margin-bottom: 0 !important;
    font-size: 24px;
    font-family: "DM Sans", sans-serif;
    line-height: 1.5
}

.content blockquote p::before {
    border: 1px solid #d1d1d1;
    content: "";
    height: 45px;
    left: -23px;
    top: 25px;
    position: absolute;
    width: 45px;
    background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' xmlns='http://www.w3.org/2000/svg' fill='black'%3E%3Cpath d='M14 1a1 1 0 0 1 1 1v8a1 1 0 0 1-1 1h-2.5a2 2 0 0 0-1.6.8L8 14.3l-1.9-2.5a2 2 0 0 0-1.6-.8H2a1 1 0 0 1-1-1V2a1 1 0 0 1 1-1h12zM2 0a2 2 0 0 0-2 2v8a2 2 0 0 0 2 2h2.5a1 1 0 0 1 .8.4l1.9 2.5a1 1 0 0 0 1.6 0l1.9-2.5a1 1 0 0 1 .8-.4H14a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2H2z'/%3E%3Cpath d='M7 4.8a1.7 1.7 0 0 0-3 .9A1.7 1.7 0 0 0 6.6 7c-.2.4-.4.8-.8 1.2a.4.4 0 1 0 .6.6c1.5-1.6 1.3-3.2.7-4.1zm4 0a1.7 1.7 0 0 0-3 .9A1.7 1.7 0 0 0 10.6 7c-.2.4-.4.8-.8 1.2a.4.4 0 1 0 .6.6c1.5-1.6 1.3-3.2.7-4.1z'/%3E%3C/svg%3E");
    background-color: #fff;
    background-size: 27px;
    background-repeat: no-repeat;
    background-position: 12px 12px
}

.content blockquote cite {
    display: block;
    margin-top: 10px !important;
    font-style: normal;
    font-size: 17px
}

.content blockquote cite::before {
    content: "— ";
    margin-right: 5px
}

.content blockquote.twitter-tweet p {
    margin-bottom: 10px !important
}

.content blockquote.twitter-tweet p::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' fill='%2300acee'%3E%3Cpath d='M5 15c6 0 9.4-5 9.4-9.3v-.5A6.7 6.7 0 0 0 16 3.5a6.7 6.7 0 0 1-1.9.6 3.3 3.3 0 0 0 1.5-1.9 6.5 6.5 0 0 1-2.1.8 3.3 3.3 0 0 0-5.6 3A9.3 9.3 0 0 1 1 2.6a3.3 3.3 0 0 0 1 4.4 3.3 3.3 0 0 1-1.5-.4 3.3 3.3 0 0 0 2.7 3.2 3.2 3.2 0 0 1-.9.2 3.2 3.2 0 0 1-.6-.1 3.3 3.3 0 0 0 3 2.3 6.6 6.6 0 0 1-4 1.4 6.3 6.3 0 0 1-.8 0A9.3 9.3 0 0 0 5 15z'/%3E%3C/svg%3E")
}

.content pre {
    display: block;
    padding: 20px 25px;
    margin: 10px 0 10px;
    white-space: pre-wrap;
    border: 1px solid #e9e9e9
}

.content code {
    margin-bottom: 0 !important;
    font-size: 100%
}

.content code * {
    margin-bottom: 0 !important
}

.content code span[style="background-color:#fff0f0"] {
    color: #c93d97;
    background: 0 0 !important
}


.content a {
    color: #3b5998 !important;
    font-weight: 600 !important;
    text-decoration: underline;
}

.post-title {
    font-size: 35px !important;
    font-weight: 700 !important;
    line-height: 1.4 !important;
    margin-bottom: 16px !important;
}

.post-category {
    font-weight: 600;
}

.primary-btn {
    font-weight: 600;
}

.content p {
    font-size: 16px;
    font-weight: 400;
    margin-top: 10px;
    line-height: 28px;
}


.content h1,
h2,
h3,
h4,
h5,
h6 {
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.content h2 {
    font-size: 30px;
}

.post-pagination {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    border-top: 1px solid #c1c1c1;
    border-bottom: 1px solid #c1c1c1;
    padding-top: 30px;
    padding-bottom: 32px;
    margin-bottom: 35px;
}

.post-pagination .prev-post,
.post-pagination .next-post {
    width: 42%;
}

.post-pagination .prev-post span,
.post-pagination .next-post span {
    color: var(--optionalColor);
    display: block;
    transition: var(--transition);
}

.post-pagination .prev-post h6,
.post-pagination .next-post h6 {
    font-size: 16px;
    line-height: 30px;
    margin: 10px 0 0;
    transition: var(--transition);
}

.post-pagination .prev-post:hover span,
.post-pagination .next-post:hover span,
.post-pagination .prev-post:hover h6,
.post-pagination .next-post:hover h6 {
    color: var(--secondaryColor);
}

.post-pagination .next-post {
    text-align: right;
}

@media (min-width:991px) {
    .side-bar {
        height: 100% !important;
    }

    .recent-post {
        position: sticky !important;
        top: 100px !important;
    }

    .social-profile {
        position: sticky !important;
        top: 460px !important;
    }
}

.share-links {
    float: left;
    margin: 15px 0;
    width: 100%;
    padding-left: 0;
    list-style: none;
}
.share-links > li {
    display: inline-block;
    margin-right: 3px;
}
.share-links li a {
    color: #fff;
    display: inline-block;
    font-size: 11px;
    letter-spacing: 1px;
    padding: 8px;
    border-radius: 26px;
    margin-bottom: 10px;
}
.share-links li a i {
    margin-right: 3px;
    font-size: 16px;
}
.single-post-info {
    float: left;
    width: 100%;
    line-height: 35px;
}
.share-links li a:hover{
    opacity: 0.7;
}
.single-post-info > span {
    color: #444;
    float: left;
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: capitalize;
}
.single-post-info > span a ins {
    color: #444;
}

.facebook {
    background: #5776B7 !important;
}
.viemo{
    background-color: #35c6ea;
}
.twitter {
    background: #50cef8 !important;
}
.google {
    background: #ef0000 !important;
}
.pinterest {
    background: #ba090a !important;
}
.flickr {
    background: #e80fd6 !important;
}
.whatsapp {
    background: #00e676 !important;
}
.youtube {
    background: #e62117 !important;
}
.dribble {
    background: #1572b8 !important;
}
.linkedin {
    background: #0077b5 !important;
}
.tumblr {
    background: #36465d !important;
}
.rss {
    background: #e3a103 !important;
}
.vk {
    background: #466991 !important;
}

@media (max-width: 991px) {
    .grid-cards {
        display: block !important;
    }
}

.large-card{
    border-radius: 10px !important;
}

ol {
    margin: 0;
    padding: 0;
}   

.content ol {
    padding-left: 0;
    margin-bottom: 25px;

    list-style-type: none
}

.content ol li {
    padding-left: 22px;
    position: relative;
    margin-top: 20px;
}

.content strong {
    font-weight: bold;
    color: #0a101ac7;
}

.content ol li::before {
    position: absolute;
    content: "";
    height: 10px;
    width: 10px;
    background: #3965ad;
    left: 0;
    top: 10px
}

@media (max-width: 767px) {
    .content ol li::before {
        top: 6px
    }
}