* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: var(--ff-inter);
}

:root {
  --bs-gutter-x: 1.25rem;
  --bs-gutter-y: 0;
}

.container,
.container-fluid {
  width: 100%;
  padding-right: var(--bs-gutter-x, 0.75rem);
  padding-left: var(--bs-gutter-x, 0.75rem);
  margin-right: auto;
  margin-left: auto;
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin-top: calc(-1 * var(--bs-gutter-y));
  margin-right: calc(-0.5 * var(--bs-gutter-x));
  margin-left: calc(-0.5 * var(--bs-gutter-x));
}

.row>* {
  box-sizing: border-box;
  flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  padding-right: calc(var(--bs-gutter-x) * 0.5);
  padding-left: calc(var(--bs-gutter-x) * 0.5);
  margin-top: var(--bs-gutter-y);
}

@media (min-width: 576px) {
  .container {
    max-width: 540px;
  }
}

@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}

@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}

@media (min-width: 1200px) {
  .container {
    max-width: 1240px;
  }
}

@media (min-width: 1400px) {
  .container {
    max-width: 1320px;
  }
}

.col-6 {
  flex: 0 0 auto;
  width: 50%;
}

@media screen and (min-width: 768px) {
  .col-md-3 {
    flex: 0 0 auto;
    width: 25%;
  }

  .col-md-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }

  .col-md-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }

  .col-md-6 {
    flex: 0 0 auto;
    width: 50%;
  }

  .col-md-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }

  .col-md-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }

  .col-md-9 {
    flex: 0 0 auto;
    width: 75%;
  }

  .col-md-12 {
    flex: 0 0 auto;
    width: 100%;
  }
}

@media screen and (min-width: 992px) {
  .col-lg-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }

  .col-lg-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }

  .col-lg-3 {
    flex: 0 0 auto;
    width: 25%;
  }

  .col-lg-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }

  .col-lg-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }

  .col-lg-6 {
    flex: 0 0 auto;
    width: 50%;
  }

  .col-lg-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }

  .col-lg-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }

  .col-lg-9 {
    flex: 0 0 auto;
    width: 75%;
  }

  .col-lg-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }

  .col-lg-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }

  .col-lg-12 {
    flex: 0 0 auto;
    width: 100%;
  }
}

img,
svg {
  vertical-align: middle;
}

.img-fluid {
  width: 100%;
  height: auto;
}

/* attr __________ selector ______  Starts */

[class*="flex"] {
  display: flex;
}

[class*="grid"] {
  display: grid;
}

[class*="flex"][class*="column"] {
  flex-direction: column;
  align-items: start;
}

:where([class*="flex"]:not([class*="flex"][class*="column"]), [class*="grid"]),
[class*="items-center"] {
  align-items: center !important;
}

[class*="-between"] {
  justify-content: space-between;
}

.justify-center {
  justify-content: center;
}

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

[class*="flex"][class*="wrap"] {
  flex-wrap: wrap;
}

[class*="row-gap"] {
  row-gap: 1.25rem;
}

.row-gap-3 {
  row-gap: 2rem;
}

.gap-20 {
  gap: 0.625rem 1.25rem;
}

.mt-auto {
  margin-top: 4.375rem;
}

.mt-full {
  margin-top: 9.375rem;
}

.mt-5 {
  margin-top: 3.125rem !important;
}

.mt-3 {
  margin-top: 1.875rem !important;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.mx-auto {
  margin-inline: auto;
}

.flex-grpBtn {
  gap: 0.625rem 1.25rem;
  flex-wrap: wrap;
}

.flex-btn {
  gap: 0.225rem;
  padding: 0.75rem 1.25rem !important;
  width: fit-content !important;
}

.img-placeholder {
  aspect-ratio: 16/9;
}

:is(.img-placeholder, .img-placeholder img) {
  height: 100%;
  width: 100%;
  border-radius: 0.25rem;
  object-fit: cover;
}

/*-------------------------header-start----------------------*/

header>.container {
  position: relative;
  z-index: 99;
}

header>.container nav ul {
  gap: 1rem 1.875rem;
}

header :is(#toggleBtn, #cancelBtn) {
  display: none;
}

header .dropdown {
  position: relative;
}

header .dropdown ul {
  padding: 1.25rem;
  height: fit-content;
  min-width: 12.5rem;
  width: 100%;
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: var(--rad-sm);
  margin-top: 0.625rem;
}

@media (min-width: 1024px) {
  header .dropdown ul {
    position: absolute;
    left: 0;
    top: 1.5625rem;
    transition: all 0.3s ease-out 0s;
    visibility: hidden;
    opacity: 0;
    transform: scale(1, 0);
    transform-origin: 0 0;
  }
}

header .flex-between--header .search-form {
  display: flex;
  position: absolute;
  left: 40px;
  width: 91%;
  top: 14px;
  transform: translateY(-200%);
  transition: all .3s ease;
  visibility: hidden;
  opacity: 0;
}

header .flex-between--header .search-form#show-search {
  transform: translateY(0%);
  visibility: visible;
  opacity: 1;
  transition: all .3s ease;
}

header .flex-between--header .search-form input {
  font-size: var(--fs-2);
  padding-right: 45px;
}

header .flex-between--header .search-form button {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
}

/*-------------------------hero-start----------------------*/

.hero-bg {
  z-index: 0;
  position: relative;
}

.hero-bg:after {
  z-index: -1;
  position: absolute;
  content: "";
  top: -8.125rem;
  left: 0;
  width: 100%;
}

.homepage-hero:after {
  background: url(../img/hero-bg.webp) center center / cover no-repeat;
  height: 21.875rem;
}

.pg-hero {
  background: url(../img/pg-hero.webp) no-repeat top left / cover;
  margin-top: -100px;
  margin-bottom: 50px;
  padding-block: 150px 120px;
}

.hero-bg :is(.img-placeholder, .img-placeholder img) {
  height: 12.5rem;
}

.hero-bg .container>.row {
  align-items: flex-end;
}

/*-------------------------blog-card's-start----------------------*/

.blog-card:not( :is(.blog-card.overlay-card, .tabs-content-container .blog-card, .latest-articles .blog-card)) {
  padding: 0.94rem;
  gap: 0.9375rem;
}

.blog-card .category-img-holder {
  position: relative;
}

.blog-card .flex-column--blog-content {
  align-items: stretch;
  width: 100%;
  gap: 0.625rem;
}

.blog-card .category {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  background: var(--sc);
  padding: 0.65rem 1.875rem;
  color: var(--white);
  font-size: var(--fs-3);
  font-weight: var(--bold);
  border-radius: var(--rad-md) var(--rad-md) 0 0;
  line-height: 1.125rem;
}

.blog-card [class*="-title"] {
  display: -webkit-box !important;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
}

.overlay-card {
  position: relative;
}

.overlay-card .img-placeholder {
  height: 21.875rem;
}

.overlay-card .flex-column--blog-content {
  position: absolute;
  bottom: 0.625rem;
  left: 50%;
  background: var(--white);
  max-width: 93%;
  transform: translateX(-50%);
  padding: 0.625rem;
  border-radius: var(--rad-sm);
}

/*-------------------------Category-card's-start----------------------*/

.grid-categories-container {
  grid-template-columns: repeat(5, 1fr);
  gap: 2rem;
  text-align: center;
}

.category-card img {
  width: 100%;
  height: 100%;
  border-radius: 0.125rem;
}

/*-------------------------tabs-start----------------------*/

.tabsCon .tab button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin-bottom: 0.9375rem;
  padding-bottom: 0.9375rem;
}

.tabsCon .tabcontent {
  display: none;
  animation: fadeEffect 1s;
}

/*-------------------------CTA-start----------------------*/

.cta-bg {
  padding-top: 2.5rem;
  width: 100%;
  height: 27rem;
  position: relative;
  background: url(../img/cta-bg.webp) center center / cover no-repeat;
}

/*-------------------------Information-pg-start----------------------*/

.page-status-container img {
  height: 200px;
  width: 100%;
  object-fit: contain;
}


/*-------------------------Single-Blog-Start----------------------*/

.yoast-breadcrumbs>span {
  display: flex;
  gap: 10px 15px;
  justify-content: center;
  flex-wrap: wrap
}

.blog-header .flex--post-meta {
  border-top: 1px solid var(--border-color);
  width: 100%;
  padding-top: 1.5rem;
  margin-top: 1.25rem;
  gap: 1.5rem 3rem;
}

.blog-header .flex--post-meta .date span {
  display: flex;
  align-items: center;
  gap: 7px;
  font-weight: var(--semibold);
}

:is(.blog-header .flex--post-meta, .ath-container) .flex--ath-col {
  gap: 10px;
}

:is(.blog-header .flex--post-meta, .ath-container) .flex--ath-col img {
  height: 2.75rem;
  width: 2.75rem;
  border-radius: 50%;
  border: 2px solid var(--white);
}

.blog-content .col-lg-8 :is(h2, h3, h4, h5, h6, p, ul li) {
  margin-bottom: 1rem;
}

.blog-content :is(figure, blockquote, #tableofcontent) {
  margin-bottom: 2rem;
}

.ath-container {
  margin-top: 50px;
  padding: 20px;
}

.blog-content .latest-articles {
  padding: 18px;
  position: sticky;
  top: 6.25rem;
}

.blog-content .latest-articles .h5 {
  padding-bottom: 12px;
}

.blog-content .latest-articles .col-lg-12:not(:last-child) .blog-card {
  padding-bottom: 1.25rem;
}

.blog-content .latest-articles .blog-card .card-meta span {
  padding-left: 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

#tableofcontent {
  border-radius: var(--rad-md);
  width: 100%;
  max-width: 370px;
  overflow: hidden;
  border: 1px solid var(--border-color);
}

#tableofcontent .head-th {
  height: 75px;
  width: 100%;
  padding: 20px;
}

#tableofcontent ul {
  padding: 0.75rem 1.25rem 1.25rem 1rem;
}

#tableofcontent ul li {
  padding: 10px 10px 10px 45px;
  border-radius: var(--rad-md);
}

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

footer {
  padding-block: 10rem 6.25rem;
  margin-top: 5rem;
  width: 100%;
  background: url(../img/footer-bg.webp) center center / cover no-repeat;
}

.flex-mailer {
  gap: 0.625rem;
  margin-bottom: 1.875rem;
}

footer form {
  position: relative;
  margin-bottom: 1.875rem;
}

footer form button {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
}

.flex-social-media {
  gap: 0.4375rem;
  margin-top: 0.3125rem;
}

footer ul.flex-column--menu-wrap {
  gap: 1.125rem;
}

#backToTop {
  position: fixed;
  right: 20px;
  width: 50px;
  height: 50px;
  bottom: 20px;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: all .5s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.single-blog main .blog-sidebar-social {
        writing-mode: sideways-rl;
    display: flex;
    align-items: center;
    white-space: nowrap;
    gap:20px;
    justify-self: center;
        margin-top: -400px;
    color: var(--white);
    position: sticky;
    top: 100px;
  }

    .single-blog main .blog-sidebar-social a{
        border: 1px solid var(--white);
        background: transparent;
        height: 2rem !important;
        width: 2rem !important;
    }

    .single-blog main .is-bg-white .blog-sidebar-social,
    .single-blog main .is-bg-white .blog-sidebar-social svg{
        color: var(--black);
        fill: var(--black); 
    }

    .single-blog main .is-bg-white .blog-sidebar-social ul li a{
      border-color: var(--black)
    }

    .single-blog main .is-bg-white .blog-sidebar-social ul li a:hover{
      background: var(--pc);
      --black : var(--pc);
    }

    .single-blog main .is-bg-white .blog-sidebar-social ul li a:hover svg{
      --black : var(--white) !important;
    }


/*-------------------------responsive-css-start----------------------*/

@media (max-width: 1024px) {
  .d-md-none {
    display: none;
  }

  header .flex-between--header .search-form {
    top: 10px;
  }

  header nav {
    position: absolute;
  }

  header nav>ul {
    flex-direction: column;
    align-items: flex-start !important;
    background: var(--white);
    height: 100vh;
    top: 0;
    position: fixed;
    left: 0;
    padding: 1.875rem;
    min-width: 18.75rem;
    transform: translateX(-100%);
    transition: all 0.3s ease-in-out 0s;
  }

  header nav>ul#show-ul {
    transform: translateX(0%);
    transition: all 0.3s ease-in-out 0s;
  }

  header nav ul li {
    width: 100%;
  }

  header nav ul li.dropdown>svg {
    float: right;
  }

  header .flex-btn,
  header nav ul li.dropdown ul,
  .tabs-dog-texture:after,
  .cta-bg .cta-texture:after,
  .cta-bg .cta-texture:before,
  footer .footer-border-dog:after {
    display: none;
  }

  header button {
    display: block !important;
  }

  header nav ul li.show-dropdown ul {
    display: flex !important;
  }

  button#cancelBtn {
    position: absolute;
    z-index: 99;
    right: 1.25rem;
    display: block;
    top: 1.25rem;
  }

  .hero-bg :is(.img-placeholder, .img-placeholder img) {
    height: auto;
  }

  .mt-full,
  .mt-auto {
    margin-top: 3.125rem !important;
  }

  .grid-categories-container {
    grid-template-columns: repeat(5, 40%);
    gap: 1rem;
    overflow-x: auto;
    white-space: nowrap;
    padding: 10px;
  }

  .grid-categories-container .category-card {
    padding: 10px;
  }

  .grid-categories-container .h6 {
    font-size: 13px;
  }

  .dog-texture:after {
    height: 11.875rem !important;
    width: 5rem !important;
    top: -3rem !important;
  }

  .cta-bg {
    padding-top: 2rem;
    height: 35rem;
    margin-top: 0 !important;
  }

  .tabsCon .tab {
    overflow-x: auto;
    flex-direction: row;
    gap: 0 1.25rem;
  }

  .tabsCon .tab button {
    padding-bottom: 0.25rem;
  }

  .tabsCon .tabs-content-container {
    padding: 1.25rem !important;
  }

  footer {
    padding-block: 12.5rem 6.25rem;
    /* height: 30rem; */
    margin-top: 0 !important;
  }

  .footer-dog-texture:after {
    height: 7.5rem !important;
    width: 23.375rem !important;
    right: 1.25rem !important;
    transform: rotate(5deg);
  }

  footer .footer-border-dog {
    margin-left: 0 !important;
  }

  .order-md-1 {
    order: 1;
  }

  .order-md-2 {
    order: 2;
  }

  .order-md-3 {
    order: 3;
  }

  .blog-content img {
    width: 100%;
    height: 100%;
  }

  .single-blog main .blog-sidebar-social{
    margin-top: unset !important;
    writing-mode : unset !important;
    padding: 10px 20px !important;
  }

}

@media (600px <=width <=1023px) {

  header .flex-between--header .search-form {
    left: 35px;
    width: 85%;
  }

  .footer-dog-texture:after {
    top: 3.7rem !important;
  }
}

@media (width <=600px) {

  header .flex-between--header .search-form {
    left: 40px;
    width: 70%;
  }

  .footer-dog-texture:after {
    top: 2.50rem !important;
  }

  .pg-hero {
    margin-bottom: 0 !important;
  }

  .blog-header .flex--post-meta .flex--ath-col a {
    font-size: 12px !important;
  }

  :is(.blog-header .flex--post-meta, .ath-container) .flex--ath-col img {
    height: 2rem !important;
    width: 2rem !important;
  }
}