/*
Theme Name: Tiesh
Theme URI: https://bagel.doweby.com/
Author: DoMedia
Author URI: https://domedia.lk
Description: DoMedia Templates brings your site to life.
Version: 2.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
*/

/* ---------------------------------
    Normalize 
   --------------------------------- */

@font-face {
    font-family: Santral-Bold;
    font-weight: 600;
    src: url( "assets/theme-fonts/Santral-Bold.woff" ) format("woff");
    font-display: swap;
}
@font-face {
    font-family: Santral-Light;
    font-weight: 300;
    src: url( "assets/theme-fonts/Santral-Light.woff" ) format("woff");
    font-display: swap;
}
@font-face {
    font-family: Santral-Medium;
    font-weight: normal;
    src:url("assets/theme-fonts/Santral-Medium.woff") format("woff");
    font-display:swap;
}
@font-face {
    font-family: Santral-SemiBold;
    font-weight: 500;
    src:url("assets/theme-fonts/Santral-SemiBold.woff") format("woff");
    font-display:swap;
}
html {
    font-family: sans-serif;
    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
}

body {
    margin: 0;
    color: #444;
    font-size: 15px;
    overflow-x: hidden;
}

article,
aside,
footer,
header,
nav,
section {
    display: block;
}

figcaption,
figure,
main {
    display: block;
}

figure {
    margin: 1em 0;
}

pre {
    font-family: monospace, monospace;
    font-size: 1em;
}

a {
    color: #4d4f50;
    text-decoration: none;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    -webkit-text-decoration-skip: objects;
}

a:active,
a:hover,
a:focus {
    outline-width: 0;
    text-decoration: none;
    outline: 0;
    color: #3c3c3c;
    cursor: pointer;
}
p {
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}
abbr[title] {
    border-bottom: 1px #767676 dotted;
    text-decoration: none;
}

code,
kbd,
samp {
    font-family: monospace, monospace;
    font-size: 1em;
}

dfn {
    font-style: italic;
}

mark {
    background-color: #eee;
    color: #222;
}

small {
    font-size: 80%;
}

sub,
sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
}

sub {
    bottom: -0.25em;
}

sup {
    top: -0.5em;
}

audio,
video {
    display: inline-block;
}

audio:not([controls]) {
    display: none;
    height: 0;
}

img {
    border-style: none;
    max-width: 100%;
}

svg:not(:root) {
    overflow: hidden;
}

button,
input,
optgroup,
select,
textarea {
    font-family: sans-serif;
    font-size: 100%;
    margin: 0;
}

button,
input {
    overflow: visible;
}

button,
select {
    text-transform: none;
}

button,
html [type="button"],
[type="reset"],
[type="submit"] {
    -webkit-appearance: button;
}

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
    border-style: none;
    padding: 0;
}

button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
    outline: 1px dotted ButtonText;
}

fieldset {
    border: 1px solid #bbb;
    margin: 0 2px;
    padding: 0.35em 0.625em 0.75em;
}

legend {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    color: inherit;
    display: table;
    max-width: 100%;
    padding: 0;
    white-space: normal;
}

progress {
    display: inline-block;
    vertical-align: baseline;
}

textarea {
    overflow: auto;
}

[type="checkbox"],
[type="radio"] {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    padding: 0;
}

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
    height: auto;
}

[type="search"] {
    -webkit-appearance: textfield;
    outline-offset: -2px;
}

[type="search"]::-webkit-search-cancel-button,
[type="search"]::-webkit-search-decoration {
    -webkit-appearance: none;
}

::-webkit-file-upload-button {
    -webkit-appearance: button;
    font: inherit;
}

details,
menu {
    display: block;
}

summary {
    display: list-item;
}

canvas {
    display: inline-block;
}

template {
    display: none;
}

[hidden] {
    display: none;
}

/* ---------------------------------
    Framework Styles 
   --------------------------------- */
.page-loader {
    position: fixed;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    z-index: 99999999;
    background-color: #fff;
}
.page-loader .pgl-spinner{
    display: inline-block;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}
.page-loader .pgl-spinner:after {
    content: '';
    display: block;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid #3e3e3e;
    border-color: #3e3e3e transparent #3e3e3e transparent;
    animation: pgl-dual-ring 1.2s linear infinite;
}

@-webkit-keyframes pgl-dual-ring {
    0% { -webkit-transform: rotate(0deg); }
    100% { -webkit-transform: rotate(360deg); }
}
@-moz-keyframes pgl-dual-ring {
    0% { -moz-transform: rotate(0deg); }
    100% { -moz-transform: rotate(360deg); }
}
@keyframes pgl-dual-ring {
    0% { -webkit-transform: rotate(0deg); -moz-transform: rotate(0deg); transform: rotate(0deg); }
    100% { -webkit-transform: rotate(360deg); -moz-transform: rotate(360deg); transform: rotate(360deg); }
}

/* ---------------------------------
    Header
   --------------------------------- */
#site-header > .container{
    height: 60px;
}
#site-header > .container > .flex-parent{
    height: 100%;
    align-items: center;
    justify-content: space-between;
}
.header-logo{
    display: block;
    padding: 0;
    height: auto;
}
.sticky .header-logo img{
    max-width: 90px;
    max-height: 70px;
 
}
 .header-logo img {
    max-width: 100px;
    max-height: 75px;
       -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}
/* Navbar Serach */
.nav-search{
    float: right;
    position: relative;
    padding-left: 15px;
}

.nav-search-field{
    position: absolute;
    display: none;
    width: 260px;
    right: 0;
    top: 100%;
    padding: 8px;
    border-radius: 4px;
    background-color: rgba(0,0,0,0.7);
    z-index: 999;
    margin-top: 15px;
}
.nav-search-field .input-group .form-control:focus{
    box-shadow: none;
    outline: 0 none;
    border-color: #ccc;
}
.nav-search-field .input-group .input-group-btn .btn-default{
    height: 35px;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}
.nav-search-field .input-group .input-group-btn .btn-default:hover{
    background-color: #4d4f50;
    border-color: #4d4f50;
    color: #fff;
    outline: 0;
}
.nav-search-field .input-group .input-group-btn .btn-default:focus{
    outline: 0;
    background-color: #fff;
    border-color: #ccc;
    color: #333;
}

#site-header{
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

@media (min-width: 992px){
    
    #site-header{
        background-color:#fff;
        border-color:#fff;
        height: 95px;
        max-width: 1920px;
    margin: 0 auto;
    }
    #site-header .navbar-collapse{
        flex: 1;
    }
    #site-header .navbar-nav>li>a{
        color: #444;
        font-family: 'Santral-Medium';
    font-weight: 400;
    font-size: 13px;
    }
    #site-header .navbar-nav>li>a:hover,
    #site-header .navbar-nav>li>a:focus,
    #site-header .navbar-nav>.active>a,
    #site-header .navbar-nav>.active>a:focus,
    #site-header .navbar-nav>.active>a:hover,
    #site-header .navbar-nav>.open>a,
    #site-header .navbar-nav>.open>a:focus,
    #site-header .navbar-nav>.open>a:hover{
        color: #D54A29;
        background-color: transparent;
    }
    
    /* Dropdown menu */
    #site-header .dropdown-menu{
        margin-top:0;
    }
     .sticky .dropdown-menu{
        margin-top:3 px!important;
    }
    .dropdown-menu>li>a{
        padding-top: 10px;
        padding-bottom: 10px;
        color: #444;
    font-family: 'Santral-Medium';
    font-weight: 400;
    font-size: 13px;
    }
    .dropdown-menu>li>a:focus,
    .dropdown-menu>li>a:hover,
    .dropdown-menu>.active>a,
    .dropdown-menu>.active>a:focus,
    .dropdown-menu>.active>a:hover{
        background-color: #F2F2F2;
        color: #444;
    }
    /* Dropdown menu > Dropdown menu */
     .dropdown-submenu {
        position: relative;
    }
    .dropdown-submenu .dropdown-menu {
        top: 0;
        left: 100%;
        margin-top: -6px !important;
        border-top-left-radius: 0;
        border-bottom-left-radius: 0;
    }
    .dropdown-submenu:hover .dropdown-menu {
        display: block;
    }
    .dropdown-submenu > a:after{
        content: '\f0da';
        font-family: 'Font Awesome 5 Pro';
        font-weight: 400;
        position: absolute;
        top: 10px;
        right: 10px;
    }
    
    /* sticky Header */
    #site-header.sticky{
        background-color: #fff;
        height: 60px;
        box-shadow: 0px 0px 3px 0px rgba(0,0,0,.5);
    }
    .header-logo,
    .nav-search,
    .navbar-collapse{
        -webkit-transition: all 0.2s ease-in-out;
        -moz-transition: all 0.2s ease-in-out;
        transition: all 0.2s ease-in-out;
    }
    
}

@media (max-width: 991px){

    #site-header{
        background-color: #fff;
        height: 95px;
        border: none;
    }
    #site-header.sticky{
        background-color: #fff;
        height: 65px;
        box-shadow: 0px 0px 3px 0px rgba(0,0,0,.5);
    }
    .header-logo img{
        max-height: 50px;
        max-width: 200px;
        -webkit-transition: all 0.1s ease-in-out;
        -moz-transition: all 0.1s ease-in-out;
        transition: all 0.1s ease-in-out;
    }
    .header-logo{
        padding-top: 5px;
        -webkit-transition: all 0.2s ease-in-out;
        -moz-transition: all 0.2s ease-in-out;
        transition: all 0.2s ease-in-out;
    }
    .header-banner {
        opacity: 1;
          -webkit-transition: all 0.2s ease-in-out;
        -moz-transition: all 0.2s ease-in-out;
        transition: all 0.2s ease-in-out;
    }
    /* 
    *
    Bootstrap navbar collapse override 
    Mobile Menu Open in iPads also
    */
    .navbar-header {
        float: none;
        flex: 1;
    }
    .navbar-toggle {
        display: block;
    }
    .navbar-collapse {
        border-top: 1px solid transparent;
        box-shadow: inset 0 1px 0 rgba(255,255,255,0.1);
    }
    .navbar-collapse.collapse {
        display: none!important;
    }
    .navbar-nav {
        float: none!important;
        margin: 7.5px -15px;
        margin-right: -15px !important;
    }
    .navbar{
        max-height: 350px;
        overflow-y: auto;
    }
    .navbar-nav>li {
        float: none;
    }
    .navbar-text {
        float: none;
        margin: 15px 0;
    }
    /* since 3.1.0 */
    .navbar-collapse.collapse.in { 
        display: block!important;
    }
    .collapsing {
        overflow: hidden!important;
    }
    .navbar-nav .open .dropdown-menu {
        position: static;
        float: none;
        width: auto;
        margin-top: 0;
        background-color: transparent;
        border: 0;
        -webkit-box-shadow: none;
        box-shadow: none;
    }
    .navbar-nav>li>a,
    .navbar-nav .open .dropdown-menu>li>a{
        padding-top: 15px;
        padding-bottom: 15px;
    }
    .navbar-nav>.active>a,
    .navbar-nav>.active>a:focus,
    .navbar-nav>.active>a:hover,
    .navbar-nav>.open>a:focus,
    .navbar-nav>.open>a:hover,
    .navbar-nav .open .dropdown-menu>.active>a,
    .navbar-nav .open .dropdown-menu>.active>a:focus,
    .navbar-nav .open .dropdown-menu>.active>a:hover,
    .current-menu-parent.dropdown > a{
        background-color: transparent !important;
    }
    .dropdown > a .caret:after{
        font-family: 'FontAwesome';
        content: '\f105';
        position: absolute;
        right: 10px;
        font-size: 25px;
        top: 15px;
        -webkit-transition: all 0.2s ease-in-out;
        -moz-transition: all 0.2s ease-in-out;
        transition: all 0.2s ease-in-out;
    }
    .dropdown.open > a .caret:after{
        -webkit-transform: rotate(90deg);
        -moz-transform: rotate(90deg);
        transform: rotate(90deg);
    }
    
    /* Inverse Navbar (Dark theme) */
    .navbar-inverse .navbar-nav>li>a,
    .navbar-inverse .navbar-nav .open .dropdown-menu>li>a{
        color: #fff; 
        border-bottom: 1px solid rgba(255,255,255,0.08);  
        word-wrap: break-word;
        white-space: pre-wrap;
    }
    .navbar-inverse .navbar-nav>.active>a,
    .navbar-inverse .navbar-nav>.active>a:focus,
    .navbar-inverse .navbar-nav>.active>a:hover,
    .navbar-inverse .navbar-nav>.open>a:focus,
    .navbar-inverse .navbar-nav>.open>a:hover,
    .navbar-inverse .navbar-nav .open .dropdown-menu>.active>a,
    .navbar-inverse .navbar-nav .open .dropdown-menu>.active>a:focus,
    .navbar-inverse .navbar-nav .open .dropdown-menu>.active>a:hover,
    .navbar-inverse .current-menu-parent.dropdown > a{
        border-color: rgba(255,255,255,0.08);
        color: #4d4f50;
    }   
    .navbar-inverse .dropdown > a .caret{
        color: #222;
    }
    .navbar-inverse .dropdown > a .caret:after{
        color: #fff;
    }
    
    /* Default Navbar (Light theme) */
    .navbar-default .navbar-nav>li>a,
    .navbar-default .navbar-nav .open .dropdown-menu>li>a{
        color: #777; 
        border-bottom: 1px solid rgba(0,0,0,0.05);
        word-wrap: break-word;
        white-space: pre-wrap;
    }
    .navbar-default .navbar-nav>.active>a,
    .navbar-default .navbar-nav>.active>a:focus,
    .navbar-default .navbar-nav>.active>a:hover,
    .navbar-default .navbar-nav>.open>a:focus,
    .navbar-default .navbar-nav>.open>a:hover,
    .navbar-default .navbar-nav .open .dropdown-menu>.active>a,
    .navbar-default .navbar-nav .open .dropdown-menu>.active>a:focus,
    .navbar-default .navbar-nav .open .dropdown-menu>.active>a:hover,
    .navbar-default .current-menu-parent.dropdown > a{
        border-color: rgba(0,0,0,0.05);
        color: #4d4f50;
    }   
    .navbar-default .dropdown > a .caret{
        color: #fff;
    }
    .navbar-default .dropdown > a .caret:after{
        color: #777;
    }
    
    /* Side Navbar */
    .sidebar-nav .navbar-nav>li>a,
    .sidebar-nav .navbar-nav .open .dropdown-menu>li>a{
        color: #282828; 
        background-color: transparent;
        border-bottom: 1px solid rgba(255,255,255,0.08); 
        word-wrap: break-word;
        white-space: pre-wrap;
        font-family: 'Santral-Medium';
        font-weight: 400;
    }
    .sidebar-nav .navbar-nav>.active>a,
    .sidebar-nav .navbar-nav>.active>a:focus,
    .sidebar-nav .navbar-nav>.active>a:hover,
    .sidebar-nav .navbar-nav>.open>a:focus,
    .sidebar-nav .navbar-nav>.open>a:hover,
    .sidebar-nav .navbar-nav .open .dropdown-menu>.active>a,
    .sidebar-nav .navbar-nav .open .dropdown-menu>.active>a:focus,
    .sidebar-nav .navbar-nav .open .dropdown-menu>.active>a:hover,
    .sidebar-nav .current-menu-parent.dropdown > a{
        border-color: rgba(255,255,255,0.08);
        color: #D54A29;
    }   
    .sidebar-nav .dropdown > a .caret{
        color: #282f37;
    }
    .sidebar-nav .dropdown > a .caret:after{
        color: #fff;
    }
    
    .dropdown-submenu > a{
        position: relative;
    }
    .dropdown-submenu > a:after{
        content: '\f107';
        font-family: 'FontAwesome';
        position: absolute;
        right: 17px;
        top: 15px;
        -webkit-transition: all 0.2s ease-in-out;
        -moz-transition: all 0.2s ease-in-out;
        transition: all 0.2s ease-in-out;
    }
    .dropdown.open > a .fa,
    .dropdown-submenu.open > a:after{
        -webkit-transform: rotate(180deg);
        -moz-transform: rotate(180deg);
        transform: rotate(180deg);
    }
    .sidebar-nav .navbar-nav>li>a,
    .sidebar-nav .navbar-nav .open .dropdown-menu>li>a{
        padding: 12px 30px 12px 15px;
    }
    .navbar-nav>li.open{
    background-color: #F6F6F6;
    }
    
    /* End side navbar */
    
    /* End Overrides */
    
    /* Sidebar navigation */
    .sidebar-nav{
        position: fixed;
        top: 0;
        bottom: 0;
        background-color: #fff;
        z-index: 1032;
        width: 250px;
        overflow-x: hidden;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        -webkit-transition: all 0.2s ease-in-out;
        -moz-transition: all 0.2s ease-in-out;
        transition: all 0.2s ease-in-out;
    }
    #left-sidebar{
        left: -85%;      
        box-shadow: -7px 0 15px 5px #010101;
    }
    #left-sidebar.open{
        left: 0;
    }
    #right-sidebar{
        right: -85%;
        background-color: #fff;
        box-shadow: 7px 0 15px 5px #010101;
    }
    #right-sidebar.open{
        right: 0;
    }
    
    .sidebar-nav ul{
        margin: 0 10px !important;
    }
    
    .sidebar-search{
        margin: 15px 10px 15px 10px;
    }
    .sidebar-search .search-group{
        position: relative;
    }
    .sidebar-search .search-group input[type="search"]{
    width: 100%;
    height: 35px;
    background-color: #F2F2F2;
    padding: 0 35px 0 15px;
    color: #282828;
    border-radius: 50px;
    border: 1px solid transparent;
    border-top: none;
    /* border-bottom: 1px solid rgba(255,255,255,0.08); */
    /* box-shadow: inset 0 1px 2px rgb(0 0 0 / 39%);*/
    }
    .sidebar-search .search-group button{
        position: absolute;
        background-color: transparent;
        border: none;
        height: 35px;
        width: 35px;
        color: #282828;
        top: 0;
        right: 5px;
    }
    .sidebar-search .search-group input[type="search"]:focus{
        outline-color: #4d4f50;
        box-shadow: none!important;
    }
    .sidebar-search .search-group button:focus{
        outline: 0;
        color: #4d4f50;
    }
    .sidebar-search .search-group input[type="search"]::-webkit-input-placeholder { /* Chrome/Opera/Safari */
         color: #282828;
         opacity: 0.8;
         font-family: 'Santral-Medium';
        font-weight: 400;
    }
    .sidebar-search .search-group input[type="search"]::-moz-placeholder { /* Firefox 19+ */
          color: #282828;
          opacity: 0.8;
          font-family: 'Santral-Medium';
        font-weight: 400;
    }
    .sidebar-search .search-group input[type="search"]:-ms-input-placeholder { /* IE 10+ */
         color: #282828;
         opacity: 0.8;
         font-family: 'Santral-Medium';
        font-weight: 400;
    }
    .sidebar-search .search-group input[type="search"]:-moz-placeholder { /* Firefox 18- */
        color: #282828;
        opacity: 0.8;
        font-family: 'Santral-Medium';
        font-weight: 400;
    }
    .sidebar-overlay{
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        bottom: 0;
        right: 0;
        z-index: 1031;
        background-color: rgba(0,0,0,0.6);
    }

    /* Mobile menu icon */
    .header-ham-icon{
        float: right;
        margin-top: 15px;
        width: 35px;
        height: 32px;
        position: relative;
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
        -webkit-transition: .5s ease-in-out;
        -moz-transition: .5s ease-in-out;
        -o-transition: .5s ease-in-out;
        transition: .5s ease-in-out;
        cursor: pointer;
    }
    .header-ham-icon span{
        display: block;
        position: absolute;
        height: 4px;
        width: 100%;
        background: #4d4f50;
        border-radius: 9px;
        opacity: 1;
        left: 0;
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
        -webkit-transition: .25s ease-in-out;
        -moz-transition: .25s ease-in-out;
        -o-transition: .25s ease-in-out;
        transition: .25s ease-in-out;
    }
    .header-ham-icon span:nth-child(1) { top: 0px; }
    .header-ham-icon span:nth-child(2),.header-ham-icon span:nth-child(3) { top: 10px; }
    .header-ham-icon span:nth-child(4) { top: 20px; }
    .header-ham-icon.open span:nth-child(1) {
        top: 18px;
        width: 0%;
        left: 50%;
    }
    .header-ham-icon.open span:nth-child(2) {
        -webkit-transform: rotate(45deg);
        -moz-transform: rotate(45deg);
        -o-transform: rotate(45deg);
        transform: rotate(45deg);
    }
    .header-ham-icon.open span:nth-child(3) {
        -webkit-transform: rotate(-45deg);
        -moz-transform: rotate(-45deg);
        -o-transform: rotate(-45deg);
        transform: rotate(-45deg);
    }
    .header-ham-icon.open span:nth-child(4) {
        top: 18px;
        width: 0%;
        left: 50%;
    }
    
}

/* ---------------------------------
    Page Header Banner
   --------------------------------- */
.page-header-banner{
    position: relative;
    width: 100%;
    overflow: hidden;
    margin-top: 95px;
}
.page-header-banner .phb-bg{
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}
.page-header-banner .phb-content{
    position: relative;
    padding-top: 70px;
    padding-bottom: 70px;
    /*text-align: center;*/
}
.page-header-banner .phb-heading{
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 40px;
    font-family: 'Santral-Medium';
        font-weight: 400;
        pointer-events: none;
        color: #292929!important;
}
.page-header-banner .phb-heading a{
    color: #292929!important;
}
.page-header-banner .phb-content p,.woocommerce-info{
    font-size:14px;
    font-family: 'Santral-Medium';
        font-weight: 400;
        color: #282828;
}
.page-header-banner .phb-bg:before{
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
       background: rgb(249,249,249);
        background: linear-gradient( 90deg, rgba(249,249,249,1) 30%, rgba(0,0,0,0) 120%);
}

@media ( min-width: 1440px ){
    .page-header-banner .phb-content{
        padding-top: 90px;
        padding-bottom: 90px;
    }
}

@media ( max-width: 991px ){
    .page-header-banner{
        margin-top: 100px;
    }
    .page-header-banner .phb-heading{
        font-size: 40px;
    }
}

@media ( max-width: 767px ){
    .page-header-banner .phb-content{
        padding-top: 50px;
        padding-bottom: 50px;
    }
    .page-header-banner .phb-heading{
        font-size: 25px;
    }
    .page-header-banner .phb-bg:before{
            background: linear-gradient( 90deg, rgba(249,249,249,1) 40%, rgba(0,0,0,0) 95%);
    }
    .page-header-banner .phb-content p{
     display: none;   
    }
}

/* ---------------------------------
    Page Layout
   --------------------------------- */
.body-wrap {
    max-width: 1920px;
    margin: 0 auto;
    background-color: #fff;
    overflow: hidden;
}

.page-container.pg-home{
    margin-top: 100px;
    padding-top: 0;
}

@media (min-width: 1921px){
    body {
        background-color: #fafafa;
    }
}

@media (max-width: 991px){
    .page-container.pg-home{
        margin-top: 35px;
    }
}

/*-----------------------------------
            Breadcumb
 ------------------------------------ */
.breadcumb-container,.woocommerce .woocommerce-breadcrumb{
    background-color: #fff;
    padding-top: 10px;
    color: #8A8A8A;
    padding-bottom: 10px;
    font-size: 13px;
    font-family: 'Santral-Medium';
    font-weight: 400;

}
.breadcumb-container .container{
    padding-left:0;
    padding-right: 0;
}

/* ---------------------------------
    404 Page
   --------------------------------- */
.page-404{
    text-align: center;
}
.page-404 .error-404{
    font-size: 100px;
        font-family: 'Santral-Medium';
        font-weight: 500;
}
.page-404 h3{
      font-family: 'Santral-Medium';
        font-weight: 500;
}

/* --------------------------------------
    Contact form 7
   -------------------------------------- */
.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="date"],
.wpcf7 input[type="tel"],
.wpcf7 input[type="url"],
.wpcf7 input[type="number"],
.wpcf7 input[type="file"],
.wpcf7 select,
.wpcf7 textarea{
    background-color: rgba(255,255,255,0.9);
    width: 100%;
    padding: 8px 10px;
    border-radius: 3px;
    max-width: 100%;
    font-size: 14px;
    font-weight: normal;
    height: 40px;
    font-family: sans-serif;
    border: 1px solid #a2a2a2;
    color: #262626;
}
.wpcf7 textarea{
    height: 140px!important;
    max-height: 140px;
    margin-bottom: 0 !important;
    margin: 0;
    resize: none;
}

.wpcf7 input::placeholder,
.wpcf7 textarea::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: #999;
    opacity: 1; /* Firefox */
}
.wpcf7 input:-ms-input-placeholder,
.wpcf7 textarea:-ms-input-placeholder { /* Internet Explorer 10-11 */
    color: #999;
}
.wpcf7 input::-ms-input-placeholder,
.wpcf7 textarea::-ms-input-placeholder { /* Microsoft Edge */
    color: #999;
}

.wpcf7 input[type="text"]:focus,
.wpcf7 input[type="email"]:focus,
.wpcf7 input[type="date"]:focus,
.wpcf7 input[type="tel"]:focus,
.wpcf7 input[type="url"]:focus,
.wpcf7 input[type="number"]:focus,
.wpcf7 input[type="file"]:focus,
.wpcf7 textarea:focus,
.wpcf7 select:focus{
    outline: 0;
    border-color: #D54A29;
}

.theme-contact-form .row {
    margin-left: -5px;
    margin-right: -5px;
}
.theme-contact-form .row > div[class*=col-] {
    padding-left: 5px;
    padding-right: 5px;
}
.wpcf7-form-control-wrap{
    position: relative;
    display: block;
    margin-bottom: 10px;
}

div.wpcf7-response-output{
    margin: 0 0 2em;
    color: #444;
    font-size: 14px;
}
.wpcf7 span.wpcf7-not-valid-tip{
    font-size: 13px;
}
.wpcf7 input[type="submit"]{
    background-color: #D54A29;
    color: #fff;
    padding: 8px 25px;
    display: block;
    width: 100%;
    height: 40px;
    font-family: inherit;
    text-decoration: none;
    border: 0;
    border-radius: 3px;
    font-size: 15px;
    font-weight: 500;
    line-height: 1;
    transition: all 0.3s ease 0s;
    -webkit-appearance: none;
}
.wpcf7 input[type="submit"]:focus{
    outline: 0;
}
.wpcf7 input[type="submit"]:hover{
    color: #fff;
    background-color: #E07C64;
}
div.wpcf7 .ajax-loader{
    background-image: none !important;
    width: 18px !important;
    height: 18px !important;
    margin: 0 !important;
    position: absolute;
    top: 9px;
    right: 15px;
}
div.wpcf7 .ajax-loader:after{
    content: '';
    border: 2px solid #fff;
    border-top: 2px solid transparent;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    margin: 0 auto;
    display: inline-block;
    position: absolute;
    top: 0;
    right: 0;
    -webkit-animation: spin 1s linear infinite;
    -moz-animation: spin 1s linear infinite;
    animation: spin 1s linear infinite;
}
.wpcf7 form div.wpcf7-response-output,
.wpcf7 form div.wpcf7-validation-errors { 
    margin: 1em 0;
    border: 0;
    border-radius: 3px;
    color: #fff;
}
div.wpcf7-response-output:before,
div.wpcf7-validation-errors:before{
    display: table;
    content: '';
    clear: both;
}
div.wpcf7-response-output,
div.wpcf7-validation-errors{
    background-color: #f4524d;
}
.wpcf7 form.sent .wpcf7-response-output{
    background-color: #6dab3c;
}
span.wpcf7-not-valid-tip { display: none; }
.wpcf7 input[aria-invalid="true"],
.wpcf7 select[aria-invalid="true"],
.wpcf7 textarea[aria-invalid="true"]{
    border-color: #f4524d !important;
    border-width: 1px !important;
}

@-moz-keyframes spin{
    100%{
        -moz-transform:rotate(360deg)
    }
}
@-webkit-keyframes spin{
    100%{
        -webkit-transform:rotate(360deg)
    }
}
@keyframes spin{
    100%{
        -webkit-transform:rotate(360deg);
        transform:rotate(360deg)
    }
}

/* Popup Form */
#popup-inquiry{
    display: none;
    padding: 25px;
}

@media (min-width: 768px){
    #popup-inquiry{
        min-width: 500px;
        width: 500px;
    }
}

@media(max-width: 991px){
    .wpcf7 input,
    .wpcf7 textarea,
    .wpcf7 select{
        -webkit-appearance: none;
        -moz-appearance: none;
    }
}

/* ---------------------------------
    Footer CTA Banner
   --------------------------------- */
.footer-cta-banner{
    position: relative;
}
.footer-cta-banner img{
    position: absolute;
    width: 100%;
    height: 100%;
/*    object-position: 50% 0;*/
    object-fit: cover;
}
.footer-cta-banner > .container{
    padding-top: 60px;
    padding-bottom: 60px;
    position: relative;
    z-index: 2;
}
.footer-cta-banner .cta-title{
    font-size: 32px;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 30px;
}
.footer-cta-banner .cta-caller-area .vc-theme-button,
.footer-cta-banner .cta-caller-area .cta-or{
    display: inline-block;
    margin-bottom: 10px;
}
.footer-cta-banner .cta-caller-area .cta-or{
    padding-left: 15px;
    padding-right: 15px;
    color: #fff;
}
@media(max-width: 767px){
    .footer-cta-banner .cta-title{ font-size: 25px;}
}

/* ---------------------------------
    Footer 
   --------------------------------- */

/* 
Footer Contact Strip
*/
.footer-cta-strip{
    background-color: #4d4f50;
    color: #fff;
    padding-top: 30px;
    padding-bottom: 30px;
}
.footer-cta-strip .strip-text{
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.4;
}
.footer-cta-strip .vc-theme-button a{
    border: 1px solid #fff;
}

/*
Footer Widget Area
*/
#footer-widget-area{
    background-color: #181818;
    color: #fff;
    padding-top: 50px;
    padding-bottom: 50px;
    font-size: 14px;
}
.footer-logo{
    max-width: 250px;
    max-height: 80px;
    margin-bottom: 15px;
}
.footer-widget-box .widget-title{
    font-size: 24px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 20px;
}
.footer-widget-box .widget-para{
    text-align: justify;
}
.footer-widget-box .widget-para-link{
    color: #4d4f50;
}

.footer-widget-box a{
    color: #fff;
    word-wrap: break-word;
}
.footer-widget-box a:hover{
    color: #3c3c3c;
}

.footer-widget-box .widget-nav-list,
.footer-widget-box .widget-post-list,
.footer-widget-box .widget-contact-list,
.footer-widget-box .widget-social-list{
    padding: 0;
    margin: 0;
    list-style-type: none;
}
.footer-widget-box .widget-nav-list li,
.footer-widget-box .widget-post-list li{
    margin-bottom: 10px;
}
.footer-widget-box .widget-nav-list li:last-child,
.footer-widget-box .widget-post-list li:last-child{
    margin-bottom: 0;
}

/* Footer Widget Nav List */
.footer-widget-box .widget-nav-list li a:before{
    content: '\f105';
    font-family: 'FontAwesome';
    padding-right: 7px;
}
.footer-widget-box .widget-nav-list li.active a{
    color: #4d4f50;
}

/* Footer Widget Post List */
.footer-widget-box .widget-post-list li{
   padding-bottom: 10px;
   border-bottom: 1px dashed rgba(255,255,255,0.15);
}
.footer-widget-box .widget-post-list li:last-child{
   padding-bottom: 0;
   border-bottom: none;
}
.footer-widget-box .widget-post-list li .post-date{
    color: rgba(255,255,255,0.7);
    margin-top: 5px;
    font-size: 13px;
}

/* Footer Widget Contact List */
.footer-widget-box .widget-contact-list li{
    margin-bottom: 20px;
}
.footer-widget-box .widget-contact-list li .list-icon{
    width: 30px;
    float: left;
    margin-top: 4px;
}
.footer-widget-box .widget-contact-list li .list-content{
    margin-left: 30px;
}
.footer-widget-box .widget-contact-list li .list-icon .fa{
    font-size: 18px;
}
.footer-widget-box .widget-contact-list li .list-content p{
    margin-bottom: 0;
}
.footer-widget-box .widget-contact-list li:after{
    content: '';
    display: table;
    clear: both;
}

/* Footer Widget Social List */
.footer-widget-box .widget-social-list{
    margin-top: 10px;
    margin-bottom: 10px;
}
.footer-widget-box .widget-social-list li{
    display: inline-block;
}
.footer-widget-box .widget-social-list li a{
    display: block;
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    border: 1px solid #fff;
    font-size: 16px;
    margin-bottom: 5px;
    background-color: transparent;
}
.footer-widget-box .widget-social-list li a:hover{
    border-color: #3c3c3c;
}

/*
Footer Bottom
*/
#footer-bottom{
    background-color: #F3F3F3;
    color: #777777;
    text-align: center;
    font-size: 13px;
    padding-top: 20px;
    padding-bottom: 20px;
    border-top:1px solid rgba(0,0,0,0.1);
}
#footer-bottom .developer-note a{
    color: rgba(255,255,255,0.7);
    font-size: 12px;
}
#footer-bottom .developer-note img{
    width: 25px;
    height: 25px;
    opacity: 0.8;
    margin-right: 7px;
}
#footer-bottom .copyright-note{
    margin-bottom: 0;
}

/*
Scroll Top
*/
#scroll-top{
    display: none;
    width: 30px;
    height: 30px;
    position: fixed;
    bottom: 20px;
    right: 15px;
    cursor: default;
    z-index: 999;
}
#scroll-top img{
    width: 100%;
    height: 100%;
    opacity: 0.8;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}
#scroll-top:hover img{
    opacity: 1;
}


@media(min-width: 768px){
    
    .footer-cta-strip > .container > .row{
        display: flex;
        align-items: center;
    }
    .footer-cta-strip .strip-text{
        margin-bottom: 0;
        font-size: 20px;
    } 
    
    #footer-bottom .developer-note{
        text-align: right;
    }
    #footer-bottom > .container > .row{
        display: flex;
        align-items: center;
    }
    #scroll-top{
        width: 35px;
        height: 35px;
        bottom: 90px;
        right: 6%;
    }
}

@media(max-width: 991px){
    .footer-widget-box{
        padding-bottom: 30px;
        margin-bottom: 30px;
        border-bottom: 1px dashed rgba(255,255,255,0.5);
    }
}
@media(max-width: 767px){
    #footer-widget-area > .container > .row > .col-xs-12:last-child .footer-widget-box{
        border-bottom: none; 
        padding-bottom: 0;
        margin-bottom: 0;
    }
}

/* ---------------------------------
    Custom Pagination 
   --------------------------------- */

.pagination-wrapper{
    margin-bottom: 20px;
    text-align: center;
}
.pagination-wrapper:before{
    display: table;
    content: '';
    clear: both;
}
.pagination-wrapper span,
.pagination-wrapper a {
    display: inline-block;
}
.pagination-wrapper a.page-numbers,
.pagination-wrapper .current{
    background-color: #fff;
    color: #282828;
    width: 40px;
    height: 40px;
    padding-top: 6px;
    border-radius: 50px;
    line-height: 26px;
    text-align: center;
    margin-bottom: 5px;
    margin-right: 6px;
    font-size: 14px;
    border: 1px solid #282828;
}
.pagination-wrapper a.page-numbers:hover {
    background-color: #282828;
    color: #fff;
}
.pagination-wrapper span.page-num {
    margin-right: 10px;
    padding: 0 15px;
    height: 30px;
    line-height: 32px;
    text-align: center;
    background-color: #ebebeb;
    border-radius: 50px;
    font-size: 14px;
}
.pagination-wrapper span.dots {
    padding: 0;
    color: gainsboro;
}
.pagination-wrapper .current {
    background-color: #282828;
    color: #fff !important;;
}

/* ---------------------------------
    Helpers 
   --------------------------------- */
.section-overlay{
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0,0,0,0.5);
    z-index: 1;
}

.txt-center{
    text-align: center;
}

.flex-parent{
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
}

/* Owl Carousel Pagination dots */
.owl-dots .owl-dot{
    display:inline-block;
    zoom:1;
    *display:inline;
}
.owl-dots .owl-dot span{
    width:12px;
    height:12px;
    margin:5px;
    background:transparent;
    border: 1px solid #4d4f50;
    display:block;
    -webkit-backface-visibility:visible;
    -webkit-transition:opacity 200ms ease;
    -moz-transition:opacity 200ms ease;
    -ms-transition:opacity 200ms ease;
    -o-transition:opacity 200ms ease;
    transition:opacity 200ms ease;
    border-radius:100%;
}
.owl-dots .owl-dot.active span, .owl-dots .owl-dot:hover span{
    background:#4d4f50;
    border-color: #4d4f50;
}

/* Owl Carousel Navigation Text */
.owl-nav > button{
    position: absolute;
    top: 45%;
    transform: translate(-50%);
    background-color: rgba(255,255,255,0.8);
    padding: 6px 7px;
    outline: 0;
}
.owl-carousel .owl-nav button.owl-prev,
.owl-carousel .owl-nav button.owl-next{
    padding: 6px 7px !important;
    background-color: rgba(255,255,255,0.8);
}
.owl-nav > button.owl-prev{
    left: 13px;
}
.owl-nav > button.owl-next{
    right: -13px;
}

.mb-10{ margin-bottom: 10px;}

/* ---------------------------------
    Contact us page template 
   --------------------------------- */
.contact-group{
    position: relative;
    margin-bottom: 20px;
    font-family: 'Santral-Medium';
    font-weight: 400;
}
.contact-group .cg-heading{
    margin-top: 0;
    margin-bottom: 5px;
    font-size: 15px;
}
.cg-heading .cg-h-icon{
    display: inline-block;
    margin-right: 5px;
    width: 15px;
    text-align: center;
}
.contact-group .cg-text{
    margin-bottom: 5px;
    font-family: 'Santral-Light';
    font-weight: 300;
    line-height: 1.3;
}
.contact-group .cg-text a{
    color: #444;
    white-space: nowrap;
}
.contact-group .cg-socials{
    padding: 0;
    margin: 0;
    list-style-type: none;
}
.contact-group .cg-socials li{
    display: inline-block;
    margin-right: 20px;
    margin-bottom: 15px;
}
.contact-group .cg-socials li a{
    display: inline-block;
    font-size: 20px;
}
.contact-group .cg-socials li a:hover,.contact-group .cg-text a:hover{
    color: #D54A29;
}
@media( max-width: 991px ){
    .pg-temp-contact .ptc-form{
        margin-bottom: 35px;
    }
    .pagination-wrapper a.page-numbers, .pagination-wrapper .current {
    width: 30px;
    height: 30px;
    padding-top: 2px;
    margin-right: 4px;
}
}

/* Bestweb Logo */
.bestweb-logo{
    position: fixed;
    z-index: 1000;
    left: 20px;
    bottom: 10px;
}
.bestweb-logo > a{
    display: inline-block;
}

@media(max-width: 767px){
    .bestweb-logo{
        left: 10px;
        bottom: 5px;
    }
    .bestweb-logo img{
        width: 100px;
        height: 100px;
    } 
}