.idk_paddingbot150 {padding-bottom: 150px;}
.idk_padding50 {padding: 50px 0px;}
.idk_padding10 {padding: 10px 0px;}
.idk_padding20 {padding: 20px 0px;}
.idk_paddingtop100 {padding-top: 100px;}
.idk_paddingtop75 {padding-top: 75px;}
.idk_paddingtop150 {padding-top: 150px;}
.idk_paddingtop50 {padding-top: 50px;}
.idk_paddingtop30 {padding-top: 30px;}
.idk_paddingtop10 {padding-top: 10px;}
.idk_paddingbot50 {padding-bottom: 50px;}
.idk_paddingbot30 {padding-bottom: 30px;}
.idk_paddingbot10 {padding-bottom: 10px;}
.idk_paddingbot16 {padding-bottom: 16px;}
.idk_paddingbot100 {padding-bottom: 100px;}
.idk_paddingbot20 {padding-bottom: 20px;}
.idk_margintop50 {margin-top: 50px;}
.idk_margintop40 {margin-top: 40px;}
.idk_margintop35 {margin-top: 35px;}
.idk_margintop75 {margin-top: 75px;}
.idk_margintop130{margin-top: 130px;}
.idk_margintop150 {margin-top: 150px;}
.idk_marginbot150 {margin-bottom: 150px;}
.idk_marginbot100 {margin-bottom: 100px;}
.idk_margintop100 {margin-top: 100px;}
.idk_margintop200 {margin-top: 200px;}
.idk_margintop30 {margin-top: 30px;}
.idk_margintop20 {margin-top: 20px;}
.idk_marginbot20 {margin-bottom: 20px;}
.idk_margintop10 {margin-top: 10px;}
.idk_marginbot50 {margin-bottom: 50px;}
.idk_marginbot30 {margin-bottom: 30px;}
.idk_marginbot10 {margin-bottom: 10px;}
.idk_paddingleft32{padding-left: 32px;}

@media (max-width: 768px){
.idk_paddingtop150 {padding-top: 75px;}
.idk_paddingbot150 {padding-bottom: 75px;}
.idk_paddingtop100 {padding-top: 50px;}
.idk_paddingtop50 {padding-top: 25px;}
.idk_paddingtop30 {padding-top: 15px;}
.idk_paddingtop10 {padding-top: 10px;}
.idk_paddingbot50 {padding-bottom: 25px;}
.idk_margintop200 {margin-top: 100px;}
.idk_paddingbot30 {padding-bottom: 15px;}
.idk_paddingbot10 {padding-bottom: 10px;}
.idk_margintop50 {margin-top: 25px;}
.idk_margintop150 {margin-top: 75px;}
.idk_margintop100 {margin-top: 50px;}
.idk_margintop30 {margin-top: 15px;}
.idk_margintop10 {margin-top: 10px;}
.idk_marginbot50 {margin-bottom: 25px;}
.idk_marginbot30 {margin-bottom: 15px;}
.idk_marginbot10 {margin-bottom: 10px;}
.justify-self-end {
  justify-self: end;
}
}





/* Root variables - fonts & colors */

:root {
  --color-primary: #1a73e8;
  --color-secondary: #fbbc05;
  --color-accent: #34a853;

  --font-family-base: "Inter", sans-serif;
}

/*********** base elements reset ***********/
html,
body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: var(--font-family-base);
  line-height: 1.5;
  background-color: #FAF7F0;
  color: #000;
}

*,
*::before,
*::after {
  box-sizing: inherit;
}

h1,
h2,
h3,
h4,
h5,
p {
  margin: 0;
  padding: 0;
  font-weight: normal;
}

/******** typography *************/
html {
  font-size: 16px; /* 1rem = 16px */
}

@media (max-width: 768px) {
  html {
    font-size: 14px; /* 1rem = 14px - on phones & tablets */
  }
}

/* clamp(min, preferred, max) */
h1 {
  font-size: clamp(2rem, 4vw + 1rem, 3.5rem);
  font-weight: 700;
}
h2 {
  font-size: clamp(1.75rem, 3vw + 0.8rem, 2.75rem);
  font-weight: 600;
}
h3 {
  font-size: clamp(1.5rem, 2.5vw + 0.6rem, 2.25rem);
  font-weight: 600;
}
h4 {
  font-size: clamp(1.25rem, 2vw + 0.4rem, 1.75rem);
  font-weight: 500;
}
h5 {
  font-size: clamp(1.125rem, 1.5vw + 0.3rem, 1.5rem);
  font-weight: 500;
}

p {
  font-size: 1rem; /* 16px ako je root 16px */
  font-weight: 400;
}

/********************* utilities - padding, sections *****************/
.idk_section {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

/*************************** hero section *****************************/
.idk_main_hero_section {
  position: relative;
  width: 100%;
  height: clamp(420px, 60vh, 800px);
  color: #fff;
  overflow: hidden;
}

.idk_hero_img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

/*hero img filter */
.idk_main_hero_section::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    #8c4fd699 0%,
    #5b2fb0cc 60%,
    #2d1766e6 100%
  );
  z-index: 1;
}

.idk_main_hero_content_wrapper {
  position: relative;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
}

.idk_main_hero_content {
  display: flex;
  flex-direction: column;
  gap: 20px;
  text-align: center;

}

.idk_photo {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.idk_header_icons{
  display: flex;
  flex-direction: row;
  gap: 20px;
 justify-content: end;
}

.idk_header_icons img{
  width: 20px;
  height: 20px;
}

.idk_header_not{
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 30px;
}

.idk_header_not_btn{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  text-decoration: none;
}

.idk_header_not_btn img{
  width: 44px;
  height: 44px;
  display: block;
  object-fit: contain;
}

.idk_header_line{
  background-color: #2A491D;
  padding: 13px 0px;
}

.idk_header_line p{
  font-size: 14px;
  font-weight: 600;
   font-family: "Manrope", sans-serif;
   color: white;
}

.idk_header_line span{
  color: #FFC93C;
  font-weight: 800;
   font-family: "Manrope", sans-serif;
}

header{
  padding: 20px 0px;
}

.idk_header_row{
  row-gap: 20px;
}

.idk_header_logo{
  display: inline-flex;
  align-items: center;
}

.idk_header_logo img{
  display: block;
  max-width: 172px;
}

.idk_home_hero{
  position: relative;
  overflow: hidden;
  min-height: 632px;
  background: #2A491D;
  color: #ffffff;
}

.idk_home_hero_bg{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.1;
  z-index: 1;
}

.idk_home_hero_overlay{
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #2A491D 0%, #2A491D 100%);
  z-index: 0;
}

.idk_home_hero_container{
  position: relative;
  z-index: 2;
  padding: 80px 0 80px;
}

.idk_home_hero_layout{
  min-height: 554px;
}

.idk_home_hero_slider{
  margin-left: 0;
}

.idk_home_hero_slide{
  min-height: 554px;
}

.idk_home_hero_content{
  max-width: 458px;
}

.idk_home_hero_content h1{
  margin-bottom: 40px;
  font-family: "Inter", sans-serif;
  font-size: 64px;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -1px;
}

.idk_home_hero_stat{
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 28px;
}

.idk_home_hero_stat_icon{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  flex: 0 0 64px;
}

.idk_home_hero_stat_icon img{
  width: 64px;
  height: 64px;
  object-fit: contain;
}

.idk_home_hero_stat_text{
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.idk_home_hero_stat_text span{
  font-family: "Inter", sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.25px;
}

.idk_home_hero_stat_text strong{
  font-family: "Inter", sans-serif;
  font-size: 32px;
  font-weight: 800;
  line-height: 1.1;
  color: #0DC14F;
}

.idk_home_hero_stat_text small{
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
}

.idk_home_hero_content p{
  margin-bottom: 40px;
  font-family: "Inter", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.92);
}

.idk_home_hero_actions{
  display: flex;
  align-items: center;
  gap: 24px;
}

.idk_home_hero_btn{
  display: inline-flex;
  align-items: center;
  gap: 16px;
  min-width: 205px;
  justify-content: center;
  padding: 16px 30px;
  border-radius: 999px;
  background: #0DB14B;
  color: #ffffff;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
}

.idk_home_hero_btn img{
  width: 18px;
  height: 18px;
  object-fit: contain;
}

.idk_home_hero_location{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #ffffff;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.2;
  text-decoration: none;
}

.idk_home_hero_location img{
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.idk_home_hero_product_wrap{
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: fit-content;
  max-width: 100%;
  margin: 0 auto;
}

.idk_home_hero_badge{
  position: absolute;
  top: 10px;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 92px;
  height: 92px;
  border-radius: 50%;
  background: #0DB14B;
  color: #FFFFFF;
  font-family: "Inter", sans-serif;
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
  z-index: 2;
}

.idk_home_hero_product{
  width: auto;
  max-width: min(100%, 640px);
  height: 530px;
  max-height: 530px;
  margin: 0 auto 18px;
  object-fit: contain;
}

.idk_home_hero_product_info{
  width: 100%;
}

.idk_home_hero_product_info h2{
  margin-bottom: 15px;
  font-family: "Inter", sans-serif;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.2;
}

.idk_home_hero_price{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  min-height: 28px;
  text-align: center;
}

.idk_home_hero_price strong{
  display: inline-block;
  font-family: "Inter", sans-serif;
  font-size: 32px;
  font-weight: 700;
  line-height: 1;
}

.idk_home_hero_price span{
  font-family: "Inter", sans-serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 1;
  color: rgba(255, 255, 255, 0.55);
  text-decoration: line-through;
}

.idk_inner_hero{
  position: relative;
  min-height: 560px;
  overflow: hidden;
}

.idk_inner_hero_bg{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.idk_inner_hero_overlay{
  position: absolute;
  inset: 0;
  background: rgba(42, 73, 29, 0.75);
}

.idk_inner_hero_container{
  position: relative;
  z-index: 1;
  min-height: 560px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.idk_inner_hero_content{
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.idk_inner_hero_content h1{
  margin: 0 0 18px;
  font-family: "Inter", sans-serif;
  font-size: 64px;
  font-weight: 700;
  line-height: 70px;
  letter-spacing: 0;
  color: #FFFFFF;
}

.idk_inner_hero_content p{
  max-width: 640px;
  margin: 0 auto;
  font-family: "Inter", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 30px;
  letter-spacing: 0;
  color: rgba(255, 255, 255, 0.9);
}

/* .idk_about_story_section{
  padding-bottom: 150px;
} */

.idk_about_story_row + .idk_about_story_row{
  margin-top: 50px;
}

.idk_about_story_copy_wrap{
  width: 100%;
}

.idk_about_story_copy{
  max-width: 520px;
  padding: 0;
}

.idk_about_story_copy_left{
  margin-left: auto;
  margin-right: clamp(56px, 8vw, 140px);
}

.idk_about_story_copy_right{
  margin-left: clamp(56px, 8vw, 140px);
  margin-right: auto;
}

.idk_about_story_copy h2{
  margin: 0 0 18px;
  font-family: "Inter", sans-serif;
  font-size: 32px;
  font-weight: 700;
  line-height: 24px;
  color: #0F1A0A;
}

.idk_about_story_copy p{
  margin: 0;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.65;
  color: rgba(15, 26, 10, 0.75);
}

.idk_about_story_media{
  width: 100%;
  min-height: 560px;
}

.idk_about_story_image{
  display: block;
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
  border-radius: 20px;
}

.idk_about_story_row:nth-child(even) .idk_about_story_image{
  border-radius: 20px;
}

.idk_home_hero_nav{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 15px;
  width: 100%;
  margin-left: 0;
  margin-right: 0;
}

.idk_home_hero_arrow{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.idk_home_hero_arrow img{
  width: 30px;
  height: 30px;
  object-fit: contain;
}

.idk_home_hero_dots{
  position: static;
  z-index: 3;
  transform: none;
  display: flex;
  justify-content: flex-start;
}

.idk_home_hero_dots .slick-dots{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.idk_home_hero_dots .slick-dots button{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  padding: 0;
  border: 0;
  background: transparent;
  font-size: 0;
  cursor: pointer;
}

.idk_home_hero_dots .slick-dots img{
  width: 10px;
  height: 10px;
  object-fit: contain;
  transition: width 0.2s ease, height 0.2s ease;
}

.idk_home_hero_dots .slick-dots li.slick-active img{
  width: 28px;
  height: 28px;
}

@media (max-width: 1199px){
  .idk_home_hero{
    min-height: auto;
  }

  .idk_home_hero_container{
    padding: 36px 0 88px;
  }

  .idk_home_hero_layout,
  .idk_home_hero_slide{
    min-height: auto;
  }

  .idk_home_hero_content h1{
    font-size: 48px;
  }

  .idk_home_hero_nav{
    margin-top: 16px;
  }
}

@media (max-width: 991px){
  .idk_home_hero_container{
    padding: 28px 0 48px;
  }

  .idk_home_hero_slider{
    margin-left: 0;
  }

  .idk_home_hero_layout{
    row-gap: 36px;
  }

  .idk_home_hero_dots{
    top: auto;
    bottom: 0;
    left: 50%;
    position: absolute;
    transform: translateX(-50%);
    justify-content: center;
  }

  .idk_home_hero_dots .slick-dots{
    flex-direction: row;
  }

  .idk_home_hero_content{
    max-width: 100%;
    margin-bottom: 0;
  }

  .idk_home_hero_content h1{
    font-size: 42px;
  }

  .idk_home_hero_product_wrap{
    width: 100%;
    max-width: 520px;
  }

  .idk_home_hero_product{
    width: 100%;
    max-width: 420px;
    height: auto;
    max-height: 420px;
  }

  .idk_home_hero_badge{
    top: 0;
    right: 24px;
    width: 82px;
    height: 82px;
    font-size: 24px;
  }

  .idk_home_hero_nav{
    width: 100%;
    margin-top: 20px;
    margin-left: 0;
    margin-right: 0;
  }
}

@media (max-width: 767px){
  .idk_home_hero_container{
    padding: 24px 0 36px;
  }

  .idk_home_hero_layout{
    row-gap: 28px;
  }

  .idk_home_hero_content{
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .idk_home_hero_content h1{
    margin-bottom: 20px;
    font-size: 34px;
    letter-spacing: -1px;
    line-height: 1.02;
  }

  .idk_home_hero_stat{
    justify-content: center;
    margin-bottom: 20px;
  }

  .idk_home_hero_badge{
    top: 4px;
    right: 8px;
    width: 64px;
    height: 64px;
    font-size: 20px;
  }

  .idk_home_hero_price{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 0;
  }

  .idk_home_hero_stat{
    align-items: flex-start;
    gap: 16px;
  }

  .idk_home_hero_stat_icon{
    width: 56px;
    height: 56px;
    flex-basis: 56px;
  }

  .idk_home_hero_stat_icon img{
    width: 56px;
    height: 56px;
  }

  .idk_home_hero_stat_text strong,
  .idk_home_hero_stat_text small{
    font-size: 16px;
  }

  .idk_home_hero_content p{
    max-width: 100%;
    margin-bottom: 24px;
    font-size: 15px;
    line-height: 1.65;
  }

  .idk_home_hero_actions{
    flex-direction: column;
    align-items: stretch;
    gap: 20px;
  }

  .idk_home_hero_btn{
    min-width: 100%;
  }

  .idk_home_hero_location{
    justify-content: center;
  }

  .idk_home_hero_stat_text{
    align-items: flex-start;
    text-align: left;
  }

  .idk_home_hero_slider{
    width: 100%;
  }

  .idk_home_hero_slide{
    min-height: auto;
  }

  .idk_home_hero_product_wrap{
    max-width: 100%;
    padding-top: 10px;
  }

  .idk_home_hero_product{
    max-width: 280px;
    max-height: 280px;
    margin-bottom: 14px;
  }

  .idk_home_hero_product_info h2{
    margin-bottom: 8px;
    font-size: 20px;
    line-height: 1.25;
  }

  .idk_home_hero_price strong{
    font-size: 22px;
  }

  .idk_home_hero_price span{
    position: static;
    transform: none;
    font-size: 14px;
  }

  .idk_home_hero_nav{
    justify-content: center;
    margin-top: 16px;
  }

  .idk_home_hero_arrow{
    width: 36px;
    height: 36px;
  }

  .idk_home_hero_arrow img{
    width: 36px;
    height: 36px;
  }

  .idk_home_hero_dots{
    position: static;
    top: auto;
    left: auto;
    transform: none;
    margin-top: 24px;
  }

  .idk_home_hero_dots .slick-dots{
    justify-content: center;
    gap: 12px;
  }
}

.idk_weekly_offer{
  overflow: hidden;
}

.idk_weekly_offer_head{
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 44px;
}

.idk_weekly_offer_title span{
  display: inline-block;
  margin-bottom: 18px;
  font-family: "Inter", sans-serif;
  font-size: 11.5px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 3.2px;
  color: #FFC93C;
}

.idk_weekly_offer_title h2{
  font-family: "Manrope", sans-serif;
  font-size: 40px;
  font-weight: 800;
  line-height: 50px;
  letter-spacing: 0;
  color: #0F1A0A;
}

.idk_weekly_offer_nav{
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 0 0 auto;
}

.idk_weekly_offer_arrow{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.idk_weekly_offer_arrow img{
  width: 30px;
  height: 30px;
  object-fit: contain;
}

.idk_weekly_offer_slider{
  margin: 0;
}

.idk_weekly_offer_slider .slick-list{
  margin: 0;
}

.idk_weekly_offer_slider .slick-slide{
  padding: 20px 15px;
}

.idk_weekly_offer_card{
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px 20px;
  border-radius: 14px;
  background: #E4F1E1;
}

.idk_weekly_offer_badge{
  position: absolute;
  top: 21px;
  right: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: #0DB14B;
  color: #ffffff;
  font-family: "Inter", sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
}

.idk_weekly_offer_image{
  display: block;
  width: 100%;

  height: 380px;
  margin: 0 auto 14px;
  object-fit: contain;
}

.idk_weekly_offer_price{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.idk_weekly_offer_price strong{
  font-family: "Inter", sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: normal;
  letter-spacing: -1px;
  color: #0DB14B;
}

.idk_weekly_offer_price span{
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 0;
  color: #8D8D8D;
  text-decoration: line-through;
}

@media (max-width: 1199px){
  .idk_weekly_offer_title h2{
    font-size: 46px;
  }
}

@media (max-width: 991px){
  .idk_weekly_offer_head{
    align-items: flex-start;
    flex-direction: column;
    margin-bottom: 32px;
  }

  .idk_weekly_offer_title h2{
    font-size: 40px;
  }
}

@media (max-width: 767px){
  .idk_weekly_offer_title span{
    margin-bottom: 14px;
    font-size: 12px;
    letter-spacing: 2.4px;
  }

  .idk_weekly_offer_title h2{
    font-size: 32px;
    letter-spacing: -1px;
  }

  .idk_weekly_offer_card{
    height: 420px;
    padding: 20px 16px;
  }

  .idk_weekly_offer_image{
    height: 300px;
  }

  .idk_weekly_offer_badge{
    width: 62px;
    height: 62px;
    font-size: 16px;
  }
}

.idk_catalog_cta{
  position: relative;
  margin-top: 50px;
  padding: 52px 40px;
  overflow: hidden;
  border: 1px solid rgba(204, 204, 204, 0.25);
  border-radius: 20px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 1) 0%, rgba(248, 251, 244, 1) 100%);
}

.idk_catalog_cta_blur{
  position: absolute;
  width: 335px;
  height: 335px;
  border-radius: 50%;
  background: #0AA537;
  opacity: 0.08;
  filter: blur(120px);
  pointer-events: none;
}

.idk_catalog_cta_blur_right{
  right: -120px;
  bottom: -180px;
}

.idk_catalog_cta_content{
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.idk_catalog_cta_content h2{
  font-family: "Inter", sans-serif;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0;
  color: #2A491D;
}

.idk_catalog_cta_actions{
  display: flex;
  align-items: center;
  gap: 20px;
  flex: 0 0 auto;
}

.idk_catalog_cta_btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 44px;
  padding: 12px 28px;
  border-radius: 999px;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  text-decoration: none;
}

.idk_catalog_cta_btn img{
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.idk_catalog_cta_btn_primary{
  background: linear-gradient(90deg, #0AA537 0%, #2A491D 100%);
  color: #ffffff;
}

.idk_catalog_cta_btn_outline{
  border: 1px solid #0AA537;
  color: #0AA537;
  background: transparent;
}

.idk_press_section{
  padding: 80px 0;
  background: #F2EEE4;
}

.idk_section_eyebrow{
  display: inline-block;
  margin-bottom: 14px;
  font-family: "Inter", sans-serif;
  font-size: 11.5px;
  font-weight: 700;
  line-height: 17.3px;
  letter-spacing: 1.84px;
  color: #FFC93C;
  text-transform: uppercase;
}

.idk_press_intro h2{
  max-width: 540px;
  margin-bottom: 10px;
  font-family: "Inter", sans-serif;
  font-size: 40px;
  font-weight: 800;
  line-height: 50px;
  letter-spacing: 0;
  color: #0F1A0A;
}

.idk_press_intro p{
  max-width: 560px;
  margin-bottom: 34px;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.3;
  color: #666666;
}

.idk_press_rating{
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.idk_press_rating_value,
.idk_press_rating_label{
  display: block;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1;
  color: #2A491D;
}

.idk_press_rating_stars{
  display: block;
  width: auto;
  height: 34px;
  flex: 0 0 auto;
}

.idk_press_logo_card,
.idk_press_quote_card{
  height: 100%;
  padding: 30px 22px;
  border-radius: 22px;
  background: #FFFFFF;
  box-shadow: 0 20px 45px rgba(129, 108, 63, 0.08);
}

.idk_press_logo_card{
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 84px;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.2;
  color: #2A491D;
  text-align: center;
}

.idk_press_quote_card p{
  position: relative;
  margin-bottom: 10px;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.25;
  color: #666666;
}

.idk_press_quote_card p::before{
  content: "\"";
}

.idk_press_quote_card p::after{
  content: "\"";
}

.idk_press_quote_card strong{
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.3;
  color: #2A491D;
}

.idk_impact_section{
  padding: 80px 0;
  background: #2A491D;
}

.idk_impact_head{
  margin-bottom: 34px;
}

.idk_impact_eyebrow{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  font-family: "Inter", sans-serif;
  font-size: 11.5px;
  font-weight: 700;
  line-height: 17.3px;
  letter-spacing: 1.84px;
  color: #FFC93C;
  text-transform: uppercase;
}

.idk_impact_eyebrow::before{
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #FFC93C;
  flex: 0 0 6px;
}

.idk_impact_intro h2{
  max-width: 360px;
  margin: 0;
  font-family: "Inter", sans-serif;
  font-size: 40px;
  font-weight: 800;
  line-height: 50px;
  color: #FFFFFF;
}

.idk_impact_total{
  display: flex;
  align-items: baseline;
  justify-content: flex-end;
  gap: 12px;
  flex-wrap: wrap;
}

.idk_impact_total strong{
  font-family: "Inter", sans-serif;
  font-size: clamp(44px, 5vw, 66px);
  font-weight: 800;
  line-height: 1;
  color: #FFC93C;
}

.idk_impact_total span{
  font-family: "Inter", sans-serif;
  font-size: clamp(24px, 2.3vw, 28px);
  font-weight: 700;
  line-height: 1.1;
  color: #FFC93C;
}

.idk_impact_card{
  height: 100%;
  padding: 28px 28px 24px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.06);
}

.idk_impact_icon{
  display: block;
  width: 50px;
  height: 50px;
  margin-bottom: 26px;
}

.idk_impact_card h3{
  margin: 0 0 6px;
  font-family: "Inter", sans-serif;
  font-size: 30px;
  font-weight: 800;
  line-height: 1.15;
  color: #FFFFFF;
}

.idk_impact_card h4{
  margin: 0 0 8px;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.3;
  color: #FFFFFF;
}

.idk_impact_card p{
  margin: 0;
  font-family: "Inter", sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.75);
}

.idk_impact_note{
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 14px;
  padding: 18px 20px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.06);
}

.idk_impact_note_icon{
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
}

.idk_impact_note_body{
  flex: 1 1 auto;
}

.idk_impact_note_body strong{
  display: block;
  margin-bottom: 6px;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.3;
  color: #FFFFFF;
}

.idk_impact_note_body p{
  margin: 0;
  font-family: "Inter", sans-serif;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.72);
}

.idk_impact_note_link{
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: "Inter", sans-serif;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
  color: #FFFFFF;
  text-decoration: none;
  white-space: nowrap;
}

.idk_impact_note_link img{
  width: 14px;
  height: 14px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.idk_values_section{
  padding: 20px 0px;
}

.idk_values_intro{
  
  padding-top: 28px;
}

.idk_values_eyebrow{
  display: inline-block;
  margin-bottom: 18px;
  font-family: "Inter", sans-serif;
  font-size: 11.5px;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 1.8px;
  color: #FFC93C;
  text-transform: uppercase;
}

.idk_values_intro h2{
  position: relative;
  display: inline-block;
  margin: 0;
  font-family: "Inter", sans-serif;
  font-size: 40px;
  font-weight: 800;
  line-height: 50px;
  color: #0F1A0A;
}

.idk_values_intro h2::after{
  content: "";
  position: absolute;
  left: 0;
  right: 18px;
  bottom: 7px;
  height: 7px;
  background: #0C6FB1;
  z-index: -1;
}

.idk_values_cards_layout{
  align-items: flex-start;
}

.idk_values_cards_col{
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.idk_values_cards_col_offset{
  margin-top: 56px;
}

.idk_values_card{
  min-height: 290px;
  padding: 22px 22px 24px;
  border-radius: 18px;
  background: #FFFFFF;
  box-shadow: 0 18px 42px rgba(20, 37, 17, 0.08);
}

.idk_values_card_shift_down{
  margin-top: 0;
}

.idk_values_card_shift_up{
  margin-top: 0;
}

.idk_values_icon{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin-bottom: 18px;
}

.idk_values_icon img{
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.idk_values_card h3{
  margin: 0 0 12px;
  font-family: "Inter", sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0;
  color: #355126;
}

.idk_values_card p{
  margin: 0;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0;
  color: #666666;
}

.idk_newsletter_section{
  padding-bottom: 50px;
}

.idk_newsletter_panel{
  padding: 80px 50px;
  border-radius: 40px;
  background: linear-gradient(90deg, #2A491D 0%, #1A3010 70%, #0AA537 130%);
  box-shadow: 0 24px 50px rgba(20, 37, 17, 0.14);
}

/* .idk_newsletter_content{
  max-width: 360px;
} */

.idk_newsletter_eyebrow{
  display: inline-block;
  margin-bottom: 14px;
  font-family: "Inter", sans-serif;
  font-size: 11.5px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: #FFC93C;
}

.idk_newsletter_content h2{
  margin: 0 0 12px;
  font-family: "Inter", sans-serif;
  font-size: 40px;
  font-weight: 800;
  line-height: 50px;
  letter-spacing: 0;
  color: #FFFFFF;
}

.idk_newsletter_content p{
  margin: 0;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0;
  color: #EEEEEE;
}

.idk_newsletter_form_wrap{
  max-width: 540px;
  margin-left: auto;
}

.idk_newsletter_form{
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 80px;
  padding: 14px 10px 14px 22px;
  border-radius: 18px;
  background: #FFFFFF;
}

.idk_newsletter_input{
  height: 52px;
  border: 0;
  box-shadow: none;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.2;
  color: #0F1A0A;
}

.idk_newsletter_input:focus{
  border: 0;
  box-shadow: none;
}

.idk_newsletter_input::placeholder{
  color: #9B9B9B;
}

.idk_newsletter_btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 188px;
  min-width: 188px;
  height: 52px;
  padding: 0 24px;
  border: 0;
  border-radius: 18px;
  background: #0AA537;
  font-family: "Inter", sans-serif;
  font-size: 17px;
  font-weight: 700;
  line-height: 1;
  color: #FFFFFF;
  text-decoration: none;
}

.idk_media_section_intro{
  margin-bottom: 34px;
}

.idk_media_section_intro span{
  display: inline-block;
  margin-bottom: 16px;
  font-family: "Inter", sans-serif;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 2.2px;
  color: #F2A900;
  text-transform: uppercase;
}

.idk_media_section_intro h2{
  margin: 0;
  font-family: "Inter", sans-serif;
  font-size: 40px;
  font-weight: 800;
  line-height: 50px;
  color: #0F1A0A;
}

.idk_media_featured_card{
  overflow: hidden;
  margin-bottom: 14px;
  border-radius: 18px;
  background: #FFFFFF;
  box-shadow: 0 18px 45px rgba(129, 108, 63, 0.08);
}

.idk_media_featured_image_wrap{
  height: 100%;
  min-height: 180px;
}

.idk_media_featured_image{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.idk_media_featured_content{
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  padding: 30px;
}

.idk_media_meta{
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  font-family: "Inter", sans-serif;
  font-size: 10px;
  font-weight: 400;
  line-height: 1.3;
  color: #9B9B9B;
}

.idk_media_source{
  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-weight: 500;
  line-height: 18px;
  letter-spacing: 0px;
  color: #0AA537;
}

.idk_media_list_source{
  font-family: "Inter", sans-serif;
  font-size: 17px;
  font-weight: 700;
  line-height: 25.5px;
  letter-spacing: -0.34px;
  color: #0AA537;
}

.idk_media_dot{
  color: #B9B9B9;
}

.idk_media_date{
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: "Inter", sans-serif;
  font-size: 11.5px;
  font-weight: 400;
  line-height: 17.3px;
  letter-spacing: 0;
  color: rgba(15, 26, 10, 0.5);
}

.idk_media_date img{
  width: 12px;
  height: 12px;
  flex: 0 0 12px;
  object-fit: contain;
}

.idk_media_featured_content h3{
  margin: 0 0 10px;
  font-family: "Inter", sans-serif;
  font-size: 32px;
  font-weight: 700;
  line-height: 40px;
  letter-spacing: -0.8px;
  color: #0F1A0A;
}

.idk_media_list_text h3{
  margin: 0 0 10px;
  font-family: "Inter", sans-serif;
  font-size: 19px;
  font-weight: 600;
  line-height: 23.8px;
  letter-spacing: -0.38px;
  color: #0F1A0A;
}

.idk_media_featured_content p{
  margin: 0;
  font-family: "Inter", sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 24.4px;
  letter-spacing: 0;
  color: rgba(15, 26, 10, 0.65);
}

.idk_media_list_text p{
  margin: 0;
  font-family: "Inter", sans-serif;
  font-size: 13.5px;
  font-weight: 400;
  line-height: 21.9px;
  letter-spacing: 0;
  color: rgba(15, 26, 10, 0.6);
}

.idk_media_link{
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 0;
  color: #0AA537;
  text-decoration: none;
}

.idk_media_link img{
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.idk_media_list_arrow img{
  width: 16px;
  height: 16px;
  object-fit: contain;
}

.idk_media_list{
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.idk_media_list_item{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 28px;
  border-radius: 18px;
  background: #FFFFFF;
  box-shadow: 0 16px 40px rgba(129, 108, 63, 0.06);
}

.idk_media_list_item_body{
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  align-items: center;
  column-gap: 50px;
  flex: 1 1 auto;
  min-width: 0;
}

.idk_media_list_source{
  display: block;
  width: 96px;
  min-width: 96px;
}

.idk_media_list_text{
  min-width: 0;
}

.idk_media_list_text .idk_media_meta{
  margin-bottom: 8px;
}

.idk_media_list_arrow{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  flex: 0 0 auto;
}

.idk_media_list_arrow img{
  width: 48px;
  height: 48px;
}

@media (max-width: 991px){
  .idk_media_section_intro h2{
    font-size: 40px;
  }

  .idk_media_featured_content{
    padding: 24px 22px;
  }
}

@media (max-width: 767px){
  .idk_media_section_intro h2{
    font-size: 32px;
  }

  .idk_media_list_item,
  .idk_media_list_item_body{
    align-items: flex-start;
  }

  .idk_media_list_item_body{
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .idk_media_list_source{
    width: auto;
    min-width: 0;
  }
}

.idk_newsletter_meta{
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 10px;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.3;
  color: #EEEEEE;
}

.idk_newsletter_meta span + span::before{
  content: "|";
  margin-right: 12px;
  color: rgba(255, 255, 255, 0.6);
}

.idk_newsletter_benefits{
  margin-top: 70px;
}

.idk_newsletter_benefit{
  display: flex;
  align-items: flex-start;
  gap: 18px;
}

.idk_newsletter_benefit_icon{
  width: 65px;
  height: 65px;
  flex: 0 0 65px;
  object-fit: contain;
}

.idk_newsletter_benefit_body h3{
  margin: 0 0 8px;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: 0;
  color: #0F1A0A;
}

.idk_newsletter_benefit_body p{
  margin: 0;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: 0;
  color: #666666;
}

.idk_footer{
  position: relative;
  background: url("../images/footer-bg.jpg") center/cover no-repeat;
  overflow: hidden;
}

.idk_footer::before{
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0));
  pointer-events: none;
}

.idk_footer .container{
  position: relative;
  z-index: 1;
}

.idk_footer_main_row{
  padding: 100px 0;
}

.idk_footer_brand{
  padding-top: 2px;
}

.idk_footer_logo{
  display: inline-block;
  margin-bottom: 18px;
}

.idk_footer_logo img{
  width: 170px;
  height: auto;
}

.idk_footer_social{
  display: flex;
  align-items: center;
  gap: 16px;
}

.idk_footer_social a{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.idk_footer_social img{
  width: 18px;
  height: 18px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.idk_footer_nav,
.idk_footer_contact{
  display: flex;
  flex-direction: column;
}

.idk_footer_title{
  margin-bottom: 18px;
  font-family: "Inter", sans-serif;
  font-size: 11px;
  font-weight: 800;
  line-height: 16.5px;
  letter-spacing: 2.42px;
  color: #F2A900;
  text-transform: uppercase;
}

.idk_footer_nav a,
.idk_footer_contact_item{
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.92);
  text-decoration: none;
}

.idk_footer_nav a + a{
  margin-top: 10px;
}

.idk_footer_contact_item{
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.idk_footer_contact_item + .idk_footer_contact_item{
  margin-top: 14px;
}

.idk_footer_contact_icon{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
  color: #F2A900;
  margin-top: 4px;
}

.idk_footer_contact_icon img{
  width: 16px;
  height: 16px;
  display: block;
}

.idk_footer_bottom{
  padding: 10px 0;
  text-align: center;
}

.idk_footer_bottom p{
  margin: 0;
  font-family: "Inter", sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.85);
}

.idk_social_news_section{
  padding: 90px 0 0;
}

.idk_social_news_intro{
  margin-bottom: 34px;
  text-align: center;
}

.idk_social_news_intro span{
  display: inline-block;
  margin-bottom: 14px;
  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 2.4px;
  color: #F2A900;
}

.idk_social_news_intro h2{
  font-family: "Inter", sans-serif;
  font-size: 40px;
  font-weight: 700;
  line-height: 50px;
  letter-spacing: 0;
  color: #0F1A0A;
}

.idk_social_news_board{
  border-radius: 20px;
  overflow: hidden;
  background: #FFFFFF;
  border: 1px solid rgba(15, 26, 10, 0.08);
  box-shadow: 0 20px 40px rgba(15, 26, 10, 0.06);
}

.idk_social_news_featured{
  border-bottom: 1px solid rgba(15, 26, 10, 0.08);
}

.idk_social_news_featured_media{
  display: block;
  aspect-ratio: 16 / 5;
  overflow: hidden;
  background: #E8EFE3;
}

.idk_social_news_featured_cover{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: 24px;
  text-align: center;
  background:
    radial-gradient(circle at center, rgba(170, 214, 44, 0.24) 0, rgba(170, 214, 44, 0.24) 4px, transparent 4px, transparent 100%),
    repeating-conic-gradient(from 0deg, rgba(153, 206, 0, 0.14) 0deg 12deg, transparent 12deg 24deg),
    linear-gradient(90deg, #1e4f09 0%, #0b6a13 100%);
  background-size: auto, 100% 100%, 100% 100%;
}

.idk_social_news_featured_cover span{
  margin-bottom: 10px;
  font-family: "Inter", sans-serif;
  font-size: 20px;
  font-weight: 800;
  color: #ffffff;
}

.idk_social_news_featured_cover h3{
  margin: 0 0 8px;
  font-family: "Inter", sans-serif;
  font-size: clamp(42px, 7.5vw, 88px);
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: -2px;
  color: #ffffff;
}

.idk_social_news_featured_cover p{
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 4px;
  color: #f6d34b;
}

.idk_social_news_featured_body{
  padding: 24px 28px 28px;
}

.idk_social_news_featured_body span,
.idk_social_news_card_body span{
  display: inline-block;
  margin-bottom: 10px;
  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.2;
  color: #6D7768;
}

.idk_social_news_featured_body h3,
.idk_social_news_card_body h3{
  margin: 0;
  font-family: "Inter", sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.25;
}

.idk_social_news_featured_body a,
.idk_social_news_card_body a{
  color: #0F1A0A;
  text-decoration: none;
}

.idk_social_news_profile,
.idk_social_news_post_head{
  display: flex;
  align-items: center;
  gap: 12px;
}

.idk_social_news_profile strong,
.idk_social_news_post_head strong{
  display: block;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
  color: #0F1A0A;
}

.idk_social_news_profile span,
.idk_social_news_post_head span{
  margin: 0;
  font-size: 13px;
  font-weight: 500;
  color: #6D7768;
}

.idk_social_news_avatar{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: linear-gradient(180deg, #0AA537 0%, #2A491D 100%);
  font-family: "Inter", sans-serif;
  font-size: 28px;
  font-weight: 800;
  line-height: 1;
  color: #ffffff;
  flex: 0 0 52px;
}

.idk_social_news_avatar.small{
  width: 34px;
  height: 34px;
  border-radius: 50%;
  font-size: 16px;
  flex-basis: 34px;
}

.idk_social_news_grid{
  column-count: 3;
  column-gap: 10px;
  padding: 28px;
}

.idk_social_news_card{
  display: inline-block;
  width: 100%;
  margin: 0 0 10px;
  border-radius: 16px;
  overflow: hidden;
  background: #FFFFFF;
  border: 1px solid rgba(15, 26, 10, 0.08);
  break-inside: avoid;
  -webkit-column-break-inside: avoid;
  page-break-inside: avoid;
}

.idk_social_news_card_media{
  display: block;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: #EEF3EA;
}

.idk_social_news_card_media img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.idk_social_news_card_body{
  padding: 18px 18px 22px;
}

.idk_social_news_post_head{
  margin-bottom: 14px;
}

.idk_social_news_card_body h3{
  font-size: 18px;
  line-height: 1.35;
}

.idk_social_news_card_body p{
  margin-top: 12px;
  font-family: "Inter", sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.65;
  color: #445240;
}

.idk_social_news_media_placeholder{
  width: 100%;
  height: 100%;
  min-height: 220px;
}

.idk_social_news_media_green{
  background:
    radial-gradient(circle at center, rgba(255, 255, 255, 0.22) 0, rgba(255, 255, 255, 0.22) 3px, transparent 3px, transparent 100%),
    repeating-conic-gradient(from 0deg, rgba(203, 234, 98, 0.2) 0deg 10deg, transparent 10deg 22deg),
    linear-gradient(135deg, #0f5d0d 0%, #1d8f28 100%);
}

.idk_social_news_media_dark{
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.12)),
    linear-gradient(135deg, #5b2a11 0%, #221a15 100%);
}

.idk_social_news_media_red{
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.06)),
    linear-gradient(135deg, #b13320 0%, #e57f3d 100%);
}

.idk_social_news_media_store{
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.08)),
    linear-gradient(135deg, #c8d59d 0%, #839b54 100%);
}

.idk_social_news_empty{
  padding: 48px 24px;
  border-radius: 20px;
  background: #FFFFFF;
  border: 1px solid rgba(15, 26, 10, 0.08);
  text-align: center;
}

.idk_social_news_empty p{
  font-family: "Inter", sans-serif;
  font-size: 16px;
  color: #445240;
}

@media (max-width: 991px){
  .idk_inner_hero,
  .idk_inner_hero_container{
    min-height: 480px;
  }

  .idk_inner_hero_content h1{
    font-size: 52px;
  }

  .idk_about_story_row + .idk_about_story_row{
    margin-top: 50px;
  }

  .idk_about_story_copy{
    max-width: 100%;
    padding: 24px 0;
  }

  .idk_about_story_copy_left,
  .idk_about_story_copy_right{
    margin-left: 0;
    margin-right: 0;
  }

  .idk_about_story_media,
  .idk_about_story_image{
    min-height: 360px;
  }

  .idk_impact_total{
    justify-content: flex-start;
  }

  .idk_impact_note{
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .idk_press_intro h2{
    font-size: 40px;
    line-height: 50px;
  }

  .idk_catalog_cta{
    padding: 40px 28px;
  }

  .idk_catalog_cta_content{
    flex-direction: column;
    align-items: flex-start;
  }

  .idk_values_intro{
    max-width: 100%;
    padding-top: 0;
  }

  .idk_values_card_shift_down,
  .idk_values_card_shift_up{
    margin-top: 0;
  }

  .idk_values_cards_col_offset{
    margin-top: 0;
  }

  .idk_newsletter_form_wrap{
    max-width: 100%;
    margin-left: 0;
  }

  .idk_newsletter_benefit_body p{
    max-width: none;
  }

  .idk_footer_bottom{
    padding: 10px 0;
  }

  .idk_social_news_grid{
    column-count: 2;
  }
}

@media (max-width: 767px){
  .idk_inner_hero,
  .idk_inner_hero_container{
    min-height: 380px;
  }

  .idk_inner_hero_content h1{
    margin-bottom: 14px;
    font-size: 40px;
  }

  .idk_inner_hero_content p{
    font-size: 16px;
  }

  .idk_about_story_section{
    padding-bottom: 75px;
  }

  .idk_about_story_copy{
    padding: 28px 20px;
  }

  .idk_about_story_copy h2{
    margin-bottom: 16px;
    font-size: 32px;
  }

  .idk_about_story_copy p{
    font-size: 15px;
  }

  .idk_about_story_media,
  .idk_about_story_image{
    min-height: 280px;
  }

  .idk_impact_section{
    padding: 64px 0;
  }

  .idk_impact_head{
    margin-bottom: 28px;
  }

  .idk_impact_intro h2{
    font-size: 34px;
    line-height: 1.15;
  }

  .idk_impact_card{
    padding: 24px 20px 20px;
  }

  .idk_impact_card h3{
    font-size: 28px;
  }

  .idk_impact_note{
    padding: 18px;
  }

  .idk_impact_note_link{
    width: 100%;
  }

  .idk_press_section{
    padding: 64px 0;
  }

  .idk_press_intro h2{
    font-size: 34px;
    line-height: 1.15;
  }

  .idk_press_intro p{
    margin-bottom: 24px;
  }

  .idk_press_rating{
    gap: 12px;
  }

  .idk_press_rating_stars{
    height: 28px;
  }

  .idk_press_logo_card,
  .idk_press_quote_card{
    padding: 22px 18px;
    border-radius: 18px;
  }
  .idk_newsletter_content h2{
    font-size: 32px;
    line-height: normal;
    margin: 0 0 20px;
  }
  .idk_newsletter_content{
    text-align: center;
  }

  .idk_values_section{
    padding: 12px 0 64px;
  }

  .idk_values_intro h2{
    font-size: 36px;
  }

  .idk_values_intro h2::after{
    right: 12px;
    bottom: 5px;
    height: 6px;
  }

  .idk_values_card{
    min-height: 0;
    padding: 20px 18px 22px;
  }

  .idk_newsletter_section{
    padding-bottom: 64px;
  }

  .idk_newsletter_panel{
    padding: 28px 20px;
    border-radius: 20px;
  }

  .idk_newsletter_form{
    flex-direction: column;
    align-items: stretch;
  }

  .idk_newsletter_btn{
    width: 100%;
    min-width: 0;
    height: 52px;
  }

  .idk_newsletter_meta{
    justify-content: center;
    gap: 10px;
  }

  .idk_newsletter_meta span + span::before{
    content: none;
  }

  .idk_newsletter_benefits{
    margin-top: 40px;
  }

  .idk_newsletter_benefit{
    gap: 14px;
  }

  .idk_newsletter_benefit_icon{
    width: 56px;
    height: 56px;
    flex-basis: 56px;
  }

  .idk_footer{
    padding: 0;
  }

  .idk_footer_main_row{
    padding: 64px 0 32px;
    row-gap: 28px;
  }

  .idk_footer_brand{
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding-top: 0;
    margin-bottom: 12px;
  }

  .idk_footer_logo img{
    width: 148px;
  }

  .idk_footer_social{
    justify-content: center;
  }

  .idk_footer_nav,
  .idk_footer_contact{
    align-items: center;
    text-align: center;
  }

  .idk_footer_contact{
    align-items: stretch;
  }

  .idk_footer_contact_item{
    justify-content: flex-start;
    width: 100%;
    text-align: left;
  }

  .idk_footer_nav a,
  .idk_footer_contact_item{
    font-size: 15px;
  }

  .idk_footer_bottom p{
    font-size: 14px;
  }

  .idk_catalog_cta{
    padding: 28px 20px;
  }

  .idk_catalog_cta_content h2{
    font-size: 22px;
  }

  .idk_catalog_cta_actions{
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }

  .idk_catalog_cta_btn{
    width: 100%;
  }

  .idk_social_news_section{
    padding-top: 64px;
  }

  .idk_social_news_intro h2{
    font-size: 32px;
    line-height: 1.2;
  }

  .idk_social_news_featured_media{
    aspect-ratio: 16 / 8;
  }

  .idk_social_news_featured_body{
    padding: 20px;
  }

  .idk_social_news_featured_body h3{
    font-size: 22px;
  }

  .idk_social_news_grid{
    column-count: 1;
    padding: 20px;
  }

  .idk_social_news_card_body{
    padding: 16px 16px 20px;
  }
}

.idk_locations_section{
  padding: 100px 0 0;
}

.idk_locations_intro{
  margin-bottom: 32px;
}

.idk_locations_intro span{
  display: inline-block;
  margin-bottom: 12px;
  font-family: "Inter", sans-serif;
  font-size: 11.5px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 2.4px;
  color: #FFC93C;
}

.idk_locations_intro h2{
  margin-bottom: 10px;
  font-family: "Inter", sans-serif;
  font-size: 40px;
  font-weight: 800;
  line-height: 1.2;
  color: #0F1A0A;
}

.idk_locations_intro p{
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #666666;
}

.idk_locations_list{
  display: flex;
  flex-direction: column;
  gap: 20px;
  height: 500px;
  max-height: 500px;
  padding-right: 10px;
  overflow-y: auto;
}

.idk_locations_list::-webkit-scrollbar{
  width: 6px;
}

.idk_locations_list::-webkit-scrollbar-track{
  background: rgba(15, 26, 10, 0.08);
  border-radius: 999px;
}

.idk_locations_list::-webkit-scrollbar-thumb{
  background: #0AA537;
  border-radius: 999px;
}

.idk_locations_card{
  box-sizing: border-box;
  min-height: 150px;
  padding: 22px 18px;
  border: 1px solid transparent;
  border-radius: 16px;
  background: #FFFFFF;
  box-shadow: 0 10px 30px rgba(15, 26, 10, 0.06);
  cursor: pointer;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.idk_locations_card:hover,
.idk_locations_card.active{
  border-color: rgba(10, 165, 55, 0.22);
  box-shadow: 0 16px 34px rgba(15, 26, 10, 0.1);
}

.idk_locations_card.active{
  transform: translateY(-1px);
}

.idk_locations_card_head{
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.idk_locations_card_head h3{
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #2A491D;
}

.idk_locations_card_head a{
  flex: 0 0 auto;
}

.idk_locations_card_action{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 0;
  background: transparent;
  flex: 0 0 auto;
}

.idk_locations_card_head img{
  width: 16px;
  height: 16px;
}

.idk_locations_card ul{
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.idk_locations_card li{
  display: flex;
  align-items: center;
  gap: 8px;
}

.idk_locations_card li img{
  width: 20px;
  height: 20px;
  flex: 0 0 14px;
}

.idk_locations_card li span{
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4;
  color: #666666;
}

.idk_locations_map{
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  height: 500px;
  min-height: 500px;
  background: #E9EFE4;
}

.idk_locations_map iframe{
  width: 100%;
  height: 500px;
  border: 0;
  display: block;
}

.idk_locations_map_canvas{
  width: 100%;
  height: 500px;
}

.idk_locations_popup{
  position: absolute;
  top: 24px;
  right: 24px;
  z-index: 3;
  width: min(360px, calc(100% - 48px));
  padding: 20px 22px 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 18px 40px rgba(15, 26, 10, 0.14);
}

.idk_locations_popup_close{
  position: absolute;
  top: 12px;
  right: 12px;
  width: 28px;
  height: 28px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  font-family: "Inter", sans-serif;
  font-size: 20px;
  line-height: 1;
  color: #6D7768;
}

.idk_locations_popup_title{
  margin-bottom: 10px;
  padding-right: 28px;
  font-family: "Inter", sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
  color: #0F1A0A;
}

.idk_locations_popup_body{
  font-family: "Inter", sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.55;
  color: #4A5447;
}

.idk_locations_popup_body p{
  margin-bottom: 8px;
}

.idk_locations_popup_body p:last-child{
  margin-bottom: 0;
}

@media (max-width: 991px){
  .idk_locations_list{
    height: 490px;
    max-height: 490px;
  }
}

@media (max-width: 767px){
  .idk_locations_section{
    padding-top: 64px;
  }

  .idk_locations_intro h2{
    font-size: 32px;
  }

  .idk_locations_map,
  .idk_locations_map iframe{
    min-height: 320px;
    height: 320px;
  }

  .idk_locations_popup{
    top: 16px;
    right: 16px;
    width: calc(100% - 32px);
    padding: 18px 18px 16px;
  }

  .idk_locations_popup_title{
    font-size: 20px;
  }
}

.idk_form_btn_str{
  width:20px;
  height:20px;
}












































































/****************** slick styles *************************/

.slick-slide {
  margin: 0 10px;
}

/* the parent */
.slick-list {
  margin: 0 -10px;
}

#lightcase-nav a {
  color: #ffffff !important;
}

a.lightcase-icon-close {
  color: #ffffff !important;
}

/* IDK Menu Start */
#cssmenu,
#cssmenu ul,
#cssmenu ul li,
#cssmenu ul li a,
#cssmenu #menu-button {
  margin: 0;
  padding: 0;
  border: 0;
  list-style: none;
  line-height: 1;
  display: block;
  position: relative;
  box-sizing: border-box;
}

#cssmenu:after,
#cssmenu > ul:after {
  content: "";
  display: block;
  clear: both;
}

#cssmenu #menu-button {
  display: none;
}

#cssmenu {
  background: transparent;
  width: 100%;
  padding: 28px 0;
  display: flex;
  justify-content: center;
}

#cssmenu > ul {
  display: flex;
  align-items: center;
  gap: 30px;
}

#cssmenu.align-center > ul {
  justify-content: center;
}

#cssmenu.align-center > ul > li {
  display: block;
}

#cssmenu.align-center ul ul {
  text-align: left;
}

#cssmenu.align-right > ul > li {
  margin-left: auto;
}

#cssmenu > ul > li > a {
  padding: 0;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 21px;
  letter-spacing: -0.35px;
  text-decoration: none;
  color: #111111;
  transition: color 0.2s ease;
}

#cssmenu > ul > li.active > a,
#cssmenu > ul > li:hover > a {
  color: #111111;
}

#cssmenu > ul > li.has-sub > a {
  padding-right: 18px;
}

#cssmenu > ul > li.has-sub > a:after {
  position: absolute;
  top: 50%;
  right: 0;
  width: 8px;
  height: 2px;
  display: block;
  background: #111111;
  content: "";
  transform: translateY(-50%);
}

#cssmenu > ul > li.has-sub > a:before {
  position: absolute;
  top: 50%;
  right: 3px;
  display: block;
  width: 2px;
  height: 8px;
  background: #111111;
  content: "";
  transform: translateY(-50%);
  transition: opacity 0.2s ease;
}

#cssmenu > ul > li.has-sub:hover > a:before {
  opacity: 0;
}

#cssmenu ul ul {
  position: absolute;
  top: calc(100% + 18px);
  left: 0;
  min-width: 220px;
  padding: 12px 0;
  background: #ffffff;
  border: 1px solid #e6e1d8;
  border-radius: 16px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  z-index: 20;
}

#cssmenu.align-right ul ul {
  text-align: right;
}

#cssmenu ul ul li {
  height: auto;
}

#cssmenu li:hover > ul {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

#cssmenu.align-right li:hover > ul {
  right: 0;
  left: auto;
}

#cssmenu li:hover > ul > li {
  height: auto;
}

#cssmenu ul ul ul {
  top: -13px;
  left: calc(100% + 12px);
  margin-left: 0;
}

#cssmenu.align-right ul ul ul {
  left: auto;
  right: calc(100% + 12px);
  margin-right: 0;
}

#cssmenu ul ul li a {
  padding: 12px 18px;
  width: 100%;
  font-size: 15px;
  text-decoration: none;
  color: #111111;
  font-weight: 400;
  background: transparent;
  white-space: nowrap;
}

#cssmenu ul ul li:last-child > a,
#cssmenu ul ul li.last-item > a {
  border-bottom: 0;
}

#cssmenu ul ul li:hover > a,
#cssmenu ul ul li a:hover {
  color: #2a9d44;
  background: rgba(42, 157, 68, 0.08);
}

#cssmenu ul ul li.has-sub > a:after {
  position: absolute;
  top: 50%;
  right: 16px;
  width: 8px;
  height: 2px;
  display: block;
  background: #111111;
  content: "";
  transform: translateY(-50%);
}

#cssmenu.align-right ul ul li.has-sub > a:after {
  right: auto;
  left: 16px;
}

#cssmenu ul ul li.has-sub > a:before {
  position: absolute;
  top: 50%;
  right: 19px;
  display: block;
  width: 2px;
  height: 8px;
  background: #111111;
  content: "";
  transform: translateY(-50%);
  transition: opacity 0.2s ease;
}

#cssmenu.align-right ul ul li.has-sub > a:before {
  right: auto;
  left: 19px;
}

#cssmenu ul ul > li.has-sub:hover > a:before {
  opacity: 0;
}

#cssmenu > ul > li:first-child > a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  padding: 0;
}

#cssmenu > ul > li:first-child img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

@media all and (max-width: 768px),
  only screen and (-webkit-min-device-pixel-ratio: 2) and (max-width: 1024px),
  only screen and (min--moz-device-pixel-ratio: 2) and (max-width: 1024px),
  only screen and (-o-min-device-pixel-ratio: 2/1) and (max-width: 1024px),
  only screen and (min-device-pixel-ratio: 2) and (max-width: 1024px),
  only screen and (min-resolution: 192dpi) and (max-width: 1024px),
  only screen and (min-resolution: 2dppx) and (max-width: 1024px) {
  .idk_header_line {
    padding: 10px 0;
  }

  .idk_header_line .row {
    row-gap: 10px;
  }

  .idk_header_line p {
    text-align: center;
    margin-bottom: 0;
    font-size: 12px;
  }

  .idk_header_icons {
    justify-content: center;
    gap: 14px;
  }

  header {
    padding: 14px 0 12px;
  }

  .idk_header_row {
    row-gap: 14px;
  }

  .idk_header_brand_col,
  .idk_header_actions_col {
    width: 100%;
    flex: 0 0 100%;
  }

  .idk_header_brand_col {
    display: flex;
    justify-content: center;
  }

  .idk_header_actions_col {
    display: flex;
    justify-content: center;
    margin-left: 0;
  }

  .idk_header_nav_col {
    width: 100%;
    flex: 0 0 100%;
  }

  .idk_header_logo img {
    max-width: 132px;
  }

  .idk_header_not {
    justify-content: center;
    gap: 10px;
  }

  .idk_header_not_btn {
    width: 40px;
    height: 40px;
    flex: 0 0 40px;
  }

  .idk_header_not_btn img {
    width: 40px;
    height: 40px;
  }

  #cssmenu {
    width: 100%;
    padding: 0;
    display: block;
  }

  #cssmenu ul {
    width: 100%;
    display: none;
  }

  #cssmenu > ul {
    margin-top: 12px;
    background: #ffffff;
    border: 1px solid #e6e1d8;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 18px 40px rgba(17, 17, 17, 0.08);
  }

  #cssmenu.align-center > ul {
    text-align: left;
  }

  #cssmenu ul li {
    width: 100%;
    border-top: 1px solid rgba(17, 17, 17, 0.08);
  }

  #cssmenu ul ul li,
  #cssmenu li:hover > ul > li {
    height: auto;
  }

  #cssmenu ul li a,
  #cssmenu ul ul li a {
    width: 100%;
    border-bottom: 0;
  }

  #cssmenu > ul > li {
    float: none;
  }

  #cssmenu ul ul li a {
    padding-left: 25px;
  }

  #cssmenu ul ul ul li a {
    padding-left: 35px;
  }

  #cssmenu ul ul li a {
    color: #111111;
    background: none;
  }

  #cssmenu ul ul li:hover > a,
  #cssmenu ul ul li.active > a {
    color: #2a9d44;
  }

  #cssmenu ul ul,
  #cssmenu ul ul ul,
  #cssmenu.align-right ul ul {
    position: relative;
    left: 0;
    width: 100%;
    margin: 0;
    top: 0;
    min-width: 100%;
    padding: 0;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    text-align: left;
  }

  #cssmenu > ul > li.has-sub > a:after,
  #cssmenu > ul > li.has-sub > a:before,
  #cssmenu ul ul > li.has-sub > a:after,
  #cssmenu ul ul > li.has-sub > a:before {
    display: none;
  }

  #cssmenu #menu-button {
    display: block;
    padding: 16px 58px 16px 22px;
    color: #111111;
    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border: 1px solid #e6e1d8;
    border-radius: 999px;
    background: #f6f2ea;
  }

  #cssmenu #menu-button:after {
    position: absolute;
    top: 20px;
    right: 22px;
    display: block;
    height: 8px;
    width: 20px;
    border-top: 2px solid #111111;
    border-bottom: 2px solid #111111;
    content: "";
  }

  #cssmenu #menu-button:before {
    position: absolute;
    top: 14px;
    right: 22px;
    display: block;
    height: 2px;
    width: 20px;
    background: #111111;
    content: "";
  }

  #cssmenu #menu-button.menu-opened:after {
    top: 21px;
    border: 0;
    height: 2px;
    width: 15px;
    background: #111111;
    transform: rotate(45deg);
  }

  #cssmenu #menu-button.menu-opened:before {
    top: 21px;
    background: #111111;
    width: 15px;
    transform: rotate(-45deg);
  }

  #cssmenu .submenu-button {
    position: absolute;
    z-index: 99;
    right: 0;
    top: 0;
    display: block;
    border-left: 1px solid rgba(17, 17, 17, 0.08);
    height: 52px;
    width: 52px;
    cursor: pointer;
  }

  #cssmenu .submenu-button.submenu-opened {
    background: rgba(42, 157, 68, 0.08);
  }

  #cssmenu ul ul .submenu-button {
    height: 44px;
    width: 44px;
  }

  #cssmenu .submenu-button:after {
    position: absolute;
    top: 25px;
    right: 21px;
    width: 8px;
    height: 2px;
    display: block;
    background: #111111;
    content: "";
  }

  #cssmenu ul ul .submenu-button:after {
    top: 20px;
    right: 18px;
  }

  #cssmenu .submenu-button.submenu-opened:after {
    background: #111111;
  }

  #cssmenu .submenu-button:before {
    position: absolute;
    top: 22px;
    right: 24px;
    display: block;
    width: 2px;
    height: 8px;
    background: #111111;
    content: "";
  }

  #cssmenu ul ul .submenu-button:before {
    top: 17px;
    right: 21px;
  }

  #cssmenu .submenu-button.submenu-opened:before {
    display: none;
  }

  #cssmenu > ul {
    gap: 0;
  }

  #cssmenu > ul > li > a {
    padding: 18px 22px;
    font-size: 15px;
  }

  #cssmenu ul ul li a {
    padding: 14px 22px 14px 34px;
    font-size: 14px;
  }

  #cssmenu > ul > li:first-child > a {
    width: 100%;
    height: auto;
    justify-content: flex-start;
    padding: 18px 22px;
  }

  #cssmenu > ul > li:first-child img {
    width: 20px;
    height: 20px;
  }
}

/* IDK Menu End */

@media (max-width: 1200px) {
}

.idk_catalog_highlight_content{
  max-width: 430px;
}

.idk_catalog_highlight_eyebrow{
  display: inline-block;
  margin-bottom: 14px;
  font-family: "Inter", sans-serif;
  font-size: 11.5px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 2.4px;
  color: #FFC93C;
}

.idk_catalog_highlight_content h2{
  margin-bottom: 16px;
  font-family: "Inter", sans-serif;
  font-size: 40px;
  font-weight: 800;
  line-height: 50px;
  color: #0F1A0A;
}

.idk_catalog_highlight_content p{
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: #666666;
}

.idk_catalog_highlight_actions{
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 32px;
  flex-wrap: wrap;
}

.idk_catalog_highlight_btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-width: 164px;
  min-height: 52px;
  padding: 12px 28px;
  border-radius: 999px;
  background: rgba(10, 165, 55, 1);
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #FFFFFF;
  text-decoration: none;
  transition: background 0.2s ease;
}

.idk_catalog_highlight_btn:hover{
  background: linear-gradient(90deg, #099A32 0%, #244118 100%);
}

.idk_catalog_highlight_btn_arrow{
  font-size: 18px;
  line-height: 1;
}

.idk_catalog_highlight_link{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.3;
  color: #0F1A0A;
  text-decoration: none;
}

.idk_catalog_highlight_link_icon{
  font-size: 22px;
  line-height: 1;
}

.idk_catalog_slider_wrap{
  position: relative;
}

.idk_catalog_slider{
  margin-bottom: 28px;
}

.idk_catalog_slider .slick-list{
  margin: 0;
  overflow: hidden;
}

.idk_catalog_slider .slick-slide{
  margin: 0;
}

.idk_catalog_slide{
  padding: 0;
}

.idk_catalog_slide img{
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 0;
}

.idk_catalog_slider .slick-arrow{
  position: absolute;
  bottom: -62px;
  z-index: 2;
  width: 30px;
  height: 30px;
  padding: 0;
  border: 0;
  background: transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: none;
}

.idk_catalog_slider .slick-arrow img{
  width: 30px;
  height: 30px;
  display: block;
}

.idk_catalog_slider .slick-arrow:hover{
  background: transparent;
}

.idk_catalog_slider .slick-prev{
  left: calc(50% - 37.5px);
}

.idk_catalog_slider .slick-next{
  left: calc(50% + 7.5px);
}

@media (max-width: 991px){
  .idk_catalog_highlight_content{
    max-width: none;
  }

  .idk_catalog_highlight_content h2{
    font-size: 40px;
  }

  .idk_catalog_highlight_content p{
    max-width: none;
  }

  .idk_catalog_slider_wrap{
    margin-top: 16px;
  }
}

@media (max-width: 767px){
  .idk_catalog_highlight_content h2{
    font-size: 32px;
  }

  .idk_catalog_highlight_content p{
    font-size: 16px;
  }

  .idk_catalog_highlight_actions{
    gap: 14px;
    margin-top: 24px;
  }

  .idk_catalog_highlight_btn{
    width: 100%;
  }

  .idk_catalog_slider{
    margin-bottom: 24px;
  }

  .idk_catalog_slide{
    padding: 0;
  }

  .idk_catalog_slider .slick-prev{
    left: calc(50% - 37.5px);
  }

  .idk_catalog_slider .slick-next{
    left: calc(50% + 7.5px);
  }
}

.idk_careers_apply_eyebrow{
  display: inline-block;
  margin-bottom: 12px;
  font-family: "Inter", sans-serif;
  font-size: 10px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 1.8px;
  color: #F2A900;
}

.idk_careers_apply_intro{
  margin-bottom: 28px;
}

.idk_careers_apply_intro h2{
  font-family: "Inter", sans-serif;
  font-size: 40px;
  font-weight: 800;
  line-height: 50px;
  letter-spacing: 0;
  color: #0F1A0A;
}

.idk_careers_expectation_list{
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.idk_careers_expectation_card{
  padding: 18px 16px 18px;
  border-radius: 16px;
  background: #FFFFFF;
  box-shadow: 0 12px 32px rgba(15, 26, 10, 0.06);
}

.idk_careers_expectation_head{
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.idk_careers_expectation_head > img{
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
}

.idk_careers_expectation_head span{
  font-family: "Manrope", sans-serif;
  font-size: 10.5px;
  font-weight: 700;
  line-height: 15.8px;
  color: #0AA537;
}

.idk_careers_expectation_head h3{
  font-family: "Inter", sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 30px;
  color: #2A491D;
}

.idk_careers_expectation_card ul{
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.idk_careers_expectation_card li{
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.idk_careers_expectation_card li img{
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
  margin-top: 3px;
}

.idk_careers_expectation_card li span{
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 22.8px;
  color: rgba(15, 26, 10, 0.75);
}

.idk_careers_apply_form_panel{
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 18px;
  background: #FFFFFF;
  box-shadow: 0 18px 40px rgba(15, 26, 10, 0.08);
}

.idk_careers_apply_form_top{
  padding: 38px 22px;
  background: linear-gradient(90deg, #2A491D 0%, #1A3010 70%, #0AA537 130%);
}

.idk_careers_apply_form_top h3{
  margin-bottom: 8px;
  font-family: "Inter", sans-serif;
  font-size: 32px;
  font-weight: 700;
  line-height: 33.6px;
  color: #FFFFFF;
}

.idk_careers_apply_form_top p{
  max-width: 420px;
  font-family: "Inter", sans-serif;
  font-size: 14.5px;
  font-weight: 400;
  line-height: 23.6px;
  color: #FFFFFF;
}

.idk_careers_apply_form{
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  padding: 22px;
}

.idk_careers_status{
  margin: 22px 22px 0;
  padding: 14px 16px;
  border: 1px solid transparent;
  border-radius: 14px;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
  box-shadow: 0 12px 28px rgba(15, 26, 10, 0.05);
}

.idk_careers_status_success{
  color: #1F5F2C;
  background: #EEF8EE;
  border-color: rgba(10, 165, 55, 0.18);
}

.idk_careers_status_error{
  color: #8A2C2C;
  background: #FDEEEE;
  border-color: rgba(185, 61, 61, 0.18);
}

.idk_careers_apply_form > .row{
  flex: 1 1 auto;
}

.idk_careers_apply_label{
  display: inline-block;
  margin-bottom: 8px;
  font-family: "Inter", sans-serif;
  font-size: 10px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 1.2px;
  color: #53604D;
}

.idk_careers_apply_input,
.idk_careers_apply_textarea{
  border: 1px solid #ECE7DB;
  border-radius: 12px;
  background: #F7F3EA;
  box-shadow: none;
  font-family: "Inter", sans-serif;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.4;
  color: #0F1A0A;
}

.idk_careers_apply_input{
  height: 48px;
  padding: 12px 14px;
}

.idk_careers_apply_textarea{
  min-height: 100px;
  padding: 14px;
  resize: none;
}

.idk_careers_apply_input:focus,
.idk_careers_apply_textarea:focus{
  border-color: #D2DDCB;
  box-shadow: none;
  background: #F7F3EA;
}

.idk_careers_upload{
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  border: 1px dashed #D9D4C8;
  border-radius: 12px;
  background: #FCF9F3;
  cursor: pointer;
}

.idk_careers_upload input{
  display: none;
}

.idk_careers_upload_icon img{
  width: 48px;
  height: 48px;
  display: block;
}

.idk_careers_upload_text{
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1 1 auto;
}

.idk_careers_upload_text strong{
  font-family: "Inter", sans-serif;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.3;
  color: #2A491D;
}

.idk_careers_upload_text small{
  font-family: "Inter", sans-serif;
  font-size: 11px;
  font-weight: 400;
  line-height: 1.4;
  color: #8A9484;
}

.idk_careers_upload_btn{
  flex: 0 0 auto;
  padding: 8px 12px;
  border-radius: 999px;
  background: #E6ECD9;
  font-family: "Inter", sans-serif;
  font-size: 11px;
  font-weight: 600;
  line-height: 1.2;
  color: #2A491D;
}

.idk_careers_apply_actions{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 14px;
  flex-wrap: wrap;
}

.idk_careers_apply_check{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

.idk_careers_apply_check input{
  width: 16px;
  height: 16px;
  margin: 0;
  accent-color: #0AA537;
  cursor: pointer;
}

.idk_careers_apply_check span{
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-family: "Inter", sans-serif;
  font-size: 12.5px;
  font-weight: 400;
  line-height: 18.8px;
  color: rgba(15, 26, 10, 0.65);
}

.idk_careers_apply_check a{
  color: #2A491D;
  text-decoration: underline;
}

.idk_careers_apply_btn{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  padding: 0 22px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(90deg, #0AA537 0%, #2A491D 100%);
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.2;
  color: #FFFFFF;
}

@media (max-width: 991px){
  .idk_careers_apply_intro{
    max-width: none;
  }

  .idk_careers_apply_intro h2{
    font-size: 38px;
    line-height: 46px;
  }
}

@media (max-width: 767px){
  .idk_careers_apply_intro h2{
    font-size: 30px;
    line-height: 38px;
  }

  .idk_careers_expectation_head h3{
    font-size: 18px;
  }

  .idk_careers_apply_form_top,
  .idk_careers_apply_form{
    padding: 18px;
  }

  .idk_careers_upload{
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .idk_careers_apply_btn{
    width: 100%;
    justify-content: center;
  }
}

.idk_contact_form_panel{
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  padding: 30px 22px 22px;
  border-radius: 18px;
  background: #FFFFFF;
  box-shadow: 0 18px 40px rgba(15, 26, 10, 0.06);
}

.idk_contact_form_intro{
  margin-bottom: 30px;
}

.idk_contact_form_intro h2{
  margin-bottom: 8px;
  font-family: "Inter", sans-serif;
  font-size: 32px;
  font-weight: 700;
  line-height: 48px;
  color: #0F1A0A;
}

.idk_contact_form_intro p{
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 21px;
  color: rgba(15, 26, 10, 0.6);
}

.idk_contact_form{
  display: flex;
  flex-direction: column;
  height: auto;
}

.idk_contact_status{
  margin-bottom: 22px;
  padding: 14px 16px;
  border: 1px solid transparent;
  border-radius: 14px;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
  box-shadow: 0 12px 28px rgba(15, 26, 10, 0.05);
}

.idk_contact_status_success{
  color: #1F5F2C;
  background: #EEF8EE;
  border-color: rgba(10, 165, 55, 0.18);
}

.idk_contact_status_error{
  color: #8A2C2C;
  background: #FDEEEE;
  border-color: rgba(185, 61, 61, 0.18);
}

.idk_contact_label{
  display: inline-block;
  margin-bottom: 8px;
  font-family: "Inter", sans-serif;
  font-size: 11.5px;
  font-weight: 700;
  line-height: 17.3px;
  letter-spacing: 1.84px;
  color: #2A491D;
}

.idk_contact_input,
.idk_contact_textarea{
  border: 1px solid #EDE8DC;
  border-radius: 12px;
  background: #FAF6ED;
  box-shadow: none;
  font-family: "Inter", sans-serif;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.4;
  color: #0F1A0A;
}

.idk_contact_input{
  height: 48px;
  padding: 12px 14px;
}

.idk_contact_textarea{
  min-height: 150px;
  padding: 14px;
  resize: none;
}

.idk_contact_input:focus,
.idk_contact_textarea:focus{
  border-color: #D8E0CF;
  box-shadow: none;
  background: #FAF6ED;
}

.idk_contact_form_actions{
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 0;
  margin-top: 0;
  padding-top: 0;
}

.idk_contact_policy{
  margin-top: 12px;
  font-family: "Inter", sans-serif;
  font-size: 10px;
  font-weight: 400;
  line-height: 1.4;
  color: #A2A79D;
}

.idk_contact_submit{
  order: 1;
  display: inline-flex;
  align-items: center;
  align-self: flex-end;
  gap: 10px;
  margin-top: 15px;
  min-height: 44px;
  padding: 0 20px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(90deg, #0AA537 0%, #2A491D 100%);
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.2;
  color: #FFFFFF;
}

.idk_contact_info_panel{
  align-content: center;
  height: 100%;
  padding: 60px 70px;
  border-radius: 24px;
  background: linear-gradient(180deg, #214A12 0%, #18370D 100%);
  color: #FFFFFF;
}

.idk_contact_info_panel h3{
  margin-bottom: 30px;
  font-family: "Inter", sans-serif;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.44px;
  line-height: 33px;
  color: #FFFFFF;
}

.idk_contact_info_list{
  margin: 0;
  padding: 0 0 28px;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.idk_contact_info_list li{
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.idk_contact_info_list li img{
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
  margin-top: 2px;
}

.idk_contact_info_list li span{
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 21px;
  color: #FFFFFF;
}

.idk_contact_support{
  padding-top: 26px;
}

.idk_contact_support h4{
  margin-bottom: 30px;
  font-family: "Inter", sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 27px;
  letter-spacing: -0.36px;
  color: #FFFFFF;
}

.idk_contact_support_rows{
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.idk_contact_support_row{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.idk_contact_support_row span,
.idk_contact_support_row strong{
  font-family: "Inter", sans-serif;
  font-size: 13px;
  line-height: 1.4;
}

.idk_contact_support_row span{
  font-weight: 400;
  color: rgba(255, 255, 255, 0.7);
}

.idk_contact_support_row strong{
  font-weight: 600;
  color: #FFFFFF;
}

@media (max-width: 767px){
  .idk_contact_form_panel,
  .idk_contact_info_panel{
    padding: 22px 18px;
  }

  .idk_contact_form{
    height: auto;
  }

  .idk_contact_form_actions{
    align-items: stretch;
    flex-direction: column;
  }

  .idk_contact_submit{
    justify-content: center;
  }

  .idk_contact_support_row{
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }
}

.idk_pricelist_intro{
  margin-bottom: 30px;
}

.idk_pricelist_filter{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 24px;
}

.idk_pricelist_filter_label{
  display: block;
  font-family: "Inter", sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 20px;
  color: #0F1A0A;
}

.idk_pricelist_filter_tabs{
  display: inline-grid;
  grid-template-columns: repeat(2, minmax(220px, 1fr));
  align-items: stretch;
  overflow: hidden;
  border-radius: 18px;
  background: #FFFFFF;
  box-shadow: 0 14px 34px rgba(15, 26, 10, 0.06);
  border: 1px solid rgba(15, 26, 10, 0.08);
}

.idk_pricelist_filter_tab{
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 24px;
  border-right: 1px solid rgba(15, 26, 10, 0.08);
  background: #FFFFFF;
  font-family: "Inter", sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #5D6857;
  text-decoration: none;
  transition: background-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.idk_pricelist_filter_tab:last-child{
  border-right: 0;
}

.idk_pricelist_filter_tab_active{
  background: linear-gradient(180deg, #0AA537 0%, #09892E 100%);
  color: #FFFFFF;
  box-shadow: inset 0 -4px 0 rgba(42, 73, 29, 0.18);
}

.idk_pricelist_filter_tab:hover,
.idk_pricelist_filter_tab:focus{
  color: #0F1A0A;
  text-decoration: none;
}

.idk_pricelist_eyebrow{
  display: inline-block;
  margin-bottom: 12px;
  font-family: "Inter", sans-serif;
  font-size: 11.5px;
  font-weight: 700;
  line-height: 17.3px;
  letter-spacing: 1.8px;
  color: #FFC93C;
}

.idk_pricelist_intro h2{
  font-family: "Inter", sans-serif;
  font-size: 40px;
  font-weight: 800;
  line-height: 50px;
  color: #0F1A0A;
}

.idk_pricelist_featured{
  margin-bottom: 50px;
  padding: 20px 24px;
  border: 1px solid rgba(10, 165, 55, 0.18);
  border-radius: 20px;
  background: radial-gradient(circle at right center, rgba(170, 225, 164, 0.24) 0%, rgba(255, 255, 255, 0) 28%), #FFFFFF;
  box-shadow: 0 18px 40px rgba(21, 58, 20, 0.08);
}

.idk_pricelist_featured_main{
  display: flex;
  align-items: center;
  gap: 18px;
}

.idk_pricelist_featured_icon{
  width: 80px;
  height: 96px;
  flex: 0 0 64px;
  display: block;
}

.idk_pricelist_featured_body span{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
  font-family: "Manrope", sans-serif;
  font-size: 12px;
  font-weight: 700;
  line-height: 18px;
  color: #0AA537;
}

.idk_pricelist_featured_body h3{
  margin-bottom: 8px;
  font-family: "Inter", sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 30.8px;
  letter-spacing: -0.7px;
  color: #2A491D;
}

.idk_pricelist_featured_meta{
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.idk_pricelist_featured_meta span{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  font-family: "Inter", sans-serif;
  font-size: 12.5px;
  font-weight: 400;
  line-height: 18.8px;
  color: rgba(15, 26, 10, 0.6);
}

.idk_pricelist_featured_body span img,
.idk_pricelist_featured_meta span img{
  width: 14px;
  height: 14px;
  flex: 0 0 14px;
  display: block;
}

.idk_pricelist_featured_action{
  display: flex;
  justify-content: flex-end;
}

.idk_pricelist_download_btn{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  padding: 0 20px;
  border-radius: 999px;
  background: linear-gradient(90deg, #0AA537 0%, #2A491D 100%);
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 0;
  color: #FFFFFF;
  text-decoration: none;
}

.idk_pricelist_download_btn img{
  width: 25px;
  height: 25px;
  display: block;
}

.idk_pricelist_archive{
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.idk_pricelist_row.idk_pricelist_row_hidden{
  display: none;
}

.idk_pricelist_row{
  display: grid;
  grid-template-columns: minmax(0, 2.35fr) minmax(120px, 0.72fr) minmax(80px, 0.45fr) auto;
  align-items: center;
  gap: 16px;
  padding: 16px 14px;
  border-radius: 16px;
  background: #FFFFFF;
  box-shadow: 0 12px 30px rgba(15, 26, 10, 0.04);
}

.idk_pricelist_row_file{
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.idk_pricelist_row_file > img{
  width: 40px;
  height: 48px;
  flex: 0 0 24px;
  display: block;
}

.idk_pricelist_row_file h3{
  margin-bottom: 2px;
  font-family: "Manrope", sans-serif;
  font-size: 14.5px;
  font-weight: 700;
  line-height: 21.8px;
  color: #2A491D;
}

.idk_pricelist_row_file p,
.idk_pricelist_row_date,
.idk_pricelist_row_size{
  font-family: "Inter", sans-serif;
  font-size: 11.5px;
  font-weight: 400;
  line-height: 17.3px;
  color: rgba(42, 73, 29, 0.65);
}

.idk_pricelist_row_date,
.idk_pricelist_row_size{
  font-size: 13px;
  line-height: 19.5px;
  color: rgba(15, 26, 10, 0.65);
}

.idk_pricelist_row_date{
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.idk_pricelist_row_date img{
  width: 14px;
  height: 14px;
  flex: 0 0 14px;
  display: block;
}

.idk_pricelist_row_download{
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 0;
  color: #0AA537;
  text-decoration: none;
  white-space: nowrap;
}

.idk_pricelist_row_download img{
  width: 25px;
  height: 25px;
  display: block;
}

.idk_pricelist_more_wrap{
  margin-top: 22px;
  display: flex;
  justify-content: center;
}

.idk_pricelist_more_btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 24px;
  border: 1px solid rgba(10, 165, 55, 0.18);
  border-radius: 999px;
  background: #FFFFFF;
  box-shadow: 0 12px 30px rgba(15, 26, 10, 0.04);
  font-family: "Inter", sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #0AA537;
}

@media (max-width: 991px){
  .idk_pricelist_featured_action{
    justify-content: flex-start;
  }

  .idk_pricelist_row{
    grid-template-columns: 1fr;
    align-items: flex-start;
  }

  .idk_pricelist_row_download{
    justify-content: flex-start;
  }
}

@media (max-width: 767px){
  .idk_pricelist_filter_tabs{
    width: 100%;
    grid-template-columns: 1fr;
  }

  .idk_pricelist_filter_tab{
    width: 100%;
    border-right: 0;
    border-bottom: 1px solid rgba(15, 26, 10, 0.08);
  }

  .idk_pricelist_filter_tab:last-child{
    border-bottom: 0;
  }

  .idk_pricelist_intro h2{
    font-size: 32px;
  }

  .idk_pricelist_featured{
    padding: 18px;
  }

  .idk_pricelist_featured_main{
    align-items: flex-start;
  }

  .idk_pricelist_featured_icon{
    width: 52px;
    height: 52px;
    flex-basis: 52px;
  }
}

.idk_assortment_section{
  padding: 60px 0;
  background: #F2EEE4;
}

.idk_assortment_intro{
  margin-bottom: 26px;
}

.idk_assortment_intro h2{
  margin-bottom: 16px;
  font-family: "Inter", sans-serif;
  font-size: 32px;
  font-weight: 700;
  line-height: 40px;
  color: #0F1A0A;
}

.idk_assortment_intro p{
  max-width: 980px;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: rgba(15, 26, 10, 0.75);
}

.idk_assortment_card{
  height: 100%;
  padding: 18px 18px 20px;
  border-radius: 14px;
  background: #2A491D;
}

.idk_assortment_card_num{
  display: block;
  width: 50px;
  height: 50px;
  margin-bottom: 18px;
}

.idk_assortment_card h3{
  margin-bottom: 10px;
  font-family: "Inter", sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
  color: #FFFFFF;
}

.idk_assortment_card p{
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.75);
}

.idk_assortment_note{
  margin-top: 18px;
}

.idk_assortment_note p{
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: rgba(15, 26, 10, 0.75);
}

@media (max-width: 767px){
  .idk_assortment_section{
    padding: 40px 0;
  }

  .idk_assortment_intro h2{
    font-size: 32px;
  }
}

.idk_team_intro{
  max-width: 760px;
  margin-bottom: 34px;
}

.idk_team_intro h2{
  margin-bottom: 14px;
  font-family: "Inter", sans-serif;
  font-size: 32px;
  font-weight: 700;
  line-height: 40px;
  color: #0F1A0A;
}

.idk_team_intro p{
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: rgba(15, 26, 10, 0.75);
}

.idk_team_group + .idk_team_group{
  margin-top: 50px;
}

.idk_team_group{
  overflow: hidden;
}

.idk_team_group_head{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 30px;
}

.idk_team_group_head h3{
  font-family: "Inter", sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
  color: #0F1A0A;
}

.idk_team_group_nav{
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.idk_team_arrow{
  width: 30px;
  height: 30px;
  padding: 0;
  border: 0;
  background: transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.idk_team_arrow img{
  width: 30px;
  height: 30px;
  display: block;
}

.idk_team_slider{
  width: 100%;
  margin: 0;
}

.idk_team_slider .slick-track{
  margin-left: 0;
  margin-right: 0;
}

.idk_team_slider .slick-list{
  margin: 0 -8px;
  overflow: hidden;
}

.idk_team_slider .slick-slide{
  margin: 0 8px;
}

.idk_team_card{
  overflow: hidden;
  border-radius: 16px;
  background: #FFFFFF;
  height: 479px;
}

.idk_team_card_image{
  display: block;
  width: 100%;
  height: 479px;
  object-fit: cover;
}

.idk_team_card_body{
  position: relative;
  min-height: 115px;
  margin-top: -115px;
  padding: 24px 48px 24px 24px;
  background: rgba(255, 255, 255, 0.75);
}

.idk_team_card_body h4{
  margin-bottom: 14px;
  font-family: "Inter", sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 24px;
  letter-spacing: 0;
  color: #0AA537;
}

.idk_team_card_body p{
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  letter-spacing: 0;
  color: #0F1A0A;
}

.idk_team_card_arrow{
  position: absolute;
  right: 24px;
  top: 34px;
  width: 11px;
  height: 11px;
}

@media (max-width: 767px){
  .idk_team_intro h2{
    font-size: 32px;
  }

  .idk_team_group_head{
    align-items: flex-start;
    flex-direction: column;
  }

  .idk_team_group_nav{
    align-self: flex-end;
  }
}
