@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Tiro+Devanagari+Hindi:ital,wght@0,400;1,400&display=swap');


/**

    1. General
        - Variables
        - Extra-outer

    2. Spacing

    3. Color
        - Skin-color, Skin-bg-color, Skin-border-color
        - darkGrey-color, darkGrey-bg-color
        - white-color, white-bg-color, white-border-color
        - Grey-color, Grey-bg-color, grey-border-color

    4. Pre-loader

    5. SocialIcon / TooltipTop

    6. Slick_dots/arrows

    7. TopBar

    8. Header
        - SiteBrand(logo)
        - SiteNavigation(Menu)
        - side-menu

    9. Footer
        - FirstFooter
        - SecondFooter

    10. GoTop BUtton

    11. Page-Title-Row

    12. Inner-Pages
        - single-pages-content
        - Classic_Blog
        - Single_Blog
        - Contact_page
        - Error_page
        - Map
    
    **/


/* ===============================================
    General
------------------------*/

/** Variables **/
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section { 
    display: block;
}
a, a:hover, a:focus, a:active {
    text-decoration: none;
    outline: none;
}
a, button, input { 
    outline: none; 
}
ol, ul{ 
    padding: 0; 
    margin: 0;
}
b, strong{ 
  font-weight: 700;
}
iframe{
  width: 100%;
  border: none;
  border-radius: 0 75px;
  height: 550px;
    filter: brightness(100%) contrast(100%) saturate(0%) blur(0px) hue-rotate(0deg);
  display: block;
}
p { 
    margin: 0 0 15px; 
}
*::-moz-selection { 
    background: #3f3c37; 
    color: #fff; 
    text-shadow: none; 
}
::-moz-selection { 
    background: #3f3c37; 
    color: #fff;
    text-shadow: none; 
}
::selection { 
    background: #3f3c37; 
    color: #fff; 
    text-shadow: none; 
}

textarea, input[type="text"], 
input[type="password"], 
input[type="datetime"], 
input[type="datetime-local"], 
input[type="date"], 
input[type="month"], 
input[type="time"], 
input[type="week"], 
input[type="number"], 
input[type="email"], 
input[type="url"],  
input[type="tel"], 
input[type="color"], 
.uneditable-input, 
select{
    font-family: inherit;
    -webkit-transition: border linear .2s,box-shadow linear .2s;
    -moz-transition: border linear .2s,box-shadow linear .2s;
    -o-transition: border linear .2s,box-shadow linear .2s;
    transition: border linear .2s,box-shadow linear .2s;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    vertical-align: middle;
    width: 100%;
    color: #000;
    padding: 12px 15px 12px;
    border-radius: 0;
    font-weight: 400;
    background-color: #fff;
    text-transform: inherit;
    border: 1px solid rgba(0, 43, 92, 0.08);
    font-size: 14px;
    outline: none;
    line-height: inherit;
    letter-spacing: 0.3px;
}
button, input[type="submit"], 
input[type="button"], 
input[type="reset"] {
    display: inline-block;
    text-decoration: none;
    font-size: 13px;
    line-height: 21px;
    font-weight: 500;
    padding: 11px 40px 11px;
    border: 2px solid transparent;
    border-radius: 0;
    color: var(--base-dark);
    -webkit-transition: all 0.25s ease;
    transition: all 0.25s ease;
    cursor: pointer;
    outline: none;
    -webkit-font-smoothing: antialiased;
}
.rs-layer input[type="email"]{
    border-color: transparent !important;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    padding-left: 0px !important;
    padding-right: 50px !important;
}
button:focus{
    box-shadow: none;
}
textarea:focus, 
input[type="text"]:focus, 
input[type="password"]:focus, 
input[type="datetime"]:focus, 
input[type="datetime-local"]:focus, 
input[type="date"]:focus, 
input[type="month"]:focus, 
input[type="time"]:focus, 
input[type="week"]:focus, 
input[type="number"]:focus, 
input[type="email"]:focus, 
input[type="url"]:focus, 
input[type="tel"]:focus, 
input[type="color"]:focus {
    border: 1px solid transparent;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    -webkit-appearance: searchfield;
}

/* clears the 'X' from Internet Explorer */
input[type=search]::-ms-clear {  display: none; width : 0; height: 0; }
input[type=search]::-ms-reveal {  display: none; width : 0; height: 0; }

/* clears the 'X' from Chrome */
input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-results-button,
input[type="search"]::-webkit-search-results-decoration { display: none; }

textarea::placeholder,
textarea::-moz-placeholder,
textarea::-webkit-input-placeholder,
select::placeholder,
select::-moz-placeholder,
input::placeholder,
input::-moz-placeholder,
input:-ms-input-placeholder,
input::-webkit-input-placeholder {   
  color: var(--base-bodyfont-color) !important;
}
menu, ol, ul {
    margin: 16px 0;
    padding: 0 0 0 25px;
}

/** Typography Variable **/
:root {
    --base-bodyfont: "Poppins", Tahoma, Geneva, sans-serif;
    --base-bodyfont-Size: 16px;
    --base-bodyfont-color:#727272;    
    --base-skin: #3f3c37;
    --base-dark: #000000;
    --base-grey: #e6e5e1;
    --base-white: #ffffff;
    --base-headingfont: "Tiro Devanagari Hindi", Arial, Helvetica, sans-serif;
    --base-headingfont-color: #000000;
}   

/** Typo Colors **/
.border-color { color: #ece9e0;}
.bodyfont-color { color: var(--base-bodyfont-color);}
.headingfont-color { color: var(--base-headingfont-color); }

/** Background Colors **/
.bg-base-skin { background-color: var(--base-skin);}
.bg-base-dark { background-color: var(--base-dark);}
.bg-base-darkblack { background-color: var(--base-darkblack);}
.bg-base-grey { background-color: var(--base-grey);}
.bg-base-white { background-color: var(--base-white);}
  
/** Text Colors **/
.text-base-skin { color: var(--base-skin);}
.text-base-dark { color: var(--base-dark) !important;}
.text-base-grey { color: var(--base-grey);}
.text-base-white { color: var(--base-white);}

/** Bg-layer Colors **/
.bg-base-skin > .prt-bg-layer{background-color: var(--base-skin);}
.bg-base-dark > .prt-bg-layer{background-color: var(--base-dark);}
.bg-base-darkblack > .prt-bg-layer{background-color: var(--base-darkblack);}
.bg-base-grey > .prt-bg-layer{background-color: var(--base-grey);}
.bg-base-white > .prt-bg-layer{background-color: var(--base-white);}

.bg-base-skin >.prt-bg-layer >.prt-col-wrapper-bg-layer-inner{background-color: var(--base-skin);}
.bg-base-dark >.prt-bg-layer >.prt-col-wrapper-bg-layer-inner{background-color: var(--base-dark);}
.bg-base-darkblack >.prt-bg-layer >.prt-col-wrapper-bg-layer-inner{background-color: var(--base-darkblack);}
.bg-base-grey >.prt-bg-layer >.prt-col-wrapper-bg-layer-inner{background-color: var(--base-grey);}
.bg-base-white >.prt-bg-layer >.prt-col-wrapper-bg-layer-inner{background-color: var(--base-white);}

.text-base-white h1:not(.text-base-skin, .text-base-dark),
.text-base-white h2:not(.text-base-skin, .text-base-dark),
.text-base-white h3:not(.text-base-skin, .text-base-dark),
.text-base-white h4:not(.text-base-skin, .text-base-dark),
.text-base-white h5:not(.text-base-skin, .text-base-dark),
.text-base-white h6:not(.text-base-skin, .text-base-dark),
.text-base-white a:not(.text-base-skin, .text-base-dark),
.bg-base-dark h1, .bg-base-dark h2, .bg-base-dark h3,
.bg-base-dark h4, .bg-base-dark h5, .bg-base-dark h6,
.bg-base-darkblack h1, .bg-base-darkblack h2, .bg-base-darkblack h3,
.bg-base-darkblack h4, .bg-base-darkblack h5, .bg-base-darkblack h6,
.bg-base-skin h1, .bg-base-skin h2, .bg-base-skin h3,
.bg-base-skin h4, .bg-base-skin h5, .bg-base-skin h6  {
    color: var(--base-white);
}
.bg-base-dark .text-base-white a:not(.text-base-skin, .text-base-dark){color: var(--base-skin);}
.bg-base-dark .section-title h3{color: #fff;}
.bg-base-dark .section-title h3:before,
.bg-base-dark .section-title h3:after{
    color: #fff;
}
.bg-base-dark, .bg-base-skin {
    color: rgba(255,255,255,.50);
}
.bg-base-dark.text-base-white, .bg-base-skin.text-base-white {
    color: rgba(255,255,255,.950);
}

body { font-family: var(--base-bodyfont);
    font-weight: 400;
    font-size: var(--base-bodyfont-Size);
    line-height: 26px;
    color: var(--base-bodyfont-color);
    background-image: url("../images/bg-image/row-bgimage-02.jpg");
    letter-spacing: 0.3px
}
h1, h2, h3, h4, h5, h6 { 
    font-family: var(--base-headingfont); 
    margin-bottom: 15px; 
    font-weight: 400; 
    color : var(--base-headingfont-color);
}
h1 { font-size: 138px; line-height: 148px; }
h2 { font-size: 60px; line-height: 70px; }
h3 { font-size: 40px; line-height: 50px; }
h4 { font-size: 30px; line-height: 40px; }
h5 { font-size: 20px; line-height: 30px; }
h6 { font-size: 18px; line-height: 20px; }

.container-fluid{padding: 0 15px;}
.container {
    max-width: 1330px;
 padding: 0 15px;
}
.row:not(.g-0) {
    margin-left: -15px;
    margin-right: -15px;
}
.row:not(.g-0) > [class*='col-'] {
    padding-left: 15px;
    padding-right: 15px;
}

/** Extra-outer **/
body .page {
  overflow: hidden;
    position: relative;
    z-index: 10;
        overflow-x: hidden;
        letter-spacing: 0.3px;

}
body, html {
    width: 100%;
    overflow-x: hidden;
}
body .site-main {
    position: relative;
    z-index: 1;
    overflow: hidden;
    
}
body .page.sidebar-true .site-main{ 
    padding: 0;
    background-color: #fff;
}
body .page.sticky-column {
    overflow: unset;
    overflow-x: hidden;
}
a {
    color: var(--base-headingfont-color);
}
a:hover { color: var(--base-dark); }
a, img{
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -ms-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    width: 100%;
}
.text-capitalize{text-transform:capitalize;}
/*label { font-size: 14px; }*/
.fs-15 { font-size: 15px !important; line-height: 25px; }
.fs-16 { font-size: 16px !important; line-height: 24px; }
.fs-17 { font-size: 17px !important; line-height: 28px; }
.fs-18 { font-size: 18px !important; line-height: 26px; }
.fs-20 { font-size: 20px !important; line-height: 26px; }
.fs-22 { font-size: 22px !important; line-height: 35px; }

.lh-base {line-height: 20px!important;}

.fw-500 { font-weight: 500 !important; }
.fw-600 { font-weight: 600 !important; }
.fw-700 { font-weight: 700 !important; }

.box-shadow{ box-shadow: 0 0 9px 0 rgba(29, 33, 67, 0.10) }
.box-shadow_1{box-shadow: 0 0 10px 0 rgba(2, 20, 47, 0.08); }

.border-rad_0 {border-radius: 0;}
.border-rad_5 { border-radius: 5px;}
.border-rad_10 { border-radius: 10px;}
.border-rad_20 { border-radius: 20px;}
.border-rad_30 { border-radius: 30px;}

.alignleft {
    float: left;
}
.alignright {
    float: right;
}
.float-right{
    float: right;
} 
.z-index_1{ z-index: -1; }
.z-index-0{ z-index: 0; }
.z-index-1{ z-index: 1; }
.z-index-2{ z-index: 2; }
.z-index-9{ z-index: 9; }

.underline { position: relative; }
.underline:before {
    position: absolute;
    content: '';
    height: 1px;
    width: 100%;
    background-color: var(--base-white) !important;
    top: unset;
    bottom: 0px;
    left: 0;
    transition: all 0.1s ease 0s;
    clip-path: unset;
}
.underline:hover:before{
    background-color: var(--base-skin);
    transition: all 0.5s ease-in-out;
    background-size: 0 3px, 100% 3px;
}
.prt-btn-color-whitecolor.underline:before{ background-color: var(--base-white) !important; }
.prt-btn-color-whitecolor:hover.underline:before{ background-color: var(--base-white) !important; }
.prt-btn-color-darkcolor.underline:before{ background-color: var(--base-dark) !important; }
.prt-btn-color-darkcolor:hover.underline:before{ background-color: var(--base-skin) !important; }

.border_1 { border: 2px dashed #e7e7e7; }
.border-rounded { border-radius: 50%; }
.overlay-opacity-box {
    background: rgba(255, 255, 255, 0.80);
    padding: 70px 0;
    opacity: 1;
}
  .display-inline-block{
    display: inline-block;
  }
  
/* ===============================================
    Spacing
------------------------*/
/** Padding **/
.spacing-1 { padding: 40px 40px 45px; }
.p-0  { padding:0px !important; }
.p-10 { padding: 10px ! important ; }
.p-15 { padding: 15px ! important ; }
.p-20 { padding: 20px ! important ; }
.p-25 { padding: 25px ! important ; }
.p-30 { padding: 30px ! important ; }
.p-40 { padding: 40px ! important ; }
.p-45 { padding: 45px ! important ; }
.p-50 { padding: 50px ! important ; }
.p-0-15{padding:0px 15px!important;}

.pr-0{ padding-right: 0 !important ; }
.pr-2{ padding-right: 2px ! important ;}
.pr-3{ padding-right: 3px ! important ;}
.pr-5{ padding-right: 5px ! important ;}
.pr-6{ padding-right: 6px ! important ;}
.pr-10{ padding-right: 10px ! important ; }
.pr-15{ padding-right: 15px ! important ; }
.pr-20{ padding-right: 20px ! important ; }
.pr-25{ padding-right: 25px ! important ; }
.pr-30{ padding-right: 30px ! important ; }
.pr-35{ padding-right: 35px ! important ; }
.pr-40{ padding-right: 40px ! important ; }
.pr-45{ padding-right: 45px ! important ; }
.pr-50{ padding-right: 50px ! important ; }
.pr-60{ padding-right: 60px ! important ; }

.pl-0{ padding-left: 0px !important ; }
.pl-2{ padding-left: 2px ! important ; }
.pl-3{ padding-left: 3px ! important ; }
.pl-5{ padding-left: 5px ! important ; }
.pl-6{ padding-left: 6px ! important ; }
.pl-10{ padding-left: 10px ! important ; }
.pl-15{ padding-left: 15px ! important ; }
.pl-17{ padding-left: 17px ! important ; }
.pl-18{ padding-left: 18px ! important ; }
.pl-20{ padding-left: 20px ! important ; }
.pl-25{ padding-left: 25px ! important ; }
.pl-30{ padding-left: 30px ! important ; }
.pl-35{ padding-left: 35px ! important ; }
.pl-40{ padding-left: 40px ! important ; }
.pl-45{ padding-left: 45px ! important ; }
.pl-50{ padding-left: 50px ! important ; }
.pl-60{ padding-left: 60px ! important ; }
.pl-80{ padding-left: 80px ! important ; }

.pt-0{ padding-top: 0px !important ;}
.pt-4{ padding-top: 4px ! important ;}
.pt-5{ padding-top: 5px ! important ;}
.pt-10{ padding-top: 10px ! important ; }
.pt-15{ padding-top: 15px ! important ; }
.pt-20{ padding-top: 20px ! important ; }
.pt-23{ padding-top: 23px ! important ; }
.pt-25{ padding-top: 25px ! important ; }
.pt-30{ padding-top: 30px ! important ; }
.pt-35{ padding-top: 35px ! important ; }
.pt-40{ padding-top: 40px ! important ; }
.pt-45{ padding-top: 45px ! important ; }
.pt-50{ padding-top: 50px ! important ; }
.pt-55{ padding-top: 55px ! important ; }
.pt-70{ padding-top: 70px ! important ; }


.pb-0{ padding-bottom: 0px !important ; }
.pb-5{ padding-bottom: 5px ! important ; }
.pb-10{ padding-bottom: 10px ! important ; }
.pb-15{ padding-bottom: 15px ! important ; }
.pb-20{ padding-bottom: 20px ! important ; }
.pb-25{ padding-bottom: 25px ! important ; }
.pb-30{ padding-bottom: 30px ! important ; }
.pb-35{ padding-bottom: 35px ! important ; }
.pb-40{ padding-bottom: 40px ! important ; }
.pb-45{ padding-bottom: 45px ! important ; }
.pb-50{ padding-bottom: 50px ! important ; }
.pb-100{ padding-bottom: 70px ! important ; }

/** Margin **/
.mt-0{ margin-top: 0px !important ; }
.mt-5{ margin-top: 5px ! important ; }
.mt-10 { margin-top: 10px ! important ; }
.mt-12 { margin-top: 12px ! important ; }
.mt-15{ margin-top: 15px ! important ; }
.mt-20{ margin-top: 20px ! important ; }
.mt-25{ margin-top: 25px ! important ; }
.mt-30{ margin-top: 30px ! important ; }
.mt-35{ margin-top: 35px ! important ; }
.mt-40{ margin-top: 40px ! important ; }
.mt-45{ margin-top: 45px ! important ; }
.mt-47{ margin-top: 47px ! important ; }
.mt-50{ margin-top: 50px ! important ; }
.mt-60{ margin-top: 60px ! important ; }
.mt-65{ margin-top: 65px ! important ; }
.mt-70{ margin-top: 70px ! important ; }
.mt-80{ margin-top: 80px ! important ; }

.mt_5{ margin-top: -5px ! important ; }
.mt_10{ margin-top: -10px ! important ; }
.mt_15{ margin-top: -15px ! important ; }
.mt_20{ margin-top: -20px ! important ; }
.mt_25{ margin-top: -25px ! important ; }
.mt_30{ margin-top: -30px ! important ; }
.mt_35{ margin-top: -35px ! important ; }
.mt_40{ margin-top: -40px ! important ; }
.mt_50{ margin-top: -50px ! important ; }
.mt_100{ margin-top:-100px !important; }
.mt_130{ margin-top: -130px ! important; }
.mt_150{ margin-top: -150px ! important; }
.mt_200{ margin-top: -200px ! important; }
.mt_200{ margin-top: -300px ! important; }
.mt_620{margin-top:-620px !important;}


.mb-0{ margin-bottom: 0px !important ; }
.mb-8{ margin-bottom: 8px !important ; }
.mb-5{ margin-bottom: 5px ! important ; }
.mb-10{ margin-bottom: 10px ! important ; }
.mb-12{ margin-bottom: 12px ! important ; }
.mb-15{ margin-bottom: 15px ! important ; }
.mb-18{ margin-bottom: 18px !important ; }
.mb-25{ margin-bottom: 25px ! important ;}
.mb-20{ margin-bottom: 20px ! important ; }
.mb-30{ margin-bottom: 30px ! important ; }
.mb-35{ margin-bottom: 35px ! important ; }
.mb-40{ margin-bottom: 40px ! important ; }
.mb-45{ margin-bottom: 45px ! important ; }
.mb-50{ margin-bottom: 50px ! important ; }
.mb-55{ margin-bottom: 55px ! important ; }
.mb-65{ margin-bottom: 65px ! important ; }
.mb-600{ margin-bottom: 600px ! important ; }


.mb_5{ margin-bottom: -5px ! important ; }
.mb_10{ margin-bottom: -10px ! important ; }
.mb_12{ margin-bottom: -12px ! important ; }
.mb_15{ margin-bottom: -15px ! important ; }
.mb_20{ margin-bottom: -20px ! important ; }
.mb_25{ margin-bottom: -25px ! important ; }
.mb_30{ margin-bottom: -30px ! important ; }
.mb_35{ margin-bottom: -35px ! important ; }
.mb_40{ margin-bottom: -40px ! important ; }
.mb_45{ margin-bottom: -45px ! important ; }
.mb_50{ margin-bottom: -50px ! important ; }

.ml-0{ margin-left: 0px !important ; }
.ml-6{ margin-left: 6px ! important ; }
.ml-10{ margin-left: 10px ! important ; }
.ml-15{ margin-left: 15px ! important ; }
.ml-20{ margin-left: 20px ! important ; }
.ml-30{ margin-left: 30px ! important ; }
.ml-40{ margin-left: 40px ! important ; }
.ml-45{ margin-left: 45px ! important ; }
.ml-50{ margin-left: 50px ! important ; }

.ml_4{ margin-left: -4px !important ;}
.ml_10{ margin-left: -10px ! important ; }
.ml_15{ margin-left: -15px ! important ; }
.ml_20{ margin-left: -20px ! important ; }
.ml_25{ margin-left: -25px ! important ; }
.ml_30{ margin-left: -30px ! important ; }
.ml_35{ margin-left: -35px ! important ; }
.ml_40{ margin-left: -40px ! important ; }
.ml_50{ margin-left: -50px ! important ; }

.mr-0{ margin-right: 0px !important ; }
.mr-2{ margin-right: 0px !important ; }
.mr-5{ margin-right: 5px ! important ; }
.mr-6{ margin-right: 6px ! important ; }
.mr-10{ margin-right: 10px ! important ; }
.mr-15{ margin-right: 15px ! important ; }
.mr-20{ margin-right: 20px ! important ; }
.mr-25{ margin-right: 25px ! important ; }
.mr-30{ margin-right: 30px ! important ; }
.mr-35{ margin-right: 35px ! important ; }
.mr-40{ margin-right: 40px ! important ; }
.mr-50{ margin-right: 50px ! important ; }

.mr_10{ margin-right: -10px ! important ; }
.mr_15{ margin-right: -15px ! important ; }
.mr_20{ margin-right: -20px ! important ; }
.mr_25{ margin-right: -25px ! important ; }
.mr_30{ margin-right: -30px ! important ; }
.mr_35{ margin-right: -35px ! important ; }
.mr_40{ margin-right: -40px ! important ; }
.mr_50{ margin-right: -50px ! important ; }


/* ===============================================
    Pre-loader
------------------------*/
.blobs-wrapper {
    position: fixed;
    z-index: 999999;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: block;
    display: flex;
    text-align: center;
    margin: 0 auto;
    flex-direction: column;
    justify-content: center;
    background: #fff;
}
.loader-blob {
    width: 49px;
    height: 49px;
    border-radius: 50%;
    margin: 3em;
    text-align: center;
    display: block;
    margin: 0 auto;
    position: relative;
    vertical-align: middle;
}
.loader-blob,
.loader-blob:before,
.loader-blob:after {
    animation: 1.15s infinite ease-in-out;
    -o-animation: 1.15s infinite ease-in-out;
    -ms-animation: 1.15s infinite ease-in-out;
    -webkit-animation: 1.15s infinite ease-in-out;
    -moz-animation: 1.15s infinite ease-in-out;
}
.loader-blob:before,
.loader-blob:after {
    width: 100%; 
    height: 100%;
    border-radius: 50%;
    position: absolute;
    top: 0;
    left: 0;
}
.loader-blob { animation-name: loader-blob;
    -o-animation-name: loader-blob;
    -ms-animation-name: loader-blob;
    -webkit-animation-name: loader-blob;
    -moz-animation-name: loader-blob; }
@keyframes loader-blob {
    from { transform: scale(0); opacity: 1; }
    to   { transform: scale(1); opacity: 0; }
}
@-o-keyframes loader-blob {
    from { -o-transform: scale(0); opacity: 1; }
    to   { -o-transform: scale(1); opacity: 0; }
}
@-ms-keyframes loader-blob {
    from { -ms-transform: scale(0); opacity: 1; }
    to   { -ms-transform: scale(1); opacity: 0; }
}
@-webkit-keyframes loader-blob {
    from { -webkit-transform: scale(0); opacity: 1; }
    to   { -webkit-transform: scale(1); opacity: 0; }
}
@-moz-keyframes loader-blob {
    from { -moz-transform: scale(0); opacity: 1; }
    to   { -moz-transform: scale(1); opacity: 0; }
}


/*  ===============================================
    SocialIcon / TooltipTop
------------------------*/
ul.social-icons{ 
    list-style: none;
    margin: 0px;
    padding: 0px;
}
.social-icons li {
    display: inline-block;
    border: none;
    z-index: 1;
    position: relative;
}

.prt-header-style-02 .social-icons li:last-child,
.social-icons li:last-child{
    margin-right: 0px;
}
.social-icons li a{
    display: block;
    min-width: 26px;
    text-align: center;
}
.social-icons.circle li>a {
    border-width: 1px ;
    border-style: solid;
    height: 36px;
    width: 36px;
    line-height: 36px;
    text-align: center;
    display: block;
    background-color: transparent;
    font-size: 13px;
    border-radius: 50%;
     margin-right:5px ;
}
.social-icons.square li>a{
     border-width: 1px ;
    border-style: solid;
    height: 33px;
    width: 33px;
    line-height: 33px;
    text-align: center;
    display: block;
    background-color: transparent;
    font-size: 13px;
    color: var(--base-bodyfont-color);
     margin-right:5px ;
}

.social-icons.square li>a:hover{
    color: var(--base-white);
/*    background-color: var(--base-skin);*/
}
/*style1*/
ul.social-icons.style1 {
    box-sizing: border-box;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex: 0 1 auto;
    -ms-flex: 0 1 auto;
    flex: 0 1 auto;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    width: 100%;
    z-index: 0;
    position: relative;
}
ul.social-icons.style1 li{
    display: inline-block;
    flex: 1;
    margin: 0;
    padding: 0;
}
ul.social-icons.style1 li a{
    font-size: 17px;
    position: relative;
    text-transform: capitalize;
    transition: opacity .35s ease-in-out;
    height: 70px;
    line-height: 58px;
    width: 100%;
    border-radius: inherit;
    -webkit-transition: all 0.5s ease-in-out 0s;
    -moz-transition: all 0.5s ease-in-out 0s;
    -ms-transition: all 0.5s ease-in-out 0s;
    transition: all 0.5s ease-in-out 0s;
    border: 0;
    color: #fff;
    text-align: center;
}
ul.social-icons.style1 li i{ font-size: 20px; }
ul.social-icons.style1 li:nth-child(1) a{
    background-color: #4583bc;
    border: 8px solid #4583bc;
}
ul.social-icons.style1 li:nth-child(2) a{
    background-color: #2cbfd9;
    border: 8px solid #2cbfd9;
}
ul.social-icons.style1 li:nth-child(3) a{
    background-color: #ED1384;
    border: 8px solid #ED1384;
}
ul.social-icons.style1 li:nth-child(4) a{
    background-color: #0b84b3;
    border: 8px solid #0b84b3;
}
ul.social-icons.style1 li:hover:nth-child(1) a,
ul.social-icons.style1 li:hover:nth-child(2) a,
ul.social-icons.style1 li:hover:nth-child(3) a,
ul.social-icons.style1 li:hover:nth-child(4) a{
     border: 8px solid rgba(0, 0, 0, 0.20);
     color: #fff !important;
}
/*style2*/
ul.social-icons.style2 li a{
    display: block;
    font-size: 15px;
    width: 40px;
    height: 40px;
    text-align: center;
    line-height: 40px;
    border: 1px solid var(--base-dark);
    border-radius: 50px;
    margin-right: 0;
    background-color: #fff;
    color: var(--base-dark);
    transition: all 0.3s ease 0s;
}
ul.social-icons.style2 li a:hover{
    background-color: var(--base-skin);
    color: #fff;
    border: 1px solid #fff;
}
ul.social-icons.style2 li a:after,
ul.social-icons.style2 li a:before{  display: none; }

/*style3*/
ul.social-icons.style3 li{ margin: 5px 2px; }
ul.social-icons.style3 li a{
    text-transform: uppercase;
    color: var(--base-headingfont-color);
    font-weight: 600;
    font-size: 14px;
    padding: 2px 15px;
    border: 1px solid #e9e9e9;
    border-radius: 5px;
    background-color: var(--base-white);
}
ul.social-icons.style3 li a:hover{
    background-color: var(--base-skin);
    border: 1px solid var(--base-skin);
    color: var(--base-white);
}
h3.social-icons-title{
    font-size: 14px;
    line-height: 24px;
    font-weight: 400;
    color: var(--base-bodyfont-color);
    margin-bottom: 10px;
}

/* TooltipTop */
.tooltip-top{ position: relative; }
.tooltip:after, .tooltip:before, [data-tooltip]:after, [data-tooltip]:before {
    position: absolute;
    visibility: hidden;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    filter: alpha(Opacity=0);
    opacity: 0;
    -webkit-transition: opacity .2s ease-in-out,visibility .2s ease-in-out,-webkit-transform .2s cubic-bezier(.71,1.7,.77,1.24);
    -moz-transition: opacity .2s ease-in-out,visibility .2s ease-in-out,-moz-transform .2s cubic-bezier(.71,1.7,.77,1.24);
    transition: opacity .2s ease-in-out,visibility .2s ease-in-out,transform .2s cubic-bezier(.71,1.7,.77,1.24);
    -webkit-transform: translate3d(0,0,0);
    -moz-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
    pointer-events: none;
}
.tooltip:before, [data-tooltip]:before {
    z-index: 1001;
    border: 6px solid transparent;
    background: 0 0;
    content: "";
}
.tooltip-top:before, .tooltip:before, [data-tooltip]:before {
    margin-left: -6px;
    margin-bottom: -12px;
    border-top-color: var(--base-skin);
    border-top-color: var(--base-skin);
}
.tooltip-top:after, .tooltip-top:before, .tooltip:after, .tooltip:before, [data-tooltip]:after, [data-tooltip]:before {
    bottom: 100%;
    left: 50%;
}
.tooltip-bottom:before{
    margin-left: -6px;
    margin-bottom: -12px;
    border-top-color: var(--base-skin);
}
.tooltip-top:focus:after, .tooltip-top:focus:before, .tooltip-top:hover:after, .tooltip-top:hover:before, 
.tooltip:focus:after, .tooltip:focus:before, .tooltip:hover:after, .tooltip:hover:before, [data-tooltip]:focus:after, 
[data-tooltip]:focus:before, [data-tooltip]:hover:after, [data-tooltip]:hover:before {
    -webkit-transform: translateY(-12px);
    -moz-transform: translateY(-12px);
    transform: translateY(-12px);
}
.tooltip-top:after, .tooltip:after, [data-tooltip]:after {
    margin-left: -60px;
}
.tooltip:after, [data-tooltip]:after {
    z-index: 1000;
    padding: 8px;
    width: 120px;
    color: var(--base-white);
    background-color: var(--base-skin);
    content: attr(data-tooltip);
    font-size: 14px;
    line-height: 1.2;
    text-align: center;
    border-radius: 5px;
}
.tooltip:focus:after, .tooltip:focus:before, .tooltip:hover:after, .tooltip:hover:before, 
[data-tooltip]:focus:after, [data-tooltip]:focus:before, [data-tooltip]:hover:after, [data-tooltip]:hover:before {
    visibility: visible;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    filter: alpha(Opacity=100);
    opacity: 1;
}


/*  ===============================================
    Slick_dots/arrows
------------------------*/
.slick-slide{ border: 0; outline: 0; padding: 0 15px;}
.blog-section .slick-slide {
    border: 0;
    outline: 0;
    padding: 0 15px;
}
.slick_slider.no-gutters .slick-slide { padding: 0; }
.slick-slide_ver-sep .slick-slide.slick-active:not(.slick-current) > div:after{
    position: absolute;
    content: "";
    top: 0;
    left: -15px;
    height: 100%;
    width: 1px;
    background-color: #e4e4e4;
}
.prt-bgcolor-darkgrey .slick-slide_ver-sep .slick-slide.slick-active:not(.slick-current) > div:after,
.prt-bgcolor-skincolor .slick-slide_ver-sep .slick-slide.slick-active:not(.slick-current) > div:after{
    background-color: rgba(255,255,255,.3);
}
.slick_slider.slick_slider-opacity_block .slick-list {
    overflow: visible;
}
.slick_slider .slick-arrow {
    height: 37px;
    width: 37px;
    border-radius: 5px;
    z-index: 1;
    border: 0;
    color: inherit;
    background-color: rgba(255,255,255,.07);
    box-shadow: 0 0 10px 0 rgba(0, 43, 92, 0.08);
    border: 0;
}
.slick_slider .slick-next{ right: 0; }
.slick_slider .slick-prev:before, .slick_slider .slick-next:before {
    font-family: 'themify';
    font-size: 10px;
    line-height: 1;
    color: var(--base-dark);
    opacity: 1;
    font-weight: 900;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.slick_slider .slick-prev:before {
    content: "\e64a";
}
.slick_slider .slick-next:before {
    content: "\e649";
}
.slick-prev,.slick-next{
    font-size: 0;
    line-height: 0;
    position: absolute;
    top: 50%;
    display: block;
    width: 20px;
    height: 20px;
    padding: 0;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
    cursor: pointer;
    color: transparent;
    border: none;
    outline: none;
    background: transparent;
}

/* style1 */
.slick_slider.slick-arrow-style1 .slick-arrow{
    height: 50px;
    width: 50px;
    border-radius: 50px;
    z-index: 1;
    color: inherit;
    background-color: #fff;
    border: 1px solid #e9e9e9;
    overflow: hidden;
}
.slick_slider.slick-arrow-style1 .slick-next{ 
    left: -10px;
    top: 50%;
}
.slick_slider.slick-arrow-style1 .slick-prev {
    right: -10px;
    top: 50%;
}
.slick_slider.slick-arrow-style1 .slick-prev:before,
.slick_slider.slick-arrow-style1 .slick-next:before{
    font-size: 14px;
}
.slick_slider.slick-arrow-style1 .slick-prev:before {
    content: '\e826';
    font-family: 'fontello';
}
.slick_slider.slick-arrow-style1 .slick-next:before {
    content: '\e834';
    font-family: 'fontello';
}
.slick-prev.slick-arrow-style1,
.slick-next.slick-arrow-style1{
    font-size: 0;
    line-height: 0;
    position: absolute;
    top: 50%;
    display: block;
    width: 20px;
    height: 20px;
    padding: 0;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
    cursor: pointer;
    color: transparent;
    border: none;
    outline: none;
    background: transparent;
}
.slick_slider.slick-arrow-style1 .slick-next:hover:before,
.slick_slider.slick-arrow-style1 .slick-prev:hover:before{
    color: var(--base-white);
}
.slick_slider.slick-arrow-style1 .slick-next:hover,
.slick_slider.slick-arrow-style1 .slick-prev:hover{
    background-color: var(--base-skin);
    border-color: var(--base-skin);
}

/*slick-arrow-style2*/


.slick_slider_center.slick-arrow-style2 .slick-prev:before,
.slick_slider_center.slick-arrow-style2 .slick-next:before {
    font-family: 'themify';
    font-size: 10px;
    line-height: 1;
    color: #fff;
    opacity: 1;
    font-weight: 900;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.slick_slider_center.slick-arrow-style2 .slick-prev:before {
    content: "\e64a";
}
.slick_slider_center.slick-arrow-style2 .slick-next:before {
    content: "\e649";
}
.slick_slider_center.slick-arrow-style2 .slick-arrow{
    height: 30px;
    width: 30px;
    border-radius: 50px;
    z-index: 1;
    color: inherit;
    background-color: transparent;
    border: 2px solid #fff;
}
.slick_slider_center .slick-prev:hover:before,
.slick_slider_center .slick-next:hover:before{color: var(--base-white);}

.slick_slider_center.slick-arrow-style2 .slick-next{ 
    left: 48.6%;
    top: 545px;
}
.slick_slider_center.slick-arrow-style2 .slick-prev {
    left: 50.3%;
    top: 545px;
}
/*slick-dots
*/
.slick_slider.slick-dots-style1 ul.slick-dots {
    width: 100%;
    padding: 0;
    margin: 0;
    text-align: center;
}
.slick_slider.slick-dots-style1 ul.slick-dots li{
    display: inline-block;
    list-style: none;
    line-height: 0;
}
.slick_slider.slick-dots-style1 ul.slick-dots li button {
    height: 10px;
    width: 10px;
    border: 0;
    font-size: 0;
    padding: 0;
    border-radius: 50%;
    position: relative;
    margin: 0px 10px 0 0;
    background-color: rgba(255, 255, 255, 0.32);
}
.slick_slider.slick-dots-style1 ul.slick-dots{margin-top: 13px;}
.slick_slider.slick-dots-style1 ul.slick-dots li.slick-active button{
    background-color: #fff;
}


/*  ===============================================
    TopBar
------------------------*/
.top_bar {
    width: 100%;
    z-index: 3;
    height: 44px;
    line-height: 44px;
    position: relative;
    background-color: var(--base-dark);
    text-align: center;
    display: flex;
    align-items: center;
}
.top_bar_contact_item.text-center {
    font-size: 13px;
    line-height: 23px;
    color: rgb(255 255 255 / 80%);
    display: flex;
    align-items: center;
    justify-content: center;
}
.top_bar_icon {
    display: inline-block;
    margin-right: 8px;
    line-height: 6px;
}
.top_bar_icon i{
    font-size: 18px;
    line-height: 6px;
    color: var(--base-skin);
}
.top_bar .top_bar_contact_item a{ color: var(--base-white); padding-left: 6px; }
.top_bar .top_bar_contact_item a:hover{ color: var(--base-skin); }

/*  ===============================================
    Header
------------------------*/
/** SiteBrand(logo) **/
.site-branding{
    display: flex;
}
.prt-header-style-01 .site-branding {
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin-bottom: 0;
    font-size: 30px;
    line-height: 120px;

}
.prt-header-style-01 .site-branding h1{
    margin-bottom: 0;
    line-height: 0;
}
.menu-wrapper{
    height: 80px;
    line-height: 80px;
}
.site-branding a{
    height: 80px;
    line-height: 0px;
} 
.site-branding #logo-img{
    z-index: 1;
    position: relative;
    width: auto;
}
#site-header-menu .site-navigation ul.menu > li{
text-align: center;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    padding: 0 2px 0 2px;
}

#site-header-menu .prt-stickable-header .site-navigation ul.menu > li >a.active,
#site-header-menu .prt-stickable-header .site-navigation ul.menu > li >a:hover {
    color: var(--base-skin);
}
#site-header-menu .prt-stickable-header .site-navigation ul.menu > li.active >a{
    color: var(--base-dark);
}

/* header_extra */

#searchbox {
    align-items: center;
    background: transparent;
    width: 73px;
    position: relative;
    border-bottom: 1px solid black;
    top: 32px;
    line-height: 1;

}
.header_search_content{
    height: 80px;
    line-height: 80px;
}
.input-text {
    border: none;
    outline: none;
    background: transparent;
    font-size: 16px;
    color: var(--base-dark);
    padding: 0;
    width: 75px;
    padding-left: 24px;
    font-family: var(--base-headingfont);
    position: relative;
    top: 0px;
}
.header_search_content:before{
    border-bottom: 1px solid black;
}

.header-search {
    background: transparent;
    position: absolute;
    border: none;
    padding: 0;
    cursor: pointer;
    color: var(--base-dark);
    top: -1px;
}

.header-search i {
    font-size: 16px;
}


.header_extra { position: relative; }
.header_extra .contact_item.with-icon span{ 
    display: flex;
/*    align-items: center;*/
    padding-left: 15px;
    margin-left: 15px;
    position: relative;
}
.header_extra .contact_item.with-icon span:before{
    content: '';
    position: absolute;
    left: 0;
    width: 1px;
    height: 100%;
    background-color: #dedede;
}
.header_extra .contact_item.with-icon a{ 
    font-size: 16px;
    line-height: 16px;
    font-weight: 500;
}
.header_extra .contact_item.with-icon i{ 
    color: #67d449;
    font-size: 20px;
    line-height: 20px;
}
.header_extra .contact_item-link a{ font-size: 14px; line-height: 24px; font-weight: 400; }
.header_extra ul.social-icons{ margin-left: 22px; }
.header_extra ul.social-icons li a{
    font-size: 13px;
    line-height: 32px;
    font-weight: 500;
    width: 32px;
    height: 32px;
    border: 1px solid #dddddd;
    background-color: transparent;
    border-radius: 5px;
    text-align: center;
}
.header_extra ul.social-icons li a:hover{
    background-color: var(--base-dark);
    color: var(--base-skin);
}

/*/ sie-bar*/

.side-menu-container {
    position: relative;
    top: 0;
    bottom: 0;
    right: 0;
    margin-left: 40px;
}
.side-menu{ position: relative; height: 80px;}
.side-overlay .pr-side-overlay-layer.pr-bg-layer{
  background-color: rgba(0, 0, 0, 0.8);
  left: 0;
  right: 0;
  position: absolute;
}
div.pp_default .pp_social{
    display: none;
}
.side-menu a{
    display: block;
    text-align: center;
    font-size: 18px;
    line-height: 80px;
    color: #fff;
}
.side-menu a img{
    width: 31px;
    height: 30px;
    object-fit: cover;
}
.side-overlay.on .side{
    width: 520px;
    right: 0;
}
.side-overlay .side{
    display: inline-block;
    position: fixed;
    top: 0;
    right: -20px;
    width: 495px;
    padding: 200px  60px;
    z-index: 9;
    -webkit-transition: transform 0.4s ease;
    transition: transform 0.4s ease;
    -webkit-transform: translateX(500px);
    -ms-transform: translateX(500px);
    transform: translateX(500px);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
   background-image:url(../images/floatingbar-bg.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: scroll;
    background-position: 0% 0%;
    background-color: rgba(0, 0, 0, 0.8);
    overflow-y: scroll;
}
.sidebar-overlay{
    position: absolute;
    height: 1000px;
    width: 100%;
    top: 0;
    left: 0;
    background-color: var(--base-dark);
    opacity: 0.87;
}
.sidebar-image{
    display: inline-block;
    max-width: 32.5%;
    padding: 0 1.1400652% 2.2801304%;
    padding-left: 0;
    text-align: center;
    vertical-align: top;
    width: 100%;
    cursor: pointer;
}
.side-overlay.on .side .flotingbar-img{
    position: relative;
    margin-bottom: 35px;
}
.side-overlay.on .side .flotingbar-img img{
    width: auto;
    align-items: center;
}
.side-overlay.on .side{
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
    -webkit-transition: .4s ease-out;
    -moz-transition: .4s ease-out;
    -o-transition: .4s ease-out;
    -ms-transition: .4s ease-out;
    transition: .4s ease-out;
}
.side-overlay .flotingbar-title h2{
    font-size: 26px;
    line-height: 40px;
    margin-bottom: 25px;
    text-transform: capitalize;
}
.side .close-side{
    position: fixed;
    top: 20px;
    right: 25px;
    height: 50px;
    width: 50px;
    z-index: 100;
    display: block;
    text-align: center;
    font-size: 18px;
    cursor: pointer;
    color: var(--base-white);
    background-color: var(--base-skin);
    border-radius: 50%;
    line-height: 55px;
}
.side .prt-detailss{
    padding-top: 30px;
}
.side .prt-detailss ul {
    padding-left: 0;
}
.side .prt-detailss ul>li {
    padding-bottom: 12px;
    padding-left: 37px ;
    list-style: none;
}
.side .prt-detailss li {
    position: relative;
    color: rgba(255, 255, 255, 0.85);
    font-size: 16px;
    line-height: 26px;
}
.side .prt-detailss li i{
    position: absolute;
    top: 0;
    left: 0;
    font-size: 20px;
    font-weight: normal;
    color: var(--base-skin);
}
.side .prt-detailss li a{

    color: var(--base-white);
}
.side .prt-detailss li a:hover li [data-tooltip]:before{
    background-color: var(--base-skin);
    color: var(--base-white);
}
.side .prt-detailss li span,
.side .prt-detailss li span a{
    color: #fff;
     font-size: 14px;
    line-height: 24px;  
}
.side .prt-social-share-links{
    margin: -15px 0 0;
}
.side .social-icons.circle li>a{
    border-color: var(--base-white) !important;
    color: white !important;
    transition: all .5s ease-in-out;
}
.side .social-icons.circle li:hover a{
    border-color: var(--base-skin) !important;
    background-color: var(--base-skin);
}


.side p{
    color: rgba(255, 255, 255, 255);
    position: relative;
    font-size: 16px;
    line-height: 26px;
}
.side aside.widget_text {
    margin: 35px 0 35px;
    padding-top: 35px;
    border-top: 1px solid rgba(255,255,255,.15);
}
.side aside.widget_text h3 {
    font-size: 19px;
    line-height: 30px;
    margin-bottom: 4px;
}
.side aside.widget_text .wrap-form.cta_form span.text-input {
    margin-bottom: 15px;
}
.side aside.widget_text .wrap-form.cta_form span.text-input input, 
.side aside.widget_text .wrap-form.cta_form span.text-input textarea, 
.side aside.widget_text .wrap-form.cta_form span.text-input select {
    border-radius: 5px;
    border: 0;
    background-color: #203d71;
    color: rgba(255,255,255,.40);
}
.side-overlay .widget_media_gallery {
    position: relative;
    margin: 0 -1.1666667% 1.75em;
        padding: 0;
        display: inline-block;
}
.side-overlay .gallery-item {
    display: inline-block;
    max-width: 32.33%;
    padding: 0 7px 18px;
    text-align: center;
    vertical-align: top;
    width: 100%;
    margin: 0;
}

/** SiteNavigation(Menu) **/
.site-navigation {
/*    position: relative;*/
    z-index: 2;
    padding: 0px 55px 0px 55px;
    height: 80px;
    justify-content: space-between;
}
.site-header-menu-inner {
    background-color: rgba(20, 28, 38, 0.01) !important;
}
.site-header-menu-inner .menu-link{
    padding-right: 22px;
}
nav.main-menu ul {
    position: relative;
    margin: 0;
}
nav.main-menu{
    float: right;
}
#site-header-menu .site-navigation ul.menu > li >a {
    font-size: 15px;
    line-height: 85px !important;
    font-weight: 400;
    display: block;
    text-decoration: none;
    z-index: 1;
    color: var(--base-dark); 
    padding:0px 15px 0px 15px;
    font-family: var(--base-headingfont);
    position: relative;
    margin:0px;
    letter-spacing: 0.3px;
    height: 79px;
    text-transform: capitalize;
}
#site-header-menu .site-navigation ul.menu > li:hover >a,
#site-header-menu .site-navigation ul.menu > li.active >a{
    
    color: var(--base-skin);
}
#site-header-menu .site-navigation ul.menu > li:hover >a:before,
#site-header-menu .site-navigation ul.menu > li.active >a:before{
    width: 100%;
    opacity: 1;
    color: var(--base-skin);


}
#site-header-menu .site-navigation ul.menu{ display: flex; padding: 0;}


/* hero_section */
.hero-section{
    position: relative;  
    margin: 0 72px;
    overflow: hidden;
    border-radius: 0 75px 0px 75px;
    padding: 140px 0;
    z-index: 0;
}
.bgimage-overlay {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.hero-section-image .hero-content-inner-image{
    margin: -270px 0 0;
}
.hero-section .hero-section-image {
    text-align: center;
    align-items: center;
    margin: -274px 0 0;
    padding-bottom: 75px;
}
.hero-section .hero-image-container .image-wrapper{
    position: relative;
    z-index: 1;
}
.hero-section .hero-image-container .image-wrapper img{
    width: auto;
}.hero-section .hero-image-container .image-wrapper img
.main-box{ 
    position: relative;
}

/* ===============================================
    Home-Pages
------------------------*/

.benner-title.style1 {
    position: relative;
    display: block;
    height: 100%;
}
.prt-banner-btn .rs-layer{
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    height: 112px!important;
    width: 176px!important;
    font-size: 16px;
    line-height: 26px;
    text-align: center;
}
.prt-banner-btn a:after,
.tm-banner-btn a:before{background-color: var(--base-white);}
.prt-banner-btn a:hover:after{background: url('../images/single-line-shap2_skin.svg') no-repeat center center;}
.prt-banner-btn a:hover:before{background: url('../images/single-line-shap1_skin.svg') no-repeat center center;}
.prt-banner-btn a{color:#cda274;}
.prt-banner-btn a:after,.tm-banner-btn a:before{
    -webkit-transition: all .1s ease .1s;
    -moz-transition: all .1s ease .1s;
    -ms-transition: all .1s ease .1s;
    -o-transition: all .1s ease .1s;
    transition: all .1s ease .1s;
}
.prt-banner-btn a:before{
    position: absolute;
    content: '';
    background: url('../images/single-line-shap1_white.svg') no-repeat center center;
    -webkit-mask-repeat: no-repeat;
    display: inline-block; 
    top: 0;
    bottom: 0px;
    left: 0px;
    right: 0; 
    width: 176px;
    height: 112px;
    text-align: center;
    -webkit-transition: all 0.5s ease 0s;
    -moz-transition: all 0.5s ease 0s;
    -ms-transition: all 0.5s ease 0s;
    -o-transition: all 0.5s ease 0s;
    transition: all 0.5s ease 0s;
    background-repeat: no-repeat;
}
.prt-banner-btn a:after{
    position: absolute;
    content: '';
      background: url('../images/single-line-shap2_white.svg') no-repeat center center;
    -webkit-mask-repeat: no-repeat;
    display: inline-block; 
    top: 0;
    bottom: 0px;
    left: 0px;
    right: 0; 
    width: 176px;
    height: 112px;
    text-align: center;
    -webkit-transition: all 0.5s ease 0s;
    -moz-transition: all 0.5s ease 0s;
    -ms-transition: all 0.5s ease 0s;
    -o-transition: all 0.5s ease 0s;
    transition: all 0.5s ease 0s;
    background-repeat: no-repeat;
}
 .benner-title.style1 .title-header .title {
    text-align:center;
    overflow: hidden;
        font-size: 138px;
    line-height: 148px;
}
 .benner-title.style1 .title-header .title .text-center{
          animation: moveUp 3s forwards;
          position: relative; 
}
  @keyframes moveUp {
      from {
         transform: translate3d(0,100px,0);
        opacity: 0; /* Initially invisible */
      }
      to {
       transform: translateZ(0); /* Move up 150px */
        opacity: 1; /* Fade in the element */
      }
    }
 .benner-title.style1 .title-header .title span.text-center span.text-frist{
     display: block; 
 }
.banner-section .benner-title.style1 .title-header .title span.text-more{
 float: right!important;
 display: flex;
}
 .benner-title.style1 .title-header .title span.text-more span.title-end {
     font-style: italic;
    color: var(--base-skin);
} 
 .benner-title.style1 .title-header .title span.text-more span.title-start {
    text-transform: uppercase;
    font-size: 20px;
    line-height: 30px;
    align-content: center;
    color: var(--base-white);
} 
 .benner-title.style1 .title-header .title  span.left-text{
    float:left;

 }
.banner-heading h2 {
    font-size: 96px;
    line-height: 120px;
    font-weight: 500;
    color: var(--base-white);
    white-space: nowrap;
    position: relative;
    z-index: 99;
}
.banner-heading { padding: 0px 0px 0px 0px; margin:-140px -350px 0px 280px; }
.banner-contact-phone a ,
.banner-contact-mail a {
    display: block;
    font-size: 16px;
    line-height: 16px;
    color: var(--base-white);
    margin-bottom: 20px;
}
.banner-contact-address p {
    font-size: 16px;
    color: var(--base-white);
    margin-bottom: 20px;
}
.banner-contact-info {
    position: relative;
    overflow: visible;
}
.banner-contact-info-inner {
    position: relative;
}
.banner-contact-info-overlay {
    position: absolute;
    top: -30%;
    left: -50%;
    width: 598px;
    height: 241px;
    max-width: 598px;
    background-image: url(../images/bg-co.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    overflow: visible;
}
.banner-content.block-2 {
    position: relative;
    z-index: 2;
    padding: 10px 0px 0px 60px;
    white-space: nowrap;
    text-align: center;
}
.banner-fid-block {
    position: relative;
    width: 300px;
    height: 300px;
}
.baner-fid-item {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}
.banner-fid-block-overlay {
    position: relative;
    width: 300px;
    height: 300px;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background-image: url(../images/fidbg.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    overflow: visible;
}
.banner-fid-content {
    position: absolute;
    bottom: 20px;
    right: -156px;
}
.banner-content.block-3 {
    position: relative;
    z-index: 2;
    padding: 345px 55px 0px 0px;
}
.banner-text {
    color: #85979B;
    margin-bottom: 20px;
}

/* ===============================================
    Footer
------------------------*/
.footer{
    margin: 0 70px 70px;
    border-radius: 0 70px;

    position: relative;
}
.footer .footer-col{
    padding: 0 0 0 30px !important;
}
.footer-wrapper{
    position: relative;
    
}

.footer ul>li{
    padding: 0 0 12px !important;
}
.footer.text-base-white,
.footer.text-base-white a {
    color: rgb(255, 255, 255);

}

/* first-footer*/
.footer-logo-wrapper{
    padding: 15px 0;
    margin-right: 30px;
}
.first-footer{
    padding: 25px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
}
.footer-logo img{
    width: auto;
    margin: 20px 0;
    padding-left: 15px;
}

.footer-menu-wrapper{
    padding: 0;
}
.footer-menu-link ul{
    list-style-type: none;
    margin:0 ;
    padding: 0;
}
.footer-menu-link ul li{
    display: inline-block;
    margin-right: 20px;
    padding: 0 !important;
    margin-top: 10px;
    margin-bottom: 10px;
}
.footer-menu-link ul li a{
    padding-left: 0;
    color: #d5d5d5 !important;
    font-weight: 400;
    font-size: 15px;
    line-height: 25px;
}
.footer-menu-link ul li a:hover,
.footer-service ul li a:hover,
.footer-widget p a:hover,
.widget-phone a:hover{
    color: white !important;
}
.footer .footer-col.footer-social-icons-wrapper{
    padding: 15px 0;
    padding-right: 40px !important;
}
.footer-social-icons-wrapper ul{
        list-style-type: none;
    margin:0 ;
    padding: 0;
}
.footer-social-icons-wrapper ul li{
    display: inline-block;
    padding: 0 !important;
    margin: 10px 0 9px;
}


.prt-socialbox-wrapper .prt-social-link-wrapper{
    background-color: var(--base-grey);
    margin:  0; 
    padding: 0 0 0 ;
}
.prt-socialbox-wrapper ul:before{
    content: '';
    position: absolute;
    height: 1px;
    width: 100%;
    top: 0;
    left: 0;
    background-color: #e6e6e6;
}
.prt-socialbox-wrapper .prt-social-link-wrapper .footer-social{
    background: transparent;
    color: var(--base-dark);
    border-radius: 0;
    transition: all 0.7sease-out;
    text-align: center;
    border-top: 1px solid #e6e6e6;
    border-right: 1px solid #e6e6e6;
    padding: 30px 0 20px;
    margin-bottom: 0;
}
.prt-socialbox-wrapper .prt-social-link-wrapper .fa-x-twitter{transform: rotate(0deg);}

.prt-socialbox-wrapper .prt-social-link-wrapper:hover {
color: var(--base-white);
}
.prt-socialbox-wrapper .prt-social-link-wrapper:last-child{
    border-right: 0px solid transparent;
}
.prt-socialbox-wrapper .prt-social-link-wrapper .footer-social a{
    color: var(--base-dark);
}
.prt-socialbox-wrapper .prt-social-link-wrapper .footer-social a .fa-brands{
    font-size: 20px;
    line-height: 30px;
    margin-right: 9px;
    font-weight: 400;
}
.prt-socialbox-wrapper .prt-social-link-wrapper .footer-social a .fa-brands.flaticon-twitter{
    font-size: 16px;
}
.prt-socialbox-wrapper .prt-social-link-wrapper .footer-social a .fa-brands .social-name{
    font-size: 17px;
    line-height: 27px;
    font-weight: 400;
}
.prt-socialbox-wrapper .prt-social-link-wrapper .footer-social:hover  a.pr-socialbox-icon-link{
    color: var(--base-white);
}
.prt-socialbox-wrapper .prt-social-link-wrapper .footer-social-facebook:hover{
background-color: #4583bc;

}
.prt-socialbox-wrapper .prt-social-link-wrapper .footer-social-twitter:hover{
    background-color: #2cbfd9;
}
.prt-socialbox-wrapper .prt-social-link-wrapper .footer-social-pinterest:hover{
    background-color: #cd1f29;
}
.prt-socialbox-wrapper .prt-social-link-wrapper .footer-social-linkedin:hover{
    background-color: #0b84b3;
}

/*second-footer*/
.second-footer{
    border-bottom: 1px solid rgba(255, 255, 255, .1)
}



/* Second Footer Styles */
.footer-box{
    margin: 60px 0 48px 0;
}
.widget-heading{
    padding-right: 100px;
}
.widget-heading h4{
    font-size: 34px;
    line-height: 46px;
    color: #fff !important;
    font-family: var(--base-headingfont);
    font-weight: 400;
    margin-top: 0;
    margin-bottom: 15px;
    letter-spacing: 0.3px;
    padding-right: 40px;
    padding-left: 15px;
}
.widget-title h5{
    font-family: var(--base-headingfont);
    font-weight: 400;
    font-size: 22px;
    line-height: 34px;
    margin-top: 0;
    margin-bottom: 15px;
    color: #fff !important;
}
.footer-address-1{
    margin-bottom: 30px;
}
.footer-address-2{
    margin-bottom: 62px;
}
.footer-widget p,
.footer-widget p a{
    font-size: 15px;
    line-height: 25px;
    color: #d5d5d5 !important;
    font-weight: 400;
    letter-spacing: 0.3px;
    /* word-wrap: break-word; */
}
.footer-widget p{ text-transform:capitalize; }
.footer-widget p a{ text-transform:none; }

.widget-phone a{
        font-size: 22px;
    line-height: 26px;
    color: #d5d5d5;
    font-family: 'Tiro Devanagari Hindi';
}
.footer-service ul{
    list-style-type: none;
    margin: 0;
    padding: 0;
}
.footer-service ul li a{
    padding-left: 0;
    color: #d5d5d5;
    font-weight: 400;
    font-size: 15px;
    letter-spacing: 0.3px;
    font-family: var(--base-bodyfont);
    line-height: 25px;
}
.widget-text p{
    color: rgba(255,255,255,.65) !important;
}
.footer-subscribe-inner{
    padding-right: 40px;
}
.form-btn button{
    padding: 25px 0 0;
    position: relative;
    border-bottom: 1px solid white !important;
   border-radius: 0px;
    background-color: transparent;
    font-weight: 400 !important;
}
.form-btn .btn:first-child:active{ border-color:transparent; color: var(--base-white);}
.form-btn .btn{
     font-size: 16px;
    line-height: 16px;
    color: white;
    font-family: var(--base-headingfont);
}


.footer-widget-box.prt-pr .prt-email p a,
.footer-widget-box.prt-pr .prt-contact-no h4 a {
    color: var(--base-white); 
    text-decoration: none; 
}
.footer-widget-box.prt-pr .prt-email p a {
    border-bottom: 1px solid var(--base-white);
    padding-bottom: 5px;
}
.footer-widget-box.prt-pr .prt-contact-no h4 {
    font-size: 22px;
    color: var(--base-white); 
}
.footer .widget .widget-title-h3{
    margin-bottom: 30px;
    font-weight: 400;
}
.second-footer .prt-adress.footer-widget-box.prt-pr{
        height: 100%;
    display: flex;
  margin-top: 60px;
}
.footer-widget-box.prt-pr .widget-text p,
ul.footer-menu-list li.footer-menu-item a{
    color: rgba(255, 255, 255, 0.46); 
}
ul.footer-menu-list li.footer-menu-item a{
    text-transform: capitalize;
}
.footer-widget-box.prt-pr .widget-text p{
    margin-bottom: 30px ;
    text-transform: capitalize;
}
.footer .widget ul {
    margin: 0;
    padding: 0;
    list-style: none;
}
.widget_nav_menu .menu-footer-service-link li {
    display:flex;
}
.widget_nav_menu ul li a:hover {
    color: var(--base-highlight); /* Optional: Add a hover effect color */
}
/* Responsive Styling (if needed) */
@media (max-width: 767px) {
    
    .footer-widget-box {
        margin-bottom: 20px; /* Add space between stacked widgets */
    }
}
.footer-widget-box.prt-pr { padding-right: 30px;}
.footer-widget-box.prt-pl { padding-left: 30px; }
.footer-menu-links,
ul.prt-list.footer-cta-list{ margin-top: 15px; }
.footer-widget-box .social-icons{ margin-top: 25px; }

/*.newsletter-form-main{ margin-top: 25px; }*/

.footer-widget-box .footer-img{ margin: 0 -15px; }
.widget-title-h3{
    margin-bottom: 30px;
    font-size: 24px;
    line-height: 34px;
    font-weight: 500;
    color: var(--base-white);
}
ul.footer-menu-list,
ul.footer-social-icons {
    margin: 0;
    padding: 0;
    list-style-type: none;
}
ul.footer-menu-list li.footer-menu-item a:hover,
.footer .widget-form p.cookies a:hover,
.copyright ul.footer-nav-menu li a:hover,
.copyright .cpy-text p a:hover ,
.footer-widget-box.prt-pr .prt-email p a:hover,
.footer-widget-box.prt-pr .prt-contact-no h5 a:hover,
.cookies a:hover,
.second-footer .footer-arrow i:hover,
.footer-widget-box.prt-pr .prt-contact-no h4 a:hover{ 
    color: var(--base-skin);
    border-color:var(--base-skin); }

/*.newsletter-form*/
.second-footer .newsletter-form {
    position: relative;
    margin-bottom: 0px;
    clear: both;
    display: inline-block;
    width: 100%;
}
.second-footer .newsletter-form .mailchimp-inputbox {
    display: table;
    width: 100%;
    padding: 0px;
    position: relative;
    z-index: 1;
    border-bottom: 1px solid #d5d5d5;
}
.second-footer .widget_nav_menu  h3.widget-title{
    margin-bottom: 6px;
    font-weight: 600;
    color: var(--base-white);
    font-size: 22px;
    line-height: 28px;
    margin-bottom: 22px;
    display: inline-block;
    position: relative;
}

.second-footer .newsletter-form input[type="email"] {
    background-color: transparent;
    font-size: 14px;
    height: 50px;
    color: #fff;
    margin-bottom: 5px;
    padding: 11px 15px;
    padding-left: 0px;
    font-weight: 400;
    letter-spacing: 0.3px;
    border: none;
}
.prt-footer-section .mailchimp-inputbox{
    border-bottom: 1px solid #d5d5d5 !important;
}


.second-footer .newsletter-form input[type="email"]::placeholder { color: rgba(255, 255, 255, 0.50); }
.second-footer .newsletter-form .footer-arrow {
    position: absolute;
    top: 15px;
    left: 0px;
    font-size: 16px;
    font-weight: 400;
    border: none;
    border-radius: 0;
    color:var(--base-white);
    box-shadow: none;
}
.second-footer .newsletter-form input:-webkit-autofill {
  -webkit-text-fill-color: white !important;
  background-color: transparent !important;
  transition: background-color 5000s ease-in-out 0s; /* Prevent flashing */
}
.second-footer .newsletter-form button[type="submit"] i {
    position: absolute;
    top: 20px;
    right: 0px;
    font-size: 15px;
    font-weight: 700;
    border: none;
    border-radius: 0;
    color: #fff;
    box-shadow: none;
}
.newsletter-form button[type="submit"] i:before{
    font-weight: 400;
}
/* checkbox  */
.footer input[type="checkbox" i]{
     height: 16px;
    width: 16px;
    border: 1px solid  var(--base-white);
/*    border-radius: 5px;*/
    vertical-align: middle;
    margin-bottom: 0px;
    margin-right: 8px;
        cursor: pointer;
}
.footer .widget-form p.cookies label{cursor: pointer;}
/*.footer input[type=checkbox]{
    visibility: hidden;
    position: absolute;
}*/
/*.footer input[type=checkbox] + label{
    height: 16px;
    width: 16px;
    border: 1px solid  var(--base-white);
    border-radius: 5px;
    vertical-align: middle;
    margin-bottom: 0px;
    margin-right: 8px;
}*/
/*.footer  input[type=checkbox] + label:before {
    height: 15px;
    width: 15px;
    border: 1px solid #fff;
    border-radius: 3px;
    vertical-align: middle;
    margin-bottom: 0px;
    margin-right: 8px;
}*/
.footer .widget-form p.cookies,
.footer .widget-form p.cookies a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    line-height: 24px;
}
.footer .widget-form p.cookies a {
    padding-bottom: 5px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.6);
    text-transform: capitalize;
}
/*.footer span:focus + label:before{
    content: "";
    border: solid;
    border-color: var(--base-skin);
    border-width: 0 2px 2px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    display: block;
    left: 5px;
    top: 2px;
    width: 4px;
    height: 8px;
    background-color: transparent!important;
    border-radius: 0;
    position: relative;
    vertical-align: middle;
}*/
.footer .widget-form p.cookies a.underline:before{
    height: 1px;
    background-color: rgb(255 255 255 / 60%);
}


/* footer-cta*/
ul.prt-list.footer-cta-list li{
    width: calc(49% - 1px);
    display: inline-block;
    padding: 6px 0;
}
ul.prt-list.footer-cta-list li,
ul.prt-list.footer-cta-list li a{
    font-size: 15px;
    line-height: 25px;
    color: rgba(255 255 255 / 0.70);
}
ul.prt-list.footer-cta-list li a:hover{ color: var(--base-skin) ; }

/*footer-social-icons*/
ul.footer-social-icons li a{
    width: auto;
    height: auto;
    border-radius: 16px;
    color: var(--base-white) !important;
    font-size: 13px;
    padding: 3px 20px;
    line-height: unset;
    letter-spacing: 0.3px;
    margin:  0 1px;
    border: 1px solid #a8a8a8;
}


ul.footer-social-icons li a:hover { background-color: var(--base-white); color: var(--base-skin) !important; }

/** copyright **/
.copyright{ 
    padding-top: 20px;
    padding-bottom: 15px; 
    padding-right:5px;
    padding-left: 5px;
}
.copyright .cpy-text{
    font-size: 14px;
    line-height: 24px;
    color: rgba(255, 255, 255, 0.65) !important;
    margin: 5px -5px 0;
}
.copyright  .prt-list.footer-nav-menu{color: rgba(255, 255, 255, 0.65) !important; }
.copyright .cpy-text p a{color: var(--base-white);}
.copyright .cpy-text p a:hover{color: var(--base-skin);}
.copyright .cpy-text p{ margin-bottom: 0;  text-transform:capitalize;}
.copyright .footer-nav-menu {
    list-style: none;
    margin: 0px;
    padding: 0px;
}
.copyright ul.footer-nav-menu li {
    display: inline-block;
    margin-left: 2px;
    padding-left: 9px;
    font-size: 14px;
    padding-bottom: 0px;
    position: relative;
}
.copyright ul.footer-nav-menu li a{color: rgba(255, 255, 255, 0.60); text-transform:capitalize;}
.copyright ul.footer-nav-menu li:not(:first-child):after {
    position: absolute;
    content: "|";
    top: 0;
    left: 0;
    color: rgba(255 255 255 / 0.70);
}
.copyright ul.footer-nav-menu li:first-child{
    padding-left: 0;
    margin-left: 0;
}

/*bottom-footer*/
.bottom-footer{
    background-color: transparent;
}
.copyright-text-wrapper{
    padding: 25px 15px 15px 15px;
}
.copyright-text-wrapper p{
    color: rgba(255,255,255,.65) !important;
}

.copyright-text-wrapper p a{
    color: #d5d5d5
}
.copyright-text-wrapper p a:hover{
    color: var(--base-white);
}
.copyright-text-wrapper p{
    font-size: 14px;
    line-height: 25px;
    font-family: var(--base-bodyfont);
    font-weight: 400;
    letter-spacing: 0.3px;
}


.bottom-footer-border{border-top: 1px solid  rgba(255 255 255 / 0.15);}
.bottom-footer .copyright{
    display: flex;
    align-items:center;
    text-align: center  ;
    justify-content:space-between;
}
.bottom-footer .copyright .cpy-text{
    text-align:left;
     flex-grow: 1; 
}

/* ===============================================
    GoTop BUtton
------------------------*/
#totop{
    font-weight: 900;
    color: #fff;
    display: none;
    position: fixed;
    right: 34px;
    bottom: 34px;
    z-index: 999;
    height: 0;
    width: 0;
    font-size: 0;
    text-align: center;
    padding-top: 0;
    line-height: 37px;
    background-color: var(--base-skin);
    -webkit-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}
#totop.top-visible {
    height: 43px;
    width: 43px;
    font-size: 23px;
    display: inline;
}



/* ===============================================
    Page-Title-Row
------------------------*/
.prt-page-title-row { 
    background-image: url(../images/bg-image/row-bgimage-11.png);
    position: relative;
    z-index: 1;
    background-position: bottom;
    background-size: cover;
    background-repeat: no-repeat;
    margin: 0 70px;
    padding: 145px 0;
    border-radius: 0 75px;
}
.prt-page-title-row-inner {
    position: relative;
    width: 100%;
    padding: 35px 0 0px;
    text-align: center;
}
.page-title-heading h2 {
    font-family: var(--base-headingfont);
    font-weight: 400;
    text-transform: capitalize;
    font-size: 100px;
    line-height: 110px;
    color: var(--base-white);
}
.page-title-heading h2 span{
    font-style: italic;
}
/*breadcrumb-wrappe*/
.prt-page-breadcrumb-wrapper{
     text-align: left;
    margin-top: 60px;
    background-color: white;
    padding: 31px 0;
    border-bottom: 1px solid var(--base-dark);
}
.breadcrumb-wrapper {
    align-items: center;
    display: flex;
}
.breadcrumb-wrapper span{
    font-weight: 400;
    font-size: 22px;
    line-height: 23px;
    font-family: var(--base-headingfont);
    position: relative;
    color: var(--base-skin);
   
}
.breadcrumb-wrapper span:nth-child(2){
      color: var(--base-dark);
}

.breadcrumb-wrapper span a{
    color: var(--base-dark);
}
.breadcrumb-wrapper span a:hover{
    color:var(--base-skin);
}

/*style1*/
.prt-page-title-row.style1 .prt-page-title-row-inner {
    padding: 60px 0;
    background-color: rgba(0,0,0,0.30);
}
.prt-page-title-row.style1 .prt-schedule{
    position: relative;
    background-color: rgba(255, 255, 255, 0.10);
    border: 1px solid rgba(255, 255, 255, 0.30);
    border-radius: 10px;
    padding: 41px 50px 50px;
    text-align: left;
}
.prt-page-title-row.style1 .prt-schedule-title h2{
    font-size: 34px;
    line-height: 44px;
    font-weight: 500;
    color: var(--base-white);
}
.prt-page-title-row.style1 .prt-schedule-title p{
    font-size: 18px;
    line-height: 25px;
    color: var(--base-white);
}
.prt-page-title-row.style1 .prt-schedule-block h3{
    font-size: 18px;
    line-height: 22px;
    font-weight: 600;
    color: var(--base-white);
    margin-bottom: 10px;
}
.prt-page-title-row.style1 .prt-schedule-block p{
    color: var(--base-white);
}

/*style2*/
.prt-page-title-row.style2{
    background-image: url(../images/pagetitle-bg01.jpg);
}
.prt-page-title-row.style2 .prt-page-title-row-inner{ 
    text-align: left; 
    background-color: rgba(0,0,0,0.30);
    padding: 65px 0;
}
.prt-page-title-row.style2 .prt-page-title-row-heading{
    padding-right: 100px;
}
.prt-page-title-row.style2 .page-title-heading h3{
    font-size: 24px;
    line-height: 34px;
    font-weight: 400;
    color: var(--base-white);
}
.prt-page-title-row.style2 .page-title-heading h2 {
    font-size: 54px;
    line-height: 64px;
    font-weight: 600;
    margin-bottom: 23px;
    color: var(--base-white);
    font-family: var(--base-headingfont);
}
.prt-page-title-row.style2 .page-title-desc p{ color: rgba(255, 255, 255, 0.70); margin-bottom: 0; }
.prt-page-title-row.style2 .prt-pagetitle-appointment-block{
    position: relative;
    border: 1px solid rgba(255 255 255 / 0.15);
    background-color: rgba(255 255 255 / 0.08);
    border-radius: 10px;
    padding: 20px 30px 40px;
}
/*style3*/
.prt-page-title-row.style3 .prt-page-title-row-inner{
    padding: 97px 0 105px;
    min-height: 400px;
}

/*style4*/
.prt-page-title-row.style4 .prt-page-title-row-inner{
    padding: 100px 0 100px;
}
.prt-page-title-row.style4 .page-title-heading h3{
    display: inline-block;
    padding: 8px 30px;
    background-color: var(--base-skin);
    border-radius: 10px;
    margin-bottom: 20px;
    font-size: 15px;
    line-height: 25px;
}
.prt-page-title-row.style4 .page-title-heading h2{
    font-size: 54px;
    line-height: 64px;
    font-weight: 600;
}
.prt-page-title-row.style4 .user-id { 
    margin: 0 auto;
    padding-top: 10px;
    text-align: center;
}
.prt-page-title-row.style4 span.user-image img { border-radius: 50%; }
.prt-page-title-row.style4 span.auther-name {
    font-size: 16px;
    font-weight: 400;
    color: var(--base-white);
    padding: 3px 10px;
    display: inline-block;
}

/* ===============================================
    Inner-Pages
------------------------*/

/*------------------------------------------------------------------------------*/
/*  single_services
/*------------------------------------------------------------------------------*/ 
.prt-service-single-content-area div:not(.featured-title) > h3 { font-size: 40px;line-height: 50px;margin-bottom: 28px; }
.prt-service-single-content-area p:not(:last-child) { margin-bottom: 25px; }
.prt-service-single-content-area .prt_fatured_image-wrapper { position: relative; overflow: hidden;}
.prt-service-single-content-area img { width: 100%; }

.prt-service-description .progress-bar-content h3.title{
    font-size: 26px;
    line-height: 36px;
    margin-bottom: 15px;
}
.aboutservice-block {

    text-align: center;
    padding: 40px 40px 30px;
    border-radius: 10px;
}
.aboutservice-content {
    text-align: center;
    position: relative;
}
.aboutservice-content h3.title {
    font-size: 28px;
    line-height: 38px;
    font-weight: 500;
}


/*------------------------------------------------------------------------------*/
/*  single_team
/*------------------------------------------------------------------------------*/ 
.team-details-content {
    padding: 50px;
    background-color: var(--base-grey);
    border-radius: 10px;
}
.team-details-image-wrapper .team-details-image {
    border-radius: 10px;
}
.team-details-info-title h3 {
    font-size: 34px;
    line-height: 44px;
    margin-bottom: 10px;
}
.team-details-info-position span {
    font-weight: 500;
    color: var(--base-dark);
}
.team-details-info-desc p {
    margin-top: 25px;
    margin-bottom: 10px;
}
.team-details-social {  margin-top: 20px; }
.team-details-social .social-icons {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}
.team-details-social .social-icons li a{
    font-size: 14px;
    width: 35px;
    height: 35px;
    line-height: 35px;
    color: var(--base-darkblack);
    border: 1px solid #dddddd;
    border-radius: 5px;
    margin-right: 5px;
    margin-bottom: 10px;
}
.team-details-social .social-icons li a:hover {
    background-color: var(--base-dark);
    border-color: transparent;
    color: #fff;
}
.team-details-form-block {
    position: relative;
    padding: 68px 120px 80px;
    background-color: var(--base-grey);
    border-radius: 10px;
}
.team-details-form-block h3 {
    font-size: 48px;
    line-height: 60px;
    margin-bottom: 48px;
}
/*team-details-list*/
.team-details-list li {
   padding: 6px 0;
}
.team-details-list li span {
    font-size: 16px;
    line-height: 26px;
    font-weight: 500;
    color: var(--base-headingfont-color);
    padding-right: 10px;
}
.team-details-list li a {
    font-size: 15px;
    color: var(--base-bodyfont-color);
}
.team-details-list li a:hover { color: var(--base-skin); }

/*team-member-single*/
.prt-team-member-single-content .prt-team-member-single-list
.prt-team-member-single-content .prt-team-member-single-list .prt-team-member-single-title{
   font-size: 30px;
   line-height: 40px;
   margin-bottom: 0;
}
.prt-team-member-single-content .prt-team-member-single-list .prt-team-member-single-position{
  padding: 0;
  margin: 0;
}.prt-team-member-single-content .prt-team-member-detail {
    padding-top: 70px;
    padding-right: 30px;
    padding-left: 30px;
}
.prt-team-member-single-content .prt-team-member-single-list  .prt-team-member-content{
      margin-top: 18px;
}
.prt-team-member-single-content  .team-profile-contact .prt-team-extra-detail-wrapper
{
    margin-bottom:30px;
    margin-left: -25px;
}
 .team-profile-contact ul li{
        position: relative;
     font-size: 16px; 
    line-height: 24px;
    display: block;
    float: left;
    padding: 8px 0 10px 0px;
    width: 100%;
 }
  .team-profile-contact ul li .prt-team-list-title{
    display:inline-block;
       font-size: 16px;
       line-height: 26px;
       color: var(--base-dark);
      font-weight: 500;
        margin-right: 5px;
        text-transform:capitalize;
  }
.team-profile-contact ul li .prt-team-list-value{
    font-size: 16px;
    line-height: 26px;
    display: inline;
    margin-top: 2px;
  }
.team-profile-contact ul li .prt-team-list-value a:hover{color:var(--base-skin);}
.team-profile-contact ul li.team-extra-details-line-phone .prt-team-list-value a{
        font-size: 16px;
        line-height: 26px;
        display: inline;
        margin-top: 2px;
}
.prt-team-member-detail  .prt-social-links-wrapper{
    margin-top: 30px;
}
.social-icons.square li>a:hover{
  color: var(--base-skin);
}
.prt-team-member-single-content h3 {
        margin-bottom: 24px;
}

/*------------------------------------------------------------------------------*/
/*  single_portfolio
/*------------------------------------------------------------------------------*/ 
.prt-case-single-content div:not(.featured-title) > h3,
.prt-case-single-content-area h3,
.process-content h3{ font-size: 40px; line-height: 50px; }
.prt-about-solutions-content{ 
    background-color: var(--base-white);
    border-radius: 10px;
    box-shadow: 0px 0px 30px rgb(0 0 0 / 8%);
    padding: 40px 40px 40px;
}
.prt-about-solutions-content h3{ font-size: 26px; line-height: 36px; }
.prt-about-solutions-img{ box-shadow: 0px 0px 30px rgb(0 0 0 / 8%); }

/*------------------------------------------------------------------------------*/
/*  Project_patient
/*------------------------------------------------------------------------------*/ 
.prt-patient-single-content-wrapper-innerbox h2{ font-size: 40px; line-height: 50px; }
.prt-patient-single-content-area div:not(.featured-title) > h3,
.patient-section-title h3.title { font-size: 26px; line-height: 36px; }

.prt-patient-detail-box { 
    position: relative;
    padding-right: 110px;
}
.prt-patient-detail-box:before{
    content: '';
    position: absolute;
    width: 1px;
    height: 100%;
    right: 38px;
    background-color: var(--base-dark);
}
.prt-patient-detail-box .prt_patient_image-wrapper { 
    border-radius: 10px;
    overflow: hidden;
}
.prt-portfolio-description.prt-patient-detail-box p:last-child {
    margin-bottom: 0;
}
.prt-patient-single-detail-box ul.project-details{
    margin: 26px 0 0;
    padding: 0;
}
.prt-patient-single-detail-box ul.project-details li {
    position: relative;
    display: block;
    font-size: 17px;
    font-weight: 400;
    color: var(--base-headingfont-color);
    padding: 14px 0;
    border-bottom: 1px solid rgb(0 0 0 / 20%);
}
.prt-patient-single-detail-box ul.project-details li > span { 
    display: inline;
    font-size: 18px;
    font-weight: 600;
}
.prt-patient-single-detail-box ul.project-details li:last-child { padding: 11px 0 0 0;border-bottom: 0 }
.prtpatient-single-content-area {
    padding-top: 15px;
}
.prt-patient-single-content-area h2 {
    text-align: left;
    font-size: 32px;
    line-height: 1;
    margin-bottom: 25px;
}
.prt-patient-single-content-area .social-media-block {
    display: block;
    clear: both;
    padding: 3px 0 25px;
    border-bottom: 1px solid #e6e9ef;
}
.prt-patient-single-content-area .social-icons li>a {
    border: 1px solid #e7e7e7;
    background-color: transparent;
    height: 36px;
    width: 36px;
    line-height: 36px;
    text-align: center;
    display: block;
    font-size: 14px;
    border-radius: 5px;
    color: #676b72;
}
.prt-patient-single-content-area .social-icons li>a:hover {
    border-color: var(--base-white);
    color: var(--base-white);
    background-color: var(--base-skin);
}
.prt-patient-single-content-area .prt-patient-single-category span {
    color: var(--base-skin);
    font-size: 15px;
    font-weight: 600;
}
.prt-patient-single-content-area .prt-patient-single-category a:not(:hover ) {
    color: inherit;
}
/*.prt-nextprev-bottom-nav {
    margin-top: 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}*/
.patient-img img{ border-radius: 30px; }

/*------------------------------------------------------------------------------*/
/*  Single_Blog
/*------------------------------------------------------------------------------*/

.sidebar.prt-sidebar-right{
    padding-top: 65px;
    padding-bottom: 58px;
}
.prt-post-featured-wrapper.prt-featured-wrapper{
    margin-bottom: 20px;
}
.prt-blog-single-content{
    padding: 8px 0 30px;
    margin: 0;
}

.prt-post-entry-header .post-meta{
    margin-bottom: 13px;
    position: relative;
}
.sidebar.prt-sidebar-right .prt-blog-single .post-meta span.prt-meta-line a{
    font-size: 14px;
    color: var(--base-bodyfont-color);
    padding-right: 23px;
    position: relative;
}
.prt-meta-line i{
    font-size: 14px;
}
.prt-meta-line i:before{
    font-family: themify;
    font-style: normal;
    font-weight: 400;
    display: inline-block;
    text-decoration: inherit;
    width: 14px;
    margin-right: 2.8px;
    text-align: center;
    font-variant: normal;
    text-transform: none;
    line-height: 14px;
    margin-left: 2.8px;
}
.sidebar.prt-sidebar-right .prt-blog-single .post-meta span.prt-meta-line:hover a{
    color: var(--base-dark);
}
.sidebar.prt-sidebar-right .prt-box-desc-text p{
    margin-bottom: 20px;
    position: relative;
}
.sidebar.prt-sidebar-right .prt-blog-single blockquote{
    display: block;
    padding: 38px 30px 20px 45px;
    position: relative;
    border-left: 5px solid;
    border-color: var(--base-skin);
    color: var(--base-dark);
    margin: 40px 0 46px;
    font-weight: 400;
    font-size: 20px;
    line-height: 30px;
    min-height: 100px;
    border-radius: 0;
    z-index: 1;
    position: relative;
    font-style: italic;
    background-color: var(--base-white);
}
.sidebar.prt-sidebar-right .prt-blog-single blockquote:before{
    background: url(../images/quote-02.svg) no-repeat 100% 100%;
    background-repeat: no-repeat;
    width: 50px;
    content: '';
    position: absolute;
    height: 38px;
    width: 50px;
    transform: rotateZ(180deg);
    top: 25px;
    left: 25px;
    opacity: .5;
    z-index: -1;
    display: block;
}
.sidebar.prt-sidebar-right .prt-list.style2 li{
    justify-content: normal;
    font-size: 14px;
    line-height: 24px;
    border: none;
    margin-bottom: 0;
    padding-bottom: 8px;
    padding-top: 0;
}
.sidebar.prt-sidebar-right .prt-list.prt-list-style-icon li i:before{
    font-family: "FontAwesome";
    content: '\f192';
    font-style: normal;
    font-weight: 400;
    speak: never;
    display: inline-block;
    text-decoration: inherit;
    width: auto;
    top: 12px;
    margin-right: 2.8px;
    text-align: center;
    font-variant: normal;
    text-transform: none;
    line-height: 0;
    margin-left: 2.8px;
    height: auto;
    color: var(--base-skin);
}
.sidebar.prt-sidebar-right .prt-list.style2 ul li span{
    font-size: 14px;
    line-height: 24px;
    color: var(--base-bodyfont-color);
}
.sidebar.prt-sidebar-right .prt-list.prt-list-style-icon .prt-list-li-content{
    color: var(--base-bodyfont-color);
    font-size: 16px;
    line-height: 26px;
    font-weight: 400;
    padding-left: 30px !important;
    text-transform: capitalize;
}
.sidebar.prt-sidebar-right .social-media-block{
    display: block;
    clear: both;
    padding-top: 35px;
    border-top: 1px solid rgba(0,0,0,.302);
    border-bottom: none;
    padding-bottom: 0;
}

.sidebar.prt-sidebar-right .prt-blog-single h3{
    font-size: 16px;
    margin-top: 0;
    margin-right: 3px;
    font-weight: 500;
    padding-right: 10px;
    position: relative;
    margin-bottom: 0;
    line-height: 26px;
}

.sidebar.prt-sidebar-right .prt-blog-single .prt-social-share-wrapper ul li{
    display: inline-block;
    padding-right: 7px;
    padding-top: 0;
    margin: 0;
}
.sidebar.prt-sidebar-right .prt-blog-single-content .social-media-block .social-icons li a{
    background-color: transparent;
    border: 1px solid rgba(0, 0, 0, .302);
    border-radius: 50px;
    color: var(--body-blackfont-color);
    height: 34px;
    width: 34px;
    line-height: 34px;
    text-align: center;
    display: block;
    font-size: 13px;
    margin: 0;
}
.sidebar.prt-sidebar-right .prt-blog-single-content .social-media-block .social-icons li a i.flaticon-twitter{
    position: relative;
    top: 2px;
}
.sidebar.prt-sidebar-right .prt-blog-single .social-icons.square li>a:hover{
    color: var(--base-dark) !important;
    background-color: transparent !important;
    scale: none !important;
}
.sidebar.prt-sidebar-right .prt-btn-wrapper{
    float: right;
    margin-bottom: 7px;
}
.sidebar.prt-sidebar-right .prt-btn-wrapper a{
    padding: 7px 25px;
    font-size: 14px;
    display: inline;
/*    margin-right: 3px;*/
    font-weight: 600;
    text-transform: capitalize;
    font-family: var(--base-bodyfont);
}
.sidebar.prt-sidebar-right .prt-btn.btn-inline{
    background-color: transparent;
    border: 1px solid rgba(0, 0, 0, .302);
    border-radius: 30px; 
}
.sidebar.prt-sidebar-right .prt-btn.btn-inline:hover{
    background-color: var(--base-skin);
    color: var(--base-white) !important;
    border-color: var(--base-skin) !important;
}
.sidebar.prt-sidebar-right .prt-blog-classic-box-comment{
    margin-top: 35px;
}
.sidebar.prt-sidebar-right .comments-area{
    padding-top: 20px;
}
.sidebar.prt-sidebar-right .comment-respond h2{
    font-size: 26px;
    line-height: 30px;
    margin: 0 0 15px !important;
    text-transform: none;
}
.sidebar.prt-sidebar-right .comment-respond .comment-form p{
    margin-bottom: 20px;
    font-size: 15px;
    font-style: italic;
}
.sidebar.prt-sidebar-right .comment-respond .comment-form textarea,
.sidebar.prt-sidebar-right .comment-respond .comment-form input[type="text"]{
    background-color: transparent !important;
    text-transform: inherit;
    border: 1px solid #a8a8a8;
    font-size: 14px;
    outline: none;
    line-height: 26px;
    vertical-align: middle;
    width: 100%;
    color: var(--base-dark);
    padding: 11px 15px;
    font-weight: 400;
    border-radius: 0;
}
.sidebar.prt-sidebar-right .comments-area .comment-form .comment-form-author,
.sidebar.prt-sidebar-right .comment-respond .comment-form .comment-form-email,
.sidebar.prt-sidebar-right .comment-respond .comment-form .comment-form-url{
    width: 32%;
    display: inline-block;
    margin-bottom: 20px;
}
.sidebar.prt-sidebar-right .comment-respond .comment-form .comment-cookies{
    font-style: normal;
}
.sidebar.prt-sidebar-right .comment-form  .prt-btn-wrapper{
    float: left;
}
.sidebar.prt-sidebar-right .comment-form .prt-btn.btn-inline{
    border-color: var(--base-dark);
    border-radius: 0;
    padding: 15px 30px 13px;
    font-size: 16px;
    line-height: 16px;
    font-weight: 600;
    height: auto;
}

.widget-area.sidebar-right .input-text{
    width: 100%;
    background-color: var(--base-white);
}
.prt-sidebar-right .widget.widget-search input[type="search"]{
    background-color: var(--base-white);
    color: var(--base-dark);
    border-radius: 0;
}
.prt-sidebar-right .widget.widget-search input::placeholder {
    color:  #7b8095 !important;  
    opacity: 1;
    font-family: var(--base-bodyfont);   
}

.prt-sidebar-right  .widget-area.sidebar-right aside{
    margin: 0 !important;
    padding: 15px 0 15px;
}
.sidebar .widget-area.widget_border .widget.widget-search.with-title{
    padding-top: 0 !important;
}
.sidebar.prt-sidebar-right .widget.widget-categories .widget-title,
.sidebar.prt-sidebar-right .widget.widget-recent-post .widget-title{
    font-family: var(--base-headingfont);
    font-weight: 400;
    font-size: 22px;
    line-height: 37px;
    color: var(--base-dark);
}
.widget.widget-recent-post ul{
    margin: 0;
}
.widget.widget-recent-post ul li{
    display: flex;
    padding-top: 0;
    padding-bottom: 9px;
}
.widget.widget-recent-post ul li a{
    display: contents;
}
.widget.widget-recent-post ul li a img{
    margin-right: 18px;
    padding-top: 3px;
}
.widget ul.prt-recent-post-list>li .post-date{
    display: inline;
    font-size: 12px;
    margin-bottom: 8px;
    padding: 0;
}
.widget ul.prt-recent-post-list>li>.post-detail a,
.prt-sidebar-right .widget.widget-categories.with-title ul li a{
    font-family: var(--base-bodyfont);
    font-weight: 400;
    font-size: 16px !important;
    line-height: 26px;
    letter-spacing: 0.3px;
    color: var(--base-dark);
    padding-top: 0;
}
.prt-sidebar-right .widget.widget-categories.with-title ul li a:hover{
    color: var(--base-bodyfont-color);
}
.widget .tagcloud{
    padding: 0 32px 0 0;
}
.widget .tagcloud a {
    display: inline-block;
    padding: 7px 21px;
    margin: 0 5px 8px 0;
    border: 1px solid rgba(0, 0, 0, .302);
    border-radius: 15px;
    font-size: 15px!important;
    background-color: transparent;
    font-weight: 500;
    color: var(--base-dark);
    width: auto;
}
.widget .tagcloud a:nth-last-child(-n+2) {
    margin-bottom: 10px;
}
.social-icons.circle li>a{
    border: 1px solid rgba(0, 0, 0, .302) !important;
    background-color: transparent;
    color: var(--base-bodyfont-color) !important;
}
.widget.widget-banner{
    background: url(../images/blog/blog-12.jpg);
}
 .prt-sidebar-right .widget.widget-banner .widget-title {
    font-family: var(--base-headingfont);
    font-weight: 400;
    font-size: 22px;
    line-height: 37px;
    color: #fff;
    margin-bottom: 12px;
 }
.custom-heading{
    font-size: 20px;
    line-height: 30px;
    margin-bottom: 0;
    color: #fff;
    font-family: var(--base-headingfont);
    font-weight: 400;
}
.custom-heading a{
    color: var(--base-white);
}



.blog-content-area .profile-block{
    background-color: var(--base-white);
    border: 1px solid #e7e7e7;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.07);
    padding: 30px 30px 30px 26px;
    border-radius: 15px;
    text-align: center;
}
.blog-content-area .profile-block .profile-img{
    border-radius: 50%;
    overflow: hidden;
    width: 120px;
    margin: 0 auto;
}
.blog-content-area .profile-block h3.profile-title {
    font-size: 18px;
    line-height: 28px;
    font-weight: 600;
    position: relative;
    margin-top: 15px;
    margin-bottom: 20px;
    padding-bottom: 70px;
    position: relative;
}
.blog-content-area .profile-block h3.profile-title:before{
    content: '';
    position: absolute;
    width: 1px;
    height: 50px;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgb(0 0 0 / 10%);
    margin: 0 auto;
}
.prt-blog-single-content  .social-icons.square li>a:hover{
    color: var(--base-white);
   background-color: var(--base-skin);
}
.prt-blog-single-content .blog-single-title h3 {
    font-size: 33px;
    line-height: 43px;
    font-family: var(--base-headingfont);
}
.profile-social-icons ul li{
    display: inline-block;
    font-size: 15px;
    font-family: var(--base-headingfont);
    padding: 2px 30px 4px;
    border: 1px solid rgb(0 0 0 / 20%);
    border-radius: 50px;
    margin: 10px 5px 0;
    width: 150px;
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}
.profile-social-icons ul li:hover{
    background-color: var(--base-dark);
    border: 1px solid var(--base-dark);
}
.profile-social-icons ul li:hover a{
    color: var(--base-white);
}
.prt-blog-single .prt-blog-single-content h2.entry-title{
    font-size: 44px;
    line-height: 54px;
}
.prt-blog-single h3 {
    font-size: 26px;
    line-height: 36px;
}
.prt-blog-single blockquote {
    display: block;
    position: relative;
    font-size: 22px;
    line-height: 35px;
    text-align: left;
    background: var(--base-grey);
/*    border: 1px solid #e7e7e7;*/
    padding: 55px 35px 30px;
    margin: 0;
}
.prt-blog-single-content .social-media-block .social-icons li a {
    color: var(--base-headingfont-color);
    width: 34px;
    height: 34px;
    line-height: 34px;
    border-radius: 5px;
    margin: 5px 0 5px 3px;
}
.prt-blog-single-content .social-media-block .social-icons li a:hover{
    background-color: var(--base-dark);
    border-color: var(--base-dark);
    color: var(--base-white);
    
}
.prt-blog-single blockquote .qoute-text{
    color: var(--base-bodyfont-color);
    font-family: var(--base-headingfont);
    font-weight: 500;
    font-size: 20px;
    line-height: 36px;
    font-style: italic;
    position: relative;
}
.prt-blog-single blockquote .qoute-text:after{
    content: "";
    position: absolute;
    top: -38px;
    left: 25px;
    width: 88px;
    height: 74px;
    background-image: url(../images/icon11.png);
    background-repeat: no-repeat;
}
.prt-blog-single blockquote cite{
    font-size: 16px;
    font-style: normal;
}
.prt-blog-single blockquote cite span{
    font-weight: 400;
    color: var(--base-bodyfont-color);
    font-size: 16px;
    padding-left: 5px;
}

/*.blog-cta*/
div#prt-blog-single{
    padding-top: 82px;
  padding-bottom: 70px;
} 
.prt-blog-single .blog-cta{
    border-radius: 30px;
    text-align: center;
    padding: 65px 50px 39px;
}
.prt-blog-single .blog-cta h3{
    font-size: 24px;
    line-height: 34px;
}
.prt-blog-single .blog-cta a{ border-bottom: 1px solid rgba(255, 255, 255, 0.30);padding-bottom: 2px; }
/*post-meta-block*/
.prt-blog-single .post-meta-block {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0 30px;
    margin-bottom: 25px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.10)
}
.prt-blog-single .post-meta img{ 
    max-width: 81px;
    height: 81px;
    object-fit: cover;
    border-radius: 50%; 
    margin-right: 22px;
}
.prt-blog-classic .post-meta,
.prt-blog-single .post-meta span.prt-meta-line{
    font-size: 18px;
    line-height: 28px;
    color: var(--base-headingfont-color);
    display:inline-block    ;
}
.prt-blog-single .post-meta span.prt-meta-line.date{
     padding-right: 15px;
     margin-right: 15px;
     position: relative;
     border-right: 1px solid rgba(0, 0, 0, 0.10);
}
/*social-media-block*/

.prt-blog-single .prt-blogbox-sharebox{
    border-top: 1px solid  #f3f3f3;
    padding-top: 35px;
    display: flex;
    justify-content: space-between;
}

.prt-blog-single  .social-icons.square li>a{
    color:var(--base-dark)!important    ;
    border-color: #e3e3e3;
}
.prt-blog-single  .social-icons.square li>a:hover,
.prt-blog-single .widget .tagcloud a:hover  {
    color:var(--base-white)!important   ;
    transform: scale(1)!important   ;
    border-color: var(--base-skin);
    background-color: var(--base-skin)!important    ;

}
.prt-blog-single .widget .tagcloud a{
    color:var(--base-dark);
        background-color: #f5f5f5;
        border:none ;
        border:1px solid  #f5f5f5;
}
.prt-blog-single-box-comment{
    margin-top: 45px;
}
.social-media-block {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0 15px;
    border-bottom: 1px solid #ece9e0;
    border-top: 1px solid #ece9e0;
}
.prt-blog-single span.prt-tags-links-title{
    font-size: 15px;
    color: var(--base-dark);
    font-weight: 700;
}
.prt-blog-single .social-media-block .prt-tags-links a {
    font-size: 15px;
    display: inline-block;
    font-weight: 500;
    font-family: var(--base-headingfont);
    color: var(--base-dark);
    padding: 2px 15px 4px;
    border-radius: 50px;
    border: 1px solid rgb(0 0 0);
    margin: 5px 5px 5px 0;
}
.prt-blog-single .social-media-block .prt-tags-links a:last-child {
    margin: 0;
}
.prt-blog-single .social-media-block .prt-tags-links a:hover {
    background-color: var(--base-dark);
    color: #fff;
    border: 1px solid var(--base-dark);
}
.prt-blog-single .prt-social-share-wrapper{
    display: flex;
    align-items: center;;
    padding-top: 0;
}
.prt-blog-single .prt-social-share-wrapper ul li {
    display: inline-block;
    margin: 5px 6px 5px 0;
}
.prt-blog-single .prt-social-share-wrapper ul li:last-child { margin: 5px 0 5px 0; }
.prt-blog-single .prt-social-share-wrapper ul li a {
    border: 1px solid rgba(0 0 0 / 0.10);
    text-align: center;
    display: block;
    font-size: 15px;
    padding: 0;
    color: rgba(0, 0, 0, 0.50);
    font-weight: 400;
    border-radius: 50px;
    width: 38px;
    height: 38px;
    line-height: 38px;
}
.prt-blog-single .prt-social-share-wrapper ul li a:hover {
    background-color: var(--base-skin);
    color: #fff;
    border: 1px solid var(--base-skin);
}

.prt-social-share-wrapper a{
    border-radius: 10px;
    padding: 7px 20px;
    font-size: 15px;
    font-family: var(--base-headingfont);
    font-weight: 400;
    margin-right: 5px;
    background-color: var(--base-grey);
}


/*blog-comment*/
.prt-blog-classic-box-comment_1 h3{
    font-size: 34px;
    line-height: 44px;
    font-weight: 500;
}
.comments-area {
    position: relative;
}
.comments-area h3.comment-reply-title{
    font-size: 28px;
    line-height: 38px;
    margin-bottom: 14px
}
.comments-area p { margin-bottom: 20px; }
.comment-form textarea, .comment-form input[type="date"],
.comment-form input[type="text"], 
.comment-form input[type="email"], .comment-form input[type="url"],
.comment-form select {
    vertical-align: middle;
    width: 100%;
    color: var(--base-dark);
    padding: 9px 15px;
    font-weight: 500;
    background-color: var(--base-grey);
    text-transform: inherit;
    font-size: 15px;
    line-height: inherit;
    border: none;
    border-radius: 10px;
}
.comment-form label { display: unset; }
.comment-form input[type="text"]:focus,
.comment-form input[type="email"]:focus,
.comment-form input[type="date"]:focus {
  border-color: transparent;
  border: 1px solid var(--base-skin);
}
.comment-form textarea::placeholder,
.comment-form input[type="email"]::placeholder,
.comment-form input[type="date"]::placeholder,
.comment-form input[type="text"]::placeholder,
.comment-form input[type="date"]::placeholder,
.comment-form select::placeholder{
    color: var(--base-bodyfont-color);
}
.comment-form span.text-input select { color: rgb(255 255 255 / 80%); }
.comment-form span.text-input option { color: var(--base-dark); }
.comment-form select{ padding: 11px 20px 14px 0; color: rgba(0, 0, 0, 0.50); }
.comments-area .comment-form .comment-form-author, 
.comments-area .comment-form .comment-form-phone,
.comments-area .comment-form .comment-form-email,
.comments-area .comment-form .comment-form-age,
.comments-area .comment-form .comment-form-doctors,
.comments-area .comment-form .comment-form-date {
    position: relative;
    float: left;
    width: 49%;
    margin-right: 2%;
}
.comments-area .comment-form span.date-bday input[type="date"] {
    background-color: var(--base-dark);
    padding: 18px 15px 12px 0;
    color: rgb(255 255 255 / 80%);
}
.comments-area .comment-form input[type="date"]::-webkit-calendar-picker-indicator {
    filter: invert(1);
}
.comments-area .comment-form .comment-form-phone,
.comments-area .comment-form .comment-form-age,
.comments-area .comment-form .comment-form-date {
    margin-right: 0;
}
.comments-area .comment-form .select-option{ position: relative; }
.comments-area .comment-form .comment-form-diseases{ position: relative; width: 100%; float: left; }
.comments-area .comment-form select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    color: #888;    
}
.comments-area .comment-form .select-option:before{
    right: 20px;
    position: absolute;
    content: "\e64b";
    top: 0;
    bottom: 0;
    font-size: 13px;
    line-height: 57px;
    pointer-events: none;
    font-family: 'themify';
}
.comments-area .comment-form span.text-input {
    margin-bottom: 15px;
    display: block;
    padding-top: 5px;
    position: relative;
}
.comments-area .comment-form span.text-input i {
    position: absolute;
    left: 0;
    top: 20px;
    opacity: .9;
    font-size: 16px;
    z-index: 1;
    color: rgb(255 255 255 / 80%);
}
.bg-img3 .comments-area .comment-form span.date-bday input[type="date"] { background-color: transparent; }

.comments-area_1 h3.comment-reply-title{
    font-size: 20px;
    line-height: 30px;
    margin-bottom: 25px;
    margin-top: 0;
    text-transform: uppercase;
    font-weight: 400;
}
.comments-area_1 p.comment-notes { 
    font-size: 16px;
    line-height: 26px;
    font-style: italic;
    color: var(--base-dark);
    margin-bottom: 25px;
}
.comments-area_1 textarea, .comment-form input[type="text"], 
.comments-area_1 input[type="email"], .comment-form input[type="url"] ,
.comments-area_1 input[type="author"], .comment-form input[type="author"] ,
.comments-area_1 input[type="web"], .comment-form input[type="web"] ,
.comments-area_1 .comment-form_1 .comment-form-author input[type="text"], 
.comments-area_1 .comment-form_1 .comment-form-email input[type="text"],
.comments-area_1 .comment-form_1 .comment-form-web input[type="text"] {
    text-transform: inherit;
    padding: 11px 15px;
    border: 1px solid rgba(0 0 0 / 0.10);
    background-color: var(--base-grey);
    border-radius: 10px;
    text-transform: capitalize;
}
.sidebar.prt-sidebar-right .prt-blog-classic-box-comment input:-webkit-autofill {
  -webkit-box-shadow: 0 0 0 1000px rgba(255, 255, 255, 0.1) inset !important;
  -webkit-text-fill-color: black !important;
  background-color: transparent !important;
  transition: background-color 5000s ease-in-out 0s; /* Prevent flashing */
}

.comments-area_1 input[type=checkbox] {
    margin: 0 6px 0 0;
}
.comments-area_1 span.checkbox{
    font-size: 15px;
    line-height: 25px;
    color: var(--base-dark);
}
.comments-area_1 .comment-form_1 textarea::placeholder,
.comments-area_1 .comment-form_1 input[type="text"]::placeholder{
    color: var(--base-bodyfont-color);
}
.comments-area_1 .comment-form_1 .comment-form-author, 
.comments-area_1 .comment-form_1 .comment-form-email,
.comments-area_1 .comment-form_1 .comment-form-web {
    position: relative;
    float: left;
    width: 32%;
    margin-top: 10px;
    margin-right: 2%;
}
.comments-area_1 .comment-form_1 .comment-form-web {
    margin-right: 0;
}
.comments-area_1 textarea:focus, 
.comments-area_1 input[type="text"]:focus, 
.comments-area_1 input[type="email"]:focus, 
.comments-area_1 input[type="author"]:focus,
.comments-area_1 input[type="web"]:focus,
.comments-area_1 input[type="url"]:focus { border: 1px solid var(--base-skin); }
.comments-area_1 .prt-btn-color-skincolor:not(.btn-inline):before {
    background-color: var(--base-dark);
}


/*------------------------------------------------------------------------------*/
/*  Contact_page
/*------------------------------------------------------------------------------*/ 
.prt_contact_widget_wrapper {
    position: relative;
    z-index: 1;
}
.contact-logo-block{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
.contact-logo-block h3{
    font-size: 16px;
    line-height: 26px;
    padding: 8px 0 8px 25px;
    margin: 0 0 0 25px;
    border-left: 1px solid rgba(31 99 6 / 0.10);
}
.prt-contact-block1 h3{
    font-size: 20px;
    line-height: 30px;
}
.prt-contact-block1 p.prt-time{
    color: rgba(255, 255, 255, 0.70);
    margin-bottom: 6px;
}
.prt_contact_widget_wrapper .rating-star{  margin-right: 15px; }
.prt_contact_widget_wrapper .rating-star li{
    display: inline-block;
    font-size: 15px;
    line-height: 25px;
    color: #ffa800;
   
}
.prt_contact_widget_wrapper span.headingfont-color{
    font-size: 26px;
    line-height: 36px;
    font-weight: 600;
}
.prt_contact_widget_wrapper h2.prt-logo{
    font-size: 56px;
    line-height: 66px;
    font-family: var(--base-headingfontone);
    color: var(--base-dark);
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 0;
}

/*------------------------------------------------------------------------------*/
/*  Map
/*------------------------------------------------------------------------------*/

#map iframe {
    filter: brightness(96%) contrast(92%) saturate(83%) blur(0px) hue-rotate(0deg);
}
.google_map-section{
   padding: 0 60px;
   
}