/*
Template: Hostingo - Hosting HTML5 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!

*/


/*---------------------------------------------------------------------
Fonts
-----------------------------------------------------------------------*/
@import url('https://fonts.googleapis.com/css2?family=Jost:wght@200;300;400;500;600;700;800;900&subset=latin%2Clatin-ext&display=swap');

/*=====================================================================
Import Css
======================================================================*/
@import url("swiper-bundle.min.css");
@import url("flaticon/flaticon.css");
@import url("ionicons.min.css");
@import url("all.min.css");
@import url("responsive.css");
@import url("fontawesome.min.css");
@import url("v4-shims.min.css");
@import url("jquery.mCustomScrollbar.min.css");
@import url("animate.min.css");

/*================================================
Moz Selectio
================================================*/
:root {
    --primary-color: #0072ff;
    --blue-color: #00c6ff;
    --dark-color: #002450;
    --secondary-color: #606c7a;
    --grey-color: #f5f9ff;
    --white-color: #ffffff;
    --body-fonts: 'Jost', sans-serif;
    --title-fonts: 'Jost', 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
================================================*/
html {
    scroll-behavior: smooth;
}

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;
    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;
}

p {
    margin-bottom: 30px;
}

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 
==================================================*/
input,
input.form-control {
    background: var(--grey-color);
    border: 1px solid var(--grey-color);
    color: var(--dark-color);
    width: 100%;
    float: left;
    font-size: 16px;
    padding: 0 15px;
    height: 54px;
    line-height: 54px;
    outline: none;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    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;
}

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

textarea {
    background: var(--grey-color);
    border: 1px solid var(--grey-color);
    color: var(--dark-color);
    width: 100%;
    float: left;
    padding: 10px 15px;
    outline: none;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    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;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    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
===================================================================*/
.container {
    max-width: 1300px;
}

/*=================================================================
Section
===================================================================*/
section,
.pt-section-padding {
    padding: 130px 0px;
}

.pt-bottom-padding {
    padding-bottom: 210px;
}

@media (max-width:1024px) {
    section,.pt-section-padding {
        padding: 60px 0px;
    }
}

@media(max-width:1190px) {
    .pt-bottom-padding {
        padding-bottom: 60px;
    }
}

/*================================================
Background
==================================================*/

/*--------------Background-color---------------*/

/*--- Blue Background ---*/

.pt-blue-background {
    background-image: linear-gradient(90deg, #00C6FF 0%, #0072FF 100%);
    background-size: cover;
    position: relative;
    opacity: 0.9;
    padding: 60px 0px;
}

.pt-blue-background.pt-padding-2{
    padding: 130px 0px;
}

@media (max-width:1190px){
    .pt-blue-background.pt-padding-2{
        padding: 60px 0px;
    }
}

.pt-blue-background.pt-padding {
    padding: 210px 0px;
}

@media (max-width:1190px) {
    .pt-blue-background.pt-padding {
        padding: 100px 0px;
    }
}

@media (max-width:1024px) {
    .pt-blue-background.pt-padding {
        padding: 60px 0px;
    }
}

.pt-blue-background-2 {
    background-color: var(--primary-color);
}

.pt-blue-background-2.pt-padding {
    padding: 210px 0px;
}

@media (max-width:1190px) {
    .pt-blue-background-2.pt-padding {
        padding: 130px 0px;
    }
}

/*--- White Background ---*/
.pt-white-background {
    background: var(--white-color);
    position: relative;
    z-index: 9;
}

.pt-domain-form-section {
    padding: 210px 0px 210px 0px;
}

@media (max-width:1190px) {
    .pt-domain-form-section {
        padding: 60px 0px 60px 0px;
    }
}

.pt-domain-form-section-2 {
    padding: 130px 0px 130px 0px;
}

@media (max-width:1190px) {
    .pt-domain-form-section-2 {
        padding: 60px 0px 60px 0px;
    }
}

/*--- Grey Background ---*/
.pt-grey-background {
    background: var(--grey-color);
    position: relative;
}

/*--- Background-Overley ----*/
.pt-background-overley {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover !important;
    background-attachment: fixed !important;
}

.pt-background-overley-2 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover !important;
    background-attachment: scroll !important;
}

/*-----Background-opacity---*/
.pt-opacity-1 {
    opacity: 0.3;
}

.pt-opacity-2 {
    opacity: 0.05;
}

.pt-opacity-3 {
    opacity: 0.2;
}

.pt-opacity-4 {
    opacity: 0.4;
}

.pt-opacity-5{
    opacity: 0.1;
}

/*================================================
Button Core
================================================*/

[type="button"],
[type="reset"],
[type="submit"] {
    padding: 10px 45px;
    font-family: var(--title-fonts);
    font-size: 18px;
    background: linear-gradient(to right, var(--blue-color) 0%, var(--primary-color) 51%, var(--blue-color) 100%);
    background-size: 200% auto;
    color: var(--white-color);
    text-transform: capitalize;
    color: var(--white-color) !important;
    display: inline-block;
    border: none;
    width: auto;
    height: auto;
    line-height: 2;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    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;
}

[type="button"]:hover,
[type="reset"]:hover,
[type="submit"]:hover {
    background-position: right center;
    color: var(--white-color) !important;
}

.pt-btn-container.pt-btn-position {
    align-items: center;
    display: flex;
    justify-content: flex-end;
    height: 100%;
}

.pt-button {
    position: relative;
    width: auto;
    background: linear-gradient(to right, var(--blue-color) 0%, var(--primary-color) 51%, var(--blue-color) 100%);
    background-size: 200% auto;
    color: var(--white-color);
    font-family: var(--title-fonts);
    font-size: 16px;
    padding: 12px 45px;
    line-height: 2;
    vertical-align: middle;
    border: none;
    display: inline-block;
    overflow: hidden;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
}

.pt-button.pt-button-change-color {
    background: var(--white-color);
    color: var(--primary-color);
}

.pt-button:hover.pt-button-change-color {
    color: var(--primary-color);
}

.pt-button.pt-button-change-color-2{
    background: var(--white-color);
    color: var(--dark-color);
}

.pt-button:hover.pt-button-change-color-2 {
    color: var(--dark-color);
}

.pt-button span {
    z-index: 9;
    position: relative;
}

.pt-button:hover,
.pt-button:focus {
    color: var(--white-color);
    background-position: right center;
}

.pt-button.pt-btn-link {
    padding: 0;
    background: transparent;
    color: var(--primary-color);
}

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

.pt-button.pt-btn-link:hover {
    color: var(--blue-color);
}

/*---------- Button outline -------*/
.pt-button.pt-btn-outline {
    background: transparent;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
}

.pt-button.pt-btn-outline:hover {
    color: var(--blue-color);
    border: 1px solid var(--blue-color)
}



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

.animated {
    -moz-animation-duration: 1.25s;
    -webkit-animation-duration: 1.25s;
    animation-duration: 1.25s;
}

.fadeInDown {
    animation-name: fadeInDown;
}

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

    to {
        opacity: 1;
        transform: none
    }
}

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

header#pt-header.pt-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#pt-header .pt-top-header {
    background: var(--dark-color);
    padding: 0;
    font-size: 14px;
}

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

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

header#pt-header .pt-top-header .pt-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#pt-header .pt-top-header .pt-header-contact ul li:last-child {
    margin-right: 0;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

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

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

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

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

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

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

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

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

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

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

header#pt-header .pt-bottom-header .navbar .navbar-brand img {
    height: 45px;
}

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

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

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

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

header#pt-header .pt-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#pt-header .pt-bottom-header .navbar .navbar-nav li:last-child {
    margin-right: 0;
}

header#pt-header .pt-bottom-header .navbar .navbar-nav li a {
    color: var(--dark-color);
    font-family: var(--title-fonts);
}

header#pt-header .pt-bottom-header .navbar .navbar-nav li.nav-item.active a {
    color: var(--primary-color);
}

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

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

header#pt-header .pt-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#pt-header .pt-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#pt-header .pt-bottom-header .navbar .navbar-nav li i {
    margin-left: 10px;
    font-size: 12px;
    color: var(--dark-color);
    opacity: 0.3;
}

header#pt-header .pt-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#pt-header .pt-bottom-header .navbar .navbar-nav li .sub-menu li a:focus,
header#pt-header .pt-bottom-header .navbar .navbar-nav li .sub-menu li a:hover,
header#pt-header .pt-bottom-header .navbar .navbar-nav li .sub-menu li.current-menu-item>a {
    background: var(--primary-color);
    color: var(--white-color);
}

@media screen and (max-width:4000px) and (min-width:1023px) {
    header#pt-header .pt-bottom-header .navbar .navbar-nav li:hover>.sub-menu {
        display: block !important;
    }
}

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

header#pt-header .pt-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#pt-header .pt-bottom-header .navbar .navbar-nav li:hover .sub-menu li.menu-item-has-children>.pt-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#pt-header .pt-bottom-header .navbar .navbar-nav li .sub-menu>li.menu-item-has-children:hover>.pt-submenu-icon {
    color: var(--white-color);
}

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

header#pt-header .pt-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;
    -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#pt-header .pt-menu-search-block {
    position: relative;
    margin: 0 0 0 30px;
}

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

header#pt-header .pt-search-form {
    position: absolute;
    top: 59px;
    right: -30px;
    width: 350px;
    padding: 15px;
    z-index: 999;
    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);
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
}

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

/*===== Header Default =====*/
header#pt-header.pt-header-default .pt-bottom-header.pt-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);
    background: var(--white-color);
}

header#pt-header .pt-bottom-header .navbar .navbar-nav li .sub-menu li.menu-item.active a {
    color: var(--white-color);
    background: var(--primary-color);
}

header#pt-header .pt-bottom-header .navbar .navbar-nav li.menu-item.active a {
    color: var(--primary-color);
}

/*===== Header Style-1 =====*/
header#pt-header.pt-header-style-1.pt-has-sticky {
    position: absolute;
    top: 0;
    left: 0;
    display: inline-block;
    width: 100%;
    background: transparent;
    z-index: 999;
    padding: 15px 0;
    box-shadow: none;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
}

header#pt-header.pt-header-style-1.pt-has-sticky.pt-header-sticky {
    position: fixed;
    background: var(--white-color);
    padding: 0;
    -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#pt-header.pt-header-style-1 .pt-bottom-header {
    min-height: 70px;
}

header#pt-header.pt-header-style-1 .pt-bottom-header .navbar .navbar-brand {
    line-height: normal;
    background: var(--white-color);
    padding: 30px;
    position: relative;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
}

header#pt-header.pt-header-style-1 .pt-bottom-header .navbar .navbar-nav li {
    line-height: 95px;
}

header#pt-header.pt-header-style-1 .pt-bottom-header .navbar .navbar-nav li.nav-item.active>a {
    color: var(--primary-color);
}

header#pt-header.pt-header-style-1 .pt-bottom-header .navbar .navbar-nav li>a {
    color: var(--dark-color);
}

header#pt-header.pt-header-style-1 .pt-bottom-header .navbar .navbar-nav li.current-menu-ancestor>a {
    color: var(--primary-color);
}

header#pt-header.pt-header-style-1 .pt-bottom-header .navbar .navbar-nav li i {
    color: var(--dark-color);
}

header#pt-header.pt-header-style-1 .pt-bottom-header .navbar .navbar-nav li:hover .sub-menu {
    top: 100%;
}

header#pt-header.pt-header-style-1 .pt-header-info-box {
    margin: 0 30px 0 30px;
    display: flex;
    color: var(--white-color);
}

header#pt-header.pt-header-style-1 .pt-header-call {
    display: inline-block;
    float: left;
    margin-right: 30px;
    margin-top: 5px;
}

header#pt-header.pt-header-style-1 .pt-header-call a i {
    font-size: 48px;
    margin-right: 15px;
    line-height: 56px;
}

header#pt-header.pt-header-style-1 .pt-header-call a {
    display: flex;
    align-items: flex-start;
}

header#pt-header.pt-header-style-1 .pt-header-call a .pt-call-info {
    flex: 1;
    text-transform: capitalize;
    font-size: 14px;
    color: var(--dark-color);
}

header#pt-header.pt-header-style-1 .pt-header-call a .pt-call-info span {
    width: 100%;
    float: left;
    display: inline-block;
    color: var(--primary-color);
    line-height: normal;
    font-family: var(--title-fonts);
}

header#pt-header.pt-header-style-1 .pt-header-call a .pt-call-info h5 {
    font-weight: 600;
    line-height: 1;
    font-size: 18px;
    line-height: 26px;
    color: var(--dark-color);
}

header#pt-header.pt-header-style-1 .pt-button {
    background: var(--primary-color);
}

/*===== Header Style-2 =====*/
header#pt-header.pt-header-style-2 .pt-top-header {
    background: var(--dark-color);
}

header#pt-header.pt-header-style-2 .pt-header-diff-block .navbar-brand img {
    height: 45px;
}

header#pt-header.pt-header-style-2 {
    position: absolute;
    top: 0;
    left: 0;
    display: inline-block;
    width: 100%;
    background: var(--white-color);
    padding: 0;
    -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#pt-header.pt-header-style-2 .navbar-brand {
    background: var(--primary-color);
    padding: 15px 30px;
    margin: 0;
    line-height: 4.7777777;
    text-align: center;
    width: 100%;
}

header#pt-header.pt-header-style-2 .pt-bottom-header {
    min-height: auto;
}

header#pt-header.pt-header-style-2 .pt-bottom-header .navbar .navbar-nav li {
    line-height: 75px;
}

header#pt-header.pt-header-style-2 .pt-header-info-box {
    display: flex;
}

header#pt-header.pt-header-style-2 .pt-menu-search-block {
    line-height: 76px;
    padding: 0 30px;
    background: var(--white-color);
    border-left: 1px solid var(--grey-color);
    color: #fff;
    font-size: 20px;
}

header#pt-header.pt-header-style-2 .pt-bottom-header .navbar .navbar-nav li:hover .sub-menu {
    top: 100%;
}

header#pt-header.pt-header-style-2 .pt-search-form {
    top: 100%;
}

/*Header Style-2 sticky*/
header#pt-header.pt-header-style-2.pt-header-sticky {
    position: fixed;
    top: 0;
    left: 0;
    display: inline-block;
    width: 100%;
}

header#pt-header.pt-header-style-2.pt-header-sticky .pt-top-header {
    display: none;
}

header#pt-header.pt-header-style-2.pt-header-sticky .navbar-brand {
    line-height: 2.44444;
}

/*=====Ttoggle Side Bar =====*/
header#pt-header.pt-header-style-2 .pt-toggle-btn {
    line-height: 75px;
    padding: 22px 25px;
    background: var(--primary-color);
    color: #fff;
}

header#pt-header.pt-header-style-2 .pt-toggle-btn a:before,
header#pt-header.pt-header-style-2 .pt-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: "";
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
    -webkit-box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.05);
    -moz-box-shadow: 0px 0px 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;
    -moz-transition: color 0.35s;
    -ms-transition: color 0.35s;
    -o-transition: color 0.35s;
    -webkit-transition: color 0.35s;
    will-change: color;
}

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

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

header#pt-header.pt-header-style-2 .pt-toggle-btn a:before {
    -ms-transform: translate(-50%, -10%);
    -o-transform: translate(-50%, -10%);
    -moz-transform: translate(-50%, -10%);
    -webkit-transform: translate(-50%, -10%);
    transform: translate(-50%, -10px);
}

header#pt-header.pt-header-style-2 .pt-toggle-btn a:after {
    -ms-transform: translate(-50%, -10%);
    -o-transform: translate(-50%, -10%);
    -moz-transform: translate(-50%, -10%);
    -webkit-transform: translate(-50%, -10%);
    transform: translate(-50%, 10px);
}

header#pt-header.pt-header-style-2 .pt-bottom-header .navbar .navbar-nav li.nav-item.active>a {
    color: var(--primary-color);
}

header#pt-header .pt-bottom-header .navbar .navbar-nav li .sub-menu li:hover a {
    color: var(--white-color);
}

header#pt-header .pt-bottom-header .navbar .navbar-nav li .sub-menu li.menu-item a {
    color: var(--secondary-color);
}

header#pt-header .pt-bottom-header .navbar .navbar-nav li .sub-menu li.menu-item:hover>a {
    color: var(--white-color);
}

/*==========*/
header#pt-header.pt-header-default .pt-btn-container {
    margin: 0 0 0 30px;
}

header#pt-header.pt-header-default .pt-btn-container .pt-button {
    background: var(--blue-color);
}

header#pt-header.pt-header-default .pt-btn-container .pt-button:hover {
    background: var(--primary-color);
}

header#pt-header.pt-header-default .pt-toggle-btn {
    padding: 0;
    margin: 0 0 0 30px;
}

header#pt-header.pt-header-default .pt-toggle-btn a {
    position: relative;
    display: inline-block;
    padding: 0;
    font-size: 38px;
    background: var(--primary-color);
    color: #fff;
    line-height: 52px;
    width: 52px;
    height: 52px;
    text-align: center;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
}

header#pt-header.pt-header-default .pt-menu-search-block {
    margin: 0 0 0 30px;
}

/*===== Header Style-1 =====*/
.admin-bar header#pt-header.pt-header-sticky,
.admin-bar header#pt-header.pt-header-style-2,
.admin-bar header#pt-header.pt-header-style-1 {
    top: 32px;
}

.admin-bar header#pt-header.pt-header-default .pt-bottom-header.pt-header-sticky {
    top: 32px;
}

@media(max-width:767px) {

    .admin-bar header#pt-header.pt-header-sticky,
    .admin-bar header#pt-header {
        top: 0;
    }

    .admin-bar header#pt-header.pt-header-style-2.pt-header-sticky,
    .admin-bar header#pt-header.pt-header-style-1.pt-header-sticky {
        top: 0;
    }
}

@media only screen and (min-device-width:601px) and (max-device-width:768px) {

    .admin-bar header#pt-header.pt-header-sticky,
    .admin-bar header#pt-header.pt-header-style-2,
    .admin-bar header#pt-header.pt-header-style-1,
    .admin-bar header#pt-header.pt-header-default .pt-bottom-header.pt-header-sticky {
        top: 46px;
    }

    .admin-bar header#pt-header.pt-header-style-2.pt-header-sticky,
    .admin-bar header#pt-header.pt-header-style-1.pt-has-sticky.pt-header-sticky {
        top: 46px !important;
    }
}

@media(max-width:1599px) {
    header#pt-header .pt-bottom-header .navbar .navbar-nav li {
        margin-right: 20px;
    }
}

@media(max-width:1399px) {
    header#pt-header.pt-header-style-1 .pt-header-info-box {
        margin: 0 15px 0 30px;
    }

    header#pt-header .pt-bottom-header .navbar .navbar-nav li {
        margin-right: 20px;
    }

    header#pt-header.pt-header-style-2 .pt-header-diff-block .navbar-brand img {
        height: 34px;
    }

    header#pt-header .pt-bottom-header .navbar .navbar-nav li .sub-menu li:hover>.sub-menu {
        left: inherit;
        right: 100%;
    }

    header#pt-header.pt-header-style-1 .pt-bottom-header .navbar .navbar-brand {
        padding: 20px 15px;
    }
}

@media(max-width:1365px) {
    header#pt-header .pt-bottom-header .navbar .navbar-nav li {
        font-size: 14px;
        margin-right: 15px;
    }

    header#pt-header .pt-top-header .pt-header-social ul li a {
        font-size: 12px;
        padding: 10px 15px;
    }

    header#pt-header .pt-top-header .pt-header-contact ul li {
        font-size: 12px;
        padding: 10px 15px;
    }

    header#pt-header.pt-header-default .pt-btn-container {
        margin: 0 0 0 15px;
    }

    header#pt-header.pt-header-default .pt-toggle-btn {
        margin: 0 0 0 15px;
    }

    header#pt-header.pt-header-style-2 .navbar-brand {
        padding: 15px 10px;
        line-height: 3.22222;
    }

    header#pt-header.pt-header-style-2 .pt-header-diff-block .navbar-brand img {
        height: 25px;
    }

    header#pt-header.pt-header-style-2 .pt-bottom-header .navbar .navbar-nav li {
        margin-right: 30px;
    }

    header#pt-header.pt-header-style-2 .pt-menu-search-block {
        margin-left: 30px;
    }

    header#pt-header.pt-header-style-2 .pt-bottom-header .navbar .navbar-nav li {
        line-height: 51px;
    }

    header#pt-header.pt-header-style-2 .pt-menu-search-block {
        line-height: 51px;
        padding: 0 20px;
        margin-left: 0;
    }

    header#pt-header.pt-header-style-2 .pt-search-form {
        top: 53px;
    }

    header#pt-header.pt-header-style-2 .pt-bottom-header .navbar .navbar-nav li:hover .sub-menu {
        top: 52px;
    }

    header#pt-header.pt-header-style-2 .pt-toggle-btn {
        line-height: 51px;
        padding: 10px 20px;
    }

    header#pt-header.pt-header-style-2 .pt-toggle-btn a {
        width: 25px;
    }

    header#pt-header.pt-header-style-2 .pt-toggle-btn a:before {
        -ms-transform: translate(-50%, -10%);
        -o-transform: translate(-50%, -10%);
        -moz-transform: translate(-50%, -10%);
        -webkit-transform: translate(-50%, -10%);
        transform: translate(-50%, -10px);
    }

    header#pt-header.pt-header-style-2 .pt-toggle-btn a:after {
        -ms-transform: translate(-50%, -10%);
        -o-transform: translate(-50%, -10%);
        -moz-transform: translate(-50%, -10%);
        -webkit-transform: translate(-50%, -10%);
        transform: translate(-50%, 10px);
    }

    header#pt-header.pt-header-style-2.pt-header-sticky .navbar-brand {
        line-height: 1.455;
    }

    header#pt-header.pt-header-style-2.pt-header-sticky .pt-bottom-header .navbar .navbar-nav li {
        line-height: 57px;
    }

    header#pt-header.pt-header-style-2.pt-header-sticky .pt-menu-search-block,
    header#pt-header.pt-header-style-2.pt-header-sticky .pt-toggle-btn {
        line-height: 57px;
    }

    /*===== Header Style-1 =====*/
    header#pt-header.pt-header-style-1 .pt-header-call {
        display: none;
    }

    header#pt-header.pt-header-style-1 .pt-bottom-header .navbar .navbar-nav li:last-child {
        margin-right: 15px;
    }
}

@media(max-width:1023px) {

    /*===== Button Toggler =====*/
    header#pt-header .pt-bottom-header .navbar-toggler {
        font-size: 20px;
        padding: 12px 18px;
        line-height: normal;
        float: right;
        outline: none;
        -webkit-border-radius: 5px;
        -moz-border-radius: 5px;
        border-radius: 5px;
        margin: 0 0 0 15px;
    }

    header#pt-header .pt-bottom-header .navbar .navbar-collapse {
        width: 100%;
        position: absolute;
        left: 0;
        top: 100%;
        background: #fff;
        -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);
        max-height: 330px;
        overflow-y: scroll;
        overflow-x: hidden;
    }

    header#pt-header .pt-bottom-header .navbar .navbar-brand {
        line-height: 60px;
    }

    header#pt-header .pt-bottom-header {
        min-height: 60px;
    }

    header#pt-header .pt-search-form {
        top: 51px;
    }

    header#pt-header .pt-bottom-header .navbar .navbar-nav {
        float: left;
        width: 100%;
        display: inline-block;
    }

    header#pt-header .pt-bottom-header .navbar .navbar-nav li {
        float: left;
        width: 100%;
        display: inline-block;
        line-height: normal;
        position: relative;
        font-size: 16px;
        position: relative;
    }

    header#pt-header .pt-bottom-header .navbar .navbar-nav li a {
        width: 100%;
        display: inline-block;
        padding: 15px;
    }

    header#pt-header .pt-bottom-header .navbar .navbar-nav li i {
        margin-left: 0;
        opacity: 1;
        font-size: 12px;
        position: absolute;
        right: 0;
        margin-top: 0;
        top: 0;
        padding: 22px;
        -moz-transform: none;
        -webkit-transform: none;
        -o-transform: none;
        -ms-transform: none;
        transform: none;
    }

    header#pt-header .pt-bottom-header .navbar .navbar-nav li:hover .sub-menu {
        position: relative;
        top: 0;
        left: 0;
        padding-left: 0;
        background: #f5f5f5;
        box-shadow: none;
        -webkit-box-shadow: none;
        -moz-box-shadow: none;
        display: inline-block;
        width: 100%;
    }

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

    header#pt-header .pt-bottom-header .navbar .navbar-nav li:hover .sub-menu li.menu-item-has-children>.pt-submenu-icon {
        opacity: 1;
        position: absolute;
        top: 0;
        right: 0;
        line-height: 2;
        font-size: 12px;
        padding: 12px 30px;
        -moz-transform: none;
        -webkit-transform: none;
        -o-transform: none;
        -ms-transform: none;
        transform: none;
    }

    header#pt-header .pt-bottom-header .navbar .navbar-nav li .sub-menu li a {
        padding: 10px 30px;
    }

    header#pt-header .pt-bottom-header .navbar .navbar-nav li>a:hover,
    header#pt-header .pt-bottom-header .navbar .navbar-nav li:hover>a {
        background: var(--primary-color);
        color: var(--white-color);
    }

    header#pt-header .pt-bottom-header .navbar .navbar-nav li.current-menu-ancestor>a {
        background: var(--primary-color);
        color: var(--white-color);
    }

    header#pt-header .pt-bottom-header .navbar .navbar-nav li.current-menu-ancestor>.pt-submenu-icon,
    header#pt-header .pt-bottom-header .navbar .navbar-nav li:hover>.pt-submenu-icon {
        color: var(--white-color);
    }

    header#pt-header .pt-bottom-header .navbar .navbar-nav li .sub-menu li:hover>.sub-menu {
        position: relative;
        top: 0;
        left: 0;
        background: transparent;
        display: inline-block;
        width: 100%;
        float: left;
    }

    header#pt-header .pt-bottom-header .navbar .navbar-nav li .sub-menu>li>a {
        background: #f5f5f5;
        color: var(--secondary-color);
    }

    header#pt-header .pt-top-header .pt-header-contact ul li {
        padding: 10px 10px;
    }

    header#pt-header.pt-header-default .pt-menu-search-block {
        margin-left: auto !important;
    }

    header#pt-header.pt-header-default .pt-toggle-btn {
        display: none;
    }

    /*===== Header Style-2 =====*/
    header#pt-header.pt-header-style-2 {
        position: relative;
    }

    .admin-bar header#pt-header.pt-header-style-2 {
        top: 0;
    }

    .admin-bar header#pt-header.pt-header-style-2.pt-header-sticky {
        top: 32px;
    }

    header#pt-header.pt-header-style-2 .pt-top-header,
    header#pt-header.pt-header-style-2 .pt-toggle-btn {
        display: none;
    }

    header#pt-header.pt-header-style-2 .navbar-brand {
        padding: 20px 10px;
        line-height: normal;
    }

    header#pt-header.pt-header-style-2 .navbar-brand img {
        height: 25px;
    }

    header#pt-header.pt-header-style-2 .pt-header-info-box {
        margin-left: auto !important;
    }

    header#pt-header.pt-header-style-2 .pt-bottom-header .navbar-toggler {
        margin: 0 15px 0 0;
    }

    header#pt-header.pt-header-style-2 .pt-menu-search-block {
        line-height: 66px;
        margin-left: 0;
        margin-right: 0;
        float: right;
        display: inline-block;
    }

    header#pt-header.pt-header-style-2 .pt-bottom-header .navbar .navbar-nav li {
        line-height: normal;
        margin-right: 0;
    }

    header#pt-header.pt-header-style-2 .pt-bottom-header .navbar .navbar-collapse {
        top: 68px;
    }

    header#pt-header.pt-header-style-2 .pt-bottom-header .navbar .navbar-nav li:hover .sub-menu {
        top: 0;
    }

    header#pt-header.pt-header-style-2.pt-header-sticky .pt-bottom-header .navbar .navbar-nav li {
        line-height: normal;
    }

    /*===== Header Style-1 =====*/
    header#pt-header.pt-header-style-1.pt-has-sticky {
        top: 0;
        padding: 0;
        position: relative;
        background: var(--white-color);
    }

    header#pt-header.pt-header-style-1.pt-has-sticky.pt-header-sticky {
        top: 0;
        background: var(--white-color);
    }

    .admin-bar header#pt-header.pt-header-style-1.pt-has-sticky.pt-header-sticky {
        top: 32px;
    }

    header#pt-header.pt-header-style-1 .pt-bottom-header .navbar .navbar-brand {
        padding: 18px 0;
    }

    header#pt-header.pt-header-style-1 .pt-header-call {
        margin-right: 30px;
        display: flex;
    }

    header#pt-header.pt-header-style-1 .pt-header-info-box {
        margin-left: auto;
    }

    header#pt-header.pt-header-style-1 .pt-bottom-header .navbar .navbar-nav li.current-menu-ancestor>a {
        color: var(--white-color);
    }

    header#pt-header.pt-header-style-1 .pt-bottom-header .navbar .navbar-nav li {
        line-height: normal;
    }

    header#pt-header.pt-header-style-1 .pt-bottom-header .navbar .navbar-nav li>a,
    header#pt-header.pt-header-style-1 .pt-bottom-header .navbar .navbar-nav li {
        color: var(--dark-color);
    }

    header#pt-header.pt-header-style-1 .pt-bottom-header .navbar .navbar-nav li:hover .sub-menu {
        top: 0;
    }

    header#pt-header.pt-header-style-1 .pt-bottom-header .navbar .navbar-nav li>a:hover,
    header#pt-header.pt-header-style-1 .pt-bottom-header .navbar .navbar-nav li:hover>a {
        color: var(--white-color);
    }

    header#pt-header.pt-header-style-1.pt-has-sticky.pt-header-sticky .pt-bottom-header .navbar .navbar-collapse {
        top: 100%;
    }
}

@media(max-width:767px) {
    header#pt-header.pt-header-style-2 .navbar-brand {
        padding: 20px 15px;
        line-height: normal;
        text-align: left;
        display: inline-block;
        width: auto;
    }

    header#pt-header.pt-header-style-2 .pt-menu-search-block,
    header#pt-header.pt-header-style-1 .pt-header-info-box {
        display: none;
    }

    header#pt-header.pt-header-style-2 .pt-bottom-header .navbar .navbar-collapse {
        top: 0;
    }

    header#pt-header.pt-header-style-2 .pt-bottom-header .navbar-toggler,
    header#pt-header.pt-header-style-2 .pt-menu-search-block {
        margin-top: -68px;
    }

    header#pt-header.pt-header-style-1 .pt-header-call {
        display: none;
    }

    header#pt-header.pt-header-style-1.pt-has-sticky.pt-header-sticky .pt-bottom-header .navbar .navbar-brand {
        padding: 10px 0;
    }

    header#pt-header.pt-header-style-1 .pt-bottom-header .navbar .navbar-brand {
        padding: 18px 0;
    }

    .admin-bar header#pt-header.pt-header-style-2.pt-header-sticky {
        top: 0;
    }

    header#pt-header.pt-header-default .pt-top-header,
    header#pt-header.pt-header-default .pt-btn-container {
        display: none !important;
    }

    .admin-bar header#pt-header.pt-header-style-1.pt-has-sticky.pt-header-sticky,
    .admin-bar header#pt-header.pt-header-default .pt-bottom-header.pt-header-sticky {
        top: 0;
    }
}

@media(max-width:479px) {

    .pt-menu-search-block,
    .pt-sidebar,
    .pt-toggle-btn,
    header#pt-header.pt-header-style-1 .pt-header-info-box {
        display: none !important;
    }

    header#pt-header .pt-bottom-header .navbar .navbar-brand img {
        height: 40px;
    }

    header#pt-header.pt-header-style-1 .pt-bottom-header .navbar .navbar-brand {
        padding: 10px 0;
    }

    header#pt-header.pt-header-style-1 .pt-bottom-header .navbar {
        padding: 10px 0;
    }
}

/*================================================
Sidebar Menu
================================================*/
.pt-background-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--dark-color);
    z-index: 9999;
    opacity: 0.8;
    display: none;
    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;
}

.pt-siderbar-open .pt-background-overlay {
    display: block;
    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;
}

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

.pt-sidebar {
    width: 410px;
    background: var(--white-color);
    opacity: 0;
    display: block;
    position: fixed;
    top: 0;
    right: -100%;
    height: 100%;
    z-index: 9999;
    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;
}

.pt-sidebar .pt-close-btn .pt-close {
    position: absolute;
    left: -45px;
    background: var(--primary-color);
    width: 60px;
    height: 60px;
    line-height: 60px;
    text-align: center;
    color: #fff;
    top: 90px;
    font-size: 20px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
}

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

.pt-sidebar-header .pt-sidebar-logo {
    margin-bottom: 15px;
    height: 45px;
}

.pt-sidebar h5,
.pt-sidebar h4 {
    font-size: 30px;
    line-height: 38px;
    margin-bottom: 15px;
}

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

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

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

/*===========*/
.pt-sidebar-contact {
    margin-top: 30px;
    display: inline-block;
    width: 100%;
}

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

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

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

/*===========*/
.pt-sidebar-social ul {
    margin-top: 30px;
    display: inline-block;
    width: 100%;
    text-align: center;
}

.pt-sidebar-social ul li {
    display: inline-block;
    padding: 0;
    margin: 0;
}

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

.pt-sidebar-social ul li a {
    background: var(--dark-color);
    color: #fff;
    width: 60px;
    height: 60px;
    line-height: 60px;
    display: inline-block;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
}

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

/*=========*/
.pt-sidebar .widget {
    background: transparent;
    padding: 0;
    border: none;
}

.pt-foote-recent-post {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
}

.pt-foote-recent-post:last-child {
    margin-bottom: 0;
}

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

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

.pt-foote-recent-post .pt-foote-recent-post-info .pt-post-date {
    color: var(--primary-color);
    font-size: 14px;
    line-height: 22px;
    float: left;
    text-transform: uppercase;
    width: 100%;
    display: inline-block;
}

.pt-foote-recent-post .pt-foote-recent-post-info h6 {
    color: var(--dark-color);
    font-size: 16px;
    line-height: 1.3;
}

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

/*================================================
Widget
================================================*/

.widget {
    margin-bottom: 45px;
    display: inline-block;
    width: 100%;
    position: relative;
    padding: 30px;
    border: 2px solid var(--grey-color);
    background: transparent;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
}

.widget:last-child {
    margin-bottom: 0;
}

/*===== Widget Title =====*/
.widget .widget-title {
    margin-bottom: 15px;
    padding: 0 0 15px;
    font-size: 22px;
    position: relative;
    line-height: 30px;
}

.widget .widget-title:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 45px;
    height: 2px;
    display: inline-block;
    background: var(--primary-color);
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
}

/*===== SideBar - Search =====*/
.widget.widget_search input {
    border: 1px solid var(--secondary-color);
    color: var(--dark-color);
    background: var(--white-color);
}

.widget.widget_search input:focus,
.widget.widget_search input:hover {
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
}

.search-form {
    position: relative;
}

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

.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;
    -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:before {
    content: "\f002";
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
}

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

/*===== widget-menu =====*/
.widget ul {
    padding: 0;
    margin: 0;
}

.widget ul li {
    list-style: none;
    margin: 0 0 10px 0;
}

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

.widget ul ul.children {
    padding-left: 25px;
}

.widget ul li a {
    color: var(--secondary-color);
    position: relative;
    -ms-word-wrap: break-word;
    word-wrap: break-word;
}

.widget ul li a:hover {
    color: var(--primary-color);
    text-decoration: none;
}

/*===== SideBar - Recent Comments =====*/
.widget.widget_recent_comments #recentcomments li.recentcomments span a,
.widget.widget_recent_comments #recentcomments--1 li.recentcomments span a {
    color: var(--secondary-color);
    font-weight: 600;
}

.widget.widget_recent_comments #recentcomments li.recentcomments a:before {
    display: none;
}

.widget.widget_recent_comments #recentcomments li.recentcomments a {
    color: var(--primary-color);
    padding-left: 0;
}

.widget.widget_recent_comments #recentcomments li.recentcomments a:hover {
    color: var(--primary-color);
    text-decoration: underline !important;
    padding-left: 0;
}

/*=====  SideBar Calendar  =====*/
.widget_calendar table caption {
    caption-side: inherit;
    padding: 0 0 10px;
    color: var(--dark-color);
    font-weight: 500;
}

.widget_calendar table#wp-calendar {
    width: 100%;
    text-align: center;
    margin-bottom: 0;
    margin-top: 0;
    background: var(--white-color);
}

.widget_calendar .calendar_wrap td#today {
    background: var(--primary-color);
    color: var(--white-color);
}

.widget_calendar .calendar_wrap td#today a {
    color: var(--white-color);
}

.widget_calendar .calendar_wrap table th {
    background: var(--white-color);
    color: var(--dark-color);
}

.widget_calendar .calendar_wrap table th,
.widget_calendar .calendar_wrap table td {
    padding: 8px;
    text-align: center;
}

/*=====  SideBar Categories List  =====*/
.widget_categories ul li,
.widget_archive ul li {
    font-weight: 400;
    color: var(--primary-color);
}

.widget_categories ul li a,
.widget_archive ul li a {
    font-weight: 400;
    color: var(--secondary-color);
}

/*=====  Meta - widget RSS =====*/
.widget.widget_rss ul li {
    margin-bottom: 30px;
}

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

.widget.widget_rss ul li a {
    padding-left: 0;
    font-size: 16px;
    color: var(--dark-color);
    font-weight: 600;
    font-family: var(--title-fonts);
}

.widget.widget_rss ul li a:hover {
    color: var(--primary-color);
}

.widget.widget_rss ul li a:before {
    display: none;
}

.widget.widget_rss ul li cite {
    font-weight: 600;
    margin-top: 5px;
    display: inline-block;
    width: 100%;
}

.widget.widget_rss ul li .rss-date {
    font-size: 14px;
    color: var(--primary-color);
    line-height: 1;
    display: inline-block;
    width: 100%;
    margin: 5px 0;
}

/*===== widget Nav Menu =====*/
.widget.widget_nav_menu ul li,
.widget ul.menu li {
    margin-bottom: 0;
}

.widget.widget_nav_menu ul li .sub-menu,
.widget ul.menu li .sub-menu {
    display: block !important;
    padding-left: 20px;
}

.widget.widget_nav_menu ul li a,
.widget ul.menu li a {
    padding: 10px 0;
    display: inline-block;
    width: 100%;
    border-bottom: 1px solid var(--grey-color);
}

/*=====  SideBar - widget Recent Entries =====*/
.widget_recent_entries ul li .post-date {
    font-weight: 600;
    color: var(--dark-color);
}

/*===== SideBar - Tags =====*/
.widget_tag_cloud .tag-cloud-link {
    font-size: 14px !important;
    background: var(--primary-color);
    margin: 0 10px 10px 0;
    display: inline-block;
    color: var(--white-color);
    padding: 2px 12px;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    border: 1px solid var(--grey-color);
    transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
}

.widget_tag_cloud .tag-cloud-link:hover {
    border-color: var(--primary-color);
    background: var(--dark-color);
    color: var(--white-color);
}

@media(max-width:1023px) {
    .sidebar.widget-area {
        margin-top: 45px;
    }
}

/*=============================================================
Section Title
===============================================================*/

/*-------pt-section-title-1--------*/

.pt-section-title-1.text-center {
    margin-bottom: 60px;
    padding: 0 15em;
}

.pt-section-title-1 {
    margin-bottom: 30px;
}

.pt-section-title-1 .pt-section-title {
    font-size: 48px;
    line-height: 56px;
    z-index: 9;
    position: relative;
    margin-bottom: 10px;
    font-weight: 600;
}

.pt-section-title-1 .pt-section-title span {
    color: var(--primary-color);
}

.pt-section-title-1 .pt-section-title:after {
    content: "";
    transform: translateX(-100%);
    -webkit-transform: translate(-100%);
    -moz-transform: translate(-100%);
    -o-transform: translate(-100%);
    -ms-transform: translate(-100%);
    position: absolute;
    color: var(--primary-color);
}

.pt-section-title-1 .pt-section-description {
    z-index: 9;
    position: relative;
    font-size: 18px;
}

.pt-section-title-1.pt-section-title-1-color-white .pt-section-title .imp-word {
    color: var(--white-color) !important;
}

@media(max-width:1199px) {
    .pt-section-title-1.text-center {
        padding: 0;
    }
}

@media(max-width:1023px) {
    .pt-section-title-1 .pt-section-title {
        font-size: 44px;
        line-height: 52px;
    }
}

@media(max-width:767px) {
    .pt-section-title-1 .pt-section-title {
        font-size: 38px;
        line-height: 1.3;
    }

    .pt-section-title-1.text-center {
        margin-bottom: 30px;
    }
}

@media(max-width:479px) {
    .pt-section-title-1 .pt-section-title {
        font-size: 30px;
        line-height: 1.3;
    }
}

/*====================================================
Icon Box
======================================================*/

.pt-icon-box {
    text-align: center;
    padding: 45px 45px 45px 45px;
}

.pt-icon-box .pt-icon-box-media {
    margin-bottom: 15px;
    font-size: 105px;
    line-height: 113px;
    color: var(--white-color);
}

.pt-icon-box .pt-icon-box-content .pt-icon-box-title {
    color: var(--white-color);
}

.pt-icon-box .pt-icon-box-content .pt-icon-box-description {
    color: var(--secondary-color);
    font-family: var(--title-fonts);
    font-weight: 400;
    margin: 0px;
}

@media (min-width:1365px){
    .pt-icon-box{
        padding: 45px 30px 45px 30px;
    }
}

/*================================================
Back to Top
================================================*/
#back-to-top .top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    margin: 0px;
    color: var(--white-color);
    background: var(--dark-color);
    z-index: 999;
    border: 1px solid var(--dark-color);
    font-size: 26px;
    width: 50px;
    height: 50px;
    text-align: center;
    line-height: 50px;
    border-radius: 90px 90px 90px 90px;
    -moz-border-radius: 90px 90px 90px 90px;
    -webkit-border-radius: 90px 90px 90px 90px;
}

#back-to-top .top:hover {
    background: var(--primary-color);
    color: var(--white-color);
    border: 1px solid var(--primary-color);
}

/*================================================
Loading
================================================*/
#pt-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);
}

#pt-loading img {
    height: 250px;
}

/*================================================
Advance Tab
================================================*/
.pt-advance-tab {
    display: inline-block;
    text-align: center;
    width: 100%;
}

.pt-advance-tab .nav-tabs {
    background: var(--grey-color);
    border: none;
    display: inline-block;
    text-align: center;
    -webkit-border-radius: 9000px;
    -moz-border-radius: 9000px;
    border-radius: 9000px;
}

.pt-advance-tab .nav-tabs .pt-tabs.nav-link {
    margin: 0;
    line-height: 2;
    display: inline-block;
    color: var(--dark-color);
    padding: 12px 45px;
    text-align: center;
    border: none;
    font-weight: 600;
    -webkit-border-radius: 9000px;
    -moz-border-radius: 9000px;
    border-radius: 9000px;
}

.pt-advance-tab .nav-tabs .pt-tabs.nav-link.active {
    background: var(--primary-color);
    color: var(--white-color);
}

.pt-advance-tab .tab-content {
    margin: 45px 0 0;
}

/*=================================================
Image Box
==================================================*/
.pt-image-box {
    text-align: center;
}

.pt-image-box .pt-image-box-img {
    margin-bottom: 20px;
}

.pt-image-box .pt-image-box-img img {
    -webkit-box-shadow: 0px 0px 30px 0px rgba(0, 36, 80, 0.1);
    -moz-box-shadow: 0px 0px 30px 0px rgba(0, 36, 80, 0.1);
    box-shadow: 0px 0px 30px 0px rgba(0, 36, 80, 0.1);
    transition: all 0.5s ease-in-out;
    -webkit-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;
    transition: all 0.5s ease-in-out;
}

.pt-image-box .pt-image-box-img img:hover {
    -moz-transform: translateY(-10px);
    -webkit-transform: translateY(-10px);
    -o-transform: translateY(-10px);
    -ms-transform: translateY(-10px);
    transform: translateY(-10px);
}

/*=== pt-image-box-style-2 ===*/

.pt-image-box-style-2 .pt-image-box-img{
    margin-bottom: 20px;
}

.pt-image-box-style-2 .pt-image-box-content .pt-image-box-description{
    margin: 0;
}

/*=== pt-image-box-style-3 ===*/

.pt-image-box-style-3{
    background-color: #ffffff;
    padding: 15px 15px 15px 15px;
    border-style: solid;
    border-width: 2px 2px 2px 2px;
    border-color: #F2F7FF;
    display: flex;
    text-align: left;
    align-items: center;
    -webkit-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;
    transition: all 0.5s ease-in-out;
}

.pt-image-box-style-3:hover{
    box-shadow: 0px 0px 30px 0px rgb(0 36 80 / 10%);
    -webkit-box-shadow:0px 0px 30px 0px rgb(0 36 80 / 10%);
    -moz-box-shadow:0px 0px 30px 0px rgb(0 36 80 / 10%);
}

.pt-image-box-style-3 .pt-image-box-content{
    margin-left: 15px;
    width: 100%;
}

/*================================================
Client-Box
================================================*/

.pt-clientbox-1 .pt-client-img {
    position: relative;
    display: block;
    width: auto;
    margin: 0 auto;
    -webkit-transition: -webkit-transform .3s ease;
    -moz-transition: -moz-transform .3s ease;
    transition: transform .3s ease;
}

.pt-clientbox-1 a:hover .pt-client-img {
    -ms-transform: translateY(100%);
    -o-transform: translateY(100%);
    -webkit-transform: translateY(100%);
    -moz-transform: translateY(100%);
    transform: translateY(100%)
}

.pt-clientbox-1 .pt-client-hover-img {
    position: absolute;
    top: 0;
    left: 50%;
    width: auto;
    -ms-transform: translate(-50%, -100%);
    -o-transform: translate(-50%, -100%);
    -webkit-transform: translate(-50%, -100%);
    -moz-transform: translate(-50%, -100%);
    transform: translate(-50%, -100%);
    -webkit-transition: -webkit-transform .3s ease;
    -moz-transition: -moz-transform .3s ease;
    transition: transform .3s ease;
}

.pt-clientbox-1 a:hover .pt-client-hover-img {
    -ms-transform: translate(-50%, 0);
    -o-transform: translate(-50%, 0);
    -webkit-transform: translate(-50%, 0);
    -moz-transform: translate(-50%, 0);
    transform: translate(-50%, 0)
}

/*==============================================
Image
===============================================*/
.pt-img-main{
    position: relative;
}

.pt-img-main .pt-hover-img-2{
    position: absolute;
    inset: 0 0 0 0;
    opacity: 0;
    -webkit-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;
    transition: all 0.5s ease-in-out;
}

.pt-img-main:hover .pt-hover-img-2{
    opacity: 1;
}

.pt-img-main .pt-img-3{
    position: absolute;
    bottom: -80px;
    left: -70px;
    z-index: 9;
    height: 290px;
    width: 580px;
}

.pt-img-main img.pt-image-negative-margin{
    margin: 0px 0px 0px -160px;
}

/*================================================*/
.pt-page-builder .pt-page-padding{
    padding: 0px 90px 0px 0px;
}

@media (max-width:979px){
    .pt-page-builder .pt-page-padding{
        padding: 0px 60px 0px 0px;
    }
}

@media (max-width:767px){
    .pt-page-builder .pt-page-padding{
        padding: 0px 0px 0px 0px;
    }
}

/*================================================*/
.pt-purchase{
    padding: 130px 0px;
}

@media (max-width:1024px){
    .pt-purchase{
        padding: 60px 0px 60px 0px;
    }
}

header#pt-header .pt-bottom-header .navbar .navbar-nav li a.active{
    color: var(--primary-color);
}