/* 
 Theme Name:   GeneratePress Child
 Theme URI:    
 Description:  
 Author:       developers@teaminnovision.com
 Author URI:   https://plpdev.innovisionwebsites.com
 Template:     generatepress
 Version:      1.0
 License:      GNU General Public License v2 or later
 License URI:  http://www.gnu.org/licenses/gpl-2.0.html

 /* == Add your own styles below this line ==
--------------------------------------------*/



/* tools */
.pgp-nowrap,
.pgp-no-wrap {
    white-space: nowrap;
}

.pgp-hide,
.hide {
    display: none !important;
}

.pgp-row-pad {
    padding-top: 60px;
    padding-bottom: 60px;
}

/* tools end */
/*Global Button*/
.pgp-contact-button {
    position: fixed;
    bottom: 100px;
    left: 40px;
    z-index: 99999999;
}
.pgp-contact-button a {
    background-color: #000000;
    border: 2px solid #fff;
    padding: 10px 50px;
    transition: all 300ms;
    text-decoration: unset;
}
/* fonts and font-color */
@font-face {
    font-family: 'Century Gothic Bold';
    src: url('custom-fonts/CenturyGothic-Bold.woff') format('woff');
    /* font-weight: 700;  */
    font-style: normal; 
}

@font-face {
    font-family: 'Century Gothic';
    src: url('custom-fonts/CenturyGothic.woff') format('woff');
    /* font-weight: 300; */
    /* font-style: normal; */
}

/* default font Century Gothic */

body, div, p, a {
    font-family: 'Century Gothic Bold', sans-serif;
}
h1, h2, h3, h4, h5, h6 {
    font-family: 'Century Gothic Bold', sans-serif;
}
/* setup away from wp default */
/* header.entry-header {
    display: none;
} */
/* disable header only on home page */
body.home .entry-header, body.single-format-video .entry-header {
    display: none;
}
.separate-containers .site-main {
    margin: 0px;
}

/*font-sizes*/
h1 {
    font-size: 64px;
}
h2 {
    font-size: 58px;
}
h3 {
    font-size: 45px;
}
h4 {
    font-size: 32px;
}
/* font-size end */
/* font colors */
h1, h2, h3, h4, h5, h6, a, p, div {
    color: #fff;
}
/* links default states */
a {
    transition: all 300ms;
}
a:hover {
    color:#FCED21;
}
a:active {
    color:#ff00ff;
}
/*Nav*/
.site-branding {
    display: none;
}
/* logo */
.site-header .header-image {
    width: 250px;
}
.inside-article {
    background-color: #000 !important;
}
body:not(.home) #page {
    margin-top: 45px;
}
/* adding padding to the header */
.inside-header.grid-container {
    max-width: 100%;
    padding: 20px 100px;
}
/* blurry sticky header nav */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    background-color: transparent;
    transition: all 200ms;
}
/* for when page is scrolled */
.nav-scrolled {
    -webkit-backdrop-filter: blur(16px);
                backdrop-filter: blur(16px);
    background-color: rgb(0 0 0 / 11%) !important;
    box-shadow: 0px 0px 24px -17px #fff;
}
/* taking off box shadow on non-home pages */
body:not(.home) .nav-scrolled {
    box-shadow: none;
}
/* remove blur when menu open */
.mobile-menu-open body:not(.home) .nav-scrolled {
    -webkit-backdrop-filter: none;
            backdrop-filter: none;
    background-color: none !important;
}
.inside-header {
    padding: 10px 0px;
}
#primary-menu ul,
#primary-menu li,
#primary-menu li a,
.main-navigation,
.main-navigation ul ul {
    background: transparent !important;
}
#primary-menu ul,
#primary-menu li,
#primary-menu li a,
.main-navigation,
.main-navigation ul ul {
    background: transparent !important;
    color: #ffffff !important;
    transition: 500ms;
}
/*  */
.main-navigation .main-nav ul li a {
    line-height: 45px;
}
#primary-menu li a:hover {
    color: #FCED21 !important;
}
#primary-menu li a:active {
    color: #ff00ff !important;
}
.separate-containers.single-video-post .inside-article {
    padding-bottom: 0;
}
/* horizontal rule in nav */ 
.menu-hr-holder {
    padding: 0 20px;
    width: 100%;
}
hr.menu-hr {
    background-color: #fff;
    height: 2px;
    margin: 10px 0 10px auto;
    max-width: 75%;
}

/* nav button color */
button.menu-toggle {
    color: #fff !important;
}
/* nav structuring */
.menu-toggle {
    font-size: 30px;
}
/* size and position where nav is dropped down */
.inside-navigation.grid-container {
    max-width: 250px;
    margin-right: 0;
}
.main-navigation a {
    text-align: right;
    font-size: 26px;
    font-family: "Century Gothic Bold";
}
/* reducing spacing of menu items from the top */
.has-inline-mobile-toggle #site-navigation.toggled {
    margin-top: 0;
}
/* nav end */
/* animation keyframes */
/* text fill on hover */
@keyframes slowFillText {
    0% {
        background-position: 100%;
    }

    100% {
        background-position: 0;
    }
}


/* for scroll indicator */
@keyframes bounce {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-50%);
    }
    100% {
        transform: translateY(0);
    }
}
/* keyframes end */
/* having opaque background when menu open */
.mobile-menu-open body:not(.home)::after {
    content: "";
    width: 100%;
    height: 100%;
    min-height: 5000px;
    overflow: hidden;
    position: fixed !important;
    transform: translate(-50%, -50%);
    top: 50%;
    left: 50%;
    /* background: linear-gradient(#000 60%, transparent 100%); */
    background: #000;
    opacity: 85%;
    z-index: 10;
}

/* buttons */
/* buttons */
.kt-normal-links a,
.kt-menu-btn a {
    color: #fff;
    text-decoration: none;
}
/* button/link states */

/* hover states */
.kt-normal-links a:hover {
    color: #fff;
    text-decoration: underline;
}
.kt-menu-btn a:hover {
    color: #FCED21;
}
/* visited/active states */
.kt-normal-links a:active {
    text-decoration: underline;
    color: #FCED21;
}
.kt-menu-btn a:active {
    color: #ff00ff;
}

/* footer */
#kt-footer-section>div {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}
#kt-footer-section .vc_col-sm-12 .wpb_text_column {
    margin-bottom: 35px;
}
#kt-footer-section .kt-normal-links {
    margin-bottom: 15px;
}
.site-footer .copyright-bar {
    color: black;
}
.copyright-bar a {
    color: inherit;
    text-decoration: none;
}
.copyright-bar a:hover {
    color: #ff00ff;
}
/* footer end */

/* social icons */
.kt-facebook, .kt-twitter, .kt-instagram {
    margin-bottom: 0 !important;
}
#kt-footer-section .kt-social-icons {
    text-align: right;
    max-width: 150px;
    margin: 0 0 0 auto !important;
}
#kt-footer-section .kt-social-icons .vc_col-sm-4 > .vc_column-inner {
    padding-right: 0 !important;
    padding-left: 0 !important;
}
/* .kt-social-icons a i {
    color: #fff;
} */
/* social icons end */


/* color fill for text */
.animateText {
    position: relative;
    box-sizing: border-box;
    overflow: hidden;
    display: inline-block;
}

.animateText:hover {
    cursor: pointer;
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    color: #fff;
    text-decoration: none;
    background-image: linear-gradient(90deg, #fff, #fff 50%, hsla(0, 0%, 100%, .5) 0);
    background-size: 200% 100%;
    animation: slowFillText 1000ms linear;
}
/* color fill end */
/* animation end */
/*single video posts styling*/
/* for posts */
.kt-video-post {
    margin: auto;
}
.kt-video-post video {
    width: 100%;
    height: 100%;
}
/* hiding post meta */
.entry-meta {
    display: none;
}
/* hiding comments */
.comments-area {
    display: none;
}
/* hiding footer on posts */
body.single-format-video .site-footer {
    display: none;
}
/* changing title format */
.kt-video-details {
    margin-bottom: 25px;
}
.kt-video-details h3, .kt-video-details h4 {
    margin-bottom: 0;
}

/* adjusting post content container */
.post-template-default .entry-title {
    margin-bottom: 45px;
}
/* single posts styling end */
/* contact us form */
.pgp-contact-form p {
    color: #fff;
    margin-bottom: 5px;
    font-family: "Century Gothic Bold"
}
/* .kt-form-field {
    width: 100%;
    position: relative;
} */
.kt-form-field:not(.kt-submit) input {
    width: 100%;
}
.kt-form-field input::placeholder, .kt-form-field textarea::placeholder {
    font-family: "Century Gothic Bold";
    color: #2f2f2f;
}
.pgp-contact-form .wpcf7-spinner {
    display: none;
}
.pgp-contact-form .kt-submit .wpcf7-submit {
    background-color: transparent;
    border: 2px solid #fff;
    padding: 10px 50px;
    transition: all 300ms;
}
.pgp-contact-form .kt-submit .wpcf7-submit:hover {
    color: #FCED21;
}
.pgp-contact-form .kt-submit .wpcf7-submit:active {
    color: #ff00ff;
}
.kt-contact-form-sec .kt-social-icons {
    text-align: left;
    max-width: 150px;
    margin: 0 auto 0 0 !important;
}
.kt-contact-form-sec .kt-social-icons .vc_col-sm-4 > .vc_column-inner {
    padding-right: 0 !important;
    padding-left: 0 !important;
}
.kt-contact-form-sec .kt-social-icons .kt-menu-btn a {
    font-size: 22px;
}
.kt-form-field .wpb_text_column {
    margin-bottom: 20px;
}
/* contact us form end */

/* blog page */
/* blog styling */
.pgp-blog-grid {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(3,1fr);
    grid-gap: 50px;
    margin: 0 0 20px;
}
.pgp-blog-grid li {
    width: 100%;  
    aspect-ratio: 1 / 1; 
    box-sizing: border-box; 
}
/* image */
.pgp-blog-img-wrap a {
    text-decoration: none;
    display: block;
    width: 100%;
    height: 100%;
    text-align: center;
}
.pgp-blog-img-wrap img {
    width: 100%;
    height: 100%;
}
.pgp-blog-excerpt {
    color: #fff;
}
.pgp-blog-title {
    font-family: "Century Gothic";
}
.pgp-read-more-link p {
    text-decoration: underline;
}
.pgp-blog-content-wrap>a {
    display: block;
}
.pgp-blog-img-wrap, .pgp-blog-content-wrap>a {
    margin-bottom: 20px;
}
/* pagination */
/* .pgp-pagination {
    text-align: center;
    max-width: 800px;
    margin: auto;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
} */
.pgp-pagination {
    text-align: center;
    margin: auto;
    width: 100%;
}
.page-numbers.current {
    color: #ff00ff;
}
.pgp-pagination>a:not(:first-child,:last-child), .pgp-pagination span {
    padding: 0 10px;
    display: inline-block;
    position: relative;
}
/* .pgp-pagination > * {
    flex: 1;
} */
/* blog end */
/* blog individual posts */
.post-template-default .category-blog .entry-content {
    align-content: flex-start !important;
}
.category-blog .featured-image.page-header-image-single {
    text-align: center;
}
.category-blog .entry-content p {
    color: #fff;
}
.post .inside-article {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}
.post .inside-article .featured-image {
    width: 33.33%;
    float: left;
}
.post .inside-article header.entry-header {
    width: 66.66%;
    float: left;
    padding: 20px;
}
.post .inside-article .entry-content {
    width: 100%;
}
.post .inside-article .entry-content h2 {
    font-size: 36px;
}
/* Responsiveness */
/* add all media queries here */
@media only screen and (max-width: 1280px) {
    /* .site-logo {
        margin-left: 45px;
    } */
    .inside-header.grid-container {
        padding: 20px 45px;
    }
}
@media only screen and (max-width: 1178px) {
    #kt-footer-section>div>div {
        width: 100%;
        margin-bottom: 15px;
    }
    #kt-footer-section .kt-normal-links p {
        text-align: left !important;
    }
    #kt-footer-section .kt-social-icons {
        margin: 0 auto 0 0!important;
        text-align: left;
    }
}
@media only screen and (max-width: 768px) {
    .site-logo {
        width: 200px;
    }
    /* social icons */
    .kt-social-icons, .kt-contact-form-sec .kt-social-icons {
        display: flex;
        margin: 0 auto 25px 0 !important;
    }
    /* blog grid */
    .pgp-blog-grid {
        grid-template-columns: repeat(2,1fr);
    }
    .pgp-contact-button {
    bottom: 0;
    left: 0;
    width: 100%;
}
.pgp-contact-button a {
    width: 100%;
    display: block;
    text-align: center;
}
}
@media screen and (max-width: 480px) {
    /* font size for smaller category heading */
    h3 {
        font-size: 32px;
    }
    h4 {
        font-size: 24px;
    }
    .site-logo {
        margin: 0;
    }
    .inside-header.grid-container {
        padding: 10px 25px;
        -webkit-backdrop-filter: blur(16px);
            backdrop-filter: blur(16px);
        background-color: rgb(0 0 0 / 11%) !important;
        height: 100%;
    }
    /* .site-header {
        -webkit-backdrop-filter: blur(16px);
                backdrop-filter: blur(16px);
        background-color: rgb(0 0 0 / 11%) !important;
    } */
    .mobile-menu-open body:not(.home) .inside-header {
        -webkit-backdrop-filter: none;
                backdrop-filter: none;
        background-color: none !important;
    }
    .mobile-menu-open body:not(.home) .site-header {
        -webkit-backdrop-filter: none;
                backdrop-filter: none;
        background-color: none !important;
    }
    .pgp-blog-grid {
        grid-template-columns: repeat(1,1fr);
    }
    .pgp-blog-grid li {
        aspect-ratio: auto;
    }
}
@media screen and (max-width: 375px) {
    .site-footer h4 {
        font-size: 22px;
    }
    .site-logo {
        width: 175px;
    }
}
@media screen and (max-width: 360px) {
    .kt-contact-form-sec .kt-normal-links p {
        font-size: 15px;
    }
    .site-footer h4 {
        font-size: 19px;
    }
}
/* Responsive end */