@keyframes shine {
  from {
    opacity: 0;
    left: 0%;
  }
  50% {
    opacity: 1;
  }
  to {
    opacity: 0;
    left: 100%;
  }
}
.blog-banner {
  position: relative;
  color: white;
  overflow: hidden;
  height: 80vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media only screen and (max-width: 1024px) {
  .blog-banner {
    height: 70vh;
  }
}
@media only screen and (max-width: 991px) {
  .blog-banner {
    height: 60vh;
  }
}
.blog-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 46.76%, rgba(0, 0, 0, 0.7) 78.83%), linear-gradient(0deg, rgba(0, 0, 0, 0) 69.01%, rgba(0, 0, 0, 0.5) 88.92%);
}
.blog-banner .bg img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: -1;
}
.blog-banner .bg-wrapper {
  position: absolute;
  bottom: 5%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  width: 100%;
}
@media only screen and (max-width: 540px) {
  .blog-banner .bg-wrapper {
    top: inherit;
    bottom: 10%;
  }
}
.blog-banner .bg-wrapper h1 {
  font-weight: 400;
  font-size: 64px;
  text-align: center;
  text-transform: uppercase;
  color: white;
  line-height: 1.1;
  margin-bottom: 15px;
}
@media only screen and (max-width: 540px) {
  .blog-banner .bg-wrapper h1 {
    font-weight: 600;
    font-size: 33px;
  }
}

.blog-secA {
  padding: 50px 0;
}
.blog-secA .grid-box {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 40px 20px;
}
@media only screen and (max-width: 1024px) {
  .blog-secA .grid-box {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media only screen and (max-width: 768px) {
  .blog-secA .grid-box {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (max-width: 540px) {
  .blog-secA .grid-box {
    grid-template-columns: repeat(1, 1fr);
  }
}
.blog-secA .grid-box .grid-box-item {
  border: 1px solid #BEBEBE;
  transition: 0.5s ease;
}
.blog-secA .grid-box .grid-box-item:hover {
  background: linear-gradient(180deg, #FFFFFF 27.79%, #FBEEE1 100%);
}
.blog-secA .grid-box .grid-box-item:hover figure img {
  scale: 1.1;
}
.blog-secA .grid-box .grid-box-item:hover figcaption button {
  background: #A56321;
  color: white;
}
.blog-secA .grid-box .grid-box-item figure {
  height: 253px;
  width: 100%;
  overflow: hidden;
  position: relative;
}
.blog-secA .grid-box .grid-box-item figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.3s ease-in-out;
}
.blog-secA .grid-box .grid-box-item figure p {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 10px 30px 10px 30px;
  border-top-right-radius: 6px;
  border-bottom-right-radius: 6px;
  background: #EEBF91;
  color: black;
  margin: 0px 0px 30px 0px;
  font-weight: 450;
  font-size: 16px;
  line-height: 20px;
}
.blog-secA .grid-box .grid-box-item figcaption {
  padding: 30px 20px;
}
.blog-secA .grid-box .grid-box-item figcaption h2 {
  font-family: Lato;
  font-weight: 600;
  font-size: 18px;
  line-height: 1.3;
  margin-bottom: 10px;
}
@media only screen and (max-width: 540px) {
  .blog-secA .grid-box .grid-box-item figcaption h2 {
    font-size: 18px !important;
  }
}
.blog-secA .grid-box .grid-box-item figcaption p {
  font-family: Lato;
  color: var(--text);
  font-weight: 500;
  font-size: 16px;
  line-height: 1.1;
}
.blog-secA .grid-box .grid-box-item figcaption button {
  border: 1px solid #A56321;
  padding: 10px 30px;
  font-family: Lato;
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
  color: #A56321;
  margin: 20px 0 0 0;
  transition: 0.5s ease;
}

.blog-detail-banner {
  position: relative;
  color: white;
  overflow: hidden;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media only screen and (max-width: 1024px) {
  .blog-detail-banner {
    height: 80vh;
  }
}
@media only screen and (max-width: 991px) {
  .blog-detail-banner {
    height: 50vh;
  }
}
@media only screen and (max-width: 540px) {
  .blog-detail-banner {
    height: 60vh;
  }
}
.blog-detail-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(360deg, rgba(0, 0, 0, 0) 50.48%, rgba(0, 0, 0, 0.98) 100%), linear-gradient(270deg, rgba(0, 0, 0, 0) 57.69%, rgba(0, 0, 0, 0.65) 100%), linear-gradient(180deg, rgba(0, 0, 0, 0) 55.49%, rgba(0, 0, 0, 0.95) 100%);
}
@media only screen and (max-width: 540px) {
  .blog-detail-banner::before {
    background: linear-gradient(360deg, rgba(0, 0, 0, 0) 50.48%, rgba(0, 0, 0, 0.98) 100%), linear-gradient(270deg, rgba(0, 0, 0, 0) 57.69%, rgba(0, 0, 0, 0.65) 100%), linear-gradient(180deg, rgba(0, 0, 0, 0) 35.49%, rgba(0, 0, 0, 0.95) 100%);
  }
}
.blog-detail-banner .banner-wrapper {
  width: 100%;
}
.blog-detail-banner .banner-wrapper .bg-image {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  height: 100%;
  width: 100%;
}
.blog-detail-banner .banner-wrapper .bg-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media only screen and (max-width: 540px) {
  .blog-detail-banner .banner-wrapper .container {
    padding: 0;
  }
}
.blog-detail-banner .banner-wrapper .container .bg-wrapper {
  position: absolute;
  z-index: 1;
  width: 100%;
  bottom: 20%;
  margin-left: 10px;
}
@media only screen and (max-width: 991px) {
  .blog-detail-banner .banner-wrapper .container .bg-wrapper {
    bottom: 11%;
  }
}
@media only screen and (max-width: 540px) {
  .blog-detail-banner .banner-wrapper .container .bg-wrapper {
    bottom: 14%;
    margin-left: 0;
  }
}
.blog-detail-banner .banner-wrapper .container .bg-wrapper h1 {
  font-weight: 600;
  font-size: 36px;
  line-height: 1.1;
  text-align: left;
  margin-bottom: 18px;
  max-width: 678px;
}
@media only screen and (max-width: 991px) {
  .blog-detail-banner .banner-wrapper .container .bg-wrapper h1 {
    max-width: 70%;
    line-height: 1.2;
    font-size: 30px;
  }
}
@media only screen and (max-width: 540px) {
  .blog-detail-banner .banner-wrapper .container .bg-wrapper h1 {
    max-width: 100%;
    font-size: 25px;
    line-height: 1.1;
    text-align: center;
    padding: 0 20px;
    margin-bottom: 8px;
  }
}
.blog-detail-banner .banner-wrapper .container .bg-wrapper p {
  font-weight: 500;
  font-size: 16px;
  line-height: 22px;
  color: var(--white);
  width: 450px;
  margin-bottom: 20px;
}
@media only screen and (max-width: 991px) {
  .blog-detail-banner .banner-wrapper .container .bg-wrapper p {
    max-width: 100%;
    color: rgba(255, 255, 255, 0.8784313725);
  }
}
@media only screen and (max-width: 540px) {
  .blog-detail-banner .banner-wrapper .container .bg-wrapper p {
    max-width: 100%;
    font-size: 13px;
    line-height: 1.2;
    text-align: center;
    color: rgba(255, 255, 255, 0.8588235294);
  }
}

.blog-details-secA {
  padding: 50px 0;
}
.blog-details-secA .container {
  max-width: 880px;
}
.blog-details-secA .content {
  font-family: Lato;
}
.blog-details-secA .content figure {
  height: 449px;
}
.blog-details-secA .content figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.blog-details-secA .content p {
  font-weight: 400;
  font-size: 16px;
  text-align: justify;
  margin-bottom: 25px;
  color: var(--text);
}
.blog-details-secA .content h2 {
  font-weight: 600;
  font-size: 25px;
  color: black;
  margin: 40px 0 10px 0;
}
.blog-details-secA .content h3 {
  font-weight: 600;
  font-size: 18px;
  color: black;
  margin: 40px 0 10px 0;
}
.blog-details-secA .content h4 {
  font-weight: 600;
  font-size: 16px;
  color: black;
  margin: 40px 0 10px 0;
}
.blog-details-secA .content h5 {
  font-weight: 600;
  font-size: 14px;
  color: black;
  margin: 40px 0 10px 0;
}
.blog-details-secA .content ul {
  margin-bottom: 20px;
  margin-left: 10px;
}
.blog-details-secA .content ul li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 10px;
  color: var(--text);
}
.blog-details-secA .content ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 14px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: #AF694F;
  transform: translateY(-50%);
}

.blog-details-secB {
  padding: 0 0 50px 0;
}
.blog-details-secB .upper-sec {
  padding: 0 !important;
}
.blog-details-secB .upper-sec h3 {
  color: black;
  margin: 0;
  font-family: Optima;
  font-weight: 400;
  font-size: 36px;
  line-height: 64px;
  text-align: center;
}
.blog-details-secB .upper-sec .swiper-nav button {
  display: flex;
  align-items: center;
  transition: 0.5s ease;
  border: 1px solid #D0A77F;
  border-radius: 50%;
  width: 40px;
  height: 40px;
}
.blog-details-secB .upper-sec .swiper-nav button:hover {
  background: #D0A77F;
}
.blog-details-secB .upper-sec .swiper-nav button:hover svg path {
  fill: white;
}
.blog-details-secB .upper-sec .swiper-nav button.swiper-button-disabled {
  opacity: 0.5;
  cursor: no-drop;
}
.blog-details-secB .upper-sec .swiper-nav button svg {
  vertical-align: middle;
}
.blog-details-secB .upper-sec .swiper-nav button svg path {
  fill: #D0A77F;
  transition: 0.5s ease;
}
.blog-details-secB .swiper-wrapper {
  padding: 50px 0;
}
.blog-details-secB .swiper-wrapper .grid-box-item {
  border: 1px solid #BEBEBE;
  transition: 0.5s ease;
}
.blog-details-secB .swiper-wrapper .grid-box-item:hover {
  background: linear-gradient(180deg, #FFFFFF 27.79%, #FBEEE1 100%);
}
.blog-details-secB .swiper-wrapper .grid-box-item:hover figure img {
  scale: 1.1;
}
.blog-details-secB .swiper-wrapper .grid-box-item:hover figcaption button {
  background: #A56321;
  color: white;
}
.blog-details-secB .swiper-wrapper .grid-box-item figure {
  height: 253px;
  width: 100%;
  overflow: hidden;
  position: relative;
}
.blog-details-secB .swiper-wrapper .grid-box-item figure p {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 10px 30px 10px 30px;
  border-top-right-radius: 6px;
  border-bottom-right-radius: 6px;
  background: #EEBF91;
  color: black;
  margin: 0px 0px 30px 0px;
  font-weight: 450;
  font-size: 16px;
  line-height: 20px;
}
.blog-details-secB .swiper-wrapper .grid-box-item figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.3s ease-in-out;
}
.blog-details-secB .swiper-wrapper .grid-box-item figcaption {
  padding: 30px 20px;
}
.blog-details-secB .swiper-wrapper .grid-box-item figcaption h2 {
  font-family: Lato;
  font-weight: 600;
  font-size: 18px;
  line-height: 1.2;
  margin-bottom: 10px;
}
@media only screen and (max-width: 540px) {
  .blog-details-secB .swiper-wrapper .grid-box-item figcaption h2 {
    font-size: 18px !important;
  }
}
.blog-details-secB .swiper-wrapper .grid-box-item figcaption p {
  font-family: Lato;
  color: var(--text);
  font-weight: 500;
  font-size: 16px;
  line-height: 1.1;
}
.blog-details-secB .swiper-wrapper .grid-box-item figcaption button {
  border: 1px solid #A56321;
  padding: 10px 30px;
  font-family: Lato;
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
  color: #A56321;
  margin: 20px 0 0 0;
  transition: 0.5s ease;
}/*# sourceMappingURL=blog.css.map */