/*
Template: Nutritius HTML Template 
Author: Peacefulqode.com
Version: 1.0
Design and Developed by: Peaceful Qode
NOTE: This is main stylesheet of template, This file contains the styling for the actual Template. Please do not change anything here! write in a custom.css file if required!

/*================================================
[  Table of contents  ]
================================================
==> Moz Selection
==> General
==> Loading
==> Back to Top
==> Button Core
==> Section Title
==> Client
==> Landing Page
======================================
[ End table content ]
======================================*/
/*==================================================
[ Fonts ]
==================================================*/
@import url('https://fonts.googleapis.com/css2?family=Kumbh+Sans:wght@100;200;300;400;500;600;700;800;900&family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

/*================================================
Moz Selection
================================================*/
:root {
    --primary-color: #7FB82D;
    --dark-color: #222222;
    --secondary-color: #6C6C6C;
    --grey-color: #F8F8F8;
    --white-color: #ffffff;
    --body-fonts: 'Montserrat', sans-serif;
    --title-fonts: 'Kumbh Sans', sans-serif;
}

::-moz-selection {
    text-shadow: none;
    background: var(--primary-color);
    color: #fff;
}

::-moz-selection {
    text-shadow: none;
    background: var(--primary-color);
    color: #fff;
}

::selection {
    text-shadow: none;
    background: var(--primary-color);
    color: #fff;
}

/*================================================
General
================================================*/
body {
    background: var(--white-color);
    font-family: var(--body-fonts);
    font-size: 1rem;
    font-style: normal;
    font-weight: normal;
    line-height: 2;
    color: var(--secondary-color);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--title-fonts);
    color: var(--dark-color);
    font-style: normal;
    text-transform: capitalize;
    font-weight: 600;
    margin: 0;
    -ms-word-wrap: break-word;
    word-wrap: break-word;
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
    color: inherit;
}

h1 {
    font-size: 40px;
    font-style: normal;
    line-height: 48px;
}

h2 {
    font-size: 36px;
    font-style: normal;
    line-height: 44px;
}

h3 {
    font-size: 32px;
    font-style: normal;
    line-height: 40px;
}

h4 {
    font-size: 28px;
    font-style: normal;
    line-height: 36px;
}

h5 {
    font-size: 24px;
    font-style: normal;
    line-height: 32px;
}

h6 {
    font-size: 20px;
    font-style: normal;
    line-height: 28px;
}

/*===== HTML Tags =====*/
a,
.button {
    color: var(--primary-color);
    outline: none !important;
    text-decoration: none;
    transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
}

a:focus,
a:hover {
    color: var(--primary-color);
    outline: none;
    text-decoration: none !important;
}

img {
    max-width: 100%;
    height: auto;
}

pre {
    background: var(--white-color);
    padding: 15px;
    border: 1px solid var(--grey-color);
}

hr {
    margin: 0;
    padding: 0px;
    border-bottom: 1px solid #e0e0e0;
    border-top: 0px;
}

b,
strong {
    font-weight: 600;
}

/*===== Lists (Nested) =====*/
ol,
ul {
    padding-left: 25px;
    margin-bottom: 1em;
}

ol li {
    list-style: decimal;
}

ol ol {
    padding-left: 25px;
}

ul li {
    list-style: inherit;
}

/*===== Definition Lists =====*/
dl dd {
    margin-bottom: 15px;
}

dl dd:last-child {
    margin-bottom: 0px;
}

/*===== Table =====*/
table {
    border: 2px solid var(--grey-color);
    width: 100%;
    margin-bottom: 20px;
}

table td,
table th {
    border: 2px solid var(--grey-color);
    padding: 8px;
    text-align: center;
}

/*===== Input Textarea =====*/
input,
input.form-control {
    background: var(--grey-color);
    border: 1px solid var(--grey-color);
    color: var(--dark-color);
    width: 100%;
    float: left;
    margin-bottom: 0px;
    font-size: 16px;
    padding: 0 15px;
    height: 54px;
    line-height: 54px;
    outline: none;
    border-radius: 0;
    transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
}

input:focus,
input:hover,
textarea:focus,
textarea:hover,
.form-control:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: none;
}

input[type="radio"],
input[type="checkbox"] {
    width: auto;
    height: auto;
    float: none;
    margin-right: 5px;
    display: none;
}

textarea {
    background: var(--grey-color);
    border: 1px solid var(--grey-color);
    color: var(--dark-color);
    width: 100%;
    float: left;
    padding: 10px 15px;
    outline: none;
    transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
}

/*===== Select =====*/
select,
select.form-control {
    border: 1px solid var(--dark-color);
    color: var(--dark-color);
    width: 100%;
    float: left;
    padding: 0 30px 0 15px;
    height: 51px;
    line-height: 48px;
    outline: none;
    transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url('data:image/svg+xml;utf8,<svg fill=\'%23999999\' height=\'24\' viewBox=\'0 0 24 24\' width=\'24\' xmlns=\'http://www.w3.org/2000/svg\'><path d=\'M7 10l5 5 5-5z\'/><path d=\'M0 0h24v24H0z\' fill=\'none\'/></svg>');
    background-repeat: no-repeat;
    background-position: right 16px bottom 50%;
    background-size: 20px 20px;
}

/*============ Container ===================*/
section {
    position: relative;
    padding: 130px 0px;
}

.container {
    max-width: 1300px;
    position: relative;
}

/*================================================
Loading
================================================*/
#pq-loading {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: fixed;
    display: flex;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    width: 100%;
    height: 100%;
    background: var(--white-color);
}

#pq-loading img {
    height: 80px;
}

/*================================================
Back to Top
================================================*/
#pq-back-to-top {
    bottom: 30px;
    margin: 0;
    opacity: 0;
    position: fixed;
    right: 30px;
    overflow: hidden;
    visibility: hidden;
    width: 45px;
    height: 45px;
    line-height: 45px;
    text-align: center;
    z-index: 999;
}

#pq-back-to-top.off {
    opacity: 0;
    visibility: hidden;
    -webkit-transition: opacity .15s ease, visibility 0s .15s;
    -moz-transition: opacity .15s ease, visibility 0s .15s;
    transition: opacity .15s ease, visibility 0s .15s;
}

#pq-back-to-top.on {
    opacity: 1;
    visibility: visible;
    transition: all 0.5s ease;
}

#pq-back-to-top>span {
    background: var(--primary-color);
    color: var(--white-color);
    display: block;
    font-size: 22px;
    width: 45px;
    height: 45px;
    line-height: 45px;
    overflow: hidden;
    position: relative;
    text-align: center;
    transition: all 0.5s ease-in-out;
}

#pq-back-to-top .pq-icon-up-hover {
    background: var(--dark-color);
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    -webkit-transform: translateY(100%);
    -moz-transform: translateY(100%);
    transform: translateY(100%);
}

#pq-back-to-top .pq-icon-up-hover span {
    opacity: 0;
}

#pq-back-to-top span span {
    display: block;
    line-height: inherit;
    transition: all 0.5s ease-in-out;
}

#pq-back-to-top:hover .epq-icon-up {
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    transform: translateY(-50%);
}

#pq-back-to-top:hover .pq-icon-up span {
    opacity: 0;
}

#pq-back-to-top:hover .pq-icon-up-hover {
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    transform: translateY(0);
}

#pq-back-to-top:hover .pq-icon-up-hover span {
    opacity: 1;
}

/*================================================
Section Title
================================================*/
.animated {
    -webkit-animation-duration: 1.25s;
    animation-duration: 1.25s;
}

/*section-title*/
.pq-section-title-style-1.text-center {
    padding: 0 15em;
    margin-bottom: 60px;
}

.pq-section-title-style-1 .pq-section-sub-title {
    font-family: var(--title-fonts);
    font-weight: 600;
    font-size: 14px;
    line-height: 22px;
    text-transform: uppercase;
    color: var(--primary-color);
    letter-spacing: 0.1em;
    margin: 0 0 15px;
    display: inline-block;
    position: relative;
    padding-left: 15px;
}

.pq-section-title-style-1 .pq-section-sub-title::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    background: var(--primary-color);
    height: 100%;
    width: 2px;
}

.pq-section-title-style-1 .pq-section-title {
    font-family: var(--title-fonts);
    font-weight: 600;
    font-size: 48px;
    line-height: 56px;
    z-index: 9;
    color: var(--dark-color);
    padding: 0;
    margin: 0 0;
    position: relative;
    display: block;
    text-transform: capitalize;
}

.pq-section-title-style-1 .pq-section-description {
    z-index: 9;
    position: relative;
    margin: 15px 0 0;
}

/*================================================
Button Core
================================================*/
[type="button"],
[type="reset"],
[type="submit"] {
    padding: 14px 24px;
    text-transform: capitalize;
    font-size: 12px;
    background: var(--primary-color);
    color: var(--white-color);
    text-transform: uppercase;
    display: inline-block;
    border: none;
    width: auto;
    height: auto;
    line-height: 2;
    transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    letter-spacing: 0.1em;
    font-weight: 500;
}

[type="button"]:hover,
[type="reset"]:hover,
[type="submit"]:hover {
    color: var(--white-color);
    background: var(--dark-color);
}

.pq-button {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    width: auto;
    outline: 0;
    font-size: 14px;
    line-height: 2;
    letter-spacing: 0.1em;
    font-weight: 500;
    text-transform: uppercase;
    box-sizing: border-box;
    margin: 0;
    border-radius: 0;
    border: none;
    background: var(--primary-color);
    color: var(--white-color);
    -webkit-appearance: none;
    padding: 14px 24px;
    cursor: pointer;
}

.pq-button:hover {
    color: var(--white-color);
    background: var(--dark-color);
}

.pq-button:focus {
    color: var(--white-color);
}

.pq-button .pq-btn-text {
    display: flex;
    align-items: center;
    position: relative;
}

.pq-button .pq-btn-cover {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 0px;
    left: 0px;
    height: 100%;
    width: 100%;
    pointer-events: none;
}

.pq-button .pq-btn-cover .pq-btn-cover-text {
    opacity: 0;
    color: #fff;
    -webkit-transform: translate3d(-20px, 0, 0);
    -moz-transform: translate3d(-20px, 0, 0);
    transform: translate3d(-20px, 0, 0);
    -webkit-transition: all 0s .2s;
    -moz-transition: all 0s .2s;
    transition: all 0s .2s;
    z-index: 20;
}

.pq-button .pq-btn-cover .pq-btn-cover-bgrnd {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: var(--dark-color);
    border: 2px solid var(--dark-color);
    -webkit-transform-origin: 100% 50%;
    -moz-transform-origin: 100% 50%;
    transform-origin: 100% 50%;
    -webkit-transform: scaleX(0);
    -moz-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transition: -webkit-transform .35s cubic-bezier(.86, 0, .07, 1);
    -moz-transition: -moz-transform .35s cubic-bezier(.86, 0, .07, 1);
    transition: transform .35s cubic-bezier(.86, 0, .07, 1);
    will-change: transform;
}

/* slider */
.pq-button.pq-btn-flat.btn-bg-primary:hover .pq-btn-cover-bgrnd {
    background: var(--primary-color) !important;
    border: 2px solid var(--primary-color) !important;
}

/*  end slider*/
.pq-button .pq-btn-text:not(.pq-btn-cover-text) {
    -webkit-transition: -webkit-transform .2s cubic-bezier(.23, .71, .55, .99), opacity .15s;
    transition: transform .2s cubic-bezier(.23, .71, .55, .99), opacity .15s;
}

.pq-button.pq-btn-flat:hover .pq-btn-text:not(.pq-btn-cover-text) {
    opacity: 0;
    -webkit-transform: translate3d(15px, 0, 0);
    -moz-transform: translate3d(15px, 0, 0);
    transform: translate3d(15px, 0, 0);
}

.pq-button:hover .pq-btn-cover-bgrnd {
    -webkit-transform-origin: 0 50%;
    -moz-transform-origin: 0 50%;
    transform-origin: 0 50%;
    -webkit-transform: scaleX(1);
    -moz-transform: scaleX(1);
    transform: scaleX(1);
    -webkit-transition: -webkit-transform .5s cubic-bezier(.86, 0, .07, 1);
    -moz-transition: -moz-transform .5s cubic-bezier(.86, 0, .07, 1);
    transition: transform .5s cubic-bezier(.86, 0, .07, 1);
}

.pq-button:hover .pq-btn-cover-text {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    -webkit-transition: -webkit-transform .4s cubic-bezier(.28, 1.04, .49, .9) .2s, opacity .6s .15s;
    transition: transform .4s cubic-bezier(.28, 1.04, .49, .9) .2s, opacity .6s .15s;
}

.pq-button img,
.pq-button i {
    margin-right: 8px;
}

.pq-button img {
    width: 16px !important;
}

/*Button link*/
.pq-button.pq-btn-link {
    background: transparent;
    color: var(--primary-color);
    padding: 0;
}

.pq-button.pq-btn-link .pq-btn-text:after,
.pq-button.pq-btn-link .pq-btn-text:before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 2px;
    height: 1px;
    width: 100%;
    background: var(--primary-color);
    transition: all 0.5s ease;
}

.pq-button.pq-btn-link .pq-btn-text:before {
    -webkit-transform-origin: 100% 50%;
    -moz-transform-origin: 100% 50%;
    transform-origin: 100% 50%;
}

.pq-button.pq-btn-link .pq-btn-text:after {
    -webkit-transform-origin: 0 50%;
    -moz-transform-origin: 0 50%;
    transform-origin: 0 50%;
    -webkit-transform: scaleX(0);
    -moz-transform: scaleX(0);
    transform: scaleX(0);
}

.pq-button.pq-btn-link:hover .pq-btn-text:before {
    -webkit-transform: scaleX(0);
    -moz-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transition: -webkit-transform .5s cubic-bezier(.86, 0, .07, 1);
    -moz-transition: -moz-transform .5s cubic-bezier(.86, 0, .07, 1);
    transition: transform .5s cubic-bezier(.86, 0, .07, 1);
}

.pq-button.pq-btn-link:hover .pq-btn-text:after {
    -webkit-transform: scaleX(1);
    -moz-transform: scaleX(1);
    transform: scaleX(1);
    -webkit-transition: -webkit-transform .5s cubic-bezier(.86, 0, .07, 1) .25s;
    -moz-transition: -moz-transform .5s cubic-bezier(.86, 0, .07, 1) .25s;
    transition: transform .5s cubic-bezier(.86, 0, .07, 1) .25s;
}

/*Button dark*/
.pq-button.pq-button-dark {
    background: var(--dark-color);
}

.pq-button.pq-button-dark .pq-btn-cover .pq-btn-cover-bgrnd {
    background: var(--primary-color);
    border: 2px solid var(--primary-color);
}


/*Button primary on hover*/

.pq-button.pq-button-primary .pq-btn-cover .pq-btn-cover-bgrnd {
    background: var(--primary-color);
    border: 2px solid var(--primary-color);
}


/*background-color*/
.pq-grey-bg-color {
    background-color: var(--grey-color);
}

.pq-bg-primary {
    background-color: var(--primary-color);
}

.pq-bg-color{
    background-color: var(--dark-color);
}

/*================================================
Header
================================================*/

/*================================================
Header
================================================*/
.animated {
    -webkit-animation-duration: 1.25s;
    animation-duration: 1.25s;
}

.fadeInDown {
    animation-name: fadeInDown
}

.fadeInRight{
    animation-name: fadeInRight;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translate3d(-100%, 0, 0)
    }

    to {
        opacity: 1;
        transform: none
    }
}

header#pq-header {
    position: relative;
    display: inline-block;
    width: 100%;
    clear: both;
    background: var(--white-color);
    z-index: 99;
}

header#pq-header.pq-header-sticky {
    position: fixed;
    top: 0;
    left: 0;
    display: inline-block;
    width: 100%;
    -webkit-box-shadow: 0px 5px 15px 0px rgba(0, 33, 85, 0.1);
    -moz-box-shadow: 0px 5px 15px 0px rgba(0, 33, 85, 0.1);
    box-shadow: 0px 5px 15px 0px rgba(0, 33, 85, 0.1);
}

/*===== Header Top Bar =====*/
header#pq-header .pq-top-header {
    background: var(--dark-color);
    padding: 0;
    font-size: 14px;
}

header#pq-header.pq-header-sticky .pq-top-header{
    display: none;
}

header#pq-header .pq-top-header .pq-header-contact.text-right ul {
    float: right;
}

header#pq-header .pq-top-header .pq-header-contact ul {
    margin: 0;
    padding: 0;
}

header#pq-header .pq-top-header .pq-header-contact ul li {
    list-style: none;
    display: inline-block;
    color: var(--white-color);
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    padding: 10px 20px;
    float: left;
}

header#pq-header .pq-top-header .pq-header-contact ul li:last-child {
    margin-right: 0;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

header#pq-header .pq-top-header .pq-header-contact ul li i {
    margin-right: 10px;
}

header#pq-header .pq-top-header .pq-header-contact ul li a {
    color: var(--white-color);
}

header#pq-header .pq-top-header .pq-header-contact ul li a:hover {
    color: var(--white-color);
    background: transparent;
}

header#pq-header .pq-top-header .text-right .pq-header-social ul,
header#pq-header .pq-top-header .pq-header-social.text-right ul {
    float: right;
}

header#pq-header .pq-top-header .pq-header-social ul {
    margin: 0;
    padding: 0;
}

header#pq-header .pq-top-header .pq-header-social ul li {
    list-style: none;
    display: inline-block;
    float: left;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
}

header#pq-header .pq-top-header .pq-header-social ul li a {
    color: var(--white-color);
    padding: 10px 20px;
    display: inline-block;
}

header#pq-header .pq-top-header ul li a:hover {
    color: var(--white-color);
    background: var(--primary-color)
}

header#pq-header .pq-top-header .pq-header-social ul li:last-child {
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

/*===== Logo =====*/
header#pq-header .pq-bottom-header .navbar .navbar-brand {
    line-height: 80px;
}

header#pq-header .pq-bottom-header .navbar .navbar-brand img {
    height: 60px;
}

/*===== Header Navbar Bar =====*/
header#pq-header .pq-bottom-header {
    min-height: 90px;
}

header#pq-header .pq-bottom-header .navbar {
    padding: 0;
}

header#pq-header .pq-bottom-header .navbar .pq-menu-contain {
    display: inline-block;
    width: 100%;
}

header#pq-header .pq-bottom-header .navbar .navbar-nav {
    float: right;
}

header#pq-header .pq-bottom-header .navbar .navbar-nav li {
    position: relative;
    display: inline-block;
    float: left;
    margin-right: 30px;
    color: var(--dark-color);
    line-height: 90px;
    font-weight: 400;
}

header#pq-header .pq-bottom-header .navbar .navbar-nav li:last-child {
    margin-right: 0;
}

header#pq-header .pq-bottom-header .navbar .navbar-nav li a {
    color: var(--dark-color);
    font-family: var(--title-fonts);
    text-decoration: none;
    font-weight: 400;
}

header#pq-header .pq-bottom-header .navbar .navbar-nav li a:focus,
header#pq-header .pq-bottom-header .navbar .navbar-nav li a:hover,
header#pq-header .pq-bottom-header .navbar .navbar-nav li.current-menu-item a,
header#pq-header .pq-bottom-header .navbar .navbar-nav li.current_page_item a,
header#pq-header .pq-bottom-header .navbar .navbar-nav li:hover a,
header#pq-header .pq-bottom-header .navbar .navbar-nav li.current-menu-ancestor a {
    color: var(--primary-color);
}

/*===== Sub Menu Bar =====*/
header#pq-header .pq-bottom-header .navbar .navbar-nav li .sub-menu {
    display: none;
}

header#pq-header .pq-bottom-header .navbar .navbar-nav li:hover .sub-menu {
    display: block;
    background: var(--white-color);
    position: absolute;
    top: 100%;
    left: 0;
    padding-left: 0;
    display: inline-block;
    width: 210px;
    z-index: 999;
    -webkit-box-shadow: 0px 5px 15px 0px rgba(0, 33, 85, 0.1);
    -moz-box-shadow: 0px 5px 15px 0px rgba(0, 33, 85, 0.1);
    box-shadow: 0px 5px 15px 0px rgba(0, 33, 85, 0.1);
}

header#pq-header .pq-bottom-header .navbar .navbar-nav li .sub-menu li {
    line-height: 2;
    padding: 0;
    margin: 0;
    display: inline-block;
    width: 100%;
    color: var(--secondary-color);
}

header#pq-header .pq-bottom-header .navbar .navbar-nav li i {
    margin-left: 10px;
    font-size: 12px;
    color: var(--dark-color);
    opacity: 0.8;
}

header#pq-header .pq-bottom-header .navbar .navbar-nav li .sub-menu li a {
    line-height: 2;
    text-transform: capitalize;
    padding: 10px 15px;
    display: inline-block;
    width: 100%;
    color: var(--secondary-color);
    font-size: 14px;
}

header#pq-header .pq-bottom-header .navbar .navbar-nav li .sub-menu li a:focus,
header#pq-header .pq-bottom-header .navbar .navbar-nav li .sub-menu li a:hover,
header#pq-header .pq-bottom-header .navbar .navbar-nav li .sub-menu li.current-menu-item>a {
    background: var(--primary-color);
    color: var(--white-color);
}

header#pq-header .pq-bottom-header .navbar .navbar-nav li .sub-menu li.current-menu-item.menu-item-has-children>a+.pq-submenu-icon {
    color: var(--white-color);
}

/*===== Navigation Sub Menu =====*/
header#pq-header .pq-bottom-header .navbar .navbar-nav li .sub-menu li>.sub-menu {
    display: none;
}

header#pq-header .pq-bottom-header .navbar .navbar-nav li .sub-menu li:hover>.sub-menu {
    position: absolute;
    top: 0;
    left: 100%;
    display: block;
    background: var(--white-color);
    padding-left: 0;
    display: inline-block;
    width: 200px;
}

header#pq-header .pq-bottom-header .navbar .navbar-nav li:hover .sub-menu li.menu-item-has-children>.pq-submenu-icon {
    opacity: 1;
    position: absolute;
    top: 12px;
    right: 15px;
    line-height: 2;
    font-size: 12px;
    color: var(--secondary-color);
    -moz-transform: rotate(270deg);
    -webkit-transform: rotate(270deg);
    -o-transform: rotate(270deg);
    -ms-transform: rotate(270deg);
    transform: rotate(270deg);
}

header#pq-header .pq-bottom-header .navbar .navbar-nav li .sub-menu>li.menu-item-has-children:hover>.pq-submenu-icon {
    color: var(--white-color);
}

header#pq-header .pq-bottom-header .navbar .navbar-nav li .sub-menu>li.menu-item-has-children:hover {
    background: var(--primary-color);
    color: var(--white-color);
}

header#pq-header .pq-bottom-header .navbar .navbar-nav li .sub-menu li.menu-item-has-children:hover>a {
    color: var(--white-color);
    transition: all 0s ease-in-out;
    transition: all 0s ease-in-out;
    -moz-transition: all 0s ease-in-out;
    -ms-transition: all 0s ease-in-out;
    -o-transition: all 0s ease-in-out;
    -webkit-transition: all 0s ease-in-out;
}

/*===== Navigation search =====*/
header#pq-header .pq-menu-search-block {
    position: relative;
    margin: 0 0 0 30px;
}

header#pq-header .pq-menu-search-block a {
    color: var(--dark-color);
    font-size: 20px;
    width: 18px;
    display: inline-block;
}

header#pq-header .pq-menu-search-block a i {
    position: relative;
    top: 3px;
}

header#pq-header .pq-search-form {
    position: absolute;
    top: 65px;
    right: 0px;
    width: 350px;
    padding: 15px;
    z-index: 999;
    line-height: 0px;
    display: none;
    background: var(--white-color);
    -webkit-box-shadow: 0px 3px 30px 0px rgba(0, 33, 85, 0.1);
    -moz-box-shadow: 0px 3px 30px 0px rgba(0, 33, 85, 0.1);
    box-shadow: 0px 3px 30px 0px rgba(0, 33, 85, 0.1);
}

header#pq-header .pq-button:hover .pq-button-line-left {
    width: calc(15px - 1px);
}

/*===== Text meant only for screen readers =====*/
.screen-reader-text {
    clip: rect(1px, 1px, 1px, 1px);
    position: absolute;
    white-space: nowrap;
    height: 0px;
    width: 1px;
    overflow: hidden;
}

.screen-reader-text:focus {
    background-color: var(--grey-color);
    border-radius: 3px;
    box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
    clip: auto;
    color: #21759b;
    display: block;
    font-size: 14px;
    font-size: 0.875rem;
    font-weight: 600;
    height: auto;
    left: 5px;
    line-height: normal;
    padding: 15px 23px 14px;
    text-decoration: none;
    top: 5px;
    width: auto;
    z-index: 100000;
}

.search-form {
    position: relative;
}

.search-submit:before {
    content: "\e610";
    font-family: 'themify';
    font-weight: 400;
    font-size: 18px;
}

form.search-form {
    line-height: 0px;
}

.search-form {
    position: relative;
}

.search-form label {
    width: 100%;
    margin-bottom: 0;
    float: left;
    width: 100%;
}

.search-form .search-field{
    margin-bottom: 0;
}

.search-submit {
    background: var(--primary-color);
    border: none;
    padding: 0;
    position: absolute;
    text-align: center;
    color: var(--white-color) !important;
    line-height: 54px;
    height: 54px;
    width: 54px;
    top: 0;
    right: 0;
    transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
}

.search-submit:hover {
    color: var(--white-color) !important;
    background: var(--dark-color);
    outline: none;
}

/*===== Header style 1 =====*/
header#pq-header.pq-header-style-1 .pq-top-header {
    color: var(--white-color);
    padding: 0 15px;
}

header#pq-header.pq-header-style-1 .pq-top-header.top-style-1 .row {
    align-items: center;
}

header#pq-header.pq-header-style-1 .pq-top-header.top-style-1 .pq-header-contact {
    float: right;
}

header#pq-header.pq-header-style-1 .pq-top-header.top-style-1 .flex-row-reverse .pq-header-contact {
    float: none;
}

header#pq-header.pq-header-style-1 .pq-bottom-header {
    min-height: 80px;
}

header#pq-header.pq-header-style-1 .pq-bottom-header .navbar .navbar-brand {
    border-right: 1px solid var(--grey-color);
    line-height: 80px;
    padding-right: 30px;
    padding-left: 15px;
    padding-top: 0;
    padding-bottom: 0;
}

header#pq-header.pq-header-style-1 .pq-bottom-header .pq-header-social {
    display: inline-block;
}

header#pq-header.pq-header-style-1 .pq-bottom-header .pq-header-social ul {
    padding: 0;
    margin: 0;
    list-style-type: none;
}

header#pq-header.pq-header-style-1 .pq-bottom-header .pq-header-social ul li {
    display: inline-block;
    float: left;
}

header#pq-header.pq-header-style-1 .pq-bottom-header .pq-header-social ul li+li {
    margin-left: 10px;
}

header#pq-header.pq-header-style-1 .pq-bottom-header .pq-header-social ul li a {
    width: 40px;
    height: 40px;
    line-height: 40px;
    display: inline-block;
    border: 1px solid var(--grey-color);
    border-radius: 100%;
    text-align: center;
    background: var(--grey-color);
    color: var(--dark-color);
}

header#pq-header.pq-header-style-1 .pq-bottom-header .pq-header-social ul li a:hover {
    background: var(--primary-color);
    color: var(--white-color);
}

header#pq-header.pq-header-style-1 .pq-bottom-header .navbar .navbar-nav {
    float: none;
    justify-content: center;
}

header#pq-header.pq-header-style-1 .pq-bottom-header .navbar .navbar-nav{
    float: none;
    justify-content: right;
    margin-right: 30px;
}

header#pq-header.pq-header-style-1 .pq-menu-search-block {
    border-left: 1px solid var(--grey-color);
    border-right: 1px solid var(--grey-color);
    padding: 0 30px;
}

header#pq-header.pq-header-style-1 .pq-menu-search-block a:hover {
    color: var(--primary-color);
}

/*+++++++++++++Toggle Side Bar++++++++++++++*/
header#pq-header.pq-header-style-1 .pq-toggle-btn {
    line-height: 75px;
    padding: 26px 14px;
    background: var(--primary-color);
    color: #fff;
    cursor: pointer;
    /* margin-left: 30px; */
    position: relative;
    transition: all 0.5s ease;
    margin-right: 15px;
}

header#pq-header.pq-header-style-1 .pq-toggle-btn:hover {
    background: var(--dark-color);
}

header#pq-header.pq-header-style-1 .pq-toggle-btn a:before,
header#pq-header.pq-header-style-1 .pq-toggle-btn a:after {
    transform-origin: 50% 0%;
}

.buttons ol li:before {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: -1;
    display: block;
    width: 23vw;
    height: 20vw;
    content: "";
    -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
    -moz-box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
}

.buttons ol li:after {
    position: absolute;
    top: 38%;
    right: 7vw;
    transform: rotate(-90deg);
    z-index: 1;
    display: block;
    width: 30px;
    height: 30px;
    text-align: center;
    content: counter(list-counter, decimal-leading-zero);
    font-family: Helvetica;
    font-size: 20px;
    line-height: 30px;
    font-weight: 300;
    opacity: 0.15;
    transition: color 0.35s;
    will-change: color;
}

header#pq-header.pq-header-style-1 .pq-toggle-btn a {
    position: relative;
    display: block;
    top: 0;
    width: 30px;
    height: 2px;
    margin: 0 auto;
    border: none;
    cursor: pointer;
    background: currentColor;
    color: inherit;
    font-size: 0;
    transition: 0.35s;
}

header#pq-header.pq-header-style-1 .pq-toggle-btn a:before,
header#pq-header.pq-header-style-1 .pq-toggle-btn a:after {
    position: absolute;
    top: 0;
    left: 50%;
    display: block;
    width: 100%;
    height: 2px;
    background: currentColor;
    content: "";
    transition: transform 0.35s;
}

header#pq-header.pq-header-style-1 .pq-toggle-btn a:before {
    transform: translate(-50%, -10px);
}

header#pq-header.pq-header-style-1 .pq-toggle-btn a:after {
    transform: translate(-50%, 10px);
}

header#pq-header.pq-header-style-1 .pq-bottom-header .navbar-toggler {
    background: var(--primary-color);
}

header#pq-header.pq-header-style-1 .pq-bottom-header .navbar-toggler:hover {
    background: var(--dark-color);
}

/*================================================
Sidebar Menu
================================================*/
.pq-background-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--dark-color);
    z-index: 100;
    opacity: 0.8;
    display: none;
    transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
}

.pq-siderbar-open .pq-background-overlay {
    display: block;
    transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
}

.pq-siderbar-open .pq-sidebar {
    right: 0;
    opacity: 1;
}

.pq-sidebar {
    width: 410px;
    background: var(--white-color);
    opacity: 0;
    display: block;
    position: fixed;
    top: 0;
    right: -100%;
    height: 100%;
    z-index: 101;
    transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
}

.pq-sidebar .pq-close-btn .pq-close {
    position: absolute;
    left: -50px;
    background: var(--grey-color);
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    color: var(--dark-color);
    top: 90px;
    font-size: 18px;
}

.pq-sidebar .pq-close-btn .pq-close:hover {
    background: var(--dark-color);
    color: var(--white-color);
}

.pq-sidebar-block {
    padding: 60px 30px 30px 30px;
    height: 100%;
}

.pq-sidebar-header .pq-sidebar-logo {
    margin-bottom: 15px;
    height: 50px;
}

.pq-sidebar h5,
.pq-sidebar h4 {
    font-size: 24px;
    line-height: 32px;
    margin-bottom: 20px;
}

.pq-sidebar .pq-foote-recent-post .pq-foote-recent-post-info .pq-post-date:hover {
    color: var(--primary-color);
}

.pq-sidebar .pq-sidebar-form span.wpcf7-form-control-wrap {
    margin-bottom: 30px;
    display: block;
}

.pq-sidebar .pq-sidebar-form .wpcf7-form-control {
    float: none;
}

.pq-sidebar ul {
    margin: 0;
    padding: 0;
}

.pq-sidebar ul li {
    list-style: none;
    margin: 0;
    padding: 0 0 10px;
}

.pq-sidebar ul li a {
    color: var(--dark-color);
}

.pq-sidebar-contact {
    display: inline-block;
    width: 100%;
}

.pq-sidebar-contact li {
    display: flex;
    align-items: flex-start;
}

.pq-sidebar-contact li i {
    line-height: 2;
    color: var(--primary-color);
}

.pq-sidebar-contact li span {
    margin-left: 15px;
    flex: 1;
}

.pq-sidebar-contact ul li a {
    color: var(--secondary-color);
}

.pq-sidebar-contact ul li a:hover {
    color: var(--primary-color);
}

.pq-sidebar-social ul {
    margin-top: 30px;
    display: inline-block;
    width: 100%;
}

.pq-sidebar-social ul li {
    display: inline-block;
    padding: 0;
    margin: 0;
    margin-right: 5px;
}

.pq-sidebar-social ul li:last-child {
    margin-right: 0;
}

.pq-sidebar-social ul li a {
    background: var(--grey-color);
    color: var(--dark-color);
    width: 50px;
    height: 50px;
    line-height: 50px;
    display: inline-block;
    text-align: center;
    position: relative;
}

.pq-sidebar-social ul li a:hover {
    background: var(--primary-color);
    color: var(--white-color);
}

.pq-sidebar .sidebar {
    background: transparent;
    padding: 0;
    border: none;
}

.pq-sidebars {
    margin-bottom: 30px;
    display: inline-block;
    width: 100%;
    float: left;
    position: relative;
    padding: 30px;
    background: var(--grey-color);
}

.pq-sidebars ul li a {
    color: var(--dark-color);
    position: relative;
    word-wrap: break-word;
    padding: 0 0 0 15px;
    text-transform: capitalize;
}

.pq-block-group__inner-container h4 {
    color: var(--dark-color);
}

.pq-sidebars ul.pq-block-categories-list li>a:before,
.pq-sidebars ul.pq-block-meta-list li>a:before {
    position: absolute;
    content: '\f054';
    left: 0;
    font-size: 10px;
    top: 5px;
    font-family: "Font Awesome 6 Free";
    line-height: normal;
    font-weight: 600;
    color: var(--primary-color);
}

.pq-block-tag-cloud .tag-cloud-link {
    font-size: 14px;
    background: var(--white-color);
    margin: 0 10px 0 0;
    display: inline-block;
    float: left;
    color: var(--dark-color);
    padding: 5px 10px;
    transition: all 0.5s ease-in-out;
    text-transform: capitalize;
}

.pq-block-tag-cloud .tag-cloud-link:hover {
    color: var(--white-color);
    background: var(--dark-color);
}

.pq-sidebars.pq-side-header {
    background: none;
    padding: 0;
}

.pq-sidebar .sidebar .wp-block-image {
    margin-bottom: 30px;
}

.pq-main-menu.sidebar h4 {
    color: var(--dark-color);
}

.pq-sidebar-contact .pq-contact span {
    color: var(--secondary-color);
}

.pq-foote-recent-post {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding-bottom: 15px;
}

.pq-foote-recent-post:last-child {
    margin-bottom: 0;
    border: none;
    padding: 0;
}

.pq-foote-recent-post .pq-foote-recent-post-media {
    margin-right: 15px;
}

.pq-foote-recent-post .pq-foote-recent-post-media img {
    width: 80px;
    height: 80px;
}

.pq-foote-recent-post .pq-foote-recent-post-info {
    flex: 1;
    align-self: center;
}

.pq-foote-recent-post .pq-foote-recent-post-info .pq-post-date {
    font-family: var(--title-fonts);
    font-weight: 400;
    color: var(--primary-color);
    width: 100%;
    display: inline-block;
    text-transform: uppercase;
    font-size: 12px;
    line-height: 22px;
    letter-spacing: 0.1em;
}

.pq-foote-recent-post .pq-foote-recent-post-info h6 {
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 0;
}

.pq-foote-recent-post .pq-foote-recent-post-info h6 a:hover {
    color: var(--primary-color);
}

/*================================================
Landing Page
================================================*/

.py-60{
    padding: 60px 0;
}

.pq-px-90{
    padding: 0 90px;
}

.pq-home-layout .pq-image-box-img {
    overflow: hidden;
    position: relative;
    box-shadow: 0px 0px 30px 0px rgb(0, 0, 0, 0.1);
}

.pq-home-layout .pq-image-box-img img {
    transition: all 0.5s ease;
    width: 100%;
}

.pq-home-layout .pq-image-box-img:hover img {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}

.pq-home-layout .pq-button-container {
    position: absolute;
    bottom: -100px;
    text-align: center;
    transition: all 0.5s ease;
    width: 100%;
    z-index: 2;
}

.pq-home-layout .pq-image-box-img:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: inline-block;
    background: var(--dark-color);
    transition: all 0.5s ease;
    opacity: 0;
    z-index: 1;
}

.pq-home-layout .pq-image-box-img:hover:before {
    opacity: 0.4;
}

.pq-home-layout .pq-image-box-img:hover .pq-button-container {
    bottom: 30px;
}

.pq-home-layout .pq-section-title {
    text-align: center;
    font-size: 28px;
    line-height: 36px;
    margin-top: 20px;
}

.pq-client-box.pq-client-style-1 .pq-client-img1 {
    position: relative;
    display: block;
    width: auto;
    margin: 0 auto;
}

.pq-landing-container {
    padding: 45px 45px 45px 45px;
}

.pq-landing-icon-box {
    text-align: center;
}

.pq-landing-icon-box-icon {
    margin-bottom: 15px;
}

.pq-landing-icon i {
    padding: 20px;
    border-radius: 50%;
    display: inline-block;
    font-size: 56px;
    color: var(--primary-color);
    background-color: var(--white-color);
}

.pq-landing-icon-box-title {
    color: var(--white-color);
    font-family: var(--title-fonts);
    font-weight: 600;
}

.pq-landing-icon-box-description {
    color: var(--white-color);
    font-family: var(--body-fonts);
    font-weight: 400;
}

.pq-responsiv-icon i {
    color: var(--primary-color);
    font-size: 50px;
}

.pq-responsiv-icon {
    margin-top: 30px;
}

h5.pq-section-title.pq-landing-title {
    color: var(--white-color);
}

.pq-ptb {
    padding: 90px 0px 30px 0px;
}

.pq-support-image-box-img {
    width: 120px;
    height: 120px;
    line-height: 120px;
    background: var(--white-color);
    border-radius: 900px;
    box-shadow: 0px 0px 30px 0 rgb(0 20 9 / 10%);
    margin: 0 auto;
    margin-bottom: 15px;
}

.pq-support-image-box-img img {
    width: 60px;
    height: 60px;
    transition: all 0.3s;
}

.pq-button-container.pq-landing-btn,
.pq-button-container.pq-service-btn {
    margin-top: 30px;
}

.pq-form-box-img {
    margin-top: 0px;
    margin-bottom: -260px;
    padding: 0px 0px 0px 0px;
    z-index: 1;
}

.pq-button.pq-purchase-btn:hover .pq-btn-cover .pq-btn-cover-bgrnd {
    background: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.pq-button-container.pq-service-btn {
    margin-top: 30px;
}

.pq-primary-btn.pq-button .pq-btn-cover .pq-btn-cover-bgrnd {
    background: var(--primary-color);
}

.pq-bg-img:before{
    background-image: url(../images/footer-img/1.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: scroll;
    opacity: 0.03;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: '';
}

.pq-mt-90{
    margin-top: 90px;
}