﻿/** ==========================================================================================

  Project :   abcHEALTH - Responsive Multi-purpose HTML5 Template
  Version :   Bootstrap 5.3.3
  Author :    Preyantechnosys

========================================================================================== */

/**

  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: 600;
}
iframe{
  width: 100%;
  border: none;
  display: block;
}
p { 
    margin: 0 0 15px; 
}
*::-moz-selection { 
    background-color: #3f9af7; 
    color: #fff; 
    text-shadow: none; 
}
*::-moz-selection { 
    background-image: #3f9af7;  
    color: #fff; 
    text-shadow: none; 
}
::-moz-selection { 
    background-color: #3f9af7; 
    color: #fff;
    text-shadow: none; 
}
::-moz-selection { 
    background-image: #3f9af7; 
    color: #fff;
    text-shadow: none; 
}
::selection { 
    background-color: #3f9af7; 
    color: #fff; 
    text-shadow: none; 
}
::selection { 
    background-image: #3f9af7; 
    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="search"], 
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: #666666;
    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: 0px;
}
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: #fff;
    -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 #ff382f;
    -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(--body-font-color) !important;
}
menu, ol, ul {
    margin: 16px 0;
    padding: 0 0 0 25px;
}

/** Typography Variable **/
:root {
    --base-bodyfont: "Nexa";
    --base-bodyfont-Size: 16px;
    --base-bodyfont-color: #737373;    
    --base-skin: #ffcc53;
    --base-dark: #000000;
    --base-grey: #f8f8f8;
    --base-white: #ffffff;
    --base-first-gradientcolor: #66defe;
    --base-second-gradientcolor: #3f9af7;    
    --base-gradient: linear-gradient(to right,var(--base-first-gradientcolor) ,var(--base-second-gradientcolor));
    --base-headingfont: "Nexa";
    --base-headingfont-color: #000000;
}

/** Typo Colors **/
.border-color: { color: #e7e7e7;}
.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-grey { background-color: var(--base-grey);}
.bg-base-white { background-color: var(--base-white);}
.bg-base-gradient { background-image: linear-gradient(to right,var(--base-first-gradientcolor) 0%,
                    var(--base-second-gradientcolor) 100%,var(--base-first-gradientcolor) 100%);}
  
/** Text Colors **/
.text-base-skin { color: var(--base-skin);}
.text-base-dark { color: var(--base-dark);}
.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-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-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-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);
}
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: 60px; line-height: 72px; }
h2 { font-size: 50px; line-height: 60px; }
h3 { font-size: 18px; line-height: 28px; }
h4 { font-size: 30px; line-height: 40px; }
h5 { font-size: 20px; line-height: 26px; }
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;
}
body .site-main {
    background-color: #fff;
    position: relative;
    z-index: 1;
}
body .page.sidebar-true .site-main{ 
    padding: 0;
    background-color: #fff;
}
a {
    color: var(--base-dark);
}
a:hover { color: var(--base-second-gradientcolor); }
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;
}
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 25px 0 rgba(0 0 0 / 0.06); }
.box-shadow_1{box-shadow: 0 0 10px 0 rgba(2, 20, 47, 0.08); }

.border-rad_5 { border-radius: 5px;}
.border-rad_10 { border-radius: 10px;}
.border-rad_15 { border-radius: 15px;}
.border-rad_25 { border-radius: 25px;}

.alignleft {
    float: left;
}
.alignright {
    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);
    bottom: 0px;
    left: 0;
}
.prt-btn-color-whitecolor.underline:before{ background-color: var(--base-white); }
.prt-btn-color-whitecolor:hover.underline:before{ background-color: var(--base-white); }
.prt-btn-color-darkcolor.underline:before{ background-color: var(--base-dark); }

.border_1 { border: 1px solid #e7e7e7; }
.border-rounded { border-radius: 50%; }
.overlay-opacity-box {
    background: rgba(255, 255, 255, 0.80);
    padding: 70px 0;
    opacity: 1;
}

/* ===============================================
    Spacing
------------------------*/
/** Padding **/
.spacing-1 {margin: 0 70px -175px !important; }
.spacing-2 { padding: 50px 30px ; }
.spacing-3 { padding: 0 60px; }

.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 ; }

.pr-0{ padding-right: 0 !important ; }
.pr-5{ padding-right: 5px ! 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 ; }

.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-10{ padding-left: 10px ! important ; }
.pl-15{ padding-left: 15px ! 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 ; }

.pt-0{ padding-top: 0px !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 ; }

.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 ; }

/** 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-50{ margin-top: 50px ! important ; }
.mt-55{ margin-top: 55px ! 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_125{ margin-top: -125px ! important ; }

.mb-0{ margin-bottom: 0px !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-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_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-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-40{ margin-left: 40px ! important ; }
.ml-50{ margin-left: 50px ! 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-5{ margin-right: 5px !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;
}
.social-icons li{
    margin: 0 2px;
}
.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: 33px;
    width: 33px;
    line-height: 33px;
    text-align: center;
    display: block;
    background-color: transparent;
    font-size: 13px;
    border-radius: 50%;
}
/*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 #000;
    border-radius: 50px;
    margin-right: 0;
    background-color: #fff;
    color: #000;
    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; }

/* 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: inherit;
}
.tooltip-top:after, .tooltip-top:before, .tooltip:after, .tooltip:before, 
[data-tooltip]:after, [data-tooltip]:before {
    bottom: 100%;
    left: 50%;
}
.tooltip-bottom:after{
    bottom: -100%;
}
.tooltip-bottom:before{
    margin-left: -6px;
    margin-bottom: -12px;
    border-top-color: transparent;
}
.tooltip-bottom:before{
    bottom: -7px;
}
.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: #fff;
    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;}
.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: 'fontello';
    font-size: 30px;
    line-height: 1;
    color: #000;
    opacity: 1;
    font-weight: 600;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.slick_slider .slick-prev:before {
    content: "\e808";
}
.slick_slider .slick-next:before {
    content: "\e809";
}
.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: var(--base-white);
    border: 1px solid #e7e7e7;
    overflow: hidden;
    box-shadow: none;
}
.slick_slider.slick-arrow-style1 .slick-next{ 
    right: 50px;
    top: 86%;
}
.slick_slider.slick-arrow-style1 .slick-prev {
    right: 115px;
    top: 86%;
}
.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-dots */
.vertical_slider.slick-dots-style1 ul.slick-dots {
    padding: 0;
    margin: 0;
    text-align: right;
    position: absolute;
    top: 25%;
    right: 0px;
}
.vertical_slider.slick-dots-style1 ul.slick-dots li{
    display: block;
    list-style: none;
    line-height: 0;
}
.vertical_slider.slick-dots-style1 ul.slick-dots li button {
    height: 30px;
    width: 4px;
    border: 0;
    font-size: 0;
    padding: 0;
    position: relative;
    margin: 6px 0;
    background-color: rgba(255, 255, 255, 0.30);
}
.vertical_slider.slick-dots-style1 ul.slick-dots li.slick-active button{ background-color: #fff; }



.bg-base-dark.text-base-white, 
.bg-base-skin.text-base-white {
    color: rgba(255,255,255,.950);
}


/*  ===============================================
    Header
------------------------*/
/** SiteBrand(logo) **/
.site-branding{ display: flex; }
.site-branding h1{margin-bottom: 0; line-height: 0; display: inline-flex;}
.site-branding #logo-img{
    max-width: 160px;
    z-index: 1;
    position: relative;
}
.headermain-block{ padding: 0 35px 0 35px; }

/** SiteNavigation(Menu) **/
.site-navigation {
    position: relative;
    z-index: 2;
}
nav.main-menu ul {
    position: relative;
    margin: 0;
}
#site-header-menu ul.menu > li > a {
    font-size: 16px;
    text-decoration: none;
    z-index: 1;
}
#site-header-menu ul.menu > li.active > a,
#site-header-menu ul.menu > li:hover > a{
    color: var(--base-skin);
    background: var(--base-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}


/*header_extra*/
.header_extra .header_btn{ padding-left: 50px; }
.header_extra .widget_info {
    padding-left: 30px;
    margin-left: 30px;
    border-left: 1px solid rgb(0 0 0 / 20%);
    text-align: right;
}
.header_extra .widget_content h3.widget_title{
    font-size: 16px;
    line-height: 26px;
    font-weight: 600;
    margin-bottom: 2px;
}
.header_extra .widget_content p.widget_desc {
    font-size: 18px;
    line-height: 28px;
    font-weight: 700;
    margin: 0;
}
.header_extra .widget_content p.widget_desc a:hover{
    color: var(--base-second-gradientcolor);
}
.header_extra .widget_icon i{
    font-size: 50px;
    line-height: 40px;
    background: var(--base-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    padding-left: 10px;
    padding-top: 1px;
}

/* banner_slider */
.banner_slider.slick-slider .slick-prev, .banner_slider.slick-slider .slick-next{
    opacity: 0;
    visibility: hidden;
    width: 40px;
    height: 40px;
    line-height: 40px;
    padding-right: 3px;
    text-align: center;
    position: absolute;
    display: block;
    z-index: 1;
    margin: 0 20px;
    background: rgba(34, 54, 69, 0.5);
    border-radius: 50%;
}
.banner_slider.slick-slider .slick-next { right: 0; left: auto; padding-right: 0; padding-left: 3px; }
.banner_slider.slick-slider:hover .slick-prev, .banner_slider.slick-slider:hover .slick-next{
    opacity: 1;
    visibility: visible;
}
.banner_slider.slick-slider .slick-prev:hover, .banner_slider.slick-slider .slick-next:hover {
  background: #000;
}
.banner_slider.slick-slider .slick-prev:before, .banner_slider.slick-slider .slick-next:before {
    font-family: 'Font Awesome 5 Free';
    font-size: 14px;
    opacity: 1;
    color: #fff;
    font-weight: bold;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.banner_slider.slick-slider .slick-prev:before {
    content: "\f053";
}
.banner_slider.slick-slider .slick-next:before {
    content: "\f054";
}

/* banner_slide */
.slide  {
    height: 680px;
    align-items: center;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 1;
}
.slide .slide__img {
    width: 100%;
    height: auto;
    overflow: hidden;
    position: absolute;
    left: 0;
}
.slide .slide__img img {
    opacity: 1 ;
    -webkit-animation-duration: 3s;
            animation-duration: 3s;
    transition: all 1s ease;
}
.slide .slide__content {
    position: relative;
    height: 100%;
    display: flex;
    z-index: 2;
    flex-direction: column;
    justify-content: center;
}
.slide .slide__content--headings {
    padding: 15px 0;
    position: relative;
    z-index: 1;
    margin: 0 auto;
    align-items: center;
    transition: all 0.5s ease;
}

/* banner_slider_1 */
.banner_slider_1 .slide__content {
    background-color:rgba(0,17,62,0.35);
}
.banner_slider_1 .slide__content--headings h2 {
    line-height: 112px;
    letter-spacing: 1px;
    font-weight: 700;
    font-size: 87px;
}
.banner_slider_1 .slide__content--headings > h3 {
    line-height: 50px;
    letter-spacing: 1px;
    font-weight: 600;
    font-size: 34px;
    margin-bottom: 0;
}
.banner_slider_1 .slide__content--headings p {
    color: rgb(220, 221, 222);
    line-height: 30px;
    letter-spacing: 1px;
    font-weight: 400;
    font-size: 21px;
}

/* banner_slider_2 */
.banner_slider_2 .slide__content--headings{
    padding: 15px 0;
    position: relative;
    z-index: 1;
    display: table;
    margin: 0 auto;
    transition: all 0.5s ease;
}
.banner_slider_2 .slide__content--headings h3 { 
    text-align: left;
    line-height: 0;
}
.banner_slider_2 .slide__content--headings span.num {
    font-weight: 700;
    font-size: 18px;
    position: relative;
    padding-right: 200px;
}
.banner_slider_2 .slide__content--headings span.num:before {
    position: absolute;
    content: "";
    height: 2px;
    width: 100%;
    left: 0;
    bottom: 0;
}
.banner_slider_2 .slide__content--headings span {
    line-height: 30px;
    letter-spacing: 1px;
    font-weight: 500;
    font-size: 24px;
}
.banner_slider_2 .slide__content--headings h2 {  
    display: inline-block;
    line-height: 102px;
    font-weight: 700;
    font-size: 87px;
    position: relative;
}
.banner_slider_2 .slide__content--headings h2:after {
    position: absolute;
    content: "";
    height: 6px;
    width: 46.5%;
    left: auto;
    right: 0;
    bottom: 0;
    z-index: -1;
}



@media only screen and (max-width: 1024px){
    .banner_slider .slide { height: 460px; }
    .banner_slider_1 .logo-icon img { max-height: 58px; }
    .banner_slider_1 .slide__content--headings h2 { font-size: 72px; line-height: 82px; }
}

@media only screen and (max-width: 991px){ 
    .banner_slider_1 .slide__content--headings h2 { font-size: 55px; line-height: 65px; }
    .banner_slider_1 .slide__content--headings p { font-size: 16px; line-height: 26px; }
}

@media only screen and (max-width: 767px){

    .banner_slider .slide { height: 400px; }

    .banner_slider .slide__content--headings p { display: none; }

    .banner_slider_1 .logo-icon img { max-height: 50px; }
}

@media only screen and (max-width: 600px){

    .banner_slider .slide { height: 300px; }

    .banner_slider_1 .logo-icon img { max-height: 40px; }
    .banner_slider_1 .prt-icon { height: 50px; width: 50px; line-height: 50px; margin-bottom: 15px; }
    .banner_slider_1 .prt-icon i { font-size: 32px; }

    .slide .prt-btn.prt-btn-size-md:not(.btn-inline) {
        padding: 9px 20px;
        font-size: 12px;
    }

}

@media only screen and (max-width: 480px){
    .banner_slider .slide { height: 320px; }
}

/* /////////// IMAGE ZOOM /////////// */
.banner_slider .slide_img {
    position: absolute;
    width: 100%;
    height: 100%;
    background-position: right;
    background-size: cover;
}
.slick-active .slide_img {
    -webkit-animation-delay: 24s;
    -moz-animation-delay: 24s;
    -o-animation-delay: 24s;
    -ms-animation-delay: 24s;
    animation-delay: 24s;
    -webkit-backface-visibility: hidden;
    -webkit-animation: imageAnimation 36s linear 0s;
    -moz-animation: imageAnimation 36s linear 0s;
    -o-animation: imageAnimation 36s linear 0s;
    -ms-animation: imageAnimation 36s linear 0s;
    animation: imageAnimation 36s linear 0s;
}
@keyframes imageAnimation { 
  0% { animation-timing-function: ease-in; }
  8% { transform: scale(1.02); animation-timing-function: ease-out; }
  17% { transform: scale(1.04); animation-timing-function: ease-out; }
  22% { transform: scale(1.02); } 25% { -transform: scale(1.1); }
}


/* ===============================================
    Footer
------------------------*/
.footer{
    position: relative;
    background-color: var(--base-grey);
}
.footer .text-base-white,
.footer .text-base-white a {
    color: rgba(255 255 255 / 0.80);
}
/*.first-footer*/
.first-footer { padding: 60px 0; }

/*second-footer*/
.second-footer{ padding: 70px 0 70px; }
.widget-title-h3{
    font-size: 22px;
    line-height: 32px;
    color: var(--base-headingfont-color);
    font-weight: 700;
    margin-bottom: 10px;
}

/*menu-footer-link*/
ul.menu-footer-link{
    position: relative;
    margin: 0;
    padding: 0;
    list-style-type: none;
}
ul.menu-footer-link li {
    position: relative;
    display: block;
    padding: 7px 0 6px 0;
    width: 100%;
}
ul.menu-footer-link li a{
    font-size: 16px;
    line-height: 16px;
    color: var(--base-dark);
    font-weight: 400; 
    position: relative;
}
ul.menu-footer-link li a:before {
    content: '';
    position: absolute;
    bottom: 0;
    height: 1px;
    left: 0;
    right: 100%;
    background-color: var(--base-dark);
    transition-property: left,right;
    transition: 0.5s ease;
}
ul.menu-footer-link li a:hover:before{ 
    left: 0;
    right: 0; 
}

/** copyright **/
.copyright{
    position: relative;
    background-color: var(--base-white);
    padding: 15px 0 15px;
    text-align: center;
}
.copyright .cpy-text,
.copyright .cpy-text a{
    font-size: 14px;
    line-height: 24px;
    color: var(--base-dark);
    font-weight: 400;
}
.copyright .copyright-text {
    display: flex;
    align-items: center;
    justify-content: center;
}
.copyright ul.footer-nav-menu {
    list-style: none;
    margin: 0 0 0 4px;
    padding: 0px;
    position: relative;
}
.copyright ul.footer-nav-menu:before{
    content: '';
    position: absolute;
    left: 12px;
    top: 4px;
    width: 1px;
    height: 16px;
    background-color: rgb(0 0 0 / 10%);
}
.copyright ul.footer-nav-menu li {
    display: inline-block;
    padding-left: 30px;
    font-size: 14px;
    line-height: 24px;
    position: relative;
}


/* ===============================================
    GoTop BUtton
------------------------*/
#totop{
    font-weight: 900;
    color: #fff;
    display: none;
    position: fixed;
    right: 34px;
    bottom: 50px;
    z-index: 999;
    height: 0;
    width: 0;
    font-size: 0;
    text-align: center;
    padding-top: 3px;
    line-height: 34px;
    border-radius: 3px;
    transition: .3s ease-in-out;
}
#totop.top-visible {
    height: 40px;
    width: 40px;
    font-size: 22px;
    display: inline;
    background-color: var(--base-skin);
    background: linear-gradient(to right,var(--base-first-gradientcolor) 0%, 
                var(--base-second-gradientcolor) 100%,var(--base-first-gradientcolor) 100%);
}
@keyframes jump {
  0% { bottom: 20px; } 50% { bottom: 40px; } 100% { bottom: 20px; }
}
#totop.top-visible  {
  animation: jump 4s infinite;
}


/* ===============================================
    Page-Title-Row
------------------------*/
.prt-page-title-row { 
    width: 100%;
    position: relative;
    height: 300px;
    z-index: 1;
    overflow: hidden;
    background-color: var(--base-dark);
    background-image: url(../images/team-details-bg.jpg);
    background-position: center top;
    background-size: cover;
    background-repeat: no-repeat;
}
.prt-page-title-row-inner {
    position: relative;
    width: 100%;
    padding: 79px 0 85px;
    
}
.prt-page-title-row.style2{
    background-image: url(../images/radiology-test-list.jpg);
   
}

.prt-page-title-row.style2 .prt-page-title-row-inner{
     padding: 45px 0 72px;
     background-color: rgba(0 0 0 / 0.50);
}
.prt-page-title-row.style3{
    background-image: url(../images/pagetitle-bg02.jpg);
   color: #4583bc;
}

.prt-page-title-row.style3 .prt-page-title-row-inner{
     padding: 45px 0 72px;
     /*background-color: rgba(0 0 0 / 0.50);*/
}

.prt-page-title-row.style4{
    background-image: url(../images/superrfoods.jpg);
   
}

.prt-page-title-row.style4 .prt-page-title-row-inner{
     padding: 45px 0 72px;
     /*background-color: rgba(0 0 0 / 0.50);*/
}

.page-title-heading h2 {
    font-weight: 700;
    font-size: 56px;
    line-height: 66px;
    margin-bottom: 7px;
    font-family: var(--base-headingfont);
    color: var(--base-white);
}
.page-title-heading h2 span{
    background: var(--base-gradient);
    padding: 3px 5px 0;
}
.breadcrumb-wrapper span{
    font-weight: 500;
    font-size: 17px;
    line-height: 27px;
    font-family: var(--base-headingfont);
    position: relative;
    color: var(--base-first-gradientcolor);
    padding-right: 10px;
}
.breadcrumb-wrapper span a{ color: rgba(0, 0, 0, 0.60); }
.breadcrumb-wrapper span a:hover{ color: var(--base-dark); }
.breadcrumb-wrapper span:last-child{
    padding-right: 0;
}
.breadcrumb-wrapper span a:first-child:after,
.breadcrumb-wrapper span a:nth-child(2):after {
    position: absolute;
    content: "/";
    font-size: 18px;
    right: 1px;
    top: -3px;
    display: inline-block;
    font-weight: 400;
}

/* ===============================================
    Inner-Pages
------------------------*/

/*------------------------------------------------------------------------------*/
/*  single_services
/*------------------------------------------------------------------------------*/ 
.prt-service-single-content-area div:not(.featured-title) > h3 { font-size: 40px;line-height: 50px;margin-bottom: 28px; font-weight: 700; }
.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;
}

/*------------------------------------------------------------------------------*/
/*  single_team
/*------------------------------------------------------------------------------*/ 
.prt-team-member-single-content h3 { 
    font-size: 40px;
    line-height: 50px;
    margin-bottom: 22px;
    font-weight: 700;
}

/*comment*/
.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 {
    border-radius: 30px;
    vertical-align: middle;
    width: 100%;
    color: #000;
    padding: 8px 20px 10px;
    font-weight: 500;
    background-color: var(--base-white);
    text-transform: inherit;
    border: 1px solid #e7e7e7;
    font-size: 15px;
    line-height: inherit;
}
.comment-form textarea{ border-radius: 25px; }
.comment-form textarea::placeholder,
.comment-form input[type="text"]::placeholder,
.comment-form input[type="date"],
.comment-form select::placeholder{
    color: rgba(0, 0, 0, 0.50);
}


.comment-form select{ padding: 11px 20px 14px; 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 .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';
}
/*------------------------------------------------------------------------------*/
/*  Contact_page
/*------------------------------------------------------------------------------*/ 
h3.prt-contact-pretitle {
    font-size: 16px;
    line-height: 26px;
    font-weight: 700;
    background-color: var(--base-white);
    border-radius: 10px;
    display: inline-block;
    padding: 11px 50px 6px;
    margin-bottom: 25px;
    margin-top: 5px;
}
.prt-contact-link {
    position: relative;
    text-align: center;
    margin: 15px 0;
}
.prt-contact-link h3{
    font-size: 16px;
    line-height: 26px;
    margin-bottom: 0;
    font-weight: 500;
}
.prt-contact-link a{
     font-size: 18px;
    line-height: 28px;
    font-weight: 700;
}
.prt-contact-link a:hover{ 
    background: var(--base-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent; 
}

.prt_contact_widget_wrapper {
    position: relative;
    z-index: 1;
    clear: both;
    /*box-shadow: 0 0 20px rgba(0 0 0 / 0.10);*/
    background-color: var(--base-white);
}
.prt_contact-title-block {
    position: relative;
    padding: 110px 80px 1px;
}
.prt_contact_widget_wrapper .prt_content-block {
    padding: 42px 95px 100px;
}
.prt_contact_widget_wrapper ul.prt-schedule-list{
    border-top: 0;
    padding: 15px 0 0;
}
.prt_contact_widget_wrapper .prt-list-block h3{
    font-size: 24px;
    line-height: 34px;
    font-weight: 700;
}
.prt_contact_widget_wrapper .prt-contact-sep{ margin: 0 -40px 0 -80px; }
.prt-contact-form h3{
    font-size: 22px;
    line-height: 32px;
    font-weight: 700;
    text-align: center;
}
.prt-contact-form {
    padding: 36px 40px 40px;
    background-color: var(--base-white);
    border-radius: 5px;
    box-shadow: 0 0 15px rgb(0 0 0 / 8%);
    margin-top: -185px;
    z-index: 9;
    position: relative;
}
.prt-contact-form .prt-form-sep{ margin: 0 -40px; } 
.prt-contact-form .prt-icon i{
    font-size: 28px;
    line-height: 38px;
    font-weight: 900;
    width: 50px;
    height: 50px;
    color: var(--base-dark);
    background-color: var(--base-white);
    display: flex;
    align-items: center;
    justify-content: center;
}
.prt-contact-form .prt-icon{
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    text-align: center;
}
.contact-border-top {
    border-top: 1px solid #dee2e6!important;
}
/*------------------------------------------------------------------------------*/
/*  Map
/*------------------------------------------------------------------------------*/
#map { display: block; height: 500px; width: 100%; }
#map iframe {
    width: 100%;
    height: 100%;
    margin-top: 0;
    filter: brightness( 132% ) contrast( 100% ) saturate( 0% ) blur( 0px ) hue-rotate( 0deg );
    border-radius: 25px;
}

body .page.sticky-column {
      overflow: unset;
}
.main-box {
    position: relative;
    /*min-height: 680px;*/
}

        .icon-control {
            margin-top: 5px;
            float: right;
            font-size: 80%;
        }



        .btn-light {
            background-color: #fff;
            border-color: #e4e4e4;
        }

        .list-menu {
            list-style: none;
            margin: 0;
            padding-left: 0;
        }

            .list-menu a {
                color: #343a40;
            }

        .card-product-grid .info-wrap {
            overflow: hidden;
            padding: 18px 20px;
        }

        [class*='card-product'] a.title {
            color: #212529;
            display: block;
        }

        .card-product-grid:hover .btn-overlay {
            opacity: 1;
        }

        .card-product-grid .btn-overlay {
            -webkit-transition: .5s;
            transition: .5s;
            opacity: 0;
            left: 0;
            bottom: 0;
            color: #fff;
            width: 100%;
            padding: 5px 0;
            text-align: center;
            position: absolute;
            background: rgba(0, 0, 0, 0.5);
        }

        .img-wrap {
            overflow: hidden;
            position: relative;
        }

        .list-group-item:first-child {
            border-top-left-radius: .25rem;
            border-top-right-radius: .25rem;
        }

        .list-group-item {
            position: relative;
            display: block;
            padding: .15rem 1.25rem;
            margin-bottom: -1px;
            background-color: #fff;
            border: 1px solid rgba(0,0,0,0);
        }

        @-ms-viewport {
  width: device-width;
}
.visible-xs,
.visible-sm,
.visible-md,
.visible-lg {
  display: none !important;
}
.visible-xs-block,
.visible-xs-inline,
.visible-xs-inline-block,
.visible-sm-block,
.visible-sm-inline,
.visible-sm-inline-block,
.visible-md-block,
.visible-md-inline,
.visible-md-inline-block,
.visible-lg-block,
.visible-lg-inline,
.visible-lg-inline-block {
  display: none !important;
}
@media (max-width: 767px) {
  .visible-xs {
    display: block !important;
  }
  table.visible-xs {
    display: table !important;
  }
  tr.visible-xs {
    display: table-row !important;
  }
  th.visible-xs,
  td.visible-xs {
    display: table-cell !important;
  }
}
@media (max-width: 767px) {
  .visible-xs-block {
    display: block !important;
  }
}
@media (max-width: 767px) {
  .visible-xs-inline {
    display: inline !important;
  }
}
@media (max-width: 767px) {
  .visible-xs-inline-block {
    display: inline-block !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .visible-sm {
    display: block !important;
  }
  table.visible-sm {
    display: table !important;
  }
  tr.visible-sm {
    display: table-row !important;
  }
  th.visible-sm,
  td.visible-sm {
    display: table-cell !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .visible-sm-block {
    display: block !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .visible-sm-inline {
    display: inline !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .visible-sm-inline-block {
    display: inline-block !important;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .visible-md {
    display: block !important;
  }
  table.visible-md {
    display: table !important;
  }
  tr.visible-md {
    display: table-row !important;
  }
  th.visible-md,
  td.visible-md {
    display: table-cell !important;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .visible-md-block {
    display: block !important;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .visible-md-inline {
    display: inline !important;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .visible-md-inline-block {
    display: inline-block !important;
  }
}
@media (min-width: 1200px) {
  .visible-lg {
    display: block !important;
  }
  table.visible-lg {
    display: table !important;
  }
  tr.visible-lg {
    display: table-row !important;
  }
  th.visible-lg,
  td.visible-lg {
    display: table-cell !important;
  }
}
@media (min-width: 1200px) {
  .visible-lg-block {
    display: block !important;
  }
}
@media (min-width: 1200px) {
  .visible-lg-inline {
    display: inline !important;
  }
}
@media (min-width: 1200px) {
  .visible-lg-inline-block {
    display: inline-block !important;
  }
}
@media (max-width: 767px) {
  .hidden-xs {
    display: none !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .hidden-sm {
    display: none !important;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .hidden-md {
    display: none !important;
  }
}
@media (min-width: 1200px) {
  .hidden-lg {
    display: none !important;
  }
}

.team-details-content {
    padding: 50px;
    background-color: var(--base-white);
    border-radius: 20px;
    box-shadow: 0px 3px 29px 0 rgba(24, 29, 78, 0.14);
}
.team-details-image-wrapper .team-details-image {
    border-radius: 10px;
}
.team-details-info-title h3 {
    font-size: 35px;
    line-height: 45px;
    margin-bottom: 10px;
}
.team-details-info-position span {
    font-weight: 500;
    font-size: 20px;
    line-height: 30px;
    color: var(--base-dark);
}
.team-details-info-desc p {
    margin-top: 25px;
    margin-bottom: 10px;
}
.team-details-social {
    margin-top: 20px;
}
.team-details-content .social-icons {
    list-style-type: none;
    margin: 0;
    padding: 0;
    margin-top: 45px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}
.team-details-content .social-icons li {
    width: 34px;
    height: 34px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid var(--base-bodyfont-color);
    border-radius: 50%;
    margin-right: 7px;
    margin-bottom: 10px;
}
.team-details-content .social-icons li:hover{border-color: var(--base-skin);}
.team-details-content .social-icons li i:hover{color: var(--base-skin);}
.team-details-content .social-icons li i {
    font-size: 16px;
    line-height: 16px;
    color: var(--base-bodyfont-color);
}

.team-details-form-block {
    position: relative;
    padding: 68px 120px 80px;
    background-color: var(--base-white);
    border-radius: 20px;
    box-shadow: 0px 3px 29px 0 rgba(24, 29, 78, 0.14);
}

.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-details-form-block {
    position: relative;
    padding: 68px 120px 80px;
    background-color: var(--base-white);
    border-radius: 20px;
    box-shadow: 0px 3px 29px 0 rgba(24, 29, 78, 0.14);
}

.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); }

/*message_form*/
.wrap-form.message_form span.text-input {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
}
.wrap-form.message_form span.text-input label {
    flex-shrink: 0;
    display: inline-block;
    font-size: 16px;
    line-height: 26px;
    font-weight: 500;
    color: var(--base-dark);
    width: auto;
}
.wrap-form.message_form span.text-input input, 
.wrap-form.message_form span.text-input textarea,
.wrap-form.message_form span.text-input select {
    flex-shrink: 0;
    display: inline-block;
    width: auto;
    min-width: 300px;
    padding: 10px 15px;
    margin: 0 20px;
    border: 0px solid transparent;
    border-bottom: 1px solid #cccccc;
    border-radius: 0px;
    color: var(--base-dark);
    text-align: left;
}
.wrap-form.message_form span.text-input textarea {
    flex-grow: 1;
    min-width: auto;
    margin: 0 0 0 20px;
}
.wrap-form.message_form span.text-input input, 
.wrap-form.message_form span.text-input textarea,
.wrap-form.message_form span.text-input select{
    background-color: var(--base-white);
}
.wrap-form.message_form span.text-input input::-webkit-input-placeholder, 
.wrap-form.message_form span.text-input textarea::-webkit-input-placeholder,
.wrap-form.message_form span.text-input select::-webkit-input-placeholder {
    color: var(--base-bodyfont-color);
}
.wrap-form.message_form .form-select:focus{ box-shadow: none; }

.message-select {
    position: relative,
    flex-shrink: 0;
    display: inline-block;
    width: auto;
    min-width: 300px;
    padding: 10px 15px;
    margin: 0 20px;
    border: 0px solid transparent;
    border-bottom: 1px solid #cccccc;
    border-radius: 0px;
    color: var(--base-dark);
    text-align: center;
}
.form-select.message-select:focus {
    outline: 0;
}
.form-select.message-select::-webkit-input-placeholder {
    color: var(--base-bodyfont-color) !important;
}
select.message-select:required:invalid {
    color: var(--base-bodyfont-color) !important;
}
select.message-select option[value=""][disabled] {
    display: none;
}
select.message-select option {
    color: var(--base-bodyfont-color);
}
.message_form .cookies {
    color: var(--base-bodyfont-color);
    font-size: 12px;
    line-height: 26px;
    margin-top: -7px;
    margin-bottom: 45px;
}
.message_form .cookies a {
    color: var(--base-dark);
    font-size: 12px;
    line-height: 26px;
    font-weight: 600;
}
.message_form input[type=checkbox]{
    visibility: hidden;
    position: absolute;
}
.message_form input[type=checkbox] + label{
    height: 14px;
    width: 14px;
    border: 1px solid #cccccc;
    border-radius: 50%;
    vertical-align: middle;
    margin-bottom: 0px;
    margin-right: 8px;
}
.message_form input[type=checkbox]:checked + label:before{
    content: "";
    border: solid;
    border-color: var(--base-skin);
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    display: block;
    left: 3px;
    top: 0;
    width: 6px;
    height: 10px;
    background-color: transparent!important;
    border-radius: 0;
    position: relative;
    vertical-align: middle;
}

.message-form-item { display: inline-block; }
.message-form-item.style2 { display: block; width: 100%; }

