/*
Theme Name: topfaida-pro
Theme URI: http://topfaida.com/topfaida-pro/
Author: Topfaida
Author URI: https://topfaida.com/
Description: Topfaida pro is a blog and e-commerce theme. This is the best theme made for wordpress, in this you are going to get many new features which are not in other themes.
Version: 2.9
Tested up to: 5.4
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: topfaida-pro
Tags: grid-layout, one-column, two-columns, three-columns, right-sidebar, wide-blocks, accessibility-ready, block-styles, custom-colors, custom-header, custom-logo, custom-menu, footer-widgets, sticky-post, theme-options, translation-ready, blog, e-commerce,

*/

:root {
    --tf-theme-bg-clr: linear-gradient(45deg, #623aa2, #9853af);
    --tf-theme-txt-clr: #fff;
    --tf-theme-bg-1: #97008C;
    --tf-theme-clr-1: #ffffff;
    --tf-theme-bg-2: #250468;
    --tf-theme-clr-2: #ffffff;
    /* Headings */
    --tfpro-h1: 37px;
    --tfpro-h2: 30px;
    --tfpro-h3: 24px;
    --tfpro-h4: 20px;
    --tfpro-h5: 18px;
    --tfpro-h6: 16px;
    --tfpro-content: 20px;
    --tfpro-tag: medium;
    --tf-theme-font: Helvetica;
    --tfpro-icon: "Font Awesome 6 Free", "Font Awesome 5 Free", "FontAwesome";
    /* Gradients and Colors */
    --tf-theme-header-bg: var(--tf-theme-bg-clr);
    --tf-theme-header-txt: var(--tf-theme-txt-clr);
    --tf-theme-grid-bg: #ffffff;
    --tf-theme-grid-txt: #141414;
    --tf-theme-footer-bg: #252c41;
    --tf-theme-footer-txt: #ffffff;
    --tfpro-dark: #252c41;
    --tfpro-darkc: #fff;
    --tfpro-hover-bg: #b3b3b366;
    --tfpro-hover-clr: #ffa600;
    --tfpro-clr: #292929;
    --tfpro-clr-1: linear-gradient(310deg, #1171ef, #11cdef);
    --tfpro-clr-2: linear-gradient(310deg, #0086d5, #307c00);
    --tfpro-clr-3: linear-gradient(310deg, #e515c2, #9d00ff);
    /* Shadows */
    --tfpro-shadow-light: rgba(0, 0, 0, 0.1) 0px 0px 5px 0px, rgba(0, 0, 0, 0.1) 0px 0px 1px 0px;
    --tfpro-shadow-dark: rgba(14, 30, 37, 0.12) 0px 2px 4px 0px, rgba(14, 30, 37, 0.32) 0px 2px 16px 0px;
    --tfpro-shadow-3d: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px, rgba(10, 37, 64, 0.35) 0px -2px 6px 0px inset;
    --tfpro-shadow-bt: inset 2px 2px 2px 0px rgba(255, 255, 255, .5), 7px 7px 20px 0px rgba(0, 0, 0, .1), 4px 4px 5px 0px rgba(0, 0, 0, .1);
    --tfpro-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.15);
}


/* show parallax ads -------------------------------------------*/

.uinature_parallax_ads {
    position: relative;
    width: 100%;
    height: 320px;
    margin: 0 auto;
    overflow: hidden;
}

.uinature_parallax_ads .parallax_ad {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
    margin: 0;
    padding: 0;
    clip: rect(0, auto, auto, 0);
}

.uinature_parallax_ads .parallax_ad>div {
    position: fixed;
    top: 130px;
    height: 100%;
    margin-left: 0;
}


/* relative positioning */

.uinature-related-posts {
    margin-top: 2em;
    padding: 1em;
    background-color: #f9f9f9;
    border-radius: 15px;
    border: 1px solid #e9e9e9;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    -ms-border-radius: 15px;
    -o-border-radius: 15px;
}

.uinature-related-posts-title {
    margin: -30px 5px 20px 1em;
    background: var(--tf-theme-bg);
    color: var(--tf-theme-clr);
    width: fit-content;
    display: block;
    padding: 5px 15px;
    background: white;
    border-radius: 50px;
    font-size: 17px;
    text-transform: uppercase;
}

.uinature-related-posts-list {
    list-style-type: none;
    padding: 0;
}

.uinature-related-posts-list li::before {
    content: "\f105";
    font-family: var(--tfpro-icon);
    margin: 0 15px 0 0;
}

.uinature-related-post {
    margin-bottom: 1em;
}

.uinature-related-post-link {
    text-decoration: none;
    color: #007bff;
}

.uinature-related-post-link:hover {
    color: #0056b3;
}

.uinature-related-post-title {
    font-size: 1.2em;
}


/*ads */

.uinature_ads {
    position: relative;
}

.ad-close {
    position: absolute;
    top: 0;
    right: 0;
    background: #fff;
    color: #000;
    cursor: pointer;
    border: none;
    padding: 2px 5px;
    font-size: 16px;
    line-height: 1;
    font-weight: bold;
}


/* ----------- topfaida grid  ----------------------*/

.topfaida-container {
    display: grid;
    height: auto;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto auto auto;
    grid-template-areas: "tf-header tf-header" "tf-notice tf-notice " "tf-main tf-main" "tf-footer tf-footer";
}

#tf-header {
    grid-area: tf-header;
}

#tf-notice {
    grid-area: tf-notice;
}

#tf-main {
    grid-area: tf-main;
    padding: 20px;
    margin: 10px 0;
    position: relative;
}

#tf-footer {
    grid-area: tf-footer;
}


/* Second layout with side menu */

.topfaida-container-2 {
    display: grid;
    grid-template-columns: 250px 1fr;
    grid-template-rows: auto auto auto auto;
    grid-template-areas: "tf-header tf-header" "tf-sidebar tf-notice" "tf-sidebar tf-main" "tf-footer tf-footer";
}

.tf-side-menu {
    grid-area: tf-sidebar;
    background-color: #f5f5f5;
    height: 100vh;
}

@media only screen and (max-width: 550px) {
    .topfaida-container {
        grid-template-columns: 100%;
        grid-template-rows: auto auto auto auto;
        grid-template-areas: "tf-header" "tf-notice" "tf-main" "tf-footer";
        padding: 0;
    }
    .topfaida-container-2 {
        grid-template-columns: 100%;
        grid-template-rows: auto auto auto auto auto;
        grid-template-areas: "tf-header" "tf-sidebar" "tf-notice" "tf-main" "tf-footer";
    }
    #tf-main {
        padding: 5px;
    }
    .tf-side-menu {
        position: absolute;
    }
}


/* Common styles */

#tf-footer {
    background: var(--tf-theme-footer-bg);
    color: var(--tf-theme-footer-txt);
    position: relative;
    margin-top: 2rem;
    padding: 0 15px;
}

.tf-footer-svg {
    fill: var(--tf-theme-footer-bg);
    position: absolute;
    top: -110px;
    left: 0;
    width: 100%;
    height: 264px;
    z-index: -1;
}

.tf-footer-svg.svg-style-2 {
    top: -150px;
}

.tf-footer-style-3 {
    margin-top: 5rem !important;
}

.tf-footer-svg.svg-style-3 {
    top: -207px;
}

.tf-footer-style-4 {
    margin-top: 7rem !important;
}

.tf-footer-svg.svg-style-4 {
    top: -120px;
}

.tf-footer-svg.svg-style-5 {
    top: -225px;
}

.tf-footer-style-5 {
    margin-top: 7rem !important;
}

.tf-svg-4-p1 {
    fill: #7643a7;
}

.tf-svg-4-p2 {
    fill: var(--tf-theme-footer-bg);
}

#tf-footer h4 {
    font-size: 18px;
    color: var(--tf-theme-footer-txt);
    text-transform: capitalize;
    margin-bottom: 35px;
    font-weight: 500;
    position: relative;
}

#tf-footer h4::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    background: var(--tf-theme-bg-clr);
    height: 2px;
    box-sizing: border-box;
    width: 50px;
}

#tf-footer a {
    color: #858b9f;
    transition: all ease .4s;
    font-size: 14px;
}

img.img-footer {
    max-width: 180px;
    margin-bottom: 2rem;
}

.footer-widget {
    padding: 70px 0;
}

.footer-widget ul {
    padding: 0;
    margin: 0;
}

.footer-widget ul li {
    list-style: none;
    margin-top: 15px;
    display: block;
}

.footer-bottom {
    padding: 20px 0;
    background: #1b2132;
}

.footer-bottom p {
    margin: 0;
    color: inherit;
}

#tf-footer .footer-bottom-social li {
    display: inline-block;
    list-style: none;
    margin-right: 17px;
    margin-top: 0;
}

@media all and (max-width: 700px) {
    .footer-widget {
        padding: .5em 0 1em;
    }
}

.footer-bottom {
    padding-top: 20px;
}

.footer-cta {
    padding: 20px 0 10px 0;
}

.footer-cta .tf-footer-cta i {
    color: #40e13d;
    font-size: 30px;
    float: left;
    margin-top: 8px;
}

.footer-cta .tf-cta-text {
    display: inline-block;
    margin: 0 8px;
}

.footer-cta .tf-cta-text h4 {
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 2px !important;
}

.footer-cta .tf-cta-text h4::before {
    display: none;
}

.footer-cta .tf-cta-text span {
    color: #757575;
    font-size: 15px;
}

.tf-footer-style-2 .footer-bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
}