@import url("https://fonts.googleapis.com/css2?family=Mulish:wght@200;300;400;500;600;700;800;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Birthstone+Bounce:wght@400;500&display=swap");

/* Variables */
:root {
  --primary-color: #003455;
  --secondary-color: #67c1be;
  --text-primary-color: #212121;
  --text-secondary-color: #5c5c5c;

  --font: "Mulish", sans-serif;

  --fancy-title: "Birthstone Bounce", cursive;
  --section-title: var(--font);
}

/* Common CSS */
body,
html,
ul,
li,
h1,
h2,
h3,
h4,
h5,
h6,
p,
figure,
blockquote {
  margin: 0;
  padding: 0;
}

html,
body {
  font-size: 16px;
  width: 100%;
  overflow-x: hidden;
  box-sizing: border-box;
  font-family: var(--font);
}

a {
  color: inherit;
  list-style: none;
  text-decoration: none;
}

li {
  list-style: none;
}

p {
  font-style: normal;
  font-weight: 400;
  font-size: 1.125rem;
  line-height: 1.75;
}


/* Utility Classes */
.custom-container {
  padding-left: 7.1875rem;
  padding-right: 7.1875rem;
  margin: 0 auto;
  width: 100%;
}

/* .content-container{
  padding-left: 13.625rem;
  padding-right: 13.625rem;
  padding-top: 7.625rem;
  padding-bottom: 7.625rem;
  margin: 0 auto;
  width: 100%;
} */

.max-container {
  max-width: 1920px;
  margin: 0 auto;
}

.main-wrapper {
  padding: 65px 0px;
  max-width: 1920px;
  margin: 0 auto;
  background-color: #fff;
}

.section.sm {
  padding: 60px 0;
}

.blog-post-wrapper {
  display: flex;
  gap: 22px;
  padding-bottom: 30px;
  flex-wrap: wrap;
}

/*  Breadcrumb */
.post-breadcrumb {
  display: flex;
  margin: 0 0 30px;
  padding: 0;
}

.post-breadcrumb li {
  color: #a7a7a7;
  display: inline-block;
  position: relative;
  padding-right: 15px;
  margin-right: 15px;
  font-weight: 700;
  font-size: .875rem;
  text-transform: capitalize;
}

.post-breadcrumb li:not(:last-child):after {
  border-color: transparent transparent #969696 #969696;
}

.post-breadcrumb li:not(:last-child):after {
  content: "";
  position: absolute;
  top: 50%;
  margin-top: -4px;
  right: 0;
  width: 4px;
  height: 4px;
  border: 2px solid;
  border-color: transparent transparent #757575 #757575;
  transform: rotate(-136deg);
}

/* Pagination */
.blog-pagination ul.page-numbers {
  display: flex;
  flex-wrap: wrap;
  border-radius: 8px;
  border: 1px solid #eee;
  background: #f6f7f8;
  width: fit-content;
  margin-left: auto;
}

.blog-pagination ul > li > .page-numbers {
  color: #000000;
  background: 0 0;
  border: none;
  width: 50px;
  height: 40px;
  text-align: center;
  display: flex;
  align-items: center;
  font-weight: 700;
  justify-content: center;
  border-right: 1px solid #eee;
}

.blog-pagination ul > li > .page-numbers.current {
  background-color: #fcc103;
  color: #fff;
  font-weight: 700;
}

.blog-pagination img {
  height: 25px;
  width: 25px;
  opacity: .6;
  pointer-events: none;
}

.blog-pagination ul > li > .prev img {
  transform: rotate(90deg);
}

.blog-pagination ul > li > .next img {
  transform: rotate(-90deg);
}

.ellipsis {
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}


.d-flex {
  display: flex;
}

.p-0 {
  padding: 0;
}

.align-center {
  align-items: center;
}

.br-0 {
  border-right: none !important;
}

.d-none{
  display: none !important;
}

.d-block {
  display: block;
}

.text-white {
  color: #ffffff;
}

.text-center{
  text-align: center;
}

.title {
  font-family: var(--section-title);
  font-style: normal;
  font-weight: 700;
  font-size: 30px;
  line-height: 36px;
  color: #000000;
}

.title .highlighted {
  color: #fcc103;
}

#go-top-btn {
  position: fixed;
  bottom: 15px;
  right: 15px;
  z-index: 99;
  border: none;
  cursor: pointer;
  background-color: #fcc103;
  padding: 18px;
  border-radius: 5px;
  box-shadow: rgba(0,0,0,8%)0 4px 12px;
  scroll-behavior: smooth;
  transition: .3s;
  opacity: 0;
  max-width: 0;
  max-height: 0
}

#go-top-btn:after {
  content: "";
  position: absolute;
  margin: -3px 0 0 -7px;
  top: 50%;
  left: 50%;
  width: 8px;
  height: 8px;
  border: 2px solid;
  border-color: transparent transparent #fff #fff;
  transform: rotate(135deg)
}

#go-top-btn.active {
  opacity: 1;
  max-width: 100px;
  max-height: 100px
}

.item-grid {
  display: flex;
  justify-content: start;
  gap: 20px;
  flex-wrap: wrap;
  width: 100%;
}

.item-card {
  position: relative;
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.25s ease-in-out;
}

.item-card.post-box{
  margin: 0;
}

.grid-2 .item-card {
  width: calc(50% - 15px);
  max-width: calc(50% - 15px)
}

.grid-3 .item-card {
  width: calc(33.33% - 20px);
  max-width: calc(33.33% - 20px)
}

.grid-4 .item-card {
  width: calc(25% - 15px);
  max-width: calc(25% - 15px);
}

@media screen and (max-width: 1400px) {
  .grid-4 .item-card {
      width:calc(33.33% - 13.33px);
      max-width: calc(33.33% - 13.33px)
  }
}

@media screen and (max-width: 1199px) {
  .grid-4 .item-card,.grid-3 .item-card {
      width: calc(50% - 10px);
      max-width: calc(50% - 10px)
  }
}

@media screen and (max-width: 767px) {
  .grid-4 .item-card,.grid-3 .item-card {
    width: calc(50% - 10px);
    max-width: calc(50% - 10px)
  }
}

@media screen and (max-width: 575px) {
  .grid-4 .item-card,.grid-3 .item-card {
      width: 100%;
      max-width: 100%
  }
}

/*Animation*/

.drop-in {
  animation: drop-in 1s ease-in-out 200ms backwards
}

.drop-in-2 {
  animation: drop-in 1200ms ease-in-out 500ms backwards
}


@keyframes drop-in {
  from {
    opacity: 0;
    transform: translateY(100px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

.drop-top {
  animation: drop-top 350ms ease-out 200ms backwards
}

@keyframes drop-top {
  from {
    opacity: 0;
    transform: translateY(-20px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

.item-card .items-shimmer {
  min-height: 0;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0
}

.item-card.shimmer-card:after {
  display: none
}
.card-shimmer{
  overflow: unset !important;
  height: 285px;
}
.shimmer-card2nd{
  overflow: unset !important;
  height: 393px;
}
.items-shimmer {
  position: relative;
  overflow: hidden;
  padding: 58px 60px;
  margin-bottom: 15px;
  border-radius: 8px;
  min-height: 297px;
  background: linear-gradient(to right,#E0E0E0 0%,#F5F5F5 50%,#E0E0E0 100%);
  background-size: 800% 100%;
  animation: shimmer 2s ease-in-out infinite
}

@keyframes shimmer {
  0% {
      background-position: 0 0
  }

  100% {
      background-position: -200% 0
  }
}

.shine {
  background: #f6f7f8;
  background-image: -webkit-gradient(linear,left top,right top,from(#f6f7f8),color-stop(20%,#edeef1),color-stop(40%,#f6f7f8),to(#f6f7f8));
  background-image: -o-linear-gradient(left,#f6f7f8 0%,#edeef1 20%,#f6f7f8 40%,#f6f7f8 100%);
  background-image: linear-gradient(to right,#f6f7f8 0%,#edeef1 20%,#f6f7f8 40%,#f6f7f8 100%);
  background-repeat: no-repeat;
  background-size: 800px 300px;
  display: inline-block;
  position: relative;
  -webkit-animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
  -webkit-animation-iteration-count: infinite;
  -webkit-animation-name: placeholderShimmer;
  -webkit-animation-timing-function: linear
}

.shimmer-line {
  margin-bottom: 10px;
  display: block!important;
  height: 13px
}

@-webkit-keyframes placeholderShimmer {
  0% {
      background-position: -468px 0
  }

  100% {
      background-position: 468px 0
  }
}

@keyframes placeholderShimmer {
  0% {
      background-position: -468px 0
  }

  100% {
      background-position: 468px 0
  }
}