



/* CustomFonts */



:root{
	--default-color: #18243a;
    --accent-color:#12336b;
    --accent-color2:#0e87a8;
    --accent-color3:#1db8e0;
    --accent-color4:#e8a830;

    --family:"Inter";
    --family2:"Inter";

    --button-color1:#12336b;
	--button-hover-color1:#0b1f3a;
    --button-color2:#0e87a8;
	--button-hover-color2:#1db8e0;
    --button-color3:#cce8f4;
	--button-hover-color3:#e4f4fa;
    --button-color4:#bf8520;
	--button-hover-color4:#e8a830;
    --button-color5:#ffffff;
	--button-hover-color5:#ffffff; 

	--link-color:#0e87a8;
	--link-visited-color:#0e87a8;
	--link-hover-color:#0e87a8;
	--link-active-color:#0e87a8;

	--container-width: 100%;

	--h1-color: #18243a;
	--h2-color: #18243a;
	--h3-color: #18243a;
	--h4-color: #18243a;
	--h5-color: #18243a;
	--h6-color: #18243a;
}
 

@media (min-width:576px) {
	:root{
		--container-width: 540px;
	}
}
@media (min-width:768px) {
	:root{
		--container-width: 760px;
	}
}
@media (min-width:992px) {
	:root{
		--container-width: 960px;
	}
}
@media (min-width:1200px) {
	:root{
		--container-width: 1140px;
	}
}
@media (min-width:1600px) {
	:root{
		--container-width: 1200px;
	}
}
 

/* ─── DESIGN TOKENS ─────────────────────────────────────── */
:root {
  --navy:       #0b1f3a;
  --navy-mid:   #12336b;
  --navy-deep:  #071426;
  --teal:       #0e87a8;
  --teal-lt:    #1db8e0;
  --teal-dim:   #0a6680;
  --sky:        #e4f4fa;
  --gold:       #bf8520;
  --gold-lt:    #e8a830;
  --off-white:  #f4f8fc;
  --gray-100:   #edf1f7;
  --gray-200:   #dde4ef;
  --gray-300:   #bec9d9;
  --gray-500:   #637a94;
  --gray-700:   #344256;
  --text:       #18243a;
  --radius-lg:  20px;
  --shadow-sm:  0 2px 10px rgba(11,31,58,.07);
  --shadow-md:  0 8px 28px rgba(11,31,58,.12);
  --shadow-lg:  0 20px 56px rgba(11,31,58,.16);
  --nav-h:      72px;
  --ease:       0.26s cubic-bezier(.4,0,.2,1);

  /* Override Bootstrap's primary color with our teal */
  --bs-primary:        #0e87a8;
  --bs-primary-rgb:    14, 135, 168;
  --bs-link-color:     #0e87a8;
  --bs-border-radius:  12px;
  --bs-border-radius-lg: 20px;
  --bs-border-radius-pill: 50px;
  --bs-body-font-family: 'DM Sans', sans-serif;
  --bs-body-color:     #18243a;
  --bs-body-line-height: 1.65;
}

/* ─── BASE OVERRIDES ────────────────────────────────────── */

h1, h2, h3, h4 { font-family: 'Fraunces', serif; line-height: 1.2; color: var(--navy); }
h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); font-weight: 700; }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.6rem); font-weight: 600; }
h3 { font-size: clamp(1.15rem, 2vw, 1.5rem); font-weight: 600; }
h4 { font-size: 1.1rem; font-weight: 600; }

/* ─── TYPOGRAPHY HELPERS ────────────────────────────────── */
.emoji-icon-class {font-family: "Apple Color Emoji", "Segoe UI Emoji", "Noto Color Emoji", sans-serif;}
.eyebrow {
  display: inline-block;
  font-size: .75rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--teal); margin-bottom: .6rem;
}
.section-title { margin-bottom: .5rem; }
.section-sub {
  font-size: 1.05rem; color: var(--gray-500);
  margin-bottom: 2.5rem; max-width: 580px;
}
.text-center .section-sub { margin-left: auto; margin-right: auto; }

/* ─── BUTTONS — extend Bootstrap's .btn ─────────────────── */
/* Bootstrap provides base .btn; we extend with pill shape + brand colors */
.btn {
  border-radius: 50px !important;
  font-weight: 600;
  font-size: .92rem;
  letter-spacing: .01em;
  transition: all var(--ease);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
}
.btn-primary {
  background: var(--teal) !important;
  border-color: var(--teal) !important;
  color: #fff !important;
  box-shadow: 0 4px 18px rgba(14,135,168,.32);
}
.btn-primary:hover, .btn-primary:focus {
  background: var(--teal-lt) !important;
  border-color: var(--teal-lt) !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(14,135,168,.42);
}
.btn-secondary {
  background: #fff !important;
  border: 1.5px solid var(--gray-300) !important;
  color: var(--navy) !important;
  box-shadow: var(--shadow-sm);
}
.btn-secondary:hover, .btn-secondary:focus {
  border-color: var(--teal) !important;
  color: var(--teal) !important;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn-gold {
  background: var(--gold);
  border-color: var(--gold);
  color: #fff;
  box-shadow: 0 4px 18px rgba(191,133,32,.32);
}
.btn-gold:hover { background: var(--gold-lt); border-color: var(--gold-lt); transform: translateY(-2px); }
.btn-outline-white {
  background: transparent;
  border: 1.5px solid rgba(255,255,255,.45);
  color: #fff;
}
.btn-outline-white:hover { background: #fff; color: var(--navy); border-color: #fff; }

/* ─── SKIP LINK & FOCUS ──────────────────────────────────── */
.skip-link {
  position: absolute; top: -999px; left: 0;
  background: var(--teal); color: #fff;
  padding: 10px 20px; font-weight: 700;
  z-index: 10000; border-radius: 0 0 8px 0;
}
.skip-link:focus { top: 0; }
:focus-visible { outline: 3px solid var(--teal); outline-offset: 3px; border-radius: 4px; }

/* ─── PAGE HERO (inner pages) ────────────────────────────── */
.page-hero h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); color: #fff; }
.page-hero p { color: rgba(255,255,255,.7); margin-top: 10px; font-size: 1.05rem; }

/* Bootstrap provides .breadcrumb; we just recolor for dark bg */
.page-hero .breadcrumb { background: none; padding: 0; margin-bottom: 12px; font-size: .82rem; }
.page-hero .breadcrumb-item { color: rgba(255,255,255,.5); }
.page-hero .breadcrumb-item a { color: var(--teal-lt); text-decoration: none; }
.page-hero .breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,.3); }

/* ─── HERO (home) ────────────────────────────────────────── */
.hero {
  background:
    radial-gradient(ellipse 80% 60% at 70% 40%, rgba(14,135,168,.18) 0%, transparent 60%),
    radial-gradient(ellipse 60% 80% at 10% 80%, rgba(18,51,107,.6) 0%, transparent 55%),
    linear-gradient(145deg, var(--navy-deep) 0%, var(--navy) 45%, var(--navy-mid) 100%);
  padding: 80px 0 72px; color: #fff; overflow: hidden;
}
.hero h1 { color: #fff; margin-bottom: 18px; }
.hero h1 em { color: var(--teal-lt); font-style: normal; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(14,135,168,.2); border: 1px solid rgba(14,135,168,.4);
  color: var(--teal-lt); padding: 6px 16px; border-radius: 50px;
  font-size: .78rem; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; margin-bottom: 20px;
}
.hero-desc { font-size: 1.1rem; color: rgba(255,255,255,.75); margin-bottom: 32px; }
.hero-stat strong {
  display: block; font-size: 1.8rem; font-weight: 700;
  color: #fff; font-family: 'Fraunces', serif;
}
.hero-stat span { font-size: .78rem; color: rgba(255,255,255,.55); letter-spacing: .05em; text-transform: uppercase; }
.hero-card {
  background: rgba(18,51,107,.7); border: 1px solid rgba(18,51,107,.12);
  border-radius: var(--radius-lg); padding: 28px; backdrop-filter: blur(10px);
}
.hero-card-title {
  font-size: .8rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: var(--teal-lt); margin-bottom: 16px;
}
.hours-item {
  display: flex; justify-content: space-between; align-items: center;
  padding: 8px 12px; border-radius: 8px; font-size: .88rem;
}
.hours-item.highlight { background: rgba(14,135,168,.2); border: 1px solid rgba(14,135,168,.3); }
.hours-item .label { color: rgba(255,255,255,.7); }
.hours-item .time { color: #fff; font-weight: 600; }
.map-btn {
  display: flex; align-items: center; gap: 8px;
  padding: 10px 14px; background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12); border-radius: 8px;
  font-size: .82rem; color: rgba(255,255,255,.7); transition: all var(--ease);
}
.map-btn:hover { background: rgba(255,255,255,.12); color: #fff; }

/* ─── STATS BAR ──────────────────────────────────────────── */
.stats-bar {
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 100%);
  padding: 36px 0;
}
.stat-item { text-align: center; }
.stat-item strong {
  display: block; font-size: 2rem; font-weight: 700;
  color: var(--teal-lt); font-family: 'Fraunces', serif;
}
.stat-item span { font-size: .8rem; color: rgba(255,255,255,.55); text-transform: uppercase; letter-spacing: .08em; }

/* ─── CARDS — extend Bootstrap .card ────────────────────── */
/* Bootstrap .card provides border, bg, radius; we extend */
.service-card {
  border-radius: var(--radius-lg) !important;
  border-color: var(--gray-100) !important;
  box-shadow: var(--shadow-sm);
  padding: 28px;
  transition: all var(--ease);
  cursor: pointer;
  height: 100%;
}
.service-card:hover {
  border-color: var(--teal) !important;
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.service-icon { font-size: 2rem; margin-bottom: 14px; }
.service-card h3 { color: var(--navy); margin-bottom: 8px; font-size: 1.1rem; }
.learn-more { display: inline-block; margin-top: 14px; color: var(--teal); font-size: .88rem; font-weight: 600; }

/* ─── FEATURE SPLIT ──────────────────────────────────────── */
.feature-img-sticky { position: sticky; top: calc(var(--nav-h) + 24px); }
.feature-img-inner {
  background: linear-gradient(135deg, var(--sky) 0%, #d4eef8 100%);
  border-radius: var(--radius-lg); padding: 36px; text-align: center;
}
.feature-check {
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--teal); color: #fff; font-size: .7rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: 2px;
}

/* ─── HIGHLIGHT BOX ──────────────────────────────────────── */
.highlight-box {
  background: linear-gradient(135deg, var(--sky) 0%, #d4eef8 100%);
  border-left: 4px solid var(--teal);
  border-radius: 0 12px 12px 0;
  padding: 20px 24px; margin: 20px 0;
}
.highlight-box p { margin: 0; font-size: .93rem; color: var(--navy); }

/* ─── PHYSICIAN CARDS ────────────────────────────────────── */
.physician-card {
  border-radius: var(--radius-lg) !important;
  border-color: var(--gray-100) !important;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: all var(--ease);
}
.physician-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.physician-photo { width: 100%; aspect-ratio:9/6; object-fit: cover; object-position: top; }
.physician-info { padding: 20px 22px 24px; }
.physician-info h3 { color: var(--navy); margin-bottom: 4px; font-size: 1.1rem; }
.physician-title {
  font-size: .82rem; color: var(--teal); font-weight: 600;
  text-transform: uppercase; letter-spacing: .06em; margin-bottom: 10px;
}
.physician-info p { font-size: .88rem; margin-bottom: 14px; }
/* Bootstrap .badge used; we extend for physician tags */
.physician-tag {
  display: inline-block; padding: 3px 10px; border-radius: 50px;
  background: var(--sky); color: var(--teal); font-size: .75rem; font-weight: 700;
}

/* ─── VALUES CARDS ───────────────────────────────────────── */
.value-card {
  padding: 28px; background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border-top: 4px solid var(--teal);
  height: 100%;
}
.value-icon { font-size: 2rem; margin-bottom: 12px; }
.value-card h3 { font-size: 1.05rem; margin-bottom: 8px; color: var(--navy); }
.value-card p { font-size: .88rem; }

/* ─── INSURANCE GRID ─────────────────────────────────────── */
.insurance-grid {
  columns: 3; column-gap: 24px;
  list-style: none; padding-left: 0;
}
.insurance-grid li {
  break-inside: avoid; padding: 9px 14px; margin-bottom: 6px;
  background: #fff; border-radius: 8px; font-size: .9rem;
  border: 1px solid var(--gray-100); color: var(--gray-700);
}
@media (max-width: 768px) { .insurance-grid { columns: 2; } }
@media (max-width: 576px) { .insurance-grid { columns: 1; } }

/* ─── CONTACT ────────────────────────────────────────────── */
.contact-icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--sky); font-size: 1.3rem;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.map-placeholder {
  width: 100%; height: 260px;
  background: linear-gradient(135deg, var(--sky), #d0eaf5);
  display: flex; align-items: center; justify-content: center;
  font-size: 3rem; flex-direction: column; gap: 10px;
  color: var(--teal); border-radius: var(--radius-lg);
}
.map-placeholder p { font-size: .9rem; color: var(--gray-500); }

/* ─── TABS — extend Bootstrap .nav-pills ────────────────── */
/* Bootstrap .nav-pills provides pill tabs; we brand them */
.tab-nav.nav-pills .nav-link {
  border-radius: 50px !important;
  font-size: .88rem; font-weight: 600;
  color: var(--gray-500); background: var(--gray-100);
  border: 2px solid transparent;
  padding: 10px 22px;
  transition: all var(--ease);
}
.tab-nav.nav-pills .nav-link:hover,
.tab-nav.nav-pills .nav-link.active {
  background: var(--teal) !important;
  color: #fff !important;
  border-color: var(--teal) !important;
}

/* ─── FORMS PAGE ─────────────────────────────────────────── */
/* Bootstrap .card used for form-card; we extend */
.form-card {
  display: flex; gap: 18px; align-items: center;
  padding: 24px; background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm); border: 1px solid var(--gray-100);
  transition: all var(--ease);
}
.form-card:hover { border-color: var(--teal); box-shadow: var(--shadow-md); }
.form-icon { font-size: 2rem; flex-shrink: 0; }
.form-card h4 { color: var(--navy); margin-bottom: 4px; }
.form-card p { font-size: .85rem; margin: 0; }
.form-dl { display: inline-flex; align-items: center; gap: 6px; color: var(--teal); font-size: .85rem; font-weight: 600; margin-top: 10px; }

/* ─── PAY BANNER ─────────────────────────────────────────── */
.pay-banner {
  background: linear-gradient(135deg, var(--gold) 0%, #e8a030 100%);
  padding: 40px; border-radius: var(--radius-lg);
}
.pay-banner h3 { color: #fff; font-size: 1.4rem; }
.pay-banner p { color: rgba(255,255,255,.85); font-size: .95rem; margin-top: 6px; }

/* ─── URGENT FEATURE CARD ────────────────────────────────── */
.urgent-feature-card {
  text-decoration: none;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 32px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  border-radius: var(--radius-lg);
  padding: 36px 40px;
  border: 1px solid rgba(14,135,168,.3);
  transition: all var(--ease);
  margin-bottom: 28px;
}
.urgent-feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(14,135,168,.6);
}
@media (max-width: 700px) {
  .urgent-feature-card { grid-template-columns: 1fr; }
  .urgent-feature-card > div:last-child { display: none; }
}

/* ─── MOBILE CTA BAR ─────────────────────────────────────── */
.mobile-cta-bar {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 998;
  background: var(--navy); border-top: 2px solid var(--teal);
  padding: 12px 20px; gap: 10px;
}
.mobile-cta-bar a { flex: 1; text-align: center; padding: 13px 10px; border-radius: 10px; font-weight: 700; font-size: .9rem; transition: all var(--ease); }
.mobile-cta-bar .cta-call { background: var(--teal); color: #fff; }
.mobile-cta-bar .cta-map { background: rgba(255,255,255,.1); color: #fff; border: 1px solid rgba(255,255,255,.2); }
@media (max-width: 992px) {
  .mobile-cta-bar { display: flex; }
  body { padding-bottom: 72px; }
}

/* ─── ANIMATIONS ─────────────────────────────────────────── */
.fade-in { animation: fadeIn .6s ease both; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: translateY(0); } }
.stagger-1 { animation-delay: .1s; }
.stagger-2 { animation-delay: .2s; }
.stagger-3 { animation-delay: .3s; }

/* ─── PORTFOLIO CAROUSEL ─────────────────────────────────── */
#portfolio-carousellBPo0pz.portfolio-carousel02 .item-box, portfolio-carouselXBlAFry.portfolio-carousel02 .item-box {margin: 15px 15px 40px !important;border-radius: 14px !important;}
#portfolio-carousellBPo0pz.portfolio-carousel02 .title, #portfolio-carouselXBlAFry.portfolio-carousel02 .title {font-size: 1.25rem;margin: 20px 0;color: #333333;font-weight: 600 !important;}
#portfolio-carousellBPo0pz.portfolio-carousel02 .cont, #portfolio-carouselXBlAFry.portfolio-carousel02 .cont {padding: 30px !important;}
#portfolio-carousellBPo0pz.portfolio-carousel02 .item-box .pic, #portfolio-carouselXBlAFry.portfolio-carousel02 .item-box .pic {display:none !important;}

/* EXTRAS */
.border-accent-pmg{border-bottom:solid 3px #dc3545;}
.border-top-accent-pmg{border-top:solid 3px #dc3545;}


	
:root{
	--headerHeight: calc( var(--header-top-height,0px) + var(--header-center-height,0px) + var(--header-bottom-height,0px) );
	--mobileHeaderHeight: calc( var(--header-mobile-top-height,0px) + var(--header-mobile-height,0px) + var(--header-mobile-bottom-height,0px) );
	--floatingHeaderHeight: calc( var(--floating-header-top-height,0px) + var(--floating-header-center-height,0px) + var(--floating-header-bottom-height,0px) );
}

.dng-main{
	 background-color:#FFFFFF;  	}
.container{
		padding-left:15px;
	padding-right:15px;
		width: var(--container-width);
	max-width: 100%;
}
.is-container{
	max-width:var(--container-width);
}
.container-fluid {
		padding-right:15px;
	padding-left:15px;
		margin-right: auto;
	margin-left: auto;
}   
#dnn_content{
	 padding-top:0px;		 padding-bottom:0px;	}		

@media (min-width:576px) {
	
		}
@media (min-width:768px) {
		}
@media (min-width:992px) {
		}
@media (min-width:1200px) {
		}


	.left-full-column > .full-column-inner{
		margin-inline-start:calc((var(--container-width) - 100vw)/2);
		width:calc(100% + (100vw - var(--container-width))/2);
	}
	.right-full-column > .full-column-inner{
		margin-inline-end:calc((var(--container-width) - 100vw)/2);
		width:calc(100% + (100vw - var(--container-width))/2);
	}
	.full-column > .full-column-inner{
		width:100vw;	
		margin-inline-start:calc((var(--container-width) - 100vw)/2 - 15px);
	}
	.layout-no-plr .full-column > .full-column-inner{
		margin-inline-start:calc((var(--container-width) - 100vw)/2);
	}

	



h1, h2, h3, h4, h5, h6{
	font-family:inherit;
}

h1{
	color:var(--h1-color);
	font-family:"Fraunces"; 	font-weight:700;
	font-size:2.25rem;
	line-height:1.2;
	letter-spacing:0;
}		
h2{
	color:var(--h2-color);
		font-family:"Fraunces"; 	font-weight:600;
	font-size:1.75rem;
	line-height:1.3;
	letter-spacing:0;
}		
h3{
	color:var(--h3-color);
		font-family:"Fraunces"; 	font-weight:600;
	font-size:1.75rem;
	line-height:1.3;
	letter-spacing:0;
}		
h4{
	color:var(--h4-color);
		font-family:"Fraunces"; 	font-weight:600;
	font-size:1.625rem;
	line-height:1.4;
	letter-spacing:0;
}		
h5{
	color:var(--h5-color);
		font-family:"Inter"; 	font-weight:500;
	font-size:1.375rem;
	line-height:1.4;
	letter-spacing:0;
}		
h6{
	color:var(--h6-color);
		font-family:"Inter"; 	font-weight:500;
	font-size:1.25rem;
	line-height:1.5;
	letter-spacing:0;
}	

#Body .is-inherit-root-text,
#Body .is-inherit-root-text p,
#Body .is-inherit-root-text li,
#Body .is-inherit-root-text div,
#Body .is-inherit-root-text span{
	color: var(--default-color);
}
#Body .is-inherit-root-text h1{
	color:var(--h1-color);
}
#Body .is-inherit-root-text h2{
	color:var(--h2-color);
}
#Body .is-inherit-root-text h3{
	color:var(--h3-color);
}
#Body .is-inherit-root-text h4{
	color:var(--h4-color);
}
#Body .is-inherit-root-text h5{
	color:var(--h5-color);
}
#Body .is-inherit-root-text h6{
	color:var(--h6-color);
}
#Body .is-inherit-root-text a, 
#Body .is-inherit-root-text a:link{
	color:var(--link-color);
}
#Body .is-inherit-root-text a:visited{
	color:var(--link-visited-color);
}
#Body .is-inherit-root-text a:hover{
	color:var(--link-hover-color);
}
#Body .is-inherit-root-text a:active{
	color:var(--link-active-color);
}

 
@media only screen and (min-width: 576px)  {
						}
@media only screen and (min-width: 768px) {	
						}
@media only screen and (min-width: 992px) {	
		h1{
		font-size:3rem;		line-height:1.2;	}
			h2{
		font-size:2.5rem;		line-height:1.4;	}		
			h3{
		font-size:2rem;			}		
				}
@media only screen and (min-width: 1200px) {	
						}

a, 
a:link{
	color: var(--link-color);
}
a:visited{
	color: var(--link-visited-color);
}
a:hover{
	color: var(--link-hover-color);
}
a:active{
	color: var(--link-active-color);
}


.btn-accent,
a.btn-accent{
	color:var(--accent-color);
	border-color:var(--accent-color);
	background-color:var(--accent-color);
}
[class*="am-btn-"].btn-accent:before{
	background-color:var(--accent-color);
}

div [class*="am-btn-"].hover-accent:hover{
	color:var(--accent-color);
	border-color:var(--accent-color);
	background-color:var(--accent-color);
}
div [class*="am-btn-"].hover-accent:hover:before{
	background-color:var(--accent-color); 
}



#Body .bg-accent{
	background-color:var(--accent-color);
}
#Body .color-accent{
	color:var(--accent-color);
} 
#Body .border-accent{
	border-color:var(--accent-color);
}
#Body .bg-accent-hover:hover{
	background-color:var(--accent-color);
}
#Body .color-accent-hover:hover{
	color:var(--accent-color);
} 
#Body .border-accent-hover:hover{
	border-color:var(--accent-color);
}

#Body .bg-accent2{
	background-color:var(--accent-color2);
}
#Body .color-accent2{
	color:var(--accent-color2);
} 
#Body .border-accent2{
	border-color:var(--accent-color2);
}

#Body .bg-accent3{
	background-color:var(--accent-color3);
}
#Body .color-accent3{
	color:var(--accent-color3);
} 
#Body .border-accent3{
	border-color:var(--accent-color3);
}
#Body .bg-accent4{
	background-color:var(--accent-color4);
}
#Body .color-accent4{
	color:var(--accent-color4);
} 
#Body .border-accent4{
	border-color:var(--accent-color4);
}

b,
strong{
	font-weight:600;
}
.bold,
.font-weight-bold,
.strong-before:before,
.strong-after:after,
.strong-before :before,
.strong-after :after{
	font-weight:600!important;
}



#Body, body, .Head, .SubTitle, .SubSubTitle, .Normal{
	font-family: var(--family);  
	font-size: 1rem; 
	line-height: 1.8;
	letter-spacing: 0;
	color: var(--default-color);
}
.default-size{font-size:1rem;}
.default-lineheight{line-height:1.8;}

@media (min-width:576px) {
		}
@media (min-width:768px) {
		}
@media (min-width:992px) {
		}
@media (min-width:1200px) {
		}



button, 
input, 
select, 
textarea,
.btn{
	font-family: var(--family);  
}

.default-color{
	color: var(--default-color)!important;
}
.default-bg-color{
	background-color: var(--default-color)!important;
}
.default-bg-color-hover:hover{
	background-color: var(--default-color)!important;
}
.default-border-color{
	border-color: var(--default-color)!important;
}
.accent-color{
	color: $var(--accent-color);
}
.default-family{
	font-family: var(--family)!important;
}
.family2{
	font-family: var(--family2)!important;
}

/*default color*/



/*page title*/
.page-title-bg{
			background-color:#12336b; 
		}		
.page-title .title-area:after{
	border-color: #f3bebe; 
}



	

.page-title-bg.light-overlay::after{
	background-color: rgba(255, 255, 255, 0.10);
}
.page-title-bg.dark-overlay::after{
	background-color: rgba(0, 0, 0, 0.10);
}

.page-title-container{
	 height: 200px;
}
@media only screen and (max-width: 767px) {
	.page-title-container{
		height: auto;padding-top:35px;padding-bottom:35px;
	}
}
@media only screen and (min-width: 768px) and (max-width: 991px){
	.page-title-container{
		height:120px;
		min-height:162px;
		padding-top: 45px;
		padding-bottom: 45px;
	}
}
 


 	.page-title .main-title span::before{
		content: none;
	}
 


/*breadcrumbs*/
.page-breadcrumbs{
	background-color:#ffffff;  
	}
.page-breadcrumbs > .container{
		padding-top:20px;
				padding-bottom:10px;
		}

.page-breadcrumbs .breadcrumbs a:hover{
		color:var(--accent-color)!important;
	}

.page-breadcrumbs .breadcrumbs{
    color: #666666;
    font-size: 14px;
}
.page-breadcrumbs .breadcrumbs-box > a,
.page-breadcrumbs .breadcrumbs-box > span > span > span{
    line-height:20px;
}
.page-breadcrumbs .breadcrumbs a,
.page-breadcrumbs .breadcrumbs a:link,
.page-breadcrumbs .breadcrumbs a:active,
.page-breadcrumbs .breadcrumbs a:visited{
    color: #666666;
    font-size: 14px;
}
.page-breadcrumbs .breadcrumbs a:hover{
			color:var(--accent-color)!important;
	}

.breadcrumbs_sytle2 .breadcrumbs-box,
.breadcrumbs_sytle3 .breadcrumbs-box > a:before, 
.breadcrumbs_sytle3 .breadcrumbs-box > span > span > span:before{
	background-color:#ededed;
}

/*sidebar dynamic*/

.sidebar_dynamic.sidebar_dynamic_sytle01{
	padding-right:40px;	}
.sidebar_dynamic.sidebar_dynamic_sytle01 > .sidebar_sticky{
	 	 }


.sidebar-main{
	display: flex;
}
.sidebar-main .sidebar-bar{
	width: 340px;
    flex: 0 0 340px;
}
.sidebar-main .sidebar-container{
	 flex-grow: 1;
	 width:  calc(100% - 340px);
}

.sidebar-main .sidebar_pos_right{
	order:2
}


@media only screen and (max-width: 767px) {
	.sidebar-main{
		flex-direction: column;
	}
	.sidebar-main .sidebar-bar{
		width:100%;
		flex: 0 0 100%;
	}	
	.sidebar-main .sidebar-container{
		width: 100%;
		flex: 0 0 100%;
	}

				.sidebar-main .sidebar-bar{
			order:1
		}	
		.sidebar-main .sidebar-container{
			order:0
		}
	}
 
@media only screen and (max-width: 991px) {
	.sidebar_dynamic.sidebar_dynamic_sytle01{
		padding-right:15px!important;
		padding-left:15px!important;
		margin-top: 30px;
	}
	.sidebar_dynamic.sidebar_dynamic_sytle01 > .sidebar_sticky{
		padding-top:0!important;
		padding-bottom:0!important;
	 }

}

.has-sidebar >.row{
	position: relative;
}




/*page */
.swiper-container .swiper-pagination-bullet-active{
	background: var(--accent-color);	
}
.swiper-container .swiper-button-next:hover, 
.swiper-container .swiper-button-prev:hover{
	color: var(--accent-color);	
}
 
.isotope-grid .isotope-group a:before {
    border-top-color:var(--accent-color2);
}

.isotope-grid .isotope-group a:after {
    border-top-color:var(--accent-color2);
}

.easy-carousel .pagination-bullet{
	color: var(--accent-color);	
}
 

/*backtop */
.fixed-backtop{
	position: fixed;
	right: 42px;
	bottom:42px;
	margin: 0;
	padding: 0;
	z-index: 1100;
    width: 56px;
	height: 56px;
    color: #23c9c9; 
    cursor: pointer;
    transition:all 300ms ease-in ;
	margin-right: -100px;
}
.fixed-backtop.active{
    
	margin-right: 0;
}

.fixed-backtop::after{
	content: "";
	width: 100%;
	height: 100%;
	border: 2px solid currentColor;
	position: absolute;
	left: 0;
	top: 0;
	border-radius: 50%;
    opacity: .3;
    transition:all 300ms ease-in ;
}
.fixed-backtop svg{
    fill: transparent;
    transform: rotate(-90deg);
}
.fixed-backtop svg circle {
    stroke: currentColor;
    stroke-width: 2;
    fill: none;
    stroke-dasharray:  150px;
    box-sizing: border-box;
    stroke-dashoffset: -150px;
    
}
.fixed-backtop .backtop-arrow{
    opacity: 0.6;
    transition:all 300ms ease-in ;
}
.fixed-backtop .backtop-arrow::after{
    content: "";
    width: 12px;
    height: 12px;
    border-top: 2px solid currentColor;
    border-right: 2px solid currentColor;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: rotate(-45deg);
    margin: -8px 0 0 -5px;
}
.fixed-backtop .backtop-arrow::before{
    content: "";
    position: absolute;
    left: 50%;
    border-right: 2px solid currentColor;
    top: 18px;
    bottom: 18px;

}

.fixed-backtop:hover .backtop-arrow{
    opacity: 1;
}

@media only screen and (max-width: 767px) {
	.fixed-backtop{
		right: 15px;
		bottom: 15px;
		-webkit-transform: scale(0.714285714);
		transform: scale(0.714285714);
		-webkit-transform-origin: right bottom;
		transform-origin: right bottom;
	}
}

