:root {
  --ink: #0b2b33;
  --ink-2: #123640;
  --ink-3: #0e323b;
  --gold: #b8935f;
  --gold-light: #e4cfa8;
  --crimson: #8c1f28;
  --ivory: #f7f5f1;
  --paper: #ffffff;
  --slate: #4a5558;
  --line: rgba(11, 43, 51, 0.12);
  --shadow: 0 20px 50px rgba(11, 43, 51, 0.1);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "Inter", sans-serif;
  color: var(--slate);
  background: #fff9f5;
  overflow-x: hidden;
}
h1,
h2,
h3,
h4,
.font-display {
  font-family: "Fraunces", serif;
  color: #33447b;
  letter-spacing: -0.01em;
}
.eyebrow {
  font-family: "Inter", sans-serif;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-size: 0.72rem;
  color: #b01114;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: #b01114;
  display: inline-block;
}

.btn-gold {
  background: #b01114;
  border: 1px solid #b01114;
  color: #fff;
  font-weight: 600;
  padding: 0.75rem 1.9rem;
  border-radius: 2px;
  letter-spacing: 0.03em;
  transition: 0.3s;
}

.btn-gold:hover {
  background: transparent;
  color: var(--gold);
}
.btn-outline-ivory {
  border: 1px solid rgba(247, 245, 241, 0.55);
  color: var(--ivory);
  padding: 0.75rem 1.9rem;
  border-radius: 2px;
  font-weight: 500;
  transition: 0.3s;
}
.btn-outline-ivory:hover {
  background: var(--ivory);
  color: var(--ink);
}
.section-pad {
  padding: 4rem 0;
}

.divider-pulse {
  width: 100%;
  height: 36px;
  opacity: 0.35;
  margin-bottom: 20px;
}

.divider-pulse path {
  fill: none;
  stroke: var(--gold);
  stroke-width: 2;
}

/* NAV */
.navbar {
  padding: 5px 0;
  transition: 0.35s;
  background: #fff;
}
.navbar.scrolled {
  background: #fff;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.15);
  padding: 0.65rem 0;
}
.navbar-brand {
  font-family: "Fraunces", serif;
  color: var(--ivory) !important;
  font-size: 1.35rem;
  line-height: 1.1;
}
.navbar-brand small {
  display: block;
  font-family: "Inter", sans-serif;
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  color: var(--gold);
  text-transform: uppercase;
}
.nav-link {
  color: rgba(54, 54, 54, 0.85) !important;
  font-weight: 500;
  font-size: 1rem;
  margin: 0 0.6rem;
  position: relative;
}
.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: 0.3s;
}
.nav-link:hover::after {
  width: 100%;
}

/* HERO */
.hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  background: var(--ink);
}
.hero .owl-carousel,
.hero .owl-stage-outer,
.hero .owl-stage,
.hero .owl-item,
.hero .item {
  height: 100vh;
  min-height: 640px;
}
.hero .item {
  position: relative;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
}
.hero .item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    100deg,
    rgba(51, 11, 11, 0.92) 15%,
    rgba(93, 19, 19, 0.55) 55%,
    rgba(235, 32, 32, 0.35) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  color: var(--ivory);
  max-width: 680px;
}
.hero-content .eyebrow {
  color: var(--gold-light);
}
.hero-content h1 {
  color: var(--paper);
  font-size: 3.4rem;
  font-weight: 500;
  line-height: 1.12;
  margin: 1.1rem 0 1.3rem;
}
.hero-content h1 em {
  font-style: italic;
  color: var(--gold-light);
}
.hero-content p {
  font-size: 1.08rem;
  color: rgba(247, 245, 241, 0.82);
  max-width: 520px;
  margin-bottom: 2.2rem;
}
.hero .owl-dots {
  position: absolute;
  bottom: 34px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
}
.hero .owl-dot span {
  background: rgba(247, 245, 241, 0.4) !important;
  width: 8px;
  height: 8px;
  margin: 0 5px;
}
.hero .owl-dot.active span {
  background: var(--gold) !important;
}
.hero-scroll {
  position: absolute;
  bottom: 38px;
  right: 6%;
  z-index: 3;
  color: var(--ivory);
  writing-mode: vertical-rl;
  font-size: 0.72rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  opacity: 0.75;
}
.hero-scroll .line {
  width: 1px;
  height: 60px;
  background: var(--gold);
}

/* pulse strip in hero */
.hero-pulse {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 70px;
  z-index: 2;
  opacity: 0.5;
}

/* FEATURES */
.feature-card {
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 2.5rem 1.8rem;
  height: 100%;
  transition: 0.35s;
  position: relative;
}
.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: transparent;
}
.feature-icon {
  width: 58px;
  height: 58px;
  border: 1px solid #b01114;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: #b01114;
  margin-bottom: 1.4rem;
}
.feature-card h4 {
  font-size: 1.15rem;
  margin-bottom: 0.7rem;
}
.feature-card p {
  font-size: 0.92rem;
  margin-bottom: 0;
}

/* ABOUT */
.about-img-wrap {
  position: relative;
}
.about-img-wrap img {
  width: 100%;
  border-radius: 2px;
}
.about-badge {
  position: absolute;
  bottom: -28px;
  left: -28px;
  background: #a20003;
  color: var(--ivory);
  padding: 1.4rem 1.7rem;
  max-width: 230px;
}
.about-badge .num {
  font-family: "Fraunces", serif;
  font-size: 2.1rem;
  color: var(--gold-light);
  line-height: 1;
}
.about-badge .lbl {
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
}
.about-cred-list li {
  padding: 0.55rem 0;
  border-bottom: 1px dashed var(--line);
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
  font-size: 0.95rem;
}
.about-cred-list i {
  color: var(--gold);
  margin-top: 0.2rem;
}
.signature-tag {
  font-family: "Fraunces", serif;
  font-style: italic;
  font-size: 1.4rem;
  color: var(--ink);
  border-top: 1px solid var(--line);
  padding-top: 1rem;
  margin-top: 1.5rem;
}

/* COUNTERS */
.counters-section {
  background: #840002;
  position: relative;
  color: var(--ivory);
  overflow: hidden;
}
.counters-section .pulse-bg {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  transform: translateY(-50%);
  opacity: 0.18;
}
.counter-item {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 1rem;
}
.counter-item .num {
  font-family: "Fraunces", serif;
  font-size: 3rem;
  color: var(--gold-light);
  line-height: 1;
}
.counter-item .lbl {
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(247, 245, 241, 0.7);
  margin-top: 0.6rem;
}

/* SERVICES */
.service-card {
  background: var(--paper);
  border: 1px solid var(--line);
  margin: 0.5rem;
  overflow: hidden;
}
.service-card .img-wrap {
  height: 200px;
  overflow: hidden;
}
.service-card .img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s;
}
.service-card:hover .img-wrap img {
  transform: scale(1.08);
}
.service-card .body {
  padding: 1.6rem;
}
.service-card .idx {
  font-family: "Fraunces", serif;
  font-style: italic;
  color: var(--gold);
  font-size: 0.9rem;
}
.service-card h5 {
  margin: 0.5rem 0 0.6rem;
}
.owl-nav-custom .owl-nav {
  margin-top: 1.8rem;
  text-align: center;
}
.owl-nav-custom .owl-nav button {
  width: 44px;
  height: 44px;
  border-radius: 50% !important;
  background: transparent !important;
  border: 1px solid var(--ink) !important;
  color: var(--ink) !important;
  margin: 0 6px !important;
  font-size: 1.2rem !important;
}
.owl-nav-custom .owl-nav button:hover {
  background: var(--ink) !important;
  color: var(--ivory) !important;
}

/* TESTIMONIALS */
.testimonials-section {
  background: #fff;
  position: relative;
}
.testi-card {
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 2.6rem;
  margin: 1rem 0.6rem;
  text-align: center;
}
.testi-card .quote-mark {
  font-family: "Fraunces", serif;
  font-size: 3rem;
  color: var(--gold);
  line-height: 1;
}
.testi-card p.msg {
  font-size: 1.02rem;
  font-style: italic;
  color: var(--ink-2);
  margin: 1rem 0 1.6rem;
}
.testi-card .avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 0.8rem;
}
.testi-card .name {
  font-weight: 600;
  color: var(--ink);
  font-size: 0.95rem;
}
.testi-card .role {
  font-size: 0.78rem;
  color: var(--gold);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* WHY CHOOSE */
.why-choose-section {
  background: #f6f6f694;
}
.why-box {
  border: 1px solid rgba(51, 68, 123, 0.28);
  padding: 1.6rem;
  display: flex;
  gap: 1.1rem;
  align-items: flex-start;
  margin-bottom: 1.1rem;
  transition: 0.3s;
}
.why-box:hover {
  border-color: #b01114;
  background: var(--ivory);
}
.why-box i {
  font-size: 1.5rem;
  color: #b01114;
}
.why-box h5 {
  font-size: 1rem;
  margin-bottom: 0.3rem;
}
.why-box p {
  font-size: 0.87rem;
  margin-bottom: 0;
}
.why-img-wrap {
  position: relative;
  height: 100%;
  min-height: 420px;
}
.why-img-wrap img {
  width: 100%;
  
}
.why-img-wrap .ribbon {
  position: absolute;
  top: 22px;
  left: -8px;
  background: var(--crimson);
  color: #fff;
  padding: 0.5rem 1.4rem 0.5rem 1rem;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* GALLERY */
.gallery-section {
  background: #293c75;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  margin-bottom: 1.5rem;
}
.gallery-item img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: 0.5s;
}
.gallery-item:hover img {
  transform: scale(1.1);
}
.gallery-item .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(11, 43, 51, 0.85), transparent 55%);
  display: flex;
  align-items: flex-end;
  padding: 1rem 1.2rem;
  opacity: 0;
  transition: 0.35s;
}
.gallery-item:hover .overlay {
  opacity: 1;
}
.gallery-item .overlay span {
  color: var(--ivory);
  font-size: 0.85rem;
  letter-spacing: 0.05em;
}

/* BLOG */
.blog-card {
  background: var(--paper);
  border: 1px solid var(--line);
  height: 100%;
}
.blog-card img {
  width: 100%;
  height: 210px;
  object-fit: cover;
}
.blog-card .body {
  padding: 1.7rem;
}
.blog-card .meta {
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.6rem;
}
.blog-card h5 {
  font-size: 1.05rem;
  margin-bottom: 0.7rem;
}
.blog-card a.read {
  font-size: 0.85rem;
  color: var(--ink);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid var(--gold);
}

/* TARGETED / LOCAL SEO SECTION */
.local-section {
  background: var(--paper);
}
.local-section .content-block p {
  font-size: 0.98rem;
  line-height: 1.85;
}
.local-section .content-block h3 {
  font-size: 1.4rem;
  margin-top: 1.6rem;
  margin-bottom: 0.6rem;
}
.local-highlights {
  background: var(--ivory);
  border: 1px solid var(--line);
  padding: 2rem;
}
.local-highlights li {
  display: flex;
  gap: 0.7rem;
  padding: 0.55rem 0;
  font-size: 0.92rem;
  border-bottom: 1px dashed var(--line);
}
.local-highlights i {
  color: var(--gold);
}

/* FAQ */
.faq-section {
  background: var(--ivory);
}
.accordion-item {
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0 !important;
}
.accordion-button {
  background: transparent !important;
  font-family: "Fraunces", serif;
  font-size: 1.08rem;
  color: var(--ink) !important;
  padding: 1.3rem 0;
  box-shadow: none !important;
}
.accordion-button:not(.collapsed) {
  color: var(--gold) !important;
}
.accordion-button::after {
  filter: none;
}
.accordion-body {
  padding: 0 0 1.4rem;
  font-size: 0.95rem;
}

/* FOOTER */
footer {
  background: #15265e;
  color: rgba(247, 245, 241, 0.75);
}
footer h6 {
  color: var(--ivory);
  font-family: "Fraunces", serif;
  font-size: 1.05rem;
  margin-bottom: 1.2rem;
}
footer a {
  color: rgba(247, 245, 241, 0.7);
  text-decoration: none;
  font-size: 0.9rem;
}
footer a:hover {
  color: var(--gold-light);
}
footer .foot-links li {
  margin-bottom: 0.6rem;
}
.foot-social a {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(247, 245, 241, 0.25);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 0.5rem;
}
.foot-social a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--ink);
}
.foot-bottom {
  border-top: 1px solid rgba(247, 245, 241, 0.12);
  padding: 1.2rem 0;
  font-size: 0.82rem;
}

.section-title h2 {
  font-size: 2.3rem;
  font-weight: 500;
  margin: 0.8rem 0 1rem;
}

@media (max-width: 767px) {
  .hero-content h1 {
    font-size: 2.2rem;
  }
  .about-badge {
    left: 0;
    bottom: -20px;
    padding: 1rem 1.2rem;
  }
  .section-pad {
    padding: 4rem 0;
  }
}


.section-service .owl-nav
{
    display: none;
}


.footer-contact ul li
{
  font-size:14px;
}


.sg-page-head
{
    margin-top:85px;
    background:#b01114;
    padding:40px 0;

}

body a {text-decoration:none;}


.sg-page-head h1 {color:#fff;}
.sg-page-head .sg-page-root span {color:#fff;}
.sg-page-head .sg-page-root span a {color:#fff;}

.img-section h4 {font-size:20px;}
.img-section span {font-size:14px;}

.service-card ul li
{
    font-size:15px;
}

.sg-about-page .feature-card{
    background:#fff;
    border-radius:20px;
    border:1px solid #eef2f7;
    transition:.35s ease;
    box-shadow:0 10px 30px rgba(0,0,0,.05);
}

.sg-about-page .feature-card:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 45px rgba(13,110,253,.12);
}

.sg-about-page .icon-box{
    width:80px;
    height:80px;
    margin:auto;
    border-radius:50%;
    background:linear-gradient(135deg,#b01114,#b01114);
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    font-size:34px;
    box-shadow:0 10px 25px rgba(176, 17, 20, 0.2);
}

.sg-about-page .feature-card h5{
    color:#0b1f44;
}

.sg-about-page .feature-card p{
    font-size:15px;
    line-height:1.8;
}

.sg-about-page .cta-section
{
    background:#b01114;
}

.sg-about-page .heart-circle{
    width:220px;
    height:220px;
    margin:auto;
    background:rgba(255,255,255,.08);
    border:2px solid rgba(255,255,255,.15);
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    backdrop-filter:blur(8px);
    animation:pulse 2.5s infinite;
}

.sg-about-page .heart-circle i{
    font-size:90px;
    color:#ffc107;
}

.sg-about-page .cta-section .btn{
    transition:.3s;
}

.sg-about-page .cta-section .btn:hover{
    transform:translateY(-3px);
}

@keyframes pulse{
    0%{
        transform:scale(1);
        box-shadow:0 0 0 0 rgba(255,255,255,.25);
    }
    70%{
        transform:scale(1.03);
        box-shadow:0 0 0 25px rgba(255,255,255,0);
    }
    100%{
        transform:scale(1);
        box-shadow:0 0 0 0 rgba(255,255,255,0);
    }
}



.navbar .dropdown-menu{
    border:0;
    border-radius:10px;
    padding:10px 0;
    margin-top:15px;
    box-shadow:0 10px 30px rgba(0,0,0,.12);
}

.navbar .dropdown-item{
    padding:10px 20px;
    font-size:15px;
    transition:.3s;
}

.navbar .dropdown-item:hover{
    background:#f5f5f5;
    color:#b8860b;
}

@media(min-width:992px){
    .navbar .dropdown:hover>.dropdown-menu{
        display:block;
    }

    .navbar .dropdown-toggle::after{
        margin-left:10px;
    }
}

.dropdown .nav-link::after
{
  background: none;
}


/**** Contact ****/


.contact-hero {
    background: linear-gradient(135deg, #fff5f5, #ffffff);
    padding: 90px 0;
}

.contact-hero h1 {
    font-size: 48px;
    line-height: 1.2;
    color: var(--dark-color);
}

.contact-hero h1 span {
    color: var(--primary-color);
}

.contact-hero p {
    font-size: 18px;
    line-height: 1.8;
}


.hero-image {
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0,0,0,0.15);
}

.hero-image img {
    transition: 0.5s ease;
}

.hero-image:hover img {
    transform: scale(1.05);
}



/* Section Heading */

.section-title h2 {
    font-size: 36px;
    font-weight: 700;
    color:#111827;
}

.section-title p {
    max-width:700px;
    margin:auto;
}



/* Contact Cards */

.contact-card {

    border:none;
    border-radius:20px;
    padding:35px 25px;
    background:#ffffff;
    transition:all .4s ease;
    position:relative;
    overflow:hidden;

}


.contact-card:before {

    content:"";
    position:absolute;
    width:100px;
    height:100px;
    background:rgba(215,25,32,.08);
    border-radius:50%;
    top:-40px;
    right:-40px;

}



.contact-card:hover {

    transform:translateY(-10px);
    box-shadow:0 20px 45px rgba(0,0,0,.12);

}



.contact-icon {

    width:70px;
    height:70px;
    display:flex;
    align-items:center;
    justify-content:center;
    margin:auto;
    border-radius:50%;
    background:#fff0f1;
    color:var(--primary-color);
    font-size:32px;

}




/* Appointment Form */


.appointment-box {

    border-radius:25px;
    background:#fff;
    padding:45px;
    box-shadow:0 20px 50px rgba(0,0,0,.1);

}


.appointment-box .form-control,
.appointment-box .form-select {

    height:55px;
    border-radius:12px;
    border:1px solid #e5e7eb;
    padding-left:18px;

}


.appointment-box textarea {

    height:auto !important;
    padding-top:15px;

}



.form-control:focus,
.form-select:focus {

    border-color:var(--primary-color);
    box-shadow:0 0 0 .25rem rgba(215,25,32,.15);

}




.btn-danger {

    background:var(--primary-color);
    border:none;
    border-radius:50px;
    padding:14px 35px;
    font-weight:600;
    transition:.3s;

}


.btn-danger:hover {

    background:#b31318;
    transform:translateY(-3px);

}



/* Map */

.map-box {

    border-radius:25px;
    overflow:hidden;
    box-shadow:0 15px 40px rgba(0,0,0,.12);

}



.map-box iframe {

    border:0;

}



/* CTA */


.contact-cta {

    background:
    linear-gradient(
    135deg,
    rgba(215,25,32,.95),
    rgba(150,0,0,.95)
    ),
    url("https://images.unsplash.com/photo-1584515933487-779824d29309?w=1200");

    background-size:cover;
    background-position:center;
    padding:80px 0;
    color:white;

}



.contact-cta h2 {

    font-size:42px;
    font-weight:700;

}



/* Responsive */

@media(max-width:768px){

.contact-hero h1{
    font-size:34px;
}

.section-title h2{
    font-size:28px;
}

.appointment-box{
    padding:25px;
}

.contact-cta h2{
    font-size:30px;
}

}



/* Floating Call Button */

.floating-call {

    position: fixed;
    bottom: 30px;
    left: 25px;

    width: 55px;
    height: 55px;

    background: #d71920;
    color: #ffffff;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 28px;

    text-decoration: none;

    z-index: 9999;

    box-shadow:
    0 0 0 0 rgba(215,25,32,0.7);

    animation: callPulse 1.8s infinite;

    transition:0.3s ease;
}


.floating-call:hover {

    background:#b31318;
    transform:scale(1.1);
    color:#fff;

}


/* Glow Animation */

@keyframes callPulse {

    0% {

        box-shadow:
        0 0 0 0 rgba(215,25,32,0.7);

    }


    70% {

        box-shadow:
        0 0 0 25px rgba(215,25,32,0);

    }


    100% {

        box-shadow:
        0 0 0 0 rgba(215,25,32,0);

    }

}



/* Mobile Adjustment */

@media(max-width:576px){

    .floating-call {

        width:58px;
        height:58px;
        bottom:20px;
        left:20px;
        font-size:24px;

    }

}

/**** Blog Full  *****/

/* ================= Sidebar CSS ================= */


.sg-full-blog .sidebar-box{

    background:#fff;
    padding:30px;
    border-radius:20px;
    box-shadow:0 10px 35px rgba(0,0,0,.08);

}


.sg-full-blog .sidebar-title{

    font-size:24px;
    font-weight:700;
    margin-bottom:25px;
    position:relative;
    padding-bottom:12px;

}


.sg-full-blog .sidebar-title:after{

    content:"";
    position:absolute;
    left:0;
    bottom:0;
    width:45px;
    height:3px;
    background:#d71920;
    border-radius:10px;

}



/* Appointment Box */

.sg-full-blog  .appointment-sidebar{

    background:
    linear-gradient(
    135deg,
    #d71920,
    #9d1116
    );

    color:white;

}


.sg-full-blog  .appointment-sidebar .icon-box{

    width:65px;
    height:65px;
    background:#fff;
    color:#d71920;
    border-radius:50%;

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:30px;

}


.sg-full-blog  .appointment-sidebar .btn{

    border-radius:50px;
    font-weight:600;

}



/* Recent Posts */


.sg-full-blog  .recent-post{

    display:flex;
    gap:15px;
    margin-bottom:22px;

}


.sg-full-blog  .recent-post img{

    width:80px;
    height:70px;
    object-fit:cover;
    border-radius:12px;

}


.sg-full-blog  .recent-post h6{

    font-size:15px;
    line-height:1.5;
    margin-bottom:8px;

}


.sg-full-blog  .recent-post h6 a{

    text-decoration:none;
    color:#111827;
    transition:.3s;

}


.sg-full-blog  .recent-post h6 a:hover{

    color:#d71920;

}


.sg-full-blog  .recent-post small{

    color:#777;

}



/* Tags */


.sg-full-blog  .tags{

    display:flex;
    flex-wrap:wrap;
    gap:10px;

}


.sg-full-blog  .tags a{

    text-decoration:none;
    background:#f8e8e9;
    color:#d71920;
    padding:8px 15px;
    border-radius:30px;
    font-size:14px;
    transition:.3s;
}


.sg-full-blog  .tags a:hover
{
    background:#d71920;
    color:white;
}

.sg-full-blog ul li 
{
    background:transparent;
}