/* custom-flexbox.css */

/* Display Utilities */
.d-flex {
  display: flex;
}

.d-inline-flex {
  display: inline-flex;
}

/* Flex Direction */
.flex-row {
  flex-direction: row;
}

.flex-column {
  flex-direction: column;
}

/* Justify Content */
.justify-content-start {
  justify-content: flex-start;
}

.justify-content-end {
  justify-content: flex-end;
}

.justify-content-center {
  justify-content: center;
}

.justify-content-between {
  justify-content: space-between;
}

.justify-content-around {
  justify-content: space-around;
}

/* Align Items */
.align-items-start {
  align-items: flex-start;
}

.align-items-end {
  align-items: flex-end;
}

.align-items-center {
  align-items: center;
}
.text-align-center{
  text-align: center;
}

.align-items-baseline {
  align-items: baseline;
}

.align-items-stretch {
  align-items: stretch;
}

/* Align Self */
.align-self-start {
  align-self: flex-start;
}

.align-self-end {
  align-self: flex-end;
}

.align-self-center {
  align-self: center;
}

.align-self-baseline {
  align-self: baseline;
}

.align-self-stretch {
  align-self: stretch;
}

/* Align Content */
.align-content-start {
  align-content: flex-start;
}

.align-content-end {
  align-content: flex-end;
}

.align-content-center {
  align-content: center;
}

.align-content-between {
  align-content: space-between;
}

.align-content-around {
  align-content: space-around;
}

.align-content-stretch {
  align-content: stretch;
}

@media screen and (max-width: 991px) {
  form.header-search-bar{
    display:none;
  }
  .add-section-product-listing{
    flex-direction: column;
  }
}
@media screen and (min-width: 1440px){
.input.small.search-header#header-search{
 width: 100%;
}
}
.input.small.search-header#header-search{
  max-width:none;
}
#desktop-search-bar{
  width:49vw;
  position:relative;
}
.line-rounded-icon.header-search-bar-icon.desktop-search-icon{
  position: absolute;
    left: 16px;
    top: 7px;
}
.header-wrapper.w-nav{
  box-shadow: 0 2px 6px 0 rgba(0, 0, 0, .06);
}
.h-300vh{
 height: 100%; 
 position: relative;
}



.no-padding-top {
    padding-top: 0 !important;
    padding-bottom: 100px;
}
.categories-badges-wrapper-new {
  justify-content: flex-start !important;
  display: flex;
}

.categories-badges-wrapper-new.right-categories {
  grid-row-gap: 8px;
  flex-wrap: wrap;
  margin-right: -20px;
}

.categories-badges-wrapper-new.center-categories {
  grid-row-gap: 8px;
  justify-content: center;
  margin-right: -20px;
}
.related-wrapper {
  border-top: 4px solid #689F38;
  background-color: var(--neutral--100);
}
.blog-post-content {
  padding-top: 70px !important;
}
.padding-l-r{
  padding: 0px 100px !important;
}
.bg-accent-gray{
  background-color: #ededed;
}
.mg-bottom-50px-text-center {
  margin-bottom: 50px;
  text-align: center;
}
.mg-bottom-50px{
  margin-bottom: 50px;
}
.bg-color-gray {
  background-color: #efefef !important;
}
.width-50 {
  width: 50%;
}
.margin-top-20px{
  margin-top: 20px;
}
.font-size-35 {
  font-size: 35px !important;
}
.border-left-green{
  border-left: 2px solid #689F38 !important;
}
.divider-green{
  height: 2px !important;
  background-color: #689F38 !important;
}
.add-section-product-listing{
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap:10rem;
}
.padding-top-20 {
  padding-top: 20px !important;
}
.margin-auto{
  margin: auto;
}
/* Pricing Listing Style */
 
.grid-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.grid-item {
  width: calc(33% - 10px); /* 3 columns for large screens */
  margin-bottom: 20px;
  background-color: #f0f0f0;
  padding: 20px;
  box-sizing: border-box;
}

@media (max-width: 768px) { /* Medium screens */
  .grid-item {
    width: calc(100% - 10px); /* 1 column per row for medium screens */
  }
}

@media (max-width: 576px) { /* Small screens */
  .grid-item {
    width: calc(100% - 10px); /* 1 column per row for small screens */
  }
}
/* Pricing Listing Style  end*/
.display-5 {
  font-size: 24px;
}
.padding-20px{
  padding: 20px 20px;
}
.width-50{
  width: 50%;
}

.divider_card.contact-form-center-divider {
  margin-top: 25px;
  margin-bottom: 25px;
}
.divider_card {
  height: 1px;
  background-color: var(--neutral--300);
}
.image-price-icon{
  width: 15%;
  height: auto;
}

/*---------------------------------------
    Custom Dropdown
-----------------------------------------*/
.user-dropdown:hover .primary-menu__link+.primary-menu__sub {
  visibility: visible;
  opacity: 1;
  top: 100%;
}
.custom-dropdown-open .custom-dropdown__content.is-open {
  visibility: visible;
  opacity: 1;
  top: calc(100% + 20px);
}

.custom-dropdown {
  position: relative;
  isolation: isolate;
}

.custom-dropdown__user {
  display: inline-block;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  position: relative;
  cursor: pointer;
}

.custom-dropdown__user:hover {
  cursor: pointer;
}

.custom-dropdown__user:hover::after {
  inset: 0;
}

.custom-dropdown__user::after {
  content: "";
  position: absolute;
  inset: -3px;
  outline: 2px solid hsl(var(--base));
  border-radius: 50%;
  transition: all 0.3s ease;
}

.custom-dropdown__user-img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  outline: 1px solid hsl(var(--base)/0.3);
}

.custom-dropdown__content {
  min-width: 250px;
  position: absolute;
  top: calc(100% - 15px);
  background: hsl(var(--white));
  border-radius: 5px;
  box-shadow: 0 0 20px hsl(var(--dark)/0.2);
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s ease;
  border: 1px solid hsl(var(--base)/0.3);
}

.custom-dropdown__content-start {
  left: 0;
}

.custom-dropdown__content-start::after {
  content: "";
  width: 0;
  height: 0;
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;
  border-bottom: 15px solid hsl(var(--white));
  position: absolute;
  bottom: 100%;
  left: 5px;
  filter: drop-shadow(1px 0 0 hsl(var(--base)/0.3)) drop-shadow(-1px 0 0 hsl(var(--base)/0.3));
}

.custom-dropdown__content-end {
  right: 0;
}

.custom-dropdown__content-end::after {
  content: "";
  width: 0;
  height: 0;
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;
  border-bottom: 15px solid hsl(var(--white));
  position: absolute;
  bottom: 100%;
  right: 5px;
  filter: drop-shadow(1px 0 0 hsl(var(--base)/0.3)) drop-shadow(-1px 0 0 hsl(var(--base)/0.3));
}

.custom-dropdown__content-center {
  left: 50%;
  transform: translateX(-50%);
}

.custom-dropdown__content-center::after {
  content: "";
  width: 0;
  height: 0;
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;
  border-bottom: 15px solid hsl(var(--white));
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  filter: drop-shadow(1px 0 0 hsl(var(--base)/0.3)) drop-shadow(-1px 0 0 hsl(var(--base)/0.3));
}

.custom-dropdown__list {
  --gap: 0;
}

.custom-dropdown__list li {
  line-height: 1;
  border-bottom: 1px solid hsl(var(--base)/0.2);
}

.custom-dropdown__list li:last-child {
  border-bottom: none;
}

.custom-dropdown__body {
  max-height: 275px;
}

.custom-dropdown__body-link {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 10px 15px;
}

.custom-dropdown__body-link:hover {
  background: hsl(var(--base)/0.05);
}

.custom-dropdown__body-icon {
  display: inline-block;
  font-size: 24px;
  color: hsl(var(--base));
}

.custom-dropdown__body-text {
  display: inline-block;
  font-size: 14px;
  color: hsl(var(--dark));
}


.primary-menu__sub {
  list-style: none;
  padding: 0;
  margin-left: 15px;
  margin-right: 15px;
  display: none;
}

@media screen and (min-width: 992px) {
  .primary-menu__sub {
      display: block !important;
      visibility: hidden;
      opacity: 0;
      transition: all 0.3s ease;
      padding: 10px;
      position: absolute;
      right: 0;
      top: calc(100% - 20px);
      margin-left: 0;
      margin-right: 0;
      background-color: #fff;
      border-radius: 5px;
      box-shadow: 0 3px 3px #000;
      z-index: 10;
  }

  .primary-menu__sub::after {
      content: "";
      border-left: 10px solid transparent;
      border-right: 10px solid transparent;
      border-top: 10px solid transparent;
      border-bottom: 10px solid hsl(var(--white));
      position: absolute;
      top: -20px;
      right: 15px;
  }
}

.primary-menu__sub>li:first-child .primary-menu__sub-link {
  padding-top: 0;
}

@media screen and (min-width: 992px) {
  .primary-menu__sub>li:first-child .primary-menu__sub-link {
      padding-top: 4px;
  }
}

.primary-menu__sub>li:last-child .primary-menu__sub-link {
  padding-bottom: 4px;
  border-bottom: none;
}

.primary-menu__sub-link {
  display: block;
  padding-top: 5px;
  padding-left: 15px;
  padding-right: 15px;
  color: hsl(var(--dark));
  transition: all 0.3s ease;
  position: relative;
  font-size: 13px;
}

@media screen and (min-width: 992px) {
  .primary-menu__sub-link {
      padding-top: 4px;
      padding-bottom: 4px;
      border-radius: 3px !important;
      display: flex;
      align-items: center;
      gap: 8px;
      min-width: max-content;
      background-color: hsl(var(--white));
      color: hsl(var(--dark));
      font-size: 14px;
  }
}

.primary-menu__sub-link:hover {
  color: hsl(var(--base));
}

@media screen and (min-width: 992px) {
  .primary-menu__sub-link:hover {
      color: hsl(var(--dark));
      background-color: hsl(var(--light-dark));
  }
}

.primary-menu__divider {
  margin: 5px 0;
}
.user-dropdown .primary-menu__link::after {
  display: none;
}

.user-dropdown .primary-menu__link {
  display: inline-block;
}

.user-dropdown:hover .primary-menu__link+.primary-menu__sub {
  padding-top: 12px;
  top: calc(100% + 12px);
}

.user-dropdown {
  padding-top: 12px;
  padding-bottom: 12px;
}

.user-dropdown--sm .custom-dropdown__user {
  width: 20px;
  height: 20px;
}

.user-dropdown--sm .custom-dropdown__user::after {
  inset: 0;
  outline: 1px solid hsl(var(--light));
}

.user-dropdown--sm .primary-menu__sub::after {
  right: 0;
}

@media screen and (min-width: 992px) {
  .user-dropdown {
      padding: 0;
  }
}
.user-dropdown a {
  text-decoration: none;
}

.container-no-blog-found {
  margin: 100px 100px;
  padding: 50px 50px;
}



 /* start pagination  */
/* Pagination Styles */
.pagination {
  display: flex;
  justify-content: center;
  list-style: none;
  margin-top: 1rem;
}

.page-item {
  margin: 0 0.1rem;
}

.page-link {
  color: #689F38;
  background-color: transparent;
  border: 1px solid #dee2e6;
  padding: 0.375rem 0.75rem;
}

.page-link:hover {
  background-color: #f8f9fa;
}

.page-item.active .page-link {
  z-index: 3;
  color: #fff !important;
  background-color: #689F38;
  border-color: #689F38;
}

.page-item.disabled .page-link {
  color: #6c757d;
  pointer-events: none;
  text-decoration: none;
  cursor: not-allowed;
  background-color: transparent;
  border-color: #dee2e6;
}

.page-link:focus {
  outline: none;
}
.pagination li a{
  text-decoration: none !important;
}

.page-link:focus-visible {
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

@media only screen and (max-width: 600px) {
  /* .pagination {background: green;} */
}

/* Pagination Styles End */


/***** Image Hover *****/

.resource-card-wrapper:hover .resource-card-content.v2 {
  display: flex;
  opacity: 1;
  transform: translate3d(0px, 0%, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
  transform-style: preserve-3d;
}

.resource-card-content.v2 {
  display: none;
  opacity: 0;
  transform: translate3d(0px, 100%, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
  transform-style: preserve-3d;
}


.Align-center{
  align-items: center !important;
}

.facebook {
  background: url("/core/public/assets/image/icons/facebook.png") no-repeat;
}

.social-icon:hover .facebook.social {
  background: url("/core/public/assets/image/icons/facebook_green.png") no-repeat;
}

.twitter {
  background: url("/core/public/assets/image/icons/twitter.png") no-repeat;
}

.social-icon:hover .twitter.social {
  background: url("/core/public/assets/image/icons/twitter_green.png") no-repeat;
}

.instagram {
  background: url("/core/public/assets/image/icons/instagram.png") no-repeat;
}

.social-icon:hover .instagram.social {
  background: url("/core/public/assets/image/icons/instagram_green.png") no-repeat;
}

.pinterest {
  background: url("/core/public/assets/image/icons/pinterest.png") no-repeat;
}

.social-icon:hover .pinterest.social {
  background: url("/core/public/assets/image/icons/pinterest_green.png") no-repeat;
}

.linkedIn {
  background: url("/core/public/assets/image/icons/linkedIn.png") no-repeat;
}

.social-icon:hover .linkedIn.social {
  background: url("/core/public/assets/image/icons/linkedIn_green.png") no-repeat;
}

.youtube {
  background: url("/core/public/assets/image/icons/youtube.png") no-repeat;
}

.social-icon:hover .youtube.social {
  background: url("/core/public/assets/image/icons/youtube_green.png") no-repeat;
}

.social{
  height: 20px;
  width: 20px;
}

.image-wrapper.footer-collection-icon.photos {
  background: url("/core/public/assets/image/icons/photo collection button footer.png") no-repeat;
}

.image-wrapper.footer-collection-icon.photos:hover {
  background: url("/core/public/assets/image/icons/photo collection button footer green.png") no-repeat;
}

.image-wrapper.footer-collection-icon.vectors {
  background: url("/core/public/assets/image/icons/vector & graphics button footer.png") no-repeat;
}

.image-wrapper.footer-collection-icon.vectors:hover {
  background: url("/core/public/assets/image/icons/vector & graphics button footer green.png") no-repeat;
}

.image-wrapper.footer-collection-icon.videos {
  background: url("/core/public/assets/image/icons/videos button footer.png") no-repeat;
}

.image-wrapper.footer-collection-icon.videos:hover {
  background: url("/core/public/assets/image/icons/videos button footer green.png") no-repeat;
}

.image-wrapper.footer-collection-icon {
  height: 80px;
  width: 331px;
}

.category-badges .photos{
  background: url("/core/public/assets/image/icons/photo button.png") no-repeat;
}

.category-badges .photos:hover{
  background: url("/core/public/assets/image/icons/photo button green.png") no-repeat;
}

.category-badges .vectors{
  background: url("/core/public/assets/image/icons/vectors & graphics.png") no-repeat;
}

.category-badges .vectors:hover{
  background: url("/core/public/assets/image/icons/vectors & graphics green.png") no-repeat;
}

.category-badges .videos{
  background: url("/core/public/assets/image/icons/videos button.png") no-repeat;
  background-position: right;
}

.category-badges .videos:hover{
  background: url("/core/public/assets/image/icons/videos button green.png") no-repeat;
  background-position: right;
}

.category-badges.vectors {
  height: 52px;
  width: 225px;
}
.category-badges {
  height: 52px;
  width: 178px;
}

.resouce-collection.photos{
  background: url("/core/public/assets/image/icons/photosWhite.png") no-repeat;
}

.resouce-collection.photos:hover{
  background: url("/core/public/assets/image/icons/photos_green.png") no-repeat;
}

.resouce-collection.vectors{
  background: url("/core/public/assets/image/icons/vectorgraphicsWhite.png") no-repeat;
}

.resouce-collection.vectors:hover{
  background: url("/core/public/assets/image/icons/vectorgraphicsGreen.png") no-repeat;
}

.resouce-collection.videos{
  background: url("/core/public/assets/image/icons/videos gray bg black text.png") no-repeat;
}

.resouce-collection.videos:hover{
  background: url("/core/public/assets/image/icons/videos green bg white text.png") no-repeat;
}

.resouce-collection {
  height: 120px;
  width: 415px;
}

.section.section-hero---v2.about{
  background-size: 100%;
}
/**** Modal css ****/
.fade:not(.show) {
  opacity: 0;
}
.fade {
  transition: opacity .15s linear;
}
.modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1055;
  display: none;
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  outline: 0
}

.modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none
}

.modal.fade .modal-dialog {
  transition: transform .3s ease-out;
  transform: translate(0,-50px)
}

@media (prefers-reduced-motion:reduce) {
  .modal.fade .modal-dialog {
      transition: none
  }
}

.modal.show .modal-dialog {
  transform: none
}

.modal.modal-static .modal-dialog {
  transform: scale(1.02)
}

.modal-dialog-scrollable {
  height: calc(100% - 1rem)
}

.modal-dialog-scrollable .modal-content {
  max-height: 100%;
  overflow: hidden
}

.modal-dialog-scrollable .modal-body {
  overflow-y: auto
}

.modal-dialog-centered {
  display: flex;
  align-items: center;
  min-height: calc(100% - 1rem)
}

.modal-content {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(0,0,0,.2);
  border-radius: .3rem;
  outline: 0
}

.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  width: 100vw;
  height: 100vh;
  background-color: #000
}

.modal-backdrop.fade {
  opacity: 0
}

.modal-backdrop.show {
  opacity: .5
}

.modal-header {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1rem;
  border-bottom: 1px solid #dee2e6;
  border-top-left-radius: calc(.3rem - 1px);
  border-top-right-radius: calc(.3rem - 1px)
}

.modal-header .btn-close {
  /* padding: .5rem .5rem; */
  margin: -.5rem -.5rem -.5rem auto
}

.modal-title {
  margin-bottom: 0;
  line-height: 1.5
}

.modal-body {
  position: relative;
  flex: 1 1 auto;
  padding: 1rem
}

.modal-footer {
  display: flex;
  flex-wrap: wrap;
  flex-shrink: 0;
  align-items: center;
  justify-content: flex-end;
  padding: .75rem;
  border-top: 1px solid #dee2e6;
  border-bottom-right-radius: calc(.3rem - 1px);
  border-bottom-left-radius: calc(.3rem - 1px)
}

.modal-footer>* {
  margin: .25rem
}

@media (min-width: 576px) {
  .modal-dialog {
      max-width:500px;
      margin: 1.75rem auto
  }

  .modal-dialog-scrollable {
      height: calc(100% - 3.5rem)
  }

  .modal-dialog-centered {
      min-height: calc(100% - 3.5rem)
  }

  .modal-sm {
      max-width: 300px
  }
}

@media (min-width: 992px) {
  .modal-lg,.modal-xl {
      max-width:800px
  }
}

@media (min-width: 1200px) {
  .modal-xl {
      max-width:1140px
  }
}

.modal-fullscreen {
  width: 100vw;
  max-width: none;
  height: 100%;
  margin: 0
}

.modal-fullscreen .modal-content {
  height: 100%;
  border: 0;
  border-radius: 0
}

.modal-fullscreen .modal-header {
  border-radius: 0
}

.modal-fullscreen .modal-body {
  overflow-y: auto
}

.modal-fullscreen .modal-footer {
  border-radius: 0
}

@media (max-width: 575.98px) {
  .modal-fullscreen-sm-down {
      width:100vw;
      max-width: none;
      height: 100%;
      margin: 0
  }

  .modal-fullscreen-sm-down .modal-content {
      height: 100%;
      border: 0;
      border-radius: 0
  }

  .modal-fullscreen-sm-down .modal-header {
      border-radius: 0
  }

  .modal-fullscreen-sm-down .modal-body {
      overflow-y: auto
  }

  .modal-fullscreen-sm-down .modal-footer {
      border-radius: 0
  }
}

@media (max-width: 767.98px) {
  .modal-fullscreen-md-down {
      width:100vw;
      max-width: none;
      height: 100%;
      margin: 0
  }

  .modal-fullscreen-md-down .modal-content {
      height: 100%;
      border: 0;
      border-radius: 0
  }

  .modal-fullscreen-md-down .modal-header {
      border-radius: 0
  }

  .modal-fullscreen-md-down .modal-body {
      overflow-y: auto
  }

  .modal-fullscreen-md-down .modal-footer {
      border-radius: 0
  }
}

@media (max-width: 991.98px) {
  .modal-fullscreen-lg-down {
      width:100vw;
      max-width: none;
      height: 100%;
      margin: 0
  }

  .modal-fullscreen-lg-down .modal-content {
      height: 100%;
      border: 0;
      border-radius: 0
  }

  .modal-fullscreen-lg-down .modal-header {
      border-radius: 0
  }

  .modal-fullscreen-lg-down .modal-body {
      overflow-y: auto
  }

  .modal-fullscreen-lg-down .modal-footer {
      border-radius: 0
  }
}

@media (max-width: 1199.98px) {
  .modal-fullscreen-xl-down {
      width:100vw;
      max-width: none;
      height: 100%;
      margin: 0
  }

  .modal-fullscreen-xl-down .modal-content {
      height: 100%;
      border: 0;
      border-radius: 0
  }

  .modal-fullscreen-xl-down .modal-header {
      border-radius: 0
  }

  .modal-fullscreen-xl-down .modal-body {
      overflow-y: auto
  }

  .modal-fullscreen-xl-down .modal-footer {
      border-radius: 0
  }
}

@media (max-width: 1399.98px) {
  .modal-fullscreen-xxl-down {
      width:100vw;
      max-width: none;
      height: 100%;
      margin: 0
  }

  .modal-fullscreen-xxl-down .modal-content {
      height: 100%;
      border: 0;
      border-radius: 0
  }

  .modal-fullscreen-xxl-down .modal-header {
      border-radius: 0
  }

  .modal-fullscreen-xxl-down .modal-body {
      overflow-y: auto
  }

  .modal-fullscreen-xxl-down .modal-footer {
      border-radius: 0
  }
}

