/*!
Theme Name: BlackHost Blog v2
Theme URI: https://blackhost.blog;
Author: Qbit Solutions
Author URI: http://qbit.solutions/
Description: Description
Version: 1.0
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: blackhost
Tags: blackhost, blog, knowledgebase, hosting, domain
*/


/* ------------------------------------------------------------------------------------------- */
/* Reset CSS */
/* ------------------------------------------------------------------------------------------- */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700;800&family=Raleway:wght@300;400;500;600;700;800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Nunito+Sans:wght@400;600;700;800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Rubik&display=swap');

html {
    position: relative;
    min-height: 100%;
}

body {
    margin: 0;
    overflow-x: hidden;
    font-size: 10px;
    line-height: 10px;
    background-color: #fff;
    /* background-color: #f9fafe; */
    color: #000;
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 400; /* 400, 500, 700, 800 */
}

input,
textarea
{
    font-weight: 300; /* 400, 500, 700, 800 */
    line-height: 1.6em;
}

:root 
{
	--primary: #1348D8; /* BLUE */
	--secondary: #31D3AF; /* GREEN */
	--blue: #1348D8;
	--green: #31D3AF;
	--yellow: #ffe000;
}

:root .dark
{
    --primary: #007bff;
}

h1,h2,h3,h4,h5,h6
{
	margin: 0;
}

h1 {
    display: block;
    line-height: 43px;
    font-size: 3.6em;
    color: #000;
    font-weight: 900;
}

h2 {
    display: block;
    line-height: 35px;
    font-size: 3em;
    color: #000;
    font-weight: 800;
}

h3 {
    display: block;
    line-height: 30px;
    font-size: 2.4em;
    color: #000;
}

h4 {
    display: block;
    line-height: 22px;
    font-size: 1.8em;
    color: #000;
}

h5 {
    display: block;
    font-size: 1.5em;
    line-height: 140%;
    color: #000;
}

h6 {
    display: block;
    font-size: 1.3em;
    color: #000;
}

.dark h1,
.dark h2,
.dark h3,
.dark h4,
.dark h5,
.dark h6
{ color: #fff; }


p {
    line-height: 30px;
    font-size: 1.8em;
    margin: 0;
    font-weight: 300;
}

.dark p
{
    color: #ccc;
}

p.font-small {
    font-size: 1.4em;
    line-height: 24px;
}

* {
    outline: none !important;
    box-sizing: border-box;
}

ul
{
    list-style: none;
    padding: 0;
    margin: 0;
    list-style-position: inside;
}

	ul li
	{
	    margin-bottom: 5px;
	}

	ul li:last-child
	{
	    margin-bottom: 0;
	}

a 
{
	text-decoration: none;
    color: inherit;
}

a:hover, a:active, a:focus {
    outline: 0;
    text-decoration: none;
}


/* Progress */
progress
{
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 6px;
    z-index: 1000;
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
    border: none;
    background-color: transparent;
    color: var(--secondary);
}

#progress-bar
{
    width: 0%;
    position: fixed;
    left: 0;
    top: 0;
    height: 6px;
    z-index: 1000;
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
    background-color: var(--secondary);
}


progress::-webkit-progress-bar 
{
    background-color: #fff;
}

.dark progress::-webkit-progress-bar 
{
    background: #000;
    transition: all 0.2s cubic-bezier(0.25, 0.1, 0.25, 1);
}

progress::-webkit-progress-value 
{
    background-color: var(--secondary);
    transition: all 0.2s cubic-bezier(0.25, 0.1, 0.25, 1);
}

progress::-moz-progress-bar 
{
    background-color: var(--secondary);
    transition: all 0.2s cubic-bezier(0.25, 0.1, 0.25, 1);
}



/* ------------------------------------------------------------------------------------------- */
/* Custom classes */
/* ------------------------------------------------------------------------------------------- */

.text-white { color: #fff; }
.text-muted { color: #999; }
.text-primary { color: var(--primary); }
.uppercase { text-transform: uppercase; }
.hidden
{
	display: none !important; 
}

.circle-separator
{
    font-size: 12px;
    display: inline-flex;
    top: -2px;
    position: relative;
    margin: 0 2px;
}

.hide
{
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all .4s ease;
       -moz-transition: all .4s ease;
        -ms-transition: all .4s ease;
         -o-transition: all .4s ease;
            transition: all .4s ease;
}

/* BreadCrumbs */
.breadcrumbs
{
    position: relative;
    display: block;
    font-size: 1.6em;
    font-weight: 400;
    color: #555555;
    line-height: 30px;
}

.dark .breadcrumbs
{
    color: #999;
}

    .breadcrumbs img
    {
        margin: 0 5px;
    }

    .dark .breadcrumbs img
    {
        filter: contrast(0) brightness(100);
    }

    .breadcrumbs a
    {
        -webkit-transition: all .2s ease;
           -moz-transition: all .2s ease;
            -ms-transition: all .2s ease;
             -o-transition: all .2s ease;
                transition: all .2s ease;
    }

    .breadcrumbs a:hover
    {
        color: var(--secondary);
    }

/* Buttons */

.btn
{
	display: inline-flex;
	padding: 15px 25px;
	color: #fff;
	background-color: #000;
	border: none;
	outline: none;
    line-height: auto;
    display: inline-flex;
    align-items: center;
	cursor: pointer;
    border-radius: 4px;
	font-size: 1.4em;
	text-transform: uppercase;
	font-weight: 800;
	-webkit-transition: all .3s cubic-bezier(0.25, 0.1, 0.25, 1);
	   -moz-transition: all .3s cubic-bezier(0.25, 0.1, 0.25, 1);
	    -ms-transition: all .3s cubic-bezier(0.25, 0.1, 0.25, 1);
	     -o-transition: all .3s cubic-bezier(0.25, 0.1, 0.25, 1);
	        transition: all .3s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.btn-sm
{
	display: inline-flex;
	padding: 8px 12px;
	color: #fff;
	background-color: #000;
	border: none;
	outline: none;
	cursor: pointer;
	font-size: 1.4em;
	text-transform: uppercase;
	font-weight: 600;
	-webkit-transition: all .3s cubic-bezier(0.25, 0.1, 0.25, 1);
	   -moz-transition: all .3s cubic-bezier(0.25, 0.1, 0.25, 1);
	    -ms-transition: all .3s cubic-bezier(0.25, 0.1, 0.25, 1);
	     -o-transition: all .3s cubic-bezier(0.25, 0.1, 0.25, 1);
	        transition: all .3s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.btn:hover
{
	background: var(--blue);
}

.btn.primary { background: var(--primary); }
.btn.primary:hover { background: #000; }
.btn.green { background: var(--green); }
.btn.green:hover { background: #000; }
.btn.blue { background: var(--primary); }
.btn.blue:hover { background: #000 }


/* Inputs */

.input-row
{
    display: flex;
}

input::placeholder
{
    color: #bbb;
    font-weight: 400;
}
.dark input::placeholder
{
    color: #666;
}
input
{
    width: 100%;
    height: 50px;
    outline: none;
    border: 1px solid #eee;
    padding: 0 15px;
    font-size: 1.4em;
    font-weight: 400;
    font-family: 'Nunito Sans', sans-serif;
}

.dark input
{
    background: transparent;
    border: 1px solid #333;
    color: #fff;
}

/* Margins */

.mt-0 { margin-top: 0px; }
.mt-1 { margin-top: 10px; }
.mt-2 { margin-top: 20px; }
.mt-3 { margin-top: 30px; }
.mt-4 { margin-top: 40px; }
.mt-5 { margin-top: 50px; }
.mt-6 { margin-top: 60px; }

.mb-0 { margin-bottom: 0px; }
.mb-1 { margin-bottom: 10px; }
.mb-2 { margin-bottom: 20px; }
.mb-3 { margin-bottom: 30px; }
.mb-4 { margin-bottom: 40px; }
.mb-5 { margin-bottom: 50px; }
.mb-6 { margin-bottom: 60px; }

.ml-0 { margin-left: 0px !important; }
.ml-1 { margin-left: 10px; }
.ml-2 { margin-left: 20px; }
.ml-3 { margin-left: 30px; }
.ml-4 { margin-left: 40px; }
.ml-5 { margin-left: 50px; }
.ml-6 { margin-left: 60px; }

.mr-0 { margin-right: 0px; }
.mr-1 { margin-right: 10px; }
.mr-2 { margin-right: 20px; }
.mr-3 { margin-right: 30px; }
.mr-4 { margin-right: 40px; }
.mr-5 { margin-right: 50px; }
.mr-6 { margin-right: 60px; }



/* Padding */

.p-xy-1 { padding: 10px; }
.p-xy-2 { padding: 20px; }
.p-xy-3 { padding: 30px; }
.p-xy-4 { padding: 40px; }
.p-xy-5 { padding: 50px; }
.p-xy-6 { padding: 60px; }
.p-xy-7 { padding: 70px; }
.p-xy-8 { padding: 80px; }
.p-xy-9 { padding: 90px; }

.p-x-1 { padding: 0 10px; }
.p-x-2 { padding: 0 20px; }
.p-x-3 { padding: 0 30px; }
.p-x-4 { padding: 0 40px; }
.p-x-5 { padding: 0 50px; }

.p-y-1 { padding: 10px 0; }
.p-y-2 { padding: 20px 0; }
.p-y-3 { padding: 30px 0; }
.p-y-4 { padding: 40px 0; }
.p-y-5 { padding: 50px 0; }
.p-y-6 { padding: 60px 0; }
.p-y-7 { padding: 70px 0; }
.p-y-8 { padding: 80px 0; }
.p-y-9 { padding: 90px 0; }
.p-y-10 { padding: 100px 0; }


/* Text Allignment */

.text-left { text-align: left !important }
.text-center { text-align: center !important }
.text-right { text-align: right !important }

.border-top { border-bottom: 1px solid #eee; }

.rt-time { display: inline-flex; }

/* Loader */

.loader {
    border: 3px solid #fff;
    border-top: 3px solid var(--primary); 
    border-radius: 50%;
    width: 20px;
    height: 20px;
    animation: spin 2s linear infinite;
    display: none;
}

	@keyframes spin {
        0% { transform: rotate(0deg); }
        100% { transform: rotate(360deg); }
	}

/* Sections */

section 
{
	position: relative;
	display: block;
	width: 100%;
}
section.gray
{
    background: #f5f5f5;
}

.wrapper
{
    width: 90%;
    max-width: 1240px;
    height: auto;
    display: block;
    position: relative;
    margin: 0 auto;
}

main
{
    min-height: calc(100vh - 790px);
    padding: 50px 0 0;
}

.main-title
{
    display: flex;
    align-items: center;
    height: 60px;
    font-size: 4em;
    font-weight: 800;
    color: #000;
}

.dark .main-title
{
    color: #fff;   
}

    .main-title .line
    {
        width: 6px;
        background: var(--primary);
        height: 100%;
        margin-right: 20px;
    }

/* Main Navbar */
.dark
{
    background: #000;
}

.dark .main-nav
{
    background: rgba(0, 0, 0, .8);
}

.menu_checkbox
{
    display: none;
}

.main-nav
{
    height: 70px;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: center;
    align-items: center;
    position: sticky;
    top: 0;
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    backdrop-filter: saturate(180%) blur(20px);
    background:  rgba(255,255,255,.8);
    z-index: 100;
}

.main-nav .menu-wrapper
{
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

    .main-nav .menu-wrapper .menu-search-container
    {
        position: relative;
    }

.dark .main-nav
{
    border-bottom: 1px solid #333;
}

    .main-nav-wrapper
    {
        max-width: 1240px;
        width: 90%;
        margin: 0 auto;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .main-nav .burger
    {
        display: none;
    }

    .main-nav .logo img.dark
    {
        display: none;
    }
    .dark .main-nav .logo img.dark
    {
        display: block;
        background: none;
    }
    .dark .main-nav .logo img.light
    {
        display: none;
    }

    .main-nav .logo 
    {
        display: flex;
        justify-content: flex-start;
        align-items: center;
        width: 200px;
    }

        .main-nav .logo p
        {
            border-left: 1px solid #ccc;
            line-height: 90%;
            margin-left: 15px;
            padding-left: 15px;
        }

        .main-nav .logo p a
        {
            line-height: 80%;
        }

        .main-nav .logo img
        {
            height: 15px;
        }

    .main-nav .menu-main-menu-container ul
    {
        display: flex;
        list-style: none;
    }

        .main-nav .menu-main-menu-container ul > li
        {
            display: flex;
            align-items: center;
            margin: 0 5px;
            font-size: 1.5em;
            font-weight: 600;
            position: relative;
            color: #000;
        }

        .dark .main-nav .menu-main-menu-container ul > li
        {
            color: #fff;
        }

            .main-nav .menu-main-menu-container ul li a
            {
                transition: 0.3s cubic-bezier(0.25, 0.1, 0.25, 1);
            }

            .main-nav .menu-main-menu-container > ul > li:nth-child(1) a { transition-delay: 0.06s; }
            .main-nav .menu-main-menu-container > ul > li:nth-child(2) a { transition-delay: 0.09s; }
            .main-nav .menu-main-menu-container > ul > li:nth-child(3) a { transition-delay: 0.12s; }
            .main-nav .menu-main-menu-container > ul > li:nth-child(4) a { transition-delay: 0.15s; }
            .main-nav .menu-main-menu-container > ul > li:nth-child(5) a { transition-delay: 0.18s; }
            .main-nav .menu-main-menu-container > ul > li:nth-child(6) a { transition-delay: 0.21s; }

            .search-open .main-nav .menu-main-menu-container > ul > li:nth-child(6) a { transition-delay: 0.10s; }
            .search-open .main-nav .menu-main-menu-container > ul > li:nth-child(5) a { transition-delay: 0.14s; }
            .search-open .main-nav .menu-main-menu-container > ul > li:nth-child(4) a { transition-delay: 0.18s; }
            .search-open .main-nav .menu-main-menu-container > ul > li:nth-child(3) a { transition-delay: 0.22s; }
            .search-open .main-nav .menu-main-menu-container > ul > li:nth-child(2) a { transition-delay: 0.26s; }
            .search-open .main-nav .menu-main-menu-container > ul > li:nth-child(1) a { transition-delay: 0.30s; }

            .search-open .main-nav .menu-main-menu-container ul li a
            {
                font-size: 0;
                opacity: 0;
            }

            .main-nav .menu-main-menu-container ul li.menu-item-has-children .sub
            {
                position: relative;
            }

            .main-nav .menu-main-menu-container > ul > li.menu-item-has-children > a > .sub:after
            {
                position: absolute;
                font-family: "Font Awesome 5 Free"; font-weight: 900; content: "\f107";
                top: 50%;
                right: -15px;
                font-size: 12px;
                transform: translateY(-50%);
                transition: all .3s cubic-bezier(0.25, 0.1, 0.25, 1);
            }

            .main-nav .menu-main-menu-container ul > li > a
            {
                width: 100px;
                padding: 20px 0;
                display: flex;
                align-items: center;
                justify-content: center;
                white-space: nowrap;
            }
    
            .main-nav .menu-main-menu-container ul > li.search-button > a
            {
                width: 60px;
            }

            .main-nav .menu-main-menu-container ul > li:hover:after,
            .main-nav .menu-main-menu-container ul li:hover > a
            {
                color: var(--primary);
            }

            .main-nav .menu-main-menu-container ul li.menu-item-has-children ul
            {
                position: absolute;
                top: 64px;
                left: 0;
                background: #fff;
                z-index: 1;
                display: grid;
                padding: 20px 0 0;
                grid-template-columns: 1fr 1fr;
                grid-row-end: 1;
                justify-content: center;
                align-items: flex-start;
                text-align: center;
                visibility: hidden;
                box-shadow: 0px 5px 20px rgb(5, 17, 51, .1);
                border-radius: 4px;
                opacity: 0;
                transition: all .3s cubic-bezier(0.25, 0.1, 0.25, 1);
            }

            .dark .main-nav .menu-main-menu-container ul li.menu-item-has-children ul
            {
                background: #000;
                border: 1px solid #222;
            }

            .main-nav .menu-main-menu-container ul li.menu-item-has-children:hover ul
            {
                opacity: 1;
                visibility: visible;
            }


                .main-nav .menu-main-menu-container ul li.menu-item-has-children ul li
                {   
                    display: flex;
                    text-align: left;
                    padding: 10px 20px;
                    margin: 0;
                }

                .main-nav .menu-main-menu-container ul li.menu-item-has-children.categories ul 
                {
                    grid-template-columns: 1fr 1fr;
                }
                    
                    .main-nav .menu-main-menu-container ul li.menu-item-has-children.categories ul li a
                    {
                        white-space:  unset;
                        line-height: 24px;
                        padding: 0;
                        text-transform: unset;
                    }

                    .main-nav .menu-main-menu-container ul li.menu-item-has-children.categories ul li p
                    {
                        display: none;
                    }

                .main-nav .menu-main-menu-container ul li.menu-item-has-children ul li.menu-bottom
                {
                    grid-column-start: 1;
                    grid-column-end: 3;
                    background: #f1f1f1;
                    margin-top: 10px;
                }
                .dark .main-nav .menu-main-menu-container ul li.menu-item-has-children ul li.menu-bottom
                {
                    background: #111;
                }

                    .main-nav .menu-main-menu-container ul li.menu-item-has-children ul li.menu-bottom a
                    {
                        width: 100%;
                        display: flex;
                        align-items: center;
                        justify-content: space-between;
                        padding: 10px 0;
                        font-size: 20px;
                        text-transform: none;
                    }

                        .main-nav .menu-main-menu-container ul li.menu-item-has-children ul li.menu-bottom a p
                        {
                            margin-top: 0;
                            background: var(--primary);
                            display: inline-flex;
                            padding: 8px 20px;
                            color: #fff;
                            background: #000;
                            border: none;
                            outline: none;
                            line-height: auto;
                            cursor: pointer;
                            font-size: 14px;
                            text-transform: uppercase;
                            font-weight: 600;
                            font-family: 'Nunito Sans', sans-serif;
                            -webkit-transition: all .3s cubic-bezier(0.25, 0.1, 0.25, 1);
                               -moz-transition: all .3s cubic-bezier(0.25, 0.1, 0.25, 1);
                                -ms-transition: all .3s cubic-bezier(0.25, 0.1, 0.25, 1);
                                 -o-transition: all .3s cubic-bezier(0.25, 0.1, 0.25, 1);
                                    transition: all .3s cubic-bezier(0.25, 0.1, 0.25, 1);
                        }
                        
                        .main-nav .menu-main-menu-container ul li.menu-item-has-children ul li.menu-bottom a:hover p
                        {
                            background-color: var(--primary);
                        }

                .main-nav .menu-main-menu-container ul li.menu-item-has-children ul li:first-child a
                {
                    border-left: none;
                }

                .main-nav .menu-main-menu-container ul li.menu-item-has-children ul li a:before
                {
                    position: absolute;
                    top: 0;
                    left: 0;
                    font-family: "Font Awesome 5 Free"; 
                    font-weight: 900;
                    font-size: 24px;
                    line-height: 24px;
                    color: #AAAAAA;
                    display: block;
                    margin-bottom: 20px;
                }

                .dark .main-nav .menu-main-menu-container ul li.menu-item-has-children ul li a:before
                {
                    color: #444;
                }

                .main-nav .menu-main-menu-container ul li.menu-item-has-children ul li.shared a:before { content: "\f6ff"; }
                .main-nav .menu-main-menu-container ul li.menu-item-has-children ul li.wordpress a:before { content: "\f19a"; font-weight: 400; font-family: "Font Awesome 5 Brands";  }
                .main-nav .menu-main-menu-container ul li.menu-item-has-children ul li.envelope a:before { content: "\f0e0"; }
                .main-nav .menu-main-menu-container ul li.menu-item-has-children ul li.vps a:before { content: "\f093"; }
                .main-nav .menu-main-menu-container ul li.menu-item-has-children ul li.server a:before { content: "\f233"; }
                .main-nav .menu-main-menu-container ul li.menu-item-has-children ul li.domain a:before { content: "\f0ac"; }

                    .main-nav .menu-main-menu-container ul li.menu-item-has-children ul li a
                    {
                        width: 200px;
                        padding: 0 20px 0 40px;
                        box-sizing: content-box;
                        display: block;
                        position: relative;
                        text-transform: uppercase;
                        font-size: 15px;
                        line-height: 24px;
                        white-space: nowrap;
                        text-align: left;
                        /*border-left: 1px solid;*/
                        height: 100%;
                        /*border-image: repeating-linear-gradient( 180deg, #fff, #ccc, #fff) 1;*/
                    }

                    .dark .main-nav .menu-main-menu-container ul li.menu-item-has-children ul li a
                    {
                        /*border-image: repeating-linear-gradient( 180deg, #000, #333, #000) 1;*/
                    }

                    .main-nav .menu-main-menu-container ul li.menu-item-has-children ul li a p
                    {
                        white-space: normal;
                        font-weight: 400;
                        color: #999;
                        font-size: 14px;
                        line-height: 24px;
                        text-transform: initial;
                        -webkit-transition: all .3s cubic-bezier(0.25, 0.1, 0.25, 1);
                           -moz-transition: all .3s cubic-bezier(0.25, 0.1, 0.25, 1);
                            -ms-transition: all .3s cubic-bezier(0.25, 0.1, 0.25, 1);
                             -o-transition: all .3s cubic-bezier(0.25, 0.1, 0.25, 1);
                                transition: all .3s cubic-bezier(0.25, 0.1, 0.25, 1);
                    }

                    .dark .main-nav .menu-main-menu-container ul li.menu-item-has-children ul li:hover a p
                    {
                        color: #999;
                    }

                    .dark .main-nav .menu-main-menu-container ul li.menu-item-has-children ul li a p
                    {
                        color: #666;
                    }

        .main-nav .get-started
        {
            width: 200px;
            display: flex;
            justify-content: flex-end;
            align-items: center;
        }


    .main-nav .search
    {
        display: flex;
        align-items: center;
    }

    body::before
    {
        width: 100%;
        height: calc(100% - 55px);
        content: "";
        background-color: rgba(0, 0, 0, .8);
        position: fixed;
        bottom: 0;
        left: 0;
        z-index: 10;
        opacity: 0;
        visibility: hidden;
        transition: 0.3s cubic-bezier(0.25, 0.1, 0.25, 1);
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
        -moz-backdrop-filter: blur(15px);
        -o-backdrop-filter: blur(15px);
    }
    
    .search-open::before
    {
        opacity: 1;
        visibility: visible;
    }
    
        .dark .main-nav .search svg path
        {
            fill: #fff;
        }
        
        .main-nav .search-input .search-loader
        {
            width: 20px;
            height: 20px;

            position: absolute;
            top: 18px;
            right: 55px;
            
            border: 1px solid #ddd;
            border-top: 1px solid #111;
            border-radius: 50%;

            opacity: 0;
            
            animation: spin 2s linear infinite;
            transition: 0.3s ease;
        }

        @keyframes spin {
          0% { transform: rotate(0deg); }
          100% { transform: rotate(360deg); }
        }

        .main-nav .quick-links 
        {
            width: 100%;
            position: absolute;
            top: 60px;
            left: 0;
            height: 250px;
            padding: 23px 40px 18px;
            opacity: 0;
            overflow: hidden;
            visibility: hidden;
            background: #fff;
            border-bottom-right-radius: 10px;
            border-bottom-left-radius: 10px;
            transition: 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
        }

        .search-open .main-nav .quick-links 
        {
            opacity: 1;
            visibility: visible;
        }
            
            .main-nav .quick-links h3
            {
                color: #6e6e73;
                font-weight: 500;
                font-size: 1.4em;
                text-transform: uppercase;
                position: relative;
                left: 40px;
                opacity: 0;
                transition: all 0.3s cubic-bezier(0.25, 0.1, 0.25, 1);
                transition-delay: 0s;
            }

            .search-open .main-nav .quick-links h3
            {
                opacity: 1;
                left: 0;
                transition-delay: 0.2s;
            }

            .main-nav .quick-links ul
            {
                margin: 10px 0 0 0;
            }

                .main-nav .quick-links ul li
                {
                    position: relative;
                    left: 40px;
                    font-size: 1.6em;
                    z-index: 1;
                    transition: all 0.3s cubic-bezier(0.25, 0.1, 0.25, 1);
                }

                .main-nav .quick-links ul li a
                {
                    display: flex;
                    padding: 12px 20px;
                    transition: all 0.3s cubic-bezier(0.25, 0.1, 0.25, 1);
                }

                    .main-nav .quick-links ul li a:hover
                    {
                        background-color: #f5f5f7;
                        color: var(--primary);
                    }

                .search-open .main-nav .quick-links ul li:nth-child(1) { transition-delay: 0.20s; }
                .search-open .main-nav .quick-links ul li:nth-child(2) { transition-delay: 0.24s; }
                .search-open .main-nav .quick-links ul li:nth-child(3) { transition-delay: 0.28s; }
                .search-open .main-nav .quick-links ul li:nth-child(4) { transition-delay: 0.32s; }
                .search-open .main-nav .quick-links ul li:nth-child(5) { transition-delay: 0.36s; }

                .search-open .main-nav .quick-links ul li
                {
                    transition-delay: 1s;
                    left: 0;
                }
                    
        .main-nav .search .search-wrap
        {
            position: relative;
            height: 100%;
            margin-right: 40px
        }

        .main-nav .search-input
        {
            position: absolute;
            left: 30px;
            top: 50%;
            width: 100%;
            opacity: 0;
            visibility: hidden;
            padding: 0 10px;
            transform: translateY(-50%);
            z-index: 1;
            transition: 0.3s cubic-bezier(0.25, 0.1, 0.25, 1);
            transition-delay: 0s;
        }

        .search-open .main-nav .search-input
        {
            opacity: 1;
            visibility: visible;
            left: 0;
            transition-delay: 0.3s;
        }

        .main-nav .search-input input
        {
            border: none;
            padding-left: 30px;
            padding-right: 80px;
            background-color: transparent;
            font-size: 1.6em;
            color: #1d1d1f;
        }

        .search-open .main-nav .close-search 
        {
            width: 37px;
            height: 45px;
            display: flex;
            align-items: center;
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            right: 10px;
            cursor: pointer;
        }

        .search-open .main-nav .close-search:hover span
        {
            background: #111;
        }
        
            .search-open .main-nav .close-search span
            {
                height: 17px;
                width: 1px;
                background: #86868b;
                position: absolute;
                display: block;
                border-radius: 0.5px;
                z-index: 1;
                transition: 0.3s cubic-bezier(0.25, 0.1, 0.25, 1);
            }
        
            .search-open .main-nav .close-search span.right
            {
                left: 12px;
                -webkit-transform: rotate(45deg);
                transform: rotate(45deg);
                -webkit-transform-origin: 50% 100%;
                transform-origin: 50% 100%;
            }

            .search-open .main-nav .close-search span.left
            {
                right: 12px;
                -webkit-transform: rotate(-45deg);
                transform: rotate(-45deg);
                -webkit-transform-origin: 50% 100%;
                transform-origin: 50% 100%;
            }

        .main-nav .search .trigger-search
        {
            width: 0;
            opacity: 0;
            display: hidden;
            height: 100%;
            background: none;
            border: none;
            outline: none;
            position: absolute;
            cursor: pointer;
            right: 0;
            top: 50%;
            -webkit-transform: translateY(-50%);
               -moz-transform: translateY(-50%);
                -ms-transform: translateY(-50%);
                 -o-transform: translateY(-50%);
                    transform: translateY(-50%);
        }

        .main-nav .search-input svg
        {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            left: 10px;
        }

        .dark .main-nav .search .trigger-search
        {
            background: #333;
        }
        
        .dark .main-nav .search.active .search-input input
        {
            background: #000;
        }

        .main-nav .search.active .search-input
        {
            width: 850px;
            transition-delay: 0.3s;
        }

    .theme-mode
    {
        position: fixed;
        top: 50%;
        transform: translateY(-50%);
        right: 40px;
        margin-left: 10px;
        width: 40px;
        height: 40px;
        outline: none;
    }

    .theme-mode .icon
    {
        width: 40px;
        height: 40px;
        border-radius: 50px;
        display: flex;
        justify-content: center;
        align-items: center;
        cursor: pointer;
    }

    .theme-mode .light-mode
    {
        display: none;
    }

    .theme-mode .icon.light-mode::after
    {
        content: "LIGHT MODE";
        color: #fff;
    }

    .theme-mode .icon.dark-mode::after
    {
        content: "DARK MODE";
    }
    
    .theme-mode .icon::after
    {
        position: absolute;
        right: 80%;
        top: 50%;
        font-size: 0;
        font-weight: 800;
        transform: translateY(-50%);
        white-space: nowrap;
        opacity: 0;
        transition: all 0.3s cubic-bezier(0.25, 0.1, 0.25, 1);
    }

    .theme-mode .icon:hover:after
    {
        right: 120%;
        opacity: 1;
        font-size: 12px;
    }

    /*light mode*/
    .theme-mode .icon
    {
        border: 1px solid #aaa;
    }

    .dark .theme-mode .icon
    {
        border: 1px solid #aaa;
    }

        .theme-mode img
        {
            height: 20px;
        }


    /*.main-nav .theme-mode
    {
        width: 53px;
        height: 28px;
        border-radius: 50px;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-left: 10px;
        background: #fff;
        border: 1px solid #ddd;
        position: relative;
        overflow: hidden;
        cursor: pointer;
    }

        .main-nav .theme-mode:after
        {
            content: "";
            width: 18px;
            height: 18px;
            border-radius: 100%;
            background: #ffc107;
            left: 0;
            position: absolute;
            top: 50%;
            left: 5px;
            top: 50%;
            -webkit-transform: translateY(-50%);
               -moz-transform: translateY(-50%);
                -ms-transform: translateY(-50%);
                 -o-transform: translateY(-50%);
                    transform: translateY(-50%);
            transition: all 0.7s cubic-bezier(0.25, 0.1, 0.25, 1);;
        }
        .main-nav .theme-mode:before
        {
            content: "";
            width: 0;
            height: 0;
            border-radius: 100%;
            background: #fff;
            left: 0;
            position: absolute;
            top: 50%;
            -webkit-transform: translateY(-50%);
               -moz-transform: translateY(-50%);
                -ms-transform: translateY(-50%);
                 -o-transform: translateY(-50%);
                    transform: translateY(-50%);
            left: -10px;
            z-index: 1;
            transition: all 0.7s cubic-bezier(0.25, 0.1, 0.25, 1);;
        }

        .main-nav .theme-mode:hover:before,
        .dark .main-nav .theme-mode:before
        {
            width: 18px;
            height: 18px;
            left: 22px;
        }
        .main-nav .theme-mode:hover:after,
        .dark .main-nav .theme-mode:after
        {
            left: 29px;
        }
    */
    .theme-mode .dark-mode,
    .dark .theme-mode .light-mode
    {
        display: flex;
    }

    .dark .theme-mode .dark-mode
    {
        display: none;
    }




/* Footer & CTA */
.cta
{
    width: 100%;
    display: flex;
    align-items: flex-end;
    position: relative;
    margin: 0;
    background-color: #f1f1f1;
}

.dark .cta
{
    background-color: #111;
}

    .cta .cta-content
    {
        width: 50%;
        --widthA: calc(100% - 1140px);
        --widthB: calc(var(--widthA) / 2);
        padding: 55px 0 55px var(--widthB);
        position: relative;
        z-index: 2;
    }

    .cta .cta-content:before
    {
        content: "";
        position: absolute;
        width: 110%;
        height: 100%;
        top: 0;
        left: -10%;
        z-index: -1;
        background: var(--primary);
        -webkit-transform: skewX(-20deg);
           -moz-transform: skewX(-20deg);
            -ms-transform: skewX(-20deg);
             -o-transform: skewX(-20deg);
                transform: skewX(-20deg);
    }

        .cta .cta-content h1
        {
            color: #fff;
        }
        
            .cta .cta-content p
            {
                max-width: 410px;
                color: rgba(255, 255, 255, .8);
                margin: 20px 0;
            }

    .cta .cta-subscribe
    {
        width: 50%;
        padding: 50px 20px 50px 0;
        --widthA: calc(100% - 1140px);
        --widthB: calc(var(--widthA) / 2);
        padding: 55px var(--widthB) 55px 20px;
        text-align: right;
        position: relative;
        z-index: 1;
    }

    .cta .cta-subscribe:before
    {
        content: "";
        position: absolute;
        width: 110%;
        height: 100%;
        top: 0;
        right: 0;
        z-index: -2;
        background: #ddd;
    }

    .dark .cta .cta-subscribe:before
    {
        background: #111;
    }

footer
{
    background: #000;
    color: #fff;
}

    footer .prefooter
    {
        padding: 75px 0 40px;
    }

    footer .trustpilot
    {
        text-align: center;
        margin-top: 20px;
        display: inline-block;
    }

        footer .trustpilot img
        {
            margin-top: 10px;
        }

    footer h5
    {
        color: #fff;
        font-size: 2em;
        font-weight: 700;
        text-transform: uppercase;
        margin-bottom: 20px;
    }
        
        footer ul li
        {
            color: #fff;
        }

            footer ul li a
            {
                display: flex;
                color: #ccc;
                font-size: 1.6em;
                font-weight: 500;
                line-height: 20px;
                padding: 3px 0;
                -webkit-transition: all .3s ease;
                   -moz-transition: all .3s ease;
                    -ms-transition: all .3s ease;
                     -o-transition: all .3s ease;
                        transition: all .3s ease;
            }

            footer ul li a:hover
            {
                color: var(--secondary);
            }
        
    footer .footer .wrapper
    {
        display: flex;
        justify-content: space-between;
        align-items: center;
        border-top: 1px solid rgba(255, 255, 255, .2);
        padding: 20px 0;;
    }

        footer .footer .footer-menu,
        footer .footer .social-network
        {
            display: flex;
            justify-content: center;
            align-items: center;
        }

            footer .footer .footer-menu li
            {
                border-right: 1px solid rgba(255, 255, 255, .3);
                margin-bottom: 0;
                color: #CCCCCC;
            }

                footer .footer .footer-menu li:first-child a
                {
                    padding-left: 0;
                }

                footer .footer .footer-menu li a
                {
                    color: #ccc;
                    padding: 0 10px;
                    line-height: 15px;
                    font-weight: 400;
                    -webkit-transition: all .3s ease;
                       -moz-transition: all .3s ease;
                        -ms-transition: all .3s ease;
                         -o-transition: all .3s ease;
                            transition: all .3s ease;
                }
            
                footer .footer .footer-menu li a:hover
                {
                    color: var(--secondary);
                }

        footer .footer p
        {
            color: #fff;
            font-size: 1.6em;
        }

            footer .footer p i
            {
                color: #CE2035;
            }


            footer .footer .social-network li
            {
                margin-bottom: 0;
            }
                
                footer .footer .social-network li a
                {
                    padding: 0 10px;
                    font-size: 1.8em;
                }

                footer .footer .social-network li:last-child a
                {
                    padding-right: 0;
                }
        

/* Homepage */

/* Featured Posts */

section.featured-posts
{

}
        
    section.featured-posts .main-post
    {
        display: block;
    }

        section.featured-posts .main-post .post-thumbnail
        {
            display: flex;
            justify-content: center;
            align-items: center;
            overflow: hidden;
            box-shadow: 0 3px 12px -1px rgb(7 10 25 / 10%), 0 22px 27px -20px rgb(7 10 25 / 10%);
        }

        section.featured-posts .main-post:hover .post-thumbnail img
        {
            transform: scale(1.06);
        }


        section.featured-posts .main-post .post-thumbnail:hover ~ .post-title a
        {
            background-size: 100% 100%;
            color: var(--primary);
        }

            section.featured-posts .main-post .post-thumbnail img
            {
                max-width: 100%;
                height: 414px;
                border-radius: 4px;
                transition: all 0.3s cubic-bezier(0.25, 0.1, 0.25, 1);
            }

        section.featured-posts .main-post .post-info
        {
            display: flex;
            align-items: center;
            margin-top: 40px;
            padding: 0 20px;
        }

a.category-box
{
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 8px 12px;
    color: var(--secondary);
    background: rgba(49, 211, 175, .10);
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
    font-size: 1.2em;
    font-weight: 800;
    line-height: 100%;
    -webkit-transition: all .4s cubic-bezier(0.25, 0.1, 0.25, 1);
       -moz-transition: all .4s cubic-bezier(0.25, 0.1, 0.25, 1);
        -ms-transition: all .4s cubic-bezier(0.25, 0.1, 0.25, 1);
         -o-transition: all .4s cubic-bezier(0.25, 0.1, 0.25, 1);
            transition: all .4s cubic-bezier(0.25, 0.1, 0.25, 1);
}

a.category-box:hover
{
    color: #fff;
    background-color: var(--secondary);
}

.number 
{
    font-family: 'Raleway', sans-serif;
    font-weight: 500;
}

.text-blue
{
    color: rgba(0, 123, 255, 1);
}

/* .home2 a.category-box
{
    display: inline-flex;
    justify-content: center;
    align-items: center;
    color: var(--primary);
    padding: 0;
    background: transparent;
    text-transform: inherit;
    position: relative;
    overflow: hidden;
    font-size: 1.5em;
    font-weight: 500;
    line-height: 100%;
    -webkit-transition: all .4s cubic-bezier(0.25, 0.1, 0.25, 1);
       -moz-transition: all .4s cubic-bezier(0.25, 0.1, 0.25, 1);
        -ms-transition: all .4s cubic-bezier(0.25, 0.1, 0.25, 1);
         -o-transition: all .4s cubic-bezier(0.25, 0.1, 0.25, 1);
            transition: all .4s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.home2 a.category-box:hover
{
    color: var(--primary);
    background-color: unset;
}


.home2 a.category-box span
{
    display: inline-flex;
    position: relative;
    z-index: 1;
    color: transparent;
    color: var(--primary);
    -webkit-transition: -webkit-transform 1.2s cubic-bezier(0.19, 1, 0.22, 1);
    transition: -webkit-transform 1.2s cubic-bezier(0.19, 1, 0.22, 1);
    -o-transition: -o-transform 1.2s cubic-bezier(0.19, 1, 0.22, 1);
    -moz-transition: transform 1.2s cubic-bezier(0.19, 1, 0.22, 1), -moz-transform 1.2s cubic-bezier(0.19, 1, 0.22, 1);
    transition: transform 1.2s cubic-bezier(0.19, 1, 0.22, 1);
    transition: transform 1.2s cubic-bezier(0.19, 1, 0.22, 1), -webkit-transform 1.2s cubic-bezier(0.19, 1, 0.22, 1), -moz-transform 1.2s cubic-bezier(0.19, 1, 0.22, 1), -o-transform 1.2s cubic-bezier(0.19, 1, 0.22, 1);
}

.home2 a.category-box span::after
{
    content: attr(data-text);
    display: block;
    position: absolute;
    color: var(--primary);
}

.home2 a.category-box span::after
{
    top: 110%;
    -webkit-transform: skewY(10deg);
    -moz-transform: skewY(10deg);
    -ms-transform: skewY(10deg);
    -o-transform: skewY(10deg);
    transform: skewY(10deg);
    -webkit-transform-origin: left top;
    -moz-transform-origin: left top;
    -ms-transform-origin: left top;
    -o-transform-origin: left top;
    transform-origin: left top;
    -webkit-transition: -webkit-transform 2s cubic-bezier(0.19, 1, 0.22, 1);
    transition: -webkit-transform 2s cubic-bezier(0.19, 1, 0.22, 1);
    -o-transition: -o-transform 2s cubic-bezier(0.19, 1, 0.22, 1);
    -moz-transition: transform 2s cubic-bezier(0.19, 1, 0.22, 1), -moz-transform 2s cubic-bezier(0.19, 1, 0.22, 1);
    transition: transform 2s cubic-bezier(0.19, 1, 0.22, 1);
    transition: transform 2s cubic-bezier(0.19, 1, 0.22, 1), -webkit-transform 2s cubic-bezier(0.19, 1, 0.22, 1), -moz-transform 2s cubic-bezier(0.19, 1, 0.22, 1), -o-transform 2s cubic-bezier(0.19, 1, 0.22, 1);
}

.home2 a.category-box:hover 
{
    opacity: 1;
}

.home2 a.category-box:hover span 
{
    -webkit-transform: translateY(-105%);
    -moz-transform: translateY(-105%);
    -ms-transform: translateY(-105%);
    -o-transform: translateY(-105%);
    transform: translateY(-105%);
}

.home2 a.category-box:hover span:after 
{
    -webkit-transform: skewY(0);
    -moz-transform: skewY(0);
    -ms-transform: skewY(0);
    -o-transform: skewY(0);
    transform: skewY(0);
} */


            .post-date
            {
                font-size: 0.8em;
            }
            
            section.featured-posts .main-post .post-info .post-date
            {
                margin-left: 10px;
                color: #666666;
                display: flex;
                align-items: center;
            }

            .dark section.featured-posts .main-post .post-info .post-date
            {
                color: #ccc;
            }

                section.featured-posts .main-post .post-info .post-date img
                {
                    margin-right: 5px;
                }

            section.featured-posts .main-post .post-title
            {
                font-size: 4em;
                line-height: 55px;
                margin: 10px 0;
                padding: 0 20px;
            }

                section.featured-posts .main-post .post-title a
                {
                    /* background-image: linear-gradient(transparent calc(100% - 2px), var(--primary) 2px);
                    background-repeat: no-repeat;
                    background-size: 0% 100%; */
                    transition: all .3s cubic-bezier(0.25, 0.1, 0.25, 1);
                }

                section.featured-posts .main-post .post-title a:hover
                {
                    /* background-size: 100% 100%; */
                    color: var(--primary);
                }

            .dark section.featured-posts .main-post .post-author
            {
                color: #ccc;
            }

            section.featured-posts .main-post .post-author
            {
                display: flex;
                align-items: center;
                width: 100%;
                padding: 0 20px;
            }
        
                section.featured-posts .main-post .post-author .author-avatar
                {
                    width: 50px;
                    height: 50px;
                    border-radius: 100%;
                    overflow: hidden;
                    position: relative;
                    background: #FDBF38;
                    margin-right: 15px;
                }

                    section.featured-posts .main-post .post-author .author-avatar:after
                    {
                        content: "";
                        width: 42px;
                        height: 42px;
                        border: 1px solid #fff;
                        background: transparent;
                        position: absolute;
                        left: 50%;
                        top: 50%;
                        border-radius: 100%;
                        z-index: 2;
                        -webkit-transform: translate(-50%, -50%);
                           -moz-transform: translate(-50%, -50%);
                            -ms-transform: translate(-50%, -50%);
                             -o-transform: translate(-50%, -50%);
                                transform: translate(-50%, -50%);
                    }
                    
                    section.featured-posts .main-post .post-author .author-avatar img
                    {
                        max-width: 100%;
                        height: 100%;
                        object-fit: cover;
                    }

                section.featured-posts .main-post .post-author .author-info h4
                {
                    margin-bottom: 0;
                }

                section.featured-posts .main-post .post-author .author-info p
                {
                    color: #777777;
                }
    
        section.featured-posts .mini-posts
        {
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            padding-left: 30px;
        }

            /* section.featured-posts .mini-posts .separator
            {
                width: 100%;
                height: 1px;
                background-color: #ccc;
            }

            .dark section.featured-posts .mini-posts .separator
            {
                background-color: #444;
            }


            section.featured-posts .mini-posts .separator:last-child
            {
                display: none;
            } */


        section.featured-posts .mini-post
        {
            padding: 30px 0;
            border-bottom: 1px solid #ddd;
            position: relative;
        }
        
        .dark section.featured-posts .mini-post
        {
            border-bottom: 1px solid #444;
        }

        section.featured-posts .mini-post::after
        {
            content: "";
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0%;
            height: 2px;
            background-color: var(--primary);
            transition: 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
        }

        section.featured-posts .mini-post:hover::after
        {
            width: 100%;
        }
        
        section.featured-posts .mini-post:first-child
        {
            /* border-bottom: 0; */
        }

        section.featured-posts .col-xs-12:first-child .mini-post
        {
            margin-top: 0;
        }

            section.featured-posts .mini-post .category
            {
                margin-bottom: 15px;
                display: flex;
                align-items: center;
            }

            section.featured-posts .mini-post .post-date
            {
                margin-left: 10px;
                color: #666;
            }
            section.featured-posts .mini-post .post-author
            {
                font-size: 1.6em;
                line-height: 110%;
                margin-top: 15px;
            }
            
            .dark section.featured-posts .mini-post .post-author
            {
                color: #ccc;
            }

            section.featured-posts .mini-post .post-title
            {
                font-size: 2.6em;
                line-height: 140%;
            }

                section.featured-posts .mini-post .post-title a {
                    /* background-image: linear-gradient(transparent calc(100% - 2px), var(--primary) 2px);
                    background-repeat: no-repeat;
                    background-size: 0% 100%; */
                    transition: all .3s cubic-bezier(0.25, 0.1, 0.25, 1);
                }

                section.featured-posts .mini-post .post-title a:hover
                {
                    /* background-size: 100% 100%; */
                    color: var(--primary);
                }


/* Popular posts */

/* Post Theme 1 */
section.popular-posts
{
    margin-top: 50px;
    padding: 50px 0;
    /* background: #F0F2F5; */
}

.dark section.popular-posts
{
    background: #111;
}

    .post-theme-1 .post
    {
        width: 100%;
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        position: relative;
        z-index: 1;
        padding: 20px 25px;
        /* background-color: #fff; */
        border-radius: 4px;
        /* box-shadow: 0 3px 12px -1px rgb(7 10 25 / 10%), 0 22px 27px -20px rgb(7 10 25 / 10%); */
        transition: all .3s cubic-bezier(0.25, 0.1, 0.25, 1);
    }

    .dark .post-theme-1 .post
    {
        background-color: #000;
    }

    .post-theme-1 .post:hover
    {
        /* box-shadow: 0 15px 45px -5px rgb(7 10 25 / 20%); */
        /* transform: translateY(-2px); */
    }

    .post-theme-1 .post:before
    {
        content: "";
        position: absolute;
        width: 100%;
        height: 0;
        top: 0;
        left: 0;
        background: #fff;
        z-index: -1;
        box-shadow: 0px 5px 20px rgb(5, 17, 51, .1);
        -webkit-transition: all .3s cubic-bezier(0.25, 0.1, 0.25, 1);
           -moz-transition: all .3s cubic-bezier(0.25, 0.1, 0.25, 1);
            -ms-transition: all .3s cubic-bezier(0.25, 0.1, 0.25, 1);
             -o-transition: all .3s cubic-bezier(0.25, 0.1, 0.25, 1);
                transition: all .3s cubic-bezier(0.25, 0.1, 0.25, 1);
    }

    .dark .post-theme-1 .post:before
    {
        background: #222;
    }

    /* .post-theme-1 .post:hover:before
    {
        height: 100%;
    } */

        .post-theme-1 .post:hover .post-thumbnail
        {
            box-shadow: 0 15px 45px -5px rgb(7 10 25 / 25%);
            -webkit-filter: brightness(1.07);
            filter: brightness(1.07);
            transform: translate(0,-2px);
        }

        .post-theme-1 .post .post-thumbnail
        {
            display: flex;
            justify-content: center;
            align-items: center;
            overflow: hidden;
            width: 100%;
            height: 223.67px;
            box-shadow: 0 3px 12px -1px rgb(7 10 25 / 20%), 0 22px 27px -20px rgb(7 10 25 / 20%);
            /* margin-bottom: 40px; */
            border-top-left-radius: 4px;
            border-top-right-radius: 4px;
            transition: all .4s cubic-bezier(0.25, 0.1, 0.25, 1);
        }

            .post-theme-1 .post .post-thumbnail img
            {
                max-width: 100%;
                height: 100%;
                object-fit: cover;
                transition: all .4s cubic-bezier(0.25, 0.1, 0.25, 1);
            }

            .post-theme-1 .post:hover .post-thumbnail img
            {
                /* box-shadow: 0 3px 12px -1px rgb(7 10 25 / 10%), 0 22px 27px -20px rgb(7 10 25 / 10%); */
            }

        .post-theme-1 .post .post-info
        {
            display: flex;
            align-items: center;
            margin-top: 15px;
        }

            .post-theme-1 .post .post-info .post-date
            {
                margin-left: 10px;
                color: #666666;
                display: flex;
                align-items: center;
            }

            .dark .post-theme-1 .post .post-info .post-date
            {
                color: #ccc;
            }

                .post-theme-1 .post .post-info .post-date img
                {
                    margin-right: 5px;
                }

            .post-theme-1 .post .post-title
            {
                font-size: 2.4em;
                line-height: 130%;
                font-weight: 700;
                margin: 15px 0 15px 0;
            }

                .post-theme-1 .post .post-title a
                {
                    background-image: linear-gradient(transparent calc(100% - 2px), var(--primary) 2px);
                    background-repeat: no-repeat;
                    background-size: 0% 100%;
                    -webkit-transition: all .7s cubic-bezier(0.25, 0.1, 0.25, 1);
                       -moz-transition: all .7s cubic-bezier(0.25, 0.1, 0.25, 1);
                        -ms-transition: all .7s cubic-bezier(0.25, 0.1, 0.25, 1);
                         -o-transition: all .7s cubic-bezier(0.25, 0.1, 0.25, 1);
                            transition: all .7s cubic-bezier(0.25, 0.1, 0.25, 1);
                }

                /* .post-theme-1 .post:hover .post-title a
                {
                    background-size: 100% 100%;
                    color: var(--primary);
                } */
            
            .dark .post-theme-1 .post .post-title
            {
                color: #fff;
            }
    
            .post-theme-1 .post .post-author
            {
                display: flex;
                align-items: center;
                width: 100%;
            }
        
                .post-theme-1 .post .post-author .author-avatar
                {
                    width: 50px;
                    height: 50px;
                    border-radius: 100%;
                    overflow: hidden;
                    position: relative;
                    background: #FDBF38;
                    margin-right: 15px;
                }

                    .post-theme-1 .post .post-author .author-avatar:after
                    {
                        content: "";
                        width: 42px;
                        height: 42px;
                        border: 1px solid #fff;
                        background: transparent;
                        position: absolute;
                        left: 50%;
                        top: 50%;
                        border-radius: 100%;
                        z-index: 2;
                        -webkit-transform: translate(-50%, -50%);
                           -moz-transform: translate(-50%, -50%);
                            -ms-transform: translate(-50%, -50%);
                             -o-transform: translate(-50%, -50%);
                                transform: translate(-50%, -50%);
                    }
                    
                    .post-theme-1 .post .post-author .author-avatar img
                    {
                        max-width: 100%;
                        height: 100%;
                        object-fit: cover;
                    }

                .post-theme-1 .post .post-author .author-info h4
                {
                    margin-bottom: 0;
                }

                .post-theme-1 .post .post-author .author-info p
                {
                    font-size: 1.4em;
                    font-weight: 400;
                    line-height: 20px;
                    color: #777777;
                }
        

section.recent-posts
{
    padding: 50px 0;
}

section.recent-posts.no-padding
{
    padding: 0;
}

/* Post Theme 2 */
    .post-theme-2 .post
    {
        padding: 20px 0;
        border-bottom: 1px solid #ddd;
        position: relative;
    }

    .dark .post-theme-2 .post
    {   
        border-bottom: 1px solid #333;
    }

        .post-theme-2 .post::after
        {
            content: "";
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0%;
            height: 2px;
            background-color: var(--primary);
            transition: 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);;
        }

        .post-theme-2 .post:hover::after
        {
            width: 100%;
        }

        .post-theme-2 .sm-first-xs:hover ~ .post-title a
        {
            background-size: 100% 100%;
            color: var(--primary);
        }

        .post-theme-2 .post .post-thumbnail
        {
            width: 272px;
            height: 181px;
            display: flex;
            justify-content: center;
            align-items: center;
            overflow: hidden;
            border-radius: 4px;
            margin: 0 0 0 auto;
        }

            .post-theme-2 .post .post-thumbnail img
            {
                max-width: 100%;
                height: 100%;
                object-fit: cover;
                transition: 0.3s cubic-bezier(0.25, 0.1, 0.25, 1);
            }

                .post-theme-2 .post:hover .post-thumbnail img
                {
                    transform: scale(1.06);
                }

        .post-theme-2 .post .post-info
        {
            display: flex;
            align-items: center;
        }

            .post-theme-2 .post .post-info .post-date
            {
                margin-left: 10px;
                color: #666666;
                display: flex;
                align-items: center;
            }

            .dark .post-theme-2 .post .post-info .post-date
            {
                color: #ccc;
            }

                .post-theme-2 .post .post-info .post-date img
                {
                    margin-right: 5px;
                }

        .post-theme-2 .post .post-title
        {
            margin: 10px 0;
            font-size: 3.4em;
            font-weight: 700;
            line-height: 40px;
        }

            .post-theme-2 .post .post-title a
            {
                /* background-image: linear-gradient(transparent calc(100% - 2px), var(--primary) 2px);
                background-repeat: no-repeat;
                background-size: 0% 100%; */
                transition: all .3s cubic-bezier(0.25, 0.1, 0.25, 1);
            }

            .post-theme-2 .post .post-title a:hover
            {
                /* background-size: 100% 100%; */
                color: var(--primary);
            }
        
        .post-theme-2 .post .post-description
        {
            margin: 0 0 15px 0;
            color: #666;
        }

        .post-theme-2 .post .post-author
        {
            font-size: 1.6em;
        }

            .post-theme-2 .post .post-author a
            {
                font-weight: 700;
            }


/* Editor's Pick */

section.editors-pick
{
    padding: 80px 0 80px;
    background-color: #f1f1f1;
}

.dark section.editors-pick
{
    background-color: #111;
}

    /* Post Theme 3 */
    .post-theme-3 .col-xs-12
    {
        border-left: 1px solid;
        border-image: repeating-linear-gradient( 180deg, rgba(255, 255, 255, 0), #ccc, rgba(255, 255, 255, 0)) 0.5;
    }

    .dark .post-theme-3 .col-xs-12
    {   
        border-image: repeating-linear-gradient( 180deg, #000, #333, #000) 0.5;
    }

    .post-theme-3 .col-xs-12:first-child
    {
        border-left: 0;
    }

    .post-theme-3 .post
    {
        width: 100%;
        height: 100%;
        position: relative;
        display: flex;
        justify-content: space-between;
        flex-direction: column;
        padding: 25px;
        border-radius: 4px;
        /* background-color: #fff; */
        /* box-shadow: 0 3px 12px -1px rgb(7 10 25 / 10%), 0 22px 27px -20px rgb(7 10 25 / 10%); */
        transition: box-shadow .3s cubic-bezier(0.25, 0.1, 0.25, 1);
        z-index: 1;
    }

    .post-theme-3 .post:hover
    {
        /* transition-delay: .2s; */
        /* box-shadow: 0 15px 45px -5px rgb(7 10 25 / 20%); */
    }

    .post-theme-3 .post:before
    {
        content: "";
        position: absolute;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        opacity: 0;
        border-radius: 4px;
        background: #fff;
        z-index: -1;
        box-shadow: 0px 5px 20px rgb(5, 17, 51, .1);
        -webkit-transition: all .3s cubic-bezier(0.25, 0.1, 0.25, 1);
           -moz-transition: all .3s cubic-bezier(0.25, 0.1, 0.25, 1);
            -ms-transition: all .3s cubic-bezier(0.25, 0.1, 0.25, 1);
             -o-transition: all .3s cubic-bezier(0.25, 0.1, 0.25, 1);
                transition: all .3s cubic-bezier(0.25, 0.1, 0.25, 1);
    }

    .dark .post-theme-3 .post:before
    {
        background: #222;
    }

    .post-theme-3 .post:hover:before
    {
        opacity: 1;
    }

        .post-theme-3 .post .post-thumbnail
        {
            display: flex;
            justify-content: center;
            align-items: center;
            overflow: hidden;
            width: 100%;
            height: 223.67px;
        }

            .post-theme-3 .post .post-thumbnail img
            {
                max-width: 100%;
                height: 100%;
                object-fit: cover;
            }

        .post-theme-3 .post .post-info
        {
            display: flex;
            align-items: center;
        }

            .post-theme-3 .post .post-info .post-date
            {
                margin-left: 10px;
                color: #666666;
                display: flex;
                align-items: center;
            }

            .dark .post-theme-3 .post .post-info .post-date
            {
                color: #555;
            }

                .post-theme-3 .post .post-info .post-date img
                {
                    margin-right: 5px;
                }

            .post-theme-3 .post .post-title
            {
                font-size: 2.6em;
                line-height: 40px;
                font-weight: 800;
                margin: 10px 0 15px 0;
            }

                .post-theme-3 .post .post-title a
                {
                    background-image: linear-gradient(transparent calc(100% - 2px), var(--primary) 2px);
                    background-repeat: no-repeat;
                    background-size: 0% 100%;
                    -webkit-transition: all .7s cubic-bezier(0.25, 0.1, 0.25, 1);
                       -moz-transition: all .7s cubic-bezier(0.25, 0.1, 0.25, 1);
                        -ms-transition: all .7s cubic-bezier(0.25, 0.1, 0.25, 1);
                         -o-transition: all .7s cubic-bezier(0.25, 0.1, 0.25, 1);
                            transition: all .7s cubic-bezier(0.25, 0.1, 0.25, 1);
                }

                .post-theme-3 .post:hover .post-title a
                {
                    /* background-size: 100% 100%;
                    color: var(--primary); */
                }

            .dark .post-theme-3 .post .post-title
            {
                color: #fff;
            }
    
            .post-theme-3 .post .post-description
            {
                margin: 0 0 15px;
                color: #666;
            }

            .post-theme-3 .post .post-author
            {
                display: flex;
                align-items: center;
            }
        
                .post-theme-3 .post .post-author .author-avatar
                {
                    width: 50px;
                    height: 50px;
                    border-radius: 100%;
                    overflow: hidden;
                    position: relative;
                    background: #FDBF38;
                    margin-right: 10px;
                }

                    .post-theme-3 .post .post-author .author-avatar:after
                    {
                        content: "";
                        width: 42px;
                        height: 42px;
                        border: 1px solid #fff;
                        background: transparent;
                        position: absolute;
                        left: 50%;
                        top: 50%;
                        border-radius: 100%;
                        z-index: 2;
                        -webkit-transform: translate(-50%, -50%);
                           -moz-transform: translate(-50%, -50%);
                            -ms-transform: translate(-50%, -50%);
                             -o-transform: translate(-50%, -50%);
                                transform: translate(-50%, -50%);
                    }
                    
                    .post-theme-3 .post .post-author .author-avatar img
                    {
                        max-width: 100%;
                        height: 100%;
                        object-fit: cover;
                    }

                .post-theme-3 .post .post-author .author-info h4
                {
                    font-size: 1.8em;
                    font-weight: 700;
                    margin-bottom: 0;
                    line-height: 20px;
                }

                .post-theme-3 .post .post-author .author-info p
                {
                    font-size: 1.4em;
                    font-weight: 400;
                    line-height: 20px;
                    color: #777777;
                }

.pagination
{
    margin: 30px auto;
    text-align: center;
}

    .pagination .page-numbers.prev,
    .pagination .page-numbers.next
    {
        display: none;
    }
    
    .pagination .page-numbers.dots:hover
    {
        color: #ddd;
    }

    .dark .pagination .page-numbers.dots:hover
    {
        color: #aaa;
    }

    .pagination .page-numbers.dots
    {
        border: none;
        width: unset;
        height: unset;
        color: #DDD;
        margin: 0 5px;
    }

    .dark .pagination .page-numbers.dots
    {
        color: #aaa;
    }


    .pagination .page-numbers
    {
        width: 45px;
        height: 45px;
        display: inline-flex;
        justify-content: center;
        align-items: center;
        color: #333;
        font-size: 1.4em;
        line-height: 5px;
        font-weight: 600;
        border-radius: 100%;
        border: 2px solid #DDDDDD;
        margin: 0 10px;
        -webkit-transition: all .3s ease;
           -moz-transition: all .3s ease;
            -ms-transition: all .3s ease;
             -o-transition: all .3s ease;
                transition: all .3s ease;
    }

    .dark .pagination .page-numbers
    {
        color: #666;
        border: 2px solid #333;
    }

    .pagination .page-numbers:hover,
    .pagination .page-numbers.current
    {
        border-color: var(--secondary);
        color: var(--secondary);
    }

        
/* Category Page */
.page-header
{
    padding: 50px 0 50px;
    background: #F1F1F1;
    /* text-align: center; */
}

    .dark .page-header
    {
        background: #111;
    }

    .page-header h1.category-title
    {
        font-size: 4em;
        font-weight: 500;
        margin-top: 10px;
        line-height: 55px;
        text-align: left;
        color: #aaa;
    }

    .page-header h1.category-title span
    {
        color: #222;
    }

    .page-header p.category-description
    {
        max-width: 600px;
        margin-top: 20px;
    }

    .page-header .category
    {
        display: flex;
        margin: 10px 0;
    }


/* Latest 2 posts */
section.latest-posts
{
    position: relative;
    padding: 0 0 120px;
}

section.latest-posts-by-tag
{
    position: relative;
    padding: 0 0 120px;
}
        
    section.latest-posts .col-xs-12
    {
        margin: 0 40px;
    }
    section.latest-posts .post
    {
        text-align: left;
    }


/* Popular Posts */
section.popular-posts-by-cat
{
    padding: 100px 0;
    background: #f1f1f1;
}

.dark section.popular-posts-by-cat
{
    background: #111;
}

    .post-theme-4 .top-post
    {
        width: 100%;
        height: 400px;
        display: flex;
        position: relative;
    }

        .post-theme-4 .top-post .post-thumbnail
        {
            width: 100%;
            height: 100%;
            overflow: hidden;
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 0;
        }

        .post-theme-4 .bottom-posts .post-title a
        {
            background-image: linear-gradient(transparent calc(100% - 2px), var(--primary) 1px);
            background-repeat: no-repeat;
            background-size: 0% 100%;
            -webkit-transition: all .7s cubic-bezier(0.25, 0.1, 0.25, 1);
               -moz-transition: all .7s cubic-bezier(0.25, 0.1, 0.25, 1);
                -ms-transition: all .7s cubic-bezier(0.25, 0.1, 0.25, 1);
                 -o-transition: all .7s cubic-bezier(0.25, 0.1, 0.25, 1);
                    transition: all .7s cubic-bezier(0.25, 0.1, 0.25, 1);
        }

        .post-theme-4 .bottom-posts .post-title a:hover,
        .post-theme-4 .bottom-posts .post:hover .post-title a
        {
            background-size: 100% 100%;
            color: var(--primary);
        }

    .post-theme-4 .bottom-posts .left-side
    {
        border-right: 1px solid #ddd;
        padding-right: 30px;
    }
    .post-theme-4 .bottom-posts .right-side
    {
        padding-left: 30px;
    }

        .post-theme-4 .bottom-posts .right-side .post
        {
            display: flex;
            align-items: center;
        }

            .post-theme-4 .bottom-posts .right-side .post .post-thumbnail
            {
                min-width: 200px;
                width: 200px;
                height: 120px;
                display: flex;
                justify-content: center;
                align-items: center;
                overflow: hidden;
                margin-right: 10px;
            }

                .post-theme-4 .bottom-posts .right-side .post .post-thumbnail img
                {
                    max-width: 100%;
                    height: 100%;
                    object-fit: cover;
                }


/* Latest Posts by cat */
section.latest-posts-by-cat
{
    padding: 50px 0 100px;
}

/* Single page */

section.single-posts
{
    position: relative;
    padding: 0 0 120px;
}

    section.single-posts .category
    {
        display: flex;
        max-width: 800px;
        margin: 20px auto 0;
    }


    section.single-posts .post
    {
        text-align: left;
        padding: 40px 0;
    }

.page-header .post-info
{
    font-size: 1.8em;
    display: flex;
    justify-content: flex-start;
}

.dark .page-header .post-info
{
    color: #ccc;
}

.dark .post-date img 
{
    opacity: .5;
}

    .page-header .post-info .rt-time
    {
        margin-right: 0;
        display: inline-flex;
    }
    .page-header .post-info img
    {
        position: relative;
        top: 2px;
    }

.single-theme-1
{
    position: relative;
}

    .single-theme-1 .post
    {
        position: relative;
        display: block;
        width: 100%;
    }

        .single-theme-1 .post .post-thumbnail
        {
            width: 800px;
            height: 450px;
            overflow: hidden;
            display: flex;
            justify-content: center;
            align-items: center;
            margin: 0 auto;
        }

            .single-theme-1 .post .post-thumbnail img
            {
                max-width: 100%;
                height: 100%;
                object-fit: cover;
            }

.post-content
{
    max-width: 800px;
    margin: 30px auto 0;
}

    .post-content p
    {
        margin-bottom: 40px;
        color: #333;
        font-size: 2em;
        line-height: 40px;
    }
    
    .dark .post-content p
    {
        color: #fff;
    }

    .post-content > ul,
    .post-content > ol
    {
        font-size: 1.8em;
        line-height: 30px;
        margin-bottom: 40px;
        list-style: square;
        list-style-position: inside;
    }

        .post-content > ul ul,
        .post-content > ol ol 
        {
            font-size: inherit;
            margin-left: 20px;
            list-style: square;
            list-style-position: inside;
        }

    .dark .post-content ul,
    .dark .post-content ol
    {
        color: #fff;
    }

    .post-content ul li,
    .post-content ol li
    {
        margin-top: 5px;
        color: #333
    }

    .post-content code
    {
        display: block;
        padding: 10px;
        margin-bottom: 20px;
    }

    .post-content .wp-block-image figcaption
    {
        text-align: center;
    }

    .post-content .wp-block-image,
    .wp-block-image
    {
        margin: 0;
    }
    
    .post-content .wp-block-image img
    {
        height: unset;
        margin: 30px 0 10px;
    }

    .post-content a
    {
        color: var(--primary);
        font-weight: 700;
        text-decoration: underline;
    }

    .post-content p:last-child
    .post-content p:last-child
    {
        margin-bottom: 0;
    }

    .post-content > h1,
    .post-content > h2,
    .post-content > h3,
    .post-content > h4,
    .post-content > h5
    {
        margin-top: 40px;
        margin-bottom: 30px;
    }

    .post-content > h2::after
    {
        content: "";
        width: 200px;
        height: 5px;
        background-color: var(--primary);
        position: absolute;
        top: -30px;
        left: 0;
        border-radius: 4px;
        opacity: .3;
    }

    .post-content > h2
    {
        position: relative;
        margin-top: 150px;
        margin-bottom: 30px;
    }

    .post-content figcaption
    {
        font-size: 1.6em;
        line-height: 30px;
    }

    .post-content .wp-block-table
        {
            padding: 0;
            margin: 20px 0;
        }

        .post-content figcaption
        {
            text-align: center;
            margin-top: 10px;
        }

        .post-content table
        {
            width: 100%;
            border-collapse: separate;
            border-spacing: 0;
            border: 1px solid #ddd;
        }
        
            .post-content table tr
            {
                width: 100%;
                -webkit-transition: all .2s ease;
                   -moz-transition: all .2s ease;
                    -ms-transition: all .2s ease;
                     -o-transition: all .2s ease;
                        transition: all .2s ease;
            }

            .post-content table tr:hover
            {
                background: #f1f1f1;
            }

            .dark .post-content table tr:hover
            {
                background: #222;
            }

                .post-content table tr:last-child td
                {
                    border-bottom: 0;
                }

                .post-content table tr td:last-child
                {
                    border-right: none;
                }

                .post-content table tr td
                {
                    border-right: 1px solid #ddd;
                    border-bottom: 1px solid #ddd;
                    padding: 10px;
                    font-size: 14px;
                    line-height: 24px;
                    margin-bottom: 20px;
                }

                .dark .post-content table tr td
                {
                    color: #fff;
                }
                
    .post-content #ez-toc-container
    {
        display: none !important;
    }

    section.single-posts .single-post-author
    {
        width: 100%;
        height: auto;
        background: #f1f1f1;
        padding: 25px 0;
    }
    
    .dark section.single-posts .single-post-author
    {
        background: #111;
    }
    
    .single-post-author .author-avatar
    {
        min-width: 140px;
        width: 140px;
        height: 140px;
        display: flex;
        justify-content: center;
        align-items: center;
        background: #FDBF38;
        border-radius: 100%;
        margin-right: 20px;
        overflow: hidden;
        position: relative;
        box-shadow: 0px 5px 20px rgb(5, 17, 51, .1);
    }


    .single-post-author .author-wrap
    {
        width: 90%;
        display: flex;
        justify-content: flex-start;
        align-items: center;
        max-width: 750px;
        margin: 0 auto;
    }

        .single-post-author .author-avatar:after
        {
            content: "";
            width: 125px;
            height: 125px;
            border: 2px solid #fff;
            background: transparent;
            position: absolute;
            left: 50%;
            top: 50%;
            border-radius: 100%;
            z-index: 2;
            -webkit-transform: translate(-50%, -50%);
               -moz-transform: translate(-50%, -50%);
                -ms-transform: translate(-50%, -50%);
                 -o-transform: translate(-50%, -50%);
                    transform: translate(-50%, -50%);
        }

        .single-post-author .author-avatar img
        {
            max-width: 100%;
            height: 100%;
            object-fit: cover;
        }

            .single-post-author .author-info h4
            {
                font-size: 2.4em;
            }

            .single-post-author .author-info .subtitle
            {
                color: #777;
            }


section.related-posts
{
    padding: 0 0 100px;
}


/* Search Posts */


section.search-posts
{
    position: relative;
    padding: 0 0 120px;
}


/* TOC */
.single-posts article
{
    position: relative;
}

.single-posts aside
{
    position: absolute;
    height: 100%;
    padding-top: 200px;
    left: 0;
    top: 0;
}
    
    .single-posts aside .aside-wrap
    {
        position: sticky;
        top: 120px;
        left: 0;
    }

        #ez-toc-container 
        {
            width: 100%;
            background: transparent;
            padding: 0;
            margin: 0;
            border: none;
            box-shadow: none;
            display: block;
        } 

            #ez-toc-container .ez-toc-title
            {
                display: none;
            }

            #ez-toc-container .ez-toc-list-level-3
            {
                /*margin-top: 10px;
                border-left: 2px solid var(--blue);*/
                margin-left: 0;
                /*padding-left: 20px;*/
                position: relative;
            }

            #ez-toc-container ul > li
            {
                position: relative;
                font-weight: 400;
                padding: 8px 0;
                line-height: 16px;
            }

            #ez-toc-container ul > li > ul
            {
                font-weight: 300;
            }
            
                #ez-toc-container ul > li > ul > li > a
                {
                    padding: 0 0 0 40px;
                    font-weight: 400 !important;
                }
                
                #ez-toc-container ul > li > ul > li.active > a
                {
                    text-decoration: underline;
                }

                    #ez-toc-container ul > li > ul > li > a:before
                    {
                        width: 20px;
                        height: 3px;
                        display: none;
                    }

            #ez-toc-container ul.ez-toc-list-level-3 li:last-child
            {
                padding: 5px 0px 0px 0px;
            }

                /*#ez-toc-container ul li:before
                {
                    font-family: "Font Awesome 5 Free"; font-weight: 900; content: "\f061";
                    font-size: 14px;
                    width: 0;
                    position: relative;
                    display: inline-block;
                    vertical-align: top;
                    overflow: hidden;
                    top: 3px;
                    -webkit-transition: all .3s ease;
                       -moz-transition: all .3s ease;
                        -ms-transition: all .3s ease;
                         -o-transition: all .3s ease;
                            transition: all .3s ease;
                }

                #ez-toc-container ul li.active:before
                {
                    width: 20px;
                    transition-delay: 0.1s;
                }*/

                #ez-toc-container ul li a:before
                {
                    content: "";
                    width: 14px;
                    height: 5px;
                    position: absolute;
                    top: 7px;
                    left: 0;
                    background: var(--primary);
                    -webkit-transition: all .3s cubic-bezier(0.25, 0.1, 0.25, 1);
                       -moz-transition: all .3s cubic-bezier(0.25, 0.1, 0.25, 1);
                        -ms-transition: all .3s cubic-bezier(0.25, 0.1, 0.25, 1);
                         -o-transition: all .3s cubic-bezier(0.25, 0.1, 0.25, 1);
                            transition: all .3s cubic-bezier(0.25, 0.1, 0.25, 1);
                }

                #ez-toc-container ul li a:visited,
                #ez-toc-container ul li a
                {
                    position: relative;
                    color: #666;
                    left: 0;
                    font-size: 16px;
                    line-height: 24px;
                    padding-left: 23px;
                    -webkit-transition: all .3s cubic-bezier(0.25, 0.1, 0.25, 1);
                       -moz-transition: all .3s cubic-bezier(0.25, 0.1, 0.25, 1);
                        -ms-transition: all .3s cubic-bezier(0.25, 0.1, 0.25, 1);
                         -o-transition: all .3s cubic-bezier(0.25, 0.1, 0.25, 1);
                            transition: all .3s cubic-bezier(0.25, 0.1, 0.25, 1);
                }

                .dark #ez-toc-container ul li a:visited,
                .dark #ez-toc-container ul li a
                {
                    color: #ccc;
                }
                
                #ez-toc-container ul > li.active > a
                {
                    font-weight: 600;
                    color: #000;
                    padding-left: 40px;
                }
                
                .dark #ez-toc-container ul > li.active > a
                {
                    color: #fff;
                }

                #ez-toc-container ul li.active a:before
                {
                    width: 25px;
                }

            #ez-toc-container ul li:last-child
            {
                border-bottom: none;
            }


/* Author Page */
.single-post-author
{
    text-align: left;
}

.single-post-author .author-wrap
{
    max-width: 1140px;
}


/* Post Theme 5 */

/* Post Theme 2 */
.post-theme-5 .post
{
    position: relative;
}

    .post-theme-5 .post .col-lg-1 h4
    {
        color: #333;
        font-weight: 400;
        padding-top: 5px;
    }

    .post-theme-5 .post > .col-lg-8
    {
        border-bottom: 1px solid #ddd;
        padding: 30px 0 20px;
        position: relative;
    }

        .post-theme-5 .post > .col-lg-8::after
        {
            content: "";
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0%;
            height: 2px;
            background-color: var(--primary);
            transition: 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);;
        }

        .post-theme-5 .post.active > .col-lg-8::after
        {
            width: 100%;
        }


    .dark .post-theme-5 .post > .col-lg-8
    {
        border-bottom: 1px solid #333;
    }

    .post-theme-5 .post .post-info
    {
        display: flex;
        align-items: center;
    }

        .post-theme-5 .post .post-date
        {
            color: #666666;
            display: flex;
            align-items: center;
        }

        .dark .post-theme-5 .post .post-info .post-date
        {
            color: #ccc;
        }

            .post-theme-5 .post .post-info .post-date img
            {
                margin-right: 5px;
            }

    .post-theme-5 .post .post-title
    {
        margin: 10px 0;
        font-size: 3.4em;
        font-weight: 700;
        line-height: 40px;
    }

        .post-theme-5 .post .post-title a
        {
            /* background-image: linear-gradient(transparent calc(100% - 2px), var(--primary) 2px);
            background-repeat: no-repeat;
            background-size: 0% 100%; */
            transition: all .3s cubic-bezier(0.25, 0.1, 0.25, 1);
        }

        .post-theme-5 .post .post-title a:hover
        {
            /* background-size: 100% 100%; */
            color: var(--primary);
        }
    
    .post-theme-5 .post .post-description
    {
        margin: 0 0 15px 0;
        color: #666;
    }

    .post-theme-5 .post .post-author
    {
        font-size: 1.6em;
    }

        .post-theme-5 .post .post-author a
        {
            font-weight: 700;
            line-height: 130%;
        }

    .post-theme-5 .post-thumbnail
    {
        position: absolute;
        width: 420px;
        height: 270px;
        display: flex;
        justify-content: center;
        align-items: center;
        overflow: hidden;
        background-color: #fff;
        border-radius: 4px;
        top: calc(50% + 30px);
        transform: translateY(-50%) scale(0.95);
        opacity: 0;
        transition: opacity 0.2s, transform 1s, -webkit-transform 1s, -moz-transform 1s, -o-transform 1s;
    }

    .post-theme-5 .post.active .post-thumbnail
    {
        opacity: 1;
        top: 50%;
        transform: translateY(-50%) scale(1);
    }

        .post-theme-5 .post-thumbnail img
        {
            max-width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .post-theme-2 .post .post-author,
        .post-theme-5 .post .post-author 
        {
            position: relative;
            display: flex;
            overflow: hidden;
            justify-content: space-between;
        }

        .post-theme-2 .post .social-network,
        .post-theme-5 .post .social-network
        {
            display: flex;
        }

            .post-theme-2 .post .social-network li,
            .post-theme-5 .post .social-network li
            {
                margin-bottom: 0;
                color: #606770;
            }

                .post-theme-2 .post .social-network li:first-child a,
                .post-theme-5 .post .social-network li:first-child a
                {
                    padding-left: 0;
                }

                .post-theme-2 .post .social-network li a,
                .post-theme-5 .post .social-network li a
                {
                    color: #606770;
                    padding: 3px 8px;
                    font-size: 14px;
                    line-height: 15px;
                    font-weight: 400;
                    -webkit-transition: all .3s ease;
                       -moz-transition: all .3s ease;
                        -ms-transition: all .3s ease;
                         -o-transition: all .3s ease;
                            transition: all .3s ease;
                }
            
                .post-theme-2 .post .social-network li a:hover,
                .post-theme-5 .post .social-network li a:hover
                {
                    color: var(--secondary);
                }

            .post-theme-2 .post .post-author a,
            .post-theme-5 .post .post-author a
            {
                overflow: hidden;
                display: inline-flex;
                line-height: 100%;
            }

        .post-theme-5 .post .post-author span 
        {
            display: inline-block;
            position: relative;
            z-index: 1;
            color: transparent;
            color: #000;
            -webkit-transition: -webkit-transform 1.2s cubic-bezier(0.19, 1, 0.22, 1);
            transition: -webkit-transform 1.2s cubic-bezier(0.19, 1, 0.22, 1);
            -o-transition: -o-transform 1.2s cubic-bezier(0.19, 1, 0.22, 1);
            -moz-transition: transform 1.2s cubic-bezier(0.19, 1, 0.22, 1), -moz-transform 1.2s cubic-bezier(0.19, 1, 0.22, 1);
            transition: transform 1.2s cubic-bezier(0.19, 1, 0.22, 1);
            transition: transform 1.2s cubic-bezier(0.19, 1, 0.22, 1), -webkit-transform 1.2s cubic-bezier(0.19, 1, 0.22, 1), -moz-transform 1.2s cubic-bezier(0.19, 1, 0.22, 1), -o-transform 1.2s cubic-bezier(0.19, 1, 0.22, 1);
        }


        .post-theme-5 .post .post-author span:after
        {
            content: attr(data-text);
            display: block;
            position: absolute;
            color: var(--primary);
        }

        .post-theme-5 .post .post-author span:after 
        {
            top: 105%;
            -webkit-transform: skewY(7deg);
            -moz-transform: skewY(7deg);
            -ms-transform: skewY(7deg);
            -o-transform: skewY(7deg);
            transform: skewY(7deg);
            -webkit-transform-origin: left top;
            -moz-transform-origin: left top;
            -ms-transform-origin: left top;
            -o-transform-origin: left top;
            transform-origin: left top;
            -webkit-transition: -webkit-transform 2s cubic-bezier(0.19, 1, 0.22, 1);
            transition: -webkit-transform 2s cubic-bezier(0.19, 1, 0.22, 1);
            -o-transition: -o-transform 2s cubic-bezier(0.19, 1, 0.22, 1);
            -moz-transition: transform 2s cubic-bezier(0.19, 1, 0.22, 1), -moz-transform 2s cubic-bezier(0.19, 1, 0.22, 1);
            transition: transform 2s cubic-bezier(0.19, 1, 0.22, 1);
            transition: transform 2s cubic-bezier(0.19, 1, 0.22, 1), -webkit-transform 2s cubic-bezier(0.19, 1, 0.22, 1), -moz-transform 2s cubic-bezier(0.19, 1, 0.22, 1), -o-transform 2s cubic-bezier(0.19, 1, 0.22, 1);
        }

        .post-theme-5 .post .post-author a:hover 
        {
            opacity: 1;
        }

        .post-theme-5 .post .post-author a:hover span 
        {
            -webkit-transform: translateY(-105%);
            -moz-transform: translateY(-105%);
            -ms-transform: translateY(-105%);
            -o-transform: translateY(-105%);
            transform: translateY(-105%);
        }

        .post-theme-5 .post .post-author a:hover span:after 
        {
            -webkit-transform: skewY(0);
            -moz-transform: skewY(0);
            -ms-transform: skewY(0);
            -o-transform: skewY(0);
            transform: skewY(0);
        }