/*
Theme Name: Digitz 
Theme URI: https://wp.pureit.pw/digitz/
Description: Digitz - Digital Agency Wordpress Theme
Author: PureIT
Author URI: https://www.templatemonster.com/authors/pureit/
Version: 1.0.0
Tags: custom-menu, editor-style, featured-images
Text Domain: digitz
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
*/


/*
-------------------------------------------------------------------------------------
CSS index
======================================================================================
* THEME DEFULT CSS
* SECTION TITLE
* SLIDER BUTTON STYLE
* WIDGET  CSS
* HEADING TOP AREA CSS
* HEADING NAV AREA CSS
* SLIDER CSS
* ABOUT SECTION CSS
* SERCIVE CSS
* PROGRESS CSS
* TEAM CSS
* COUNTER AREA CSS
* PRICING AREA CSS
* BRAND AREA CSS
* TESTIMONIAL AREA CSS
* PORTFOLIO AREA CSS
* BLOG AREA CSS
* BLOG DETAILS AREA CSS
* choose AREA CSS
* COMMENT AREA CSS
* PAGINATION AREA CSS
* BREADCRUMB AREA CSS
* 404 AREA CSS
* FOOTER TOP AREA CSS
* FOOTER TOP 2 AREA CSS
* FOOTER MIDDLE AREA CSS
* FOOTER BOTTOM AREA CSS
* SCROLL TOP CSS
* RESPONSIVE CSS
============================================================================================= */
/*----------------------------------------
Don't change any css from here. If you need to change, Please use child theme.
------------------------------------------*/
:root {
    --pi-primary-color: #d8fe35;
    --pi-dark-color: #0a0b0f;
    --pi-secondary-color: #515151;
    --pi-grey-color: #f2f2f2;
    --pi-white-color: #ffffff;
    --pi-title-fonts: 'Arimo', sans-serif;
    --pi-body-fonts: 'Arimo', sans-serif;
}

/* Header Area CSS */
.digitz-header-area.default-menu {
    padding: 20px 0 20px;
}
/* Header Container Custom */
.digitz-header-area.default-menu .container-fluid {
    padding: 0 50px;
}
/* Header Sticky  */
.is-sticky {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    animation: .95s ease-in-out 0s normal none 1 running fadeInDown;
    z-index: 10000;
    transition: all 0.7s cubic-bezier(0.645, 0.045, 0.355, 1);
    box-shadow: 0 8px 20px 0 rgba(0, 0, 0, 0.1);
    background-color: #fff;
    padding: 15px 0 19px;
}
/* Header Logo */
.pi__logo a img {
    max-width: 90px;
}
/* Sticky Logo CSS */
.digitz-header-area.default-menu .ts__logo {
    display: none;
}
/* Header Menu CSS */
.pi__header__wrap {
    text-align: right;
}
.pi__header__wrap ul {
    display: inline-block;
}
.pi__header__wrap ul li {
    display: inline;
    margin-right: 30px;
    position: relative;
    padding-bottom: 30px;
}
.pi__header__wrap ul li .sub-menu {
    position: absolute;
    width: 240px;
    opacity: 0;
    visibility: hidden;
    transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -webkit-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    background-color: #fff;
    box-shadow: 0px 0px 10px rgb(0 0 0 / 5%);
    padding: 18px 25px;
    left: 0;
    top: 48px;
    transform: scaleY(0);
    visibility: hidden;
    transform-origin: 0 0 0;
    border-bottom-right-radius: 4px;
    border-bottom-left-radius: 4px;
    z-index: 2;
    text-align: left;
}
.pi__header__wrap ul li:hover > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: scaleY(1);
}
.pi__header__wrap ul li a {
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: .5s;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    -ms-transition: .5s;
    -o-transition: .5s;
}
.pi__header__wrap ul li a:hover{
    color: var(--pi-primary-color);
}










