@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@100;200;300;400;500;600;700;800&display=swap");

* {
  margin: 0;
  padding: 0;
}

a,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
li,
button {
  padding: 0;
  margin: 0;
  text-decoration: none;
  border: 0;
  background: none;
  list-style-type: none;
}

:root {
  /*--main_color: #006d58;*/
  --main_color: #0ea412;
  --main_color2: #1f9c53;
  --white_color: #fff;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Montserrat", sans-serif !important;
  color: var(--main_color);
}

.overflow__hidden {
  overflow-x: hidden;
  overflow-y: auto !important;
}

.d_flex {
  display: flex;
  align-items: center;
}

.d_justify {
  justify-content: space-between;
}

.container {
  max-width: 1440px;
  padding: 0;
}

.gaps {
  margin-top: 80px;
}

/*-----------------------------------------------------
    Common Css
---------------------------------------------------- */

h2 {
  font-size: 45px;
  line-height: 55px;
  font-weight: 700;
  max-width: unset !important;
}

h3 {
  font-size: 30px;
  line-height: 40px;
  font-weight: 700;
  max-width: unset !important;
}

h4 {
  font-size: 24px;
  line-height: 35px;
  font-weight: 500;
  color: var(--main_color2);
  max-width: unset !important;
}

h5 {
  font-size: 20px;
  line-height: 30px;
  font-weight: 500;
  max-width: unset !important;
}

p {
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  color: #289c2b;
  margin-top: 10px;
  max-width: unset !important;
}

a,
button {
  display: inline-block;
  text-decoration: none;
  border: 0;
  padding: 0;
  margin: 0;
  font-size: 16px;
  line-height: 20px;
  transition: all linear 0.2s;
}

.bg {
  padding: 10px 40px;
  border-radius: 30px;
  border: 1px solid var(--main_color2);
  color: var(--main_color2);
  font-weight: 500;
  transition: all linear 0.2s;
  font-size: 20px;
  line-height: 30px;
  margin-top: 20px;
}

.bg:hover {
  background: var(--main_color);
  color: var(--white_color);
}



.bg_head {
  padding: 10px 40px;
  border-radius: 30px;
  border: 1px solid var(--white_color);
  color: var(--white_color);
  font-weight: 500;
  transition: all linear 0.2s;
  font-size: 20px;
  line-height: 30px;
}

.bg_head:hover {
  background: var(--white_color);
  color: rgb(44, 115, 34);
  border: 1px solid rgb(44, 115, 34);
}
.subscribe{
  border: 1px solid white;
    text-align: bold;
    font-weight: bold;
    color: white;
    padding: 8px 10px;
}
.subscribe:hover{
  background: white;
  color: #1F9C53;
}

.header__content {
  text-align: center;
  margin-bottom: 40px;
}

.header__content h5 {
  margin-top: 15px;
}

/* ---------------------------------------------------------------------------------------------------------------------------
   Start  preloader
--------------------------------------------------------------------------------------------------------------------------- */
.preloader {
  width: 100%;
  height: 100vh;
  background: #fff;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  top: 0;
  left: 0;
}

.preloader h1 {
  font-size: 60vh;
  text-align: center;
  font-weight: 900;
  width: 100%;
  max-width: 100%;
}

.preloader h1 span {
  color: rgb(15, 110, 253);
  transform: scale(0.5);
  transition: all linear 0.2s;
  display: block;
  opacity: 0;
  visibility: hidden;
  transform-origin: center center;
}

.preloader h1 span:nth-child(1) {
  font-size: 20%;
  line-height: 0px;
  animation: zoomIn 0.5s ease 0.5s forwards;
}

.preloader h1 span:nth-child(2) {
  font-size: 25%;
  line-height: 0px;
  animation: zoomIn 0.5s ease 1s forwards;
  margin: 200px 0;
}

.preloader h1 span:nth-child(3) {
  font-size: 25%;
  line-height: 0px;
  animation: zoomIn 0.5s ease 1.5s forwards;
}

@keyframes zoomIn {
  to {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
  }
}

/* media */

@media (max-width: 1440px) {
  .preloader h1 span:nth-child(2) {
    margin: 150px 0;
  }
}

@media (max-width: 1024px) {
  .preloader h1 span:nth-child(1) {
    font-size: 15%;
  }

  .preloader h1 span:nth-child(2) {
    font-size: 18%;
    margin: 100px 0;
  }

  .preloader h1 span:nth-child(3) {
    font-size: 15%;
  }
}

@media (max-width: 667px) {
  .preloader h1 span:nth-child(1) {
    font-size: 5%;
  }

  .preloader h1 span:nth-child(2) {
    font-size: 7%;
    margin: 50px 0;
  }

  .preloader h1 span:nth-child(3) {
    font-size: 6%;
  }
}

/* ---------------------------------------------------------------------------------------------------------------------------
    End preloader
--------------------------------------------------------------------------------------------------------------------------- */

/* ---------------------------------------------------------------------------------------------------------------------------
    Start menubar
--------------------------------------------------------------------------------------------------------------------------- */
.menubar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgb(44, 115, 34);
  padding: 5px 0;
  z-index: 99;
}

.mobile__menu {
  display: none;
}

.menubar .container {
  max-width: 100%;
}

.menubar .menubar__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 100px;
}

.menubar .logo img {
  height: 100px;
  padding: 6px;

}

.menubar .menu__item {
  margin: 0 auto;
  text-align: center;
}

.menubar .menu__item li {
  display: inline-block;
  position: unset;
}

.menubar .menu__item li a {
  padding: 0 20px;
  font-size: 18px;
  font-weight: bold;
  color: var(--white_color);
  display: flex;
  align-items: center;
  gap: 5px;
}

.menubar .menu__item li a:hover {
  color: var(--main_color);
}

.dropdown-toggle::after {
  display: none;
}

.menubar .menu__item ul.dropdown-menu {
  width: 100%;
  transform: translate(0px, 70px) !important;
  text-align: center;
  border: 0;
  border-top: 1px solid var(--white_color);
  border-radius: 0;
  background: rgb(44, 115, 34);;
  /* box-shadow: 0 4px 50px rgb(0 0 0/5%); */
  padding: 0;
  margin: 0;
}

.menubar .menu__item ul.dropdown-menu a {
  font-size: 16px;
  padding: 20px;
  background: none !important;
}

.menubar .menu__item ul.dropdown-menu ul.dropdown-menu {
  transform: translate(0px, 60px) !important;
  inset: 0px auto auto 0px;
}

.menubar .bg {
  margin-top: 0;
}

/* ---------------------------------------------------------------------------------------------------------------------------
    End menubar
--------------------------------------------------------------------------------------------------------------------------- */

/* ---------------------------------------------------------------------------------------------------------------------------
    Start home__banner
--------------------------------------------------------------------------------------------------------------------------- */

.home__banner {
  position: relative;
}

.home__banner video {
  width: 100%;
}

.home__banner .banner__content {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: #00000020;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all linear 0.2s;
}

.home__banner .banner__content .banner__text {
  z-index: 9;
  /*background: #19eb2050;*/
  padding: 30px;
  color: var(--white_color);
  width: 50%;
}

.home__banner .banner__content .banner__text h3 {
  /*font-style: italic;*/
  font-size: 40px;
  line-height: 50px;
}

.home__banner .banner__content .banner__text h1 {
  /*font-style: italic;*/
  font-size: 60px;
  line-height: 70px;
  font-weight: 700;
  margin: 15px 0;
}

.home__banner .banner__content .banner__text h4 {
  color: var(--white_color);
}

.home__banner .banner__content .banner__text a {
  /*background: var(--main_color);*/
  color: var(--white_color);
  padding: 15px 40px;
}

/* ---------------------------------------------------------------------------------------------------------------------------
    End home__banner
--------------------------------------------------------------------------------------------------------------------------- */

/* ---------------------------------------------------------------------------------------------------------------------------
    Start marquee
--------------------------------------------------------------------------------------------------------------------------- */
.marquee {
  background: #9ce884;
  margin-top: -10px;
  width: 100%;
}

.marquee marquee {
  font-size: 30px;
  padding: 10px;
  font-weight: 600;
  color: #148f1f;
}

/* ---------------------------------------------------------------------------------------------------------------------------
    End marquee
--------------------------------------------------------------------------------------------------------------------------- */

/* ---------------------------------------------------------------------------------------------------------------------------
    Start our__promise
--------------------------------------------------------------------------------------------------------------------------- */
.our__promise__left h5 {
  position: relative;
  padding-left: 20px;
  font-weight: 700;
  font-size: 16px;
}

.our__promise__left h5::before {
  position: absolute;
  content: "";
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  background: var(--main_color2);
}

.our__promise__right {
  padding-left: 80px;
  position: relative;
}

.our__promise__right video {
  width: 100%;
  border-radius: 20px;
}

.our__promise__right .img {
  position: absolute;
  bottom: 0px;
  left: -20px;
}

.our__promise__right .img img {
  height: 150px;
}

/* ---------------------------------------------------------------------------------------------------------------------------
    End our__promise
--------------------------------------------------------------------------------------------------------------------------- */

/* ---------------------------------------------------------------------------------------------------------------------------
    Start our__business
--------------------------------------------------------------------------------------------------------------------------- */
.our__business .full__width__dev__content {
  background: #da503a;
  display: flex;
  align-items: center;
}

.our__business .full__width__dev .full__width__dev__img {
  width: 55%;
}

.full__width__dev__img img {
  width: 100%;
  object-fit: cover;
  height: 500px;
}

.our__business .full__width__dev .full__width__dev__text {
  width: 45%;
  padding: 40px;
  height: 500px;
  display: inline-flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
}

.our__business .full__width__dev .full__width__dev__text:nth-child(odd) {
  /*background: var(--main_color2);*/
  background: #e1612e;
}

.our__business .full__width__dev .full__width__dev__text h3 {
  font-size: 40px;
  line-height: 50px;
}

.our__business .full__width__dev .full__width__dev__text :where(h3, p) {
  color: var(--white_color);
}

.our__business .full__width__dev .full__width__dev__text a {
  border: 1px solid var(--white_color);
  color: var(--white_color);
}

.our__business .full__width__dev .full__width__dev__text a:hover {
  background: var(--main_color2);
  color: var(--white_color);
}

/* ---------------------------------------------------------------------------------------------------------------------------
    End our__business
--------------------------------------------------------------------------------------------------------------------------- */

/* ---------------------------------------------------------------------------------------------------------------------------
    Start customer__review
--------------------------------------------------------------------------------------------------------------------------- */
.customer__review {
  background: #2c9ddc;
  padding: 120px 0;
  text-align: center;
}

.customer__review :where(h4, h5) {
  color: var(--white_color);
  font-style: italic;
}

.customer__review__img {
  margin-top: 50px;
}

.customer__review img {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  margin-bottom: 15px;
}

.customer__review__img h4 {
  font-style: normal;
}

.customer__review h5 {
  margin-top: 5px;
}

.customer__review :where(.swiper-button-next, .swiper-button-prev) {
  position: absolute;
  bottom: 50px;
  right: 0;
  width: 50px;
  height: 50px;
  border-radius: 50px;
  border: 1px solid var(--white_color);
  color: var(--white_color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 25px;
  line-height: 25px;
  right: 20px;
}

.customer__review .swiper-button-next:after,
.customer__review .swiper-button-prev:after {
  display: none;
}

/* ---------------------------------------------------------------------------------------------------------------------------
    End customer__review
--------------------------------------------------------------------------------------------------------------------------- */

/* ---------------------------------------------------------------------------------------------------------------------------
    Start reach_to_us
--------------------------------------------------------------------------------------------------------------------------- */
.reach_to_us h3 {
  color: var(--white_color);
  margin: 20px 0;
}

.reach_to_us a {
  color: var(--white_color);
}

.reach_to_us a:hover {
  background: var(--main_color2);
}

/* ---------------------------------------------------------------------------------------------------------------------------
    End reach_to_us
--------------------------------------------------------------------------------------------------------------------------- */

/* ---------------------------------------------------------------------------------------------------------------------------
    Start our__expedition
--------------------------------------------------------------------------------------------------------------------------- */
.our__expedition {
  /* background: #e0dcda; */
}

.our__expedition__content {
  display: flex;
  align-items: center;
}

.our__expedition__img,
.our__expedition__left {
  width: 50%;
}

.our__expedition__left {
  padding: 0 80px;
}

.our__expedition img {
  width: 100%;
}

/* ---------------------------------------------------------------------------------------------------------------------------
    End our__expedition
--------------------------------------------------------------------------------------------------------------------------- */

.process-steps .step .text p {
  color: var(--white_color);
}

/* ---------------------------------------------------------------------------------------------------------------------------
    Start other__banner
--------------------------------------------------------------------------------------------------------------------------- */

.other__banner {
  position: relative;
}

.other__banner .img img {
  width: 100%;
  max-height: 450px;
}

.other__banner__content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: #00000054;
}

.other__banner__content :where(h2, h4) {
  color: var(--white_color);
}

/* ---------------------------------------------------------------------------------------------------------------------------
    End other__banner
--------------------------------------------------------------------------------------------------------------------------- */

/* ---------------------------------------------------------------------------------------------------------------------------
    Start after__banner__content
--------------------------------------------------------------------------------------------------------------------------- */
.after__banner__content {
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--main_color);
}

.after__banner__content h5 {
  color: var(--white_color);
}

/* ---------------------------------------------------------------------------------------------------------------------------
    End after__banner__content
--------------------------------------------------------------------------------------------------------------------------- */

/* ---------------------------------------------------------------------------------------------------------------------------
    Start contact__form
--------------------------------------------------------------------------------------------------------------------------- */

.contact__form {
  background: var(--main_color);
  padding: 100px 0;
}

.contact__form :where(h2, h4) {
  color: var(--white_color);
}

.contact__form .row {
  row-gap: 50px;
}

.contact__form .custom__input :where(input, textarea, select) {
  width: 100%;
  border: 0;
  border-bottom: 1px solid var(--white_color);
  padding: 10px 10px;
  color: #bcf81d;
  font-size: 18px;
  line-height: 30px;
  font-weight: 400;
  background: none;
}

.contact__form .custom__input select {
  padding: 16px 10px;
}

.contact__form .custom__input input::placeholder,
.contact__form .custom__input textarea::placeholder {
  color: #000;
}

.contact__form .custom__input input:focus,
.contact__form .custom__input textarea:focus {
  outline: none;
}

.contact__form .bg {
  color: var(--white_color);
  border: 1px solid var(--white_color);
}

.contact__form .bg:hover {
  background: var(--main_color2);
}

/* ---------------------------------------------------------------------------------------------------------------------------
    End contact__form
--------------------------------------------------------------------------------------------------------------------------- */

/* ---------------------------------------------------------------------------------------------------------------------------
    Start contact__page
--------------------------------------------------------------------------------------------------------------------------- */

.contact__page__banner {
  padding: 150px 0;
}

.contact__page__banner h2 {
  color: var(--white_color);
}
/* ---------------------------------------------------------------------------------------------------------------------------
    End contact__page
--------------------------------------------------------------------------------------------------------------------------- */

/* ---------------------------------------------------------------------------------------------------------------------------
    Start contact__page__google__map
--------------------------------------------------------------------------------------------------------------------------- */
.contact__page__google__map iframe {
  width: 100%;
  height: 700px;
}
/* ---------------------------------------------------------------------------------------------------------------------------
    End contact__page__google__map
--------------------------------------------------------------------------------------------------------------------------- */

/* ---------------------------------------------------------------------------------------------------------------------------
    Start footer
--------------------------------------------------------------------------------------------------------------------------- */

footer {
  position: relative;
  width: 100%;
  background: #0ea412;
  color: #fff;
  text-align: center;
  padding: 100px 0;
  height: 810px;
  overflow: hidden;
}

footer .col-lg-5 .footer__content {
  margin-right: 80px;
}

.footer__content {
  text-align: left;
  position: relative;
  z-index: 9;
}

.footer__content p {
  color: var(--white_color);
}

footer .custom__input input {
  padding: 10px;
  border-radius: 10px;
  border: 0;
  width: 50%;
  margin-top: 10px;
}

.footer-images {
  display: flex;
  justify-content: space-around;
  align-items: center;
  height: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
}

.footer-images svg {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
}

.interactive-image {
  width: 100px; /* Adjust the size as needed */
  height: auto;
  /*transition: transform 0.3s ease-out;*/
  transition: transform 0.3s ease-in-out;
}

.interactive-image:hover {
  animation: moveLeftRight 1.5s ease-in-out infinite; /* Adjust the duration of the animation */
}

@keyframes moveLeftRight {
  0%,
  100% {
    transform: translateX(0);
  }
  25% {
    transform: translateX(-8px);
  }
  50% {
    transform: translateX(8px);
  }
  75% {
    transform: translateX(-8px);
  }
}

.social__media {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
}

.social__media a {
  font-size: 20px;
  width: 35px;
  height: 35px;
  border-radius: 5px;
  color: var(--main_color2);
  background: var(--white_color);
  display: flex;
  align-items: center;
  justify-content: center;
}

.social__media a:hover {
  border-radius: 50%;
  color: var(--main_color);
}

.footer__content ul {
  text-align: center;
}

.footer__content ul li {
  text-align: left;
}

.footer__content ul li a {
  font-size: 18px;
  line-height: 30px;
  color: var(--white_color);
  padding: 5px 0;
}

.footer__content ul li a:hover {
  color: var(--main_color);
}

.footer__content h4 {
  font-weight: 700;
  color: var(--white_color);
}

.tiny__footer {
  text-align: center;
  margin-top: 50px;
}

.tiny__footer img {
  height: 100px;
}

.tiny__footer p {
  color: var(--white_color);
}

/* ---------------------------------------------------------------------------------------------------------------------------
    End footer
--------------------------------------------------------------------------------------------------------------------------- */

/* ---------------------------------------------------------------------------------------------------------------------------
    Start our_farm
--------------------------------------------------------------------------------------------------------------------------- */
.our__farm {
  width: 400%;
  max-width: unset;
  height: 100vh;
  display: flex;
  flex-wrap: nowrap;
}

.our__farm h3 {
  font-size: 100px;
  font-weight: 700;
  line-height: 120px;
  text-align: left;
}

.our__farm h4 {
  color: var(--white_color);
  margin-top: 20px;
  text-align: left;
}

.our__farm .img {
  width: 400px;
  margin-right: 0;
}

.our__farm .img img {
  width: 100%;
  border-radius: 10px;
}

/* ---------------------------------------------------------------------------------------------------------------------------
    End our_farm
--------------------------------------------------------------------------------------------------------------------------- */

/* ---------------------------------------------------------------------------------------------------------------------------
    Start
--------------------------------------------------------------------------------------------------------------------------- */

/* ---------------------------------------------------------------------------------------------------------------------------
    End
--------------------------------------------------------------------------------------------------------------------------- */

/* ---------------------------------------------------------------------------------------------------------------------------
    Start product__details__banner
--------------------------------------------------------------------------------------------------------------------------- */
.product__details__banner {
  background: var(--main_color);
  height: 200px;
  margin-top: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.product__details__banner h2 {
  color: var(--white_color);
}

.product__details__about__img img {
  width: 100%;
  /*height: 600px;*/
  display:flex;
  object-fit: cover;
}

.fill {
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden
}
.fill img {
    flex-shrink: 0;
    min-width: 100%;
    min-height: 100%
}

.product__details__about__text {
  padding: 0 50px;
}

.product__details__about__text p {
  margin-top: 30px;
}

/* ---------------------------------------------------------------------------------------------------------------------------
    End product__details__banner
--------------------------------------------------------------------------------------------------------------------------- */

/* ---------------------------------------------------------------------------------------------------------------------------
    Start product__details__gallery
--------------------------------------------------------------------------------------------------------------------------- */
.product__details__gallery {
  background: var(--main_color2);
  padding-top: 80px;
  padding-bottom: 150px;
  position: relative;
}

.product__details__gallery h2 {
  color: var(--white_color);
}

.product__details__gallery__img img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 20px 0;
}

.product__details__gallery :where(.gal-btn-prev, .gal-btn-next) {
  position: absolute;
  bottom: 50px;
  right: 0;
  width: 50px;
  height: 50px;
  border-radius: 50px;
  border: 1px solid var(--white_color);
  color: var(--white_color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 25px;
  line-height: 25px;
  right: 20px;
}

.product__details__gallery .gal-btn-prev {
  right: 90px;
}

.product__details__gallery :where(.gal-btn-prev, .gal-btn-next):hover {
  background: var(--main_color);
}

/* ---------------------------------------------------------------------------------------------------------------------------
    End product__details__gallery
--------------------------------------------------------------------------------------------------------------------------- */

/* ---------------------------------------------------------------------------------------------------------------------------
    Start product__details__farm
--------------------------------------------------------------------------------------------------------------------------- */

.product__details__farm {
  position: relative;
  text-align: center;
}

.product__details__farm img {
  width: 100%;
  height: 600px;
  object-fit: cover;
}

.product__details__farm .product__details__farm__content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0000005d;
}

.product__details__farm h2 {
  color: var(--white_color);
}

/* ---------------------------------------------------------------------------------------------------------------------------
    End product__details__farm
--------------------------------------------------------------------------------------------------------------------------- */

/* ---------------------------------------------------------------------------------------------------------------------------
    Start corporate__travel__other__banner
--------------------------------------------------------------------------------------------------------------------------- */
.corporate__travel__other__banner img {
  width: 100%;
}
/* ---------------------------------------------------------------------------------------------------------------------------
    End corporate__travel__other__banner
--------------------------------------------------------------------------------------------------------------------------- */

/* ---------------------------------------------------------------------------------------------------------------------------
    Start corporate__travel__book__now
--------------------------------------------------------------------------------------------------------------------------- */
.corporate__travel__book__now img {
  width: 100%;
}

.corporate__travel__book__now .row {
  --bs-gutter-x: 3.5rem;
}

.corporate__travel__book__now p {
  margin-top: 20px;
}

/* ---------------------------------------------------------------------------------------------------------------------------
    End corporate__travel__book__now
--------------------------------------------------------------------------------------------------------------------------- */

/* ---------------------------------------------------------------------------------------------------------------------------
    Start blog__page
--------------------------------------------------------------------------------------------------------------------------- */

.blog__page .row {
  row-gap: 20px;
}

.blog__page .blog__item {
  border: 1px solid #ddd;
  padding: 5px;
}

.blog__page .blog__item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.blog__page .blog__item h5 {
  font-size: 14px;
  line-height: 20px;
  font-weight: 600;
  color: #777;
}

.blog__page .blog__item .text {
  padding: 15px 10px;
}

.blog__page .blog__item .text h3 {
  font-size: 25px;
}

.blog__page .blog__item .text p {
  -webkit-line-clamp: 3;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  word-break: break-all;
  height: 70px;
  line-height: 24px;
  color: #666;
  margin-top: 5px;
}

.blog__page .blog__item .text a {
  width: 100%;
  text-align: center;
  border-radius: 10px;
}

/* ---------------------------------------------------------------------------------------------------------------------------
    End blog__page
--------------------------------------------------------------------------------------------------------------------------- */

/* ---------------------------------------------------------------------------------------------------------------------------
    Start blog__page__details
--------------------------------------------------------------------------------------------------------------------------- */

.blog__page__details .blog__page__details__content h5 {
  margin-bottom: 20px;
  font-size: 16px;
  line-height: 24px;
  font-weight: 600;
  color: #777;
}

.blog__page__details .blog__page__details__content img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.blog__page__details .blog__page__details__content p {
  margin-top: 20px;
  color: #666;
}

.blog__page__details .related__post {
  margin-top: 50px;
}

/* ---------------------------------------------------------------------------------------------------------------------------
    End blog__page__details
--------------------------------------------------------------------------------------------------------------------------- */

/* ---------------------------------------------------------------------------------------------------------------------------
    Start faq__page__img
--------------------------------------------------------------------------------------------------------------------------- */
.faq__page__img img {
  width: 100%;
}

.faq__page__tabs .accordion-item {
  margin-bottom: 20px;
  border: none;
  background: none;
}

.faq__page__tabs .accordion-button {
  background: var(--main_color2);
  color: var(--white_color);
}

.faq__page__tabs .accordion-collapse.collapse .accordion-button {
  background: #f4f4f4;
}

.faq__page__tabs .accordion-button:focus {
  box-shadow: none;
}

/* ---------------------------------------------------------------------------------------------------------------------------
    End faq__page__img
--------------------------------------------------------------------------------------------------------------------------- */

/* ---------------------------------------------------------------------------------------------------------------------------
    Start
--------------------------------------------------------------------------------------------------------------------------- */

/* ---------------------------------------------------------------------------------------------------------------------------
    End
--------------------------------------------------------------------------------------------------------------------------- */

/* ---------------------------------------------------------------------------------------------------------------------------
    Start
--------------------------------------------------------------------------------------------------------------------------- */

/* ---------------------------------------------------------------------------------------------------------------------------
    End
--------------------------------------------------------------------------------------------------------------------------- */
