:root {
  /* colors */
  --primary: #2bae62;
  --dark_blue_text: rgba(36, 39, 66, 1);
  --gray_text: rgba(136, 136, 136, 1);
  --gray_bg: rgba(249, 249, 249, 1);
  --white: #fff;
  --white_80: rgba(255, 255, 255, 0.8);
  --black: #000;
  --black_content: #0b0b0b;
  --black_hover: #1a1a1a;
}

html,
body {
  scroll-behavior: smooth;
  margin: 0;
  padding: 0;
  background-color: var(--black);
  font-family: "Poppins", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  color: var(--black);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  word-break: break-word;
}

p {
  font-size: 18px;
  font-weight: 400;
  line-height: 21.78px;
}

p:last-of-type {
  margin-bottom: 0;
}
a {
  text-decoration: none;
}

.bg_primary {
  background-color: var(--primary);
}
.bg_white {
  background-color: #f9f9f9;
}

/* HOVER */
@media (hover: hover) {
}

/* MEDIA */
@media only screen and (max-width: 767px) {
}

/* ---------------------------------------------------------------- */
/* WRAPPERS & SECTIONS */
#sh_header {
  width: 100%;
  display: flex;
  justify-content: center;
  background-color: var(--white);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 999;
  transition: all 0.3s ease;
}
#sh_header.sh_head_sticky {
  position: fixed;
  top: 0;
  left: 0;
  box-shadow: 0 1px 6px 0 rgba(32, 33, 36, 0.28);
}
.sh_section_top_banner {
  padding: 140px 0;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100svh;
  position: relative;
}
.sh_section_top_banner.bg_white {
  min-height: auto;
  padding: 140px 0 100px;
}
.sh_section {
  padding: 120px 0;
  width: 100%;
  display: flex;
  justify-content: center;
}
.sh_section_full {
  padding: 80px 0 60px;
}
.sh_section_footer {
  padding: 80px 0 0;
  width: 100%;
  display: flex;
  justify-content: center;
}
.sh_bg_gray {
  background-color: var(--gray_bg);
}
.sh_bg_black {
  background-color: var(--black);
}
.sh_bg_white {
  background-color: var(--white);
}
.sh_transparent_bg {
  background-color: transparent !important;
}
.sh_container {
  max-width: 1280px;
  width: 100%;
  padding: 0 20px;
}
.sh_container_full {
  width: 100%;
}

/* HOVER */
@media (hover: hover) {
}

/* MEDIA */
@media only screen and (max-width: 1140px) {
  .sh_section_top_banner {
    padding: 120px 0 80px;
  }
  .sh_section {
    padding: 80px 0;
  }
  .sh_section_footer {
    padding: 80px 0 0;
  }
}

@media only screen and (max-width: 940px) {
  .sh_section_top_banner {
    padding: 120px 0 60px;
  }
  .sh_section {
    padding: 60px 0;
  }
  .sh_section_footer {
    padding: 60px 0 0;
  }
}

@media only screen and (max-width: 600px) {
  .sh_section_top_banner {
    padding: 120px 0 40px;
  }
  .sh_section {
    padding: 40px 0;
  }
  .sh_section_footer {
    padding: 40px 0 0;
  }
  .sh_container {
    padding: 0 16px;
  }
}
/* WRAPPERS & SECTIONS END */
/* ---------------------------------------------------------------- */

/* ---------------------------------------------------------------- */
/* NAV */
.sh_header_content {
  width: 100%;
  height: 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}
.sh_header_logo a {
  display: block;
}
.sh_header_logo .sh_logo {
  height: 48px;
  display: block;
}
#sh_navigation {
  position: relative;
}
#sh_navigation ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 48px;
}
#sh_navigation ul li {
  position: relative;
}
#sh_navigation ul li.sh_nav_last {
  width: 100%;
  border-top: 1px solid #ebf0eb;
  padding-top: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#sh_navigation ul li.sh_nav_last img {
  height: 12px;
}
#sh_navigation ul li p a {
  display: flex;
  display: initial;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: var(--dark_blue_text);
  border-bottom: 1px solid transparent;
  transition: all 0.3s ease;
}
#sh_navigation ul li a.sh_button {
  background-color: var(--black);
  padding: 17px 40px;
  display: inline-block;
  border-radius: 10px;
  color: var(--white);
  border-bottom: none;
  font-size: 20px;
  font-weight: 400;
  line-height: 100%;
  transition: all 0.3s ease;
}
#sh_navigation .sh_nav_dropdown {
  display: flex;
  align-items: center;
  gap: 7px;
  cursor: pointer;
}
.sh_nav_dropdown p {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: var(--dark_blue_text);
}
.sh_nav_dd_arrow {
  transition: transform 0.3s ease;
}
.sh_nav_arrow_rotate {
  transform: rotate(180deg);
}
#sh_navigation .sh_nav_dropdown_items {
  position: absolute;
  left: -20px;
  min-width: 220px;
  z-index: 2;
  border-radius: 12px;
  background-color: var(--white);
  height: 0;
  overflow: hidden;
  transition: height 0.3s ease;
}
#sh_navigation .sh_nav_dropdown_items ul {
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 20px 24px;
}

#sh_hamb_btn,
#sh_hamb_btn_close {
  display: none;
  cursor: pointer;
}
#sh_hamb_btn img,
#sh_hamb_btn_close img {
  width: 34px;
  display: block;
}

/* HOVER */
@media (hover: hover) {
  #sh_navigation ul li p a:hover {
    border-bottom: 1px solid var(--black);
  }
  #sh_navigation ul li a.sh_button p:hover {
    border-bottom: none;
  }
  #sh_navigation ul li a.sh_button:hover {
    background-color: var(--black_hover);
  }
}

/* MEDIA */
@media only screen and (max-width: 1140px) {
  #sh_navigation {
    width: 300px;
    height: 100%;
    position: fixed;
    z-index: 99999;
    top: 0;
    right: -310px;
    background: var(--white);
    box-shadow: 0 1px 6px 0 rgba(32, 33, 36, 0.28);
    transition: all 0.3s ease;
  }
  #sh_navigation.sh_open_nav {
    right: 0;
  }
  #sh_hamb_btn,
  #sh_hamb_btn_close {
    display: block;
  }
  #sh_hamb_btn_close {
    position: absolute;
    right: 20px;
    top: 18px;
  }
  #sh_navigation #sh_list_wrapper {
    flex-direction: column;
    padding: 80px 20px 40px;
    align-items: flex-start;
    height: 100%;
    overflow: auto;
  }
  #sh_navigation .sh_nav_dropdown p,
  #sh_navigation ul li p a {
    font-size: 24px;
  }
  #sh_list_wrapper .sh_nav_btn_wrap {
    width: 100%;
  }
  #sh_navigation ul li a.sh_button {
    width: 100%;
    text-align: center;
  }
  #sh_navigation .sh_nav_dropdown_items {
    position: static;
  }
  #sh_navigation .sh_nav_dropdown_items ul {
    gap: 24px;
    padding: 20px 0 0 20px;
  }
  .sh_nav_dd_arrow {
    width: 18px;
  }
}
/* NAV END */
/* ---------------------------------------------------------------- */

/* ---------------------------------------------------------------- */
/* HERO TOP BANNER */
.sh_hero_banner {
  position: relative;
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.sh_hero_banner h1 {
  max-width: 1047px;
  font-weight: 400;
  font-size: 70px;
  line-height: 150%;
  letter-spacing: 0%;
  text-align: center;
  margin-bottom: 16px;
  color: var(--white);
}
.sh_hero_banner h2 {
  max-width: 859px;
  font-weight: 400;
  font-size: 40px;
  line-height: 150%;
  letter-spacing: 0%;
  text-align: center;
  margin-bottom: 30px;
  color: var(--white);
}
.sh_hero_banner p {
  max-width: 1030px;
  font-weight: 400;
  font-size: 24px;
  line-height: 150%;
  letter-spacing: 0%;
  text-align: center;
  color: #fff;
  margin-bottom: 40px;
}
.sh_hero_banner.sh_real_white h1 {
  color: var(--black);
}
.sh_hero_banner.sh_real_white h2 {
  color: var(--black);
}
.sh_hero_banner.sh_real_white p {
  color: rgba(0, 0, 0, 0.8);
}
.sh_hero_contact {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}
.sh_hero_contact_btn .sh_button {
  display: flex;
  align-items: center;
  background-color: var(--black);
  color: var(--white);
  padding: 17px 40px;
  border-radius: 10px;
  border-bottom: none;
  gap: 10px;
  font-weight: 400;
  font-size: 20px;
  line-height: 100%;
  letter-spacing: 0%;
  transition: all 0.3s ease;
}
.sh_hero_contact_btn .sh_button.sh_btn_tirk {
  background-color: transparent;
  padding: 0;
  color: var(--black);
  font-weight: 400;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0%;
}
.sh_hero_contact_btn .sh_button.sh_btn_tirk img {
  background-color: var(--black);
  padding: 16px;
  border-radius: 50%;
}
.sh_hero_contact_tel {
  display: flex;
  align-items: center;
  gap: 12px;
}
.sh_hero_contact_icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
}
.sh_hero_contact_tel a {
  font-size: 16px;
  font-weight: 500;
  line-height: 19.36px;
  color: var(--black);
  transition: all 0.3s ease;
}
.sh_hero_logos_wrap {
  position: absolute;
  bottom: 40px;
  right: 0px;
  left: 0;
  display: flex;
  justify-content: flex-end;
  max-width: 1240px;
  width: 100%;
  margin: auto;
}
.sh_hero_logos {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 111px;
  margin-right: 20px;
}
.sh_hero_logos img {
  width: 100%;
  height: auto;
  display: block;
}

/* HOVER */
@media (hover: hover) {
  .sh_hero_contact_btn .sh_button:hover {
    background-color: var(--white);
    color: var(--black);
  }
  .sh_hero_banner.sh_real_white .sh_button:hover {
    background-color: var(--black_hover);
    color: var(--white);
  }
  .sh_hero_contact_tel a:hover {
    color: var(--black);
  }
  .sh_hero_contact_btn .sh_button.sh_btn_tirk:hover {
    background-color: transparent;
  }
}

/* MEDIA */
@media only screen and (max-width: 1140px) {
}

@media only screen and (max-width: 1024px) {
  .sh_hero_logos_wrap {
    position: relative;
    bottom: 0;
    margin-top: 40px;
  }
}

@media only screen and (max-width: 940px) {
}

@media only screen and (max-width: 600px) {
  .sh_hero_banner h1 {
    font-size: 42px;
    line-height: 57.75px;
  }
  .sh_hero_banner h2 {
    font-size: 30px;
    line-height: 57.75px;
  }
  .sh_hero_banner p {
    font-size: 20px;
    line-height: 25.25px;
  }
  .sh_hero_contact {
    flex-direction: column;
  }
  .sh_hero_logos_wrap {
    justify-content: center;
    margin-top: 80px;
  }
  .sh_hero_logos {
    margin-right: 0;
  }
}

/* HERO TOP BANNER END */
/* ---------------------------------------------------------------- */

/* ---------------------------------------------------------------- */
/* FULL WIDTH IMG */
.sh_section.sh_img_header {
  padding: 0 0 100px;
}
.sh_full_img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  top: 0;
  left: 0;
}
.sh_full_img img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  top: 0;
  left: 0;
}
.sh_full_img_layer {
  background-color: rgb(0 0 0 / 60%);
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

/* MEDIA */
@media only screen and (max-width: 600px) {
  .sh_full_img {
    aspect-ratio: 4/3;
  }
}
/* FULL WIDTH IMG END*/
/* ---------------------------------------------------------------- */

/* ---------------------------------------------------------------- */
/* LOGO SECTION 50/50 */
.sh_50_w_logo {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 63px;
}
.sh_50_logo_text {
  max-width: 525px;
}
.sh_50_logo_text h2 {
  margin-bottom: 16px;
  font-weight: 500;
  font-size: 48px;
  line-height: 150%;
  letter-spacing: 0%;
}
.sh_50_logo_text p {
  color: #000000cc;
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  letter-spacing: 0%;
}
.sh_50_logo_logo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 67px;
  align-items: center;
}
.sh_50_logo_logo img {
  max-width: 100%;
}

/* MEDIA */
@media only screen and (max-width: 940px) {
  .sh_50_w_logo {
    flex-direction: column;
    gap: 40px;
  }
}
@media only screen and (max-width: 600px) {
  .sh_50_logo_text h2 {
    font-size: 34px;
    line-height: 41.56px;
  }
}
/* LOGO SECTION 50/50 END*/
/* ---------------------------------------------------------------- */

/* ---------------------------------------------------------------- */
/* SECTION 50/50 WHITE - IMG */
.sh_50_w_img_white {
  position: relative;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.sh_50_cont_white {
  position: relative;
  z-index: 1;
  padding: 40px;
  background-color: var(--black_content);
  border-radius: 20px;
  border: 1px solid #282828;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
.sh_50_cont_white.sh_real_white {
  background-color: var(--white);
  border: 1px solid #ebebeb;
}
.sh_50_cont_white h2 {
  font-weight: 500;
  font-size: 48px;
  line-height: 150%;
  letter-spacing: 0%;
  margin-bottom: 16px;
  color: var(--white);
}
.sh_50_cont_white.sh_real_white h2 {
  color: var(--black);
}
.sh_50_cont_white.sh_tjns_ttl h2 {
  font-weight: 500;
  font-size: 42px;
  line-height: 150%;
  letter-spacing: 0%;
}
.sh_50_cont_white p {
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  letter-spacing: 0%;
  color: var(--white_80);
  margin-bottom: 40px;
}
.sh_50_cont_white.sh_real_white p {
  color: var(--black);
}
.sh_50_cont_white a.sh_button {
  background-color: #0b0b0b;
  padding: 14px 59px;
  display: inline-block;
  border-radius: 10px;
  font-weight: 400;
  font-size: 20px;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
  color: var(--white);
  border: 1px solid var(--white);
  transition: all 0.3s ease;
}
.sh_50_cont_white.sh_real_white a.sh_button {
  background-color: var(--white);
  border: 1px solid var(--black);
  color: var(--black);
}
.sh_50_img_w {
  border-radius: 20px;
  object-fit: cover;
  object-position: center;
  width: 100%;
  height: 100%;
  display: block;
}

/* HOVER */
@media (hover: hover) {
  .sh_50_cont_white a.sh_button:hover {
    background-color: var(--white);
    border-color: var(--white);
    color: var(--black);
  }
  .sh_50_cont_white.sh_real_white a.sh_button:hover {
    background-color: var(--black);
    color: var(--white);
  }
}

/* MEDIA */
@media only screen and (max-width: 1140px) {
  .sh_50_cont_white {
    padding: 40px;
  }
}
@media only screen and (max-width: 940px) {
  .sh_50_w_img,
  .sh_50_w_img_white {
    flex-direction: column;
    min-height: auto;
  }
  .sh_50_w_img_white {
    display: flex;
  }
  .sh_50_w_img.sh_col_rev {
    flex-direction: column-reverse;
  }
  .sh_50_cont_white {
    width: 100%;
  }
  .sh_50_cont_white.sh_tjns_ttl h2 {
    font-size: 34px;
    line-height: 41.56px;
    margin-bottom: 20px;
  }
  .sh_50_cont_white h2 {
    max-width: 768px;
  }
  .sh_50_cont_white p {
    margin-bottom: 24px;
  }
  .sh_50_img {
    position: static;
    width: 100%;
    aspect-ratio: 4 / 3;
  }
}
@media only screen and (max-width: 600px) {
  .sh_50_cont_white {
    padding: 34px 20px;
  }
  .sh_50_cont_white h2 {
    font-size: 34px;
    line-height: 41.56px;
    margin-bottom: 20px;
  }
}
@media only screen and (max-width: 320px) {
  .sh_50_cont_white {
    padding: 34px 16px;
  }
}
/* SECTION 50/50 WHITE - IMG END*/
/* ---------------------------------------------------------------- */

/* ---------------------------------------------------------------- */
/* LOGO BARS SLIDER */
.sh_logo_bars_slider_content {
  width: 100%;
}
.sh_logo_bars_slider_content h2 {
  color: var(--white);
  font-weight: 500;
  font-size: 48px;
  line-height: 150%;
  letter-spacing: 0%;
  text-align: center;
  margin-bottom: 12px;
  padding: 0 20px;
}
.sh_logo_bars_slider_content p {
  color: #ffffffe5;
  margin-bottom: 50px;
  font-weight: 400;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
  padding: 0 20px;
}
@keyframes slide {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}

.sh_logos {
  overflow: hidden;
  /* background: white; */
  white-space: nowrap;
  position: relative;
}

.sh_logos:before,
.sh_logos:after {
  position: absolute;
  top: 0;
  width: 250px;
  height: 100%;
  content: "";
  z-index: 2;
}

.sh_logos:before {
  left: 0;
  background: linear-gradient(to left, rgba(255, 255, 255, 0), var(--black));
}

.sh_logos:after {
  right: 0;
  background: linear-gradient(to right, rgba(255, 255, 255, 0), var(--black));
}

/* .sh_logos:hover .sh_logos_slide {
  animation-play-state: paused;
} */

.sh_logos_slide {
  display: inline-block;
  animation: 35s slide infinite linear;
}

.sh_logos_slide img {
  /* height: 96px; */
  height: 48px;
  margin: 0 20px;
}

/* MEIDA */
@media only screen and (max-width: 768px) {
  .sh_logos:before,
  .sh_logos:after {
    width: 10%;
  }
}

@media only screen and (max-width: 600px) {
  .sh_logo_bars_slider_content h2 {
    font-size: 34px;
    line-height: 41.56px;
    margin-bottom: 20px;
  }
}
/* LOGO BARS SLIDER END */
/* ---------------------------------------------------------------- */

/* ---------------------------------------------------------------- */
/* 50/50 W IMG SECTION */
.sh_50_w_img {
  position: relative;
  width: 100%;
  background-color: var(--black);
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  justify-content: flex-start;
  min-height: 610px;
  align-items: center;
}
.sh_50_cont {
  position: relative;
  z-index: 1;
  width: 50%;
  padding: 108px 60px;
}
.sh_50_cont h2 {
  font-weight: 500;
  font-size: 48px;
  line-height: 150%;
  letter-spacing: 0%;
  color: var(--white);
  margin-bottom: 16px;
}
.sh_50_cont p {
  color: #ffffffcc;
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  letter-spacing: 0%;
  margin-bottom: 40px;
}

.sh_50_cont a.sh_button {
  background-color: var(--white);
  color: var(--black);
  padding: 15px 60px;
  display: inline-block;
  border-radius: 10px;
  font-weight: 400;
  font-size: 20px;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
  transition: all 0.3s ease;
}
.sh_50_img {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  border-radius: 20px;
  object-fit: cover;
  object-position: center;
}

/* HOVER */
@media (hover: hover) {
  .sh_50_cont a.sh_button:hover {
    background-color: var(--black_hover);
    color: var(--white);
  }
}

/* MEDIA */
@media only screen and (max-width: 1140px) {
  .sh_50_cont {
    padding: 40px;
  }
}
@media only screen and (max-width: 940px) {
  .sh_50_w_img {
    flex-direction: column;
    min-height: auto;
  }
  .sh_50_w_img.sh_col_rev {
    flex-direction: column-reverse;
  }
  .sh_50_cont {
    width: 100%;
  }
  .sh_50_cont h2 {
    max-width: 768px;
  }
  .sh_50_cont p {
    margin-bottom: 24px;
  }
  .sh_50_img {
    position: static;
    width: 100%;
    aspect-ratio: 4 / 3;
  }
}
@media only screen and (max-width: 600px) {
  .sh_50_cont {
    padding: 34px 20px;
  }
  .sh_50_cont h2 {
    font-size: 34px;
    line-height: 41.56px;
    margin-bottom: 20px;
  }
}
@media only screen and (max-width: 320px) {
  .sh_50_cont {
    padding: 34px 16px;
  }
}
/* 50/50 W IMG SECTION  END */
/* ---------------------------------------------------------------- */

/* ---------------------------------------------------------------- */
/* 3 FULL GRID CARDS SECTION */
.sh_3_full_cards_wrap {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.sh_3_full_cards_txt {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  margin-bottom: 60px;
}
.sh_3_full_cards_txt h2 {
  font-weight: 500;
  font-size: 48px;
  line-height: 150%;
  letter-spacing: 0%;
  text-align: center;
  margin-bottom: 16px;
}
.sh_3_full_cards_txt p {
  max-width: 574px;
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  letter-spacing: 0%;
  text-align: center;
  color: #000000cc;
}
.sh_3_full_cards {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 1030px;
  width: 100%;
  margin: auto;
}
.sh_3_full_card {
  overflow: hidden;
  width: 100%;
  aspect-ratio: 6 / 7;
  border-radius: 20px;
  background-color: var(--black);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
}
.sh_3_full_card:nth-child(4) {
  align-items: center;
  justify-content: center;
}
.sh_3_full_card_img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  top: 0;
  left: 0;
}
.sh_3_full_card_cont {
  padding: 22px 40px 40px;
  position: relative;
  display: flex;
  gap: 60px;
  justify-content: space-between;
  align-items: center;
}
.sh_3_full_card:nth-child(4) .sh_3_full_card_cont {
  gap: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.sh_3_full_card_spacer {
  width: 100%;
  height: 44px;
  background-color: var(--white);
  border-radius: 22px;
  top: -22px;
  left: 0;
  z-index: 1;
  position: absolute;
}
.sh_3_full_card_txt {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.sh_3_full_card_txt h3 {
  color: var(--white);
  font-weight: 500;
  font-size: 28px;
  line-height: 150%;
  letter-spacing: 0%;
  text-align: left;
}
.sh_3_full_card:nth-child(4) h3 {
  color: var(--white);
  margin-bottom: 20px;
  text-align: center;
  max-width: 402px;
}
.sh_3_full_card_txt p {
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  letter-spacing: 0%;
  text-align: center;
  color: #000000e5;
}
.sh_3_full_card_cont .sh_grid_col_cont_link a {
  display: flex;
  border-radius: 50%;
}
.sh_3_full_card:nth-child(4) .sh_grid_col_cont_link a {
  border: 1px solid var(--white);
  background-color: transparent;
  font-weight: 400;
  font-size: 16.56px;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
  padding: 12px 48px;
  color: var(--white);
  border-radius: 8px;
  transition: all 0.3s ease;
}

/* HOVER */
@media (hover: hover) {
  .sh_3_full_card_cont .sh_grid_col_cont_link a:hover {
    color: var(--white);
    background-color: var(--black);
  }
  .sh_3_full_card:nth-child(4) .sh_grid_col_cont_link a:hover {
    border: 1px solid var(--white);
    color: var(--black);
    background-color: var(--white);
  }
}

/* MEDIA */
@media only screen and (max-width: 940px) {
  .sh_3_full_cards {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (max-width: 600px) {
  .sh_3_full_card_cont {
    padding: 20px;
  }
  .sh_3_full_cards_txt h2 {
    font-size: 34px;
    line-height: 41.56px;
  }
  .sh_3_full_cards_txt {
    margin-bottom: 40px;
  }
  .sh_3_full_cards {
    grid-template-columns: 1fr;
  }
}
/* 3 FULL GRID CARDS SECTION END */
/* ---------------------------------------------------------------- */

/* ---------------------------------------------------------------- */
/* 2 FULL GRID CARDS SECTION */
.sh_2_full_cards_wrap {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.sh_2_full_cards_txt {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-bottom: 60px;
}
.sh_2_full_cards_txt h2 {
  max-width: 1006px;
  font-size: 36px;
  font-weight: 600;
  line-height: 43.56px;
  text-align: center;
}
.sh_2_full_cards_txt h2 span {
  color: var(--gray_text);
}
.sh_2_full_cards {
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 24px;
}
.sh_2_full_card {
  border-radius: 8px;
  overflow: hidden;
  width: 100%;
  background-color: var(--gray_bg);
  max-width: 400px;
  width: 100%;
}
.sh_2_full_card_img {
  position: relative;
  width: 100%;
  height: 280px;
}
.sh_2_full_card_img img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.sh_2_full_card_cont {
  padding: 44px 24px 30px;
  position: relative;
}
.sh_2_full_card_bedge {
  position: absolute;
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  top: -28px;
  left: 24px;
}
.sh_2_full_card_bedge.sh_b_orange {
  border: 8px solid rgba(233, 168, 102, 1);
  background-color: rgba(200, 129, 58, 1);
}
.sh_2_full_card_bedge.sh_b_blue {
  border: 5px solid rgba(131, 153, 199, 1);
  background-color: rgba(84, 96, 122, 1);
}
.sh_2_full_card_bedge.sh_b_green {
  border: 5px solid rgba(131, 199, 143, 1);
  background-color: rgba(84, 122, 107, 1);
}
/* .sh_2_full_card_bedge img {
  width: 37px;
} */
.sh_2_full_card_txt h3 {
  font-size: 32px;
  font-weight: 500;
  line-height: 38.72px;
  margin-bottom: 4px;
}
.sh_2_full_card_txt p {
  font-size: 16px;
  font-weight: 400;
  line-height: 19.36px;
  color: rgba(0, 0, 0, 0.7);
  margin-bottom: 32px;
}
.sh_2_full_card_cont .sh_grid_col_cont_link {
  gap: 14px;
}
.sh_2_full_card_cont .sh_grid_col_cont_link a {
  color: var(--black);
  font-size: 18px;
  font-weight: 500;
  line-height: 21.78px;
}
/* .sh_2_full_card_cont .sh_grid_col_cont_link img {
  height: 21px;
} */

/* MEDIA */
@media only screen and (max-width: 940px) {
}
@media only screen and (max-width: 600px) {
  .sh_2_full_cards_txt h2 {
    font-size: 34px;
    line-height: 41.56px;
  }
  .sh_2_full_cards_txt {
    margin-bottom: 40px;
  }
  .sh_2_full_cards {
    flex-direction: column;
  }
  .sh_2_full_card {
    max-width: 100%;
  }
}
/* 2 FULL GRID CARDS SECTION */
/* ---------------------------------------------------------------- */

/* ---------------------------------------------------------------- */
/* 50/50 W IMG SECTION LEFT */
.sh_50_w_img_l {
  position: relative;
  width: 100%;
  background-color: var(--white);
  border-radius: 48px;
  overflow: hidden;
  display: flex;
  justify-content: flex-end;
  min-height: 610px;
  align-items: center;
}
.sh_50_w_img_l.sh_bg_gray {
  background-color: var(--gray_bg);
}
.sh_50_img_l {
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  border-radius: 48px;
  object-fit: cover;
  object-position: center;
}
.sh_50_cont_l {
  position: relative;
  z-index: 1;
  width: 50%;
  padding: 100px 48px;
}
.sh_50_cont_l h2 {
  font-size: 28px;
  font-weight: 500;
  line-height: 33.88px;
  color: var(--black);
  margin-bottom: 48px;
}
.sh_50_cont_l h2 span {
  color: var(--gray_text);
}
.sh_50_cont_l a.sh_button {
  background-color: var(--black);
  padding: 16px 60px;
  display: inline-block;
  border-radius: 30px;
  font-size: 20px;
  font-weight: 600;
  line-height: 27px;
  color: var(--white);
}

/* MEDIA */
@media only screen and (max-width: 1140px) {
  .sh_50_cont_l {
    padding: 40px;
  }
}

@media only screen and (max-width: 940px) {
  .sh_50_w_img_l {
    flex-direction: column;
    min-height: auto;
  }
  .sh_50_w_img_l.sh_col_rev {
    flex-direction: column-reverse;
  }
  .sh_50_cont_l {
    width: 100%;
  }
  .sh_50_cont_l h2,
  .sh_50_cont_l p {
    max-width: 768px;
  }
  .sh_50_cont_l p {
    margin-bottom: 24px;
  }
  .sh_50_img_l {
    position: static;
    width: 100%;
    aspect-ratio: 4 / 3;
  }
}

@media only screen and (max-width: 600px) {
  .sh_50_cont_l {
    padding: 34px 20px;
  }
  .sh_50_cont_l h2 {
    font-size: 24px;
    line-height: 29.88px;
    margin-bottom: 20px;
  }
}

@media only screen and (max-width: 320px) {
  .sh_50_cont_l {
    padding: 34px 16px;
  }
}
/* 50/50 W IMG SECTION LEFT END */
/* ---------------------------------------------------------------- */

/* ---------------------------------------------------------------- */
/* STICKY LEFT SCROLL RIGHT */
.sh_sticky_scroll_content {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.sh_sticky_l {
  position: sticky;
  top: 100px;
  width: 50%;
  padding-right: 46px;
}
.sh_sticky_l h2 {
  font-weight: 500;
  font-size: 48px;
  line-height: 100%;
  letter-spacing: 0%;
  margin-bottom: 16px;
  color: var(--black);
}
.sh_sticy_l_title {
  position: relative;
}
.sh_sticy_l_title h3 {
  font-weight: 500;
  font-size: 24px;
  line-height: 100%;
  letter-spacing: 0%;
  margin-bottom: 12px;
  color: var(--black);
  padding-bottom: 12px;
  position: relative;
}
.sh_sticky_l .sh_sticy_l_track {
  position: absolute;
  max-width: 471px;
  width: 100%;
  height: 2px;
  background-color: #969696;
  bottom: 0;
  left: 0;
}
.sh_sticky_l .sh_sticy_l_track .sh_sticy_l_track_line {
  position: absolute;
  height: 2px;
  background-color: var(--black);
  width: 0%;
  opacity: 0; /* Start invisible */
  transition: width 0.3s ease-out, opacity 0.3s ease-out; /* Add opacity transition */
}
.sh_sticky_l p {
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  letter-spacing: 0%;
  color: #000000cc;
  max-width: 505px;
}
.sh_scroll_r {
  width: 50%;
}
.sh_scroll_item {
  background-color: var(--white);
  border: 1px solid #ebebeb;
  padding: 40px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 20px;
}
.sh_scroll_item:last-of-type {
  margin-bottom: 0;
}
.sh_scroll_item .sh_scroll_itesh_top .sh_scroll_itesh_icon {
  margin-bottom: 16px;
}
.sh_scroll_item .sh_scroll_itesh_top .sh_scroll_itesh_icon img {
  width: 50px;
}
.sh_scroll_item .sh_scroll_itesh_top h3 {
  font-weight: 400;
  font-size: 32px;
  line-height: 150%;
  letter-spacing: 0%;
  margin-bottom: 16px;
}
.sh_scroll_item .sh_scroll_itesh_top p {
  font-weight: 400;
  font-size: 18px;
  line-height: 100%;
  letter-spacing: 0%;
  margin-bottom: 16px;
  color: #000000cc;
}
.sh_scroll_item .sh_scroll_itesh_top ul {
  padding-left: 30px;
}
.sh_scroll_item .sh_scroll_itesh_top ul li {
  font-weight: 400;
  font-size: 18px;
  line-height: 150%;
  letter-spacing: 0%;
  color: #000000cc;
}

/* MEDIA */
@media only screen and (max-width: 1140px) {
  .sh_scroll_item {
    padding: 20px 20px 40px;
  }
}

@media only screen and (max-width: 940px) {
  .sh_sticky_scroll_content {
    flex-direction: column;
    gap: 40px;
  }
  .sh_sticky_l {
    position: static;
    padding-right: 0;
    width: 100%;
    max-width: 768px;
  }
  .sh_sticy_l_title {
    display: none;
  }
  .sh_scroll_r {
    width: 100%;
  }
  .sh_scroll_itesh_top {
    max-width: 768px;
  }
}

@media only screen and (max-width: 600px) {
  .sh_sticky_l {
    text-align: center;
  }
}
/* STICKY LEFT SCROLL RIGHT END */
/* ---------------------------------------------------------------- */

/* ---------------------------------------------------------------- */
/* 50/50 TEXTS SECTION */
.sh_50_50_texts_content {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.sh_50_50_texts_title {
  display: flex;
  justify-content: center;
  margin-bottom: 60px;
}
.sh_50_50_texts_title h2 {
  font-size: 36px;
  font-weight: 500;
  line-height: 43.56px;
  text-align: center;
  max-width: 962px;
}
.sh_50_50_texts_title h2 span {
  color: var(--gray_text);
}
.sh_50_50_texts {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(2, 1fr);
}
.sh_50_50_text {
  border-radius: 16px;
  border: 1px solid var(--black);
  background-color: var(--gray_bg);
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 48px;
}
.sh_50_50_text h3 {
  font-size: 32px;
  font-weight: 500;
  line-height: 38.72px;
  margin-bottom: 16px;
}
.sh_50_50_text p {
  color: var(--gray_text);
  font-size: 18px;
  font-weight: 400;
  line-height: 21.78px;
}
.sh_50_50_text .sh_grid_col_cont_link {
  margin-top: 0;
}

/* MEDIA */
@media only screen and (max-width: 600px) {
  .sh_50_50_texts_title {
    margin-bottom: 40px;
  }
  .sh_50_50_texts_title h2 {
    font-size: 34px;
    line-height: 41.56px;
  }
  .sh_50_50_texts {
    grid-template-columns: 1fr;
  }
}
/* 50/50 TEXTS SECTION */
/* ---------------------------------------------------------------- */

/* ---------------------------------------------------------------- */
/* GRID GALERY SECTION */
.sh_grid_gal {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 20px;
}
.sh_grid_gal_item {
  position: relative;
  border-radius: 48px;
  overflow: hidden;
}
.sh_grid_gal_item:nth-child(1) {
  grid-area: 1 / 1 / 3 / 2;
}
.sh_grid_gal_item:nth-child(2) {
  grid-area: 1 / 2 / 2 / 3;
  aspect-ratio: 16/10;
}
.sh_grid_gal_item:nth-child(3) {
  grid-area: 2 / 2 / 3 / 3;
  aspect-ratio: 16/10;
}
.sh_grid_gal_item img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
  object-position: center;
}

/* MEDIA */
@media only screen and (max-width: 600px) {
  .sh_grid_gal {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(3, fr);
  }
  .sh_grid_gal_item:nth-child(1) {
    grid-area: 1 / 1;
    aspect-ratio: 4/3;
  }
  .sh_grid_gal_item:nth-child(2) {
    grid-area: 2 / 1;
    aspect-ratio: 4/3;
  }
  .sh_grid_gal_item:nth-child(3) {
    grid-area: 3 / 1;
    aspect-ratio: 4/3;
  }
}
/* GRID GALERY SECTION */
/* ---------------------------------------------------------------- */

/* ---------------------------------------------------------------- */
/* FAQ */
.sh_faq_content {
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
.sh_faq_text h2 {
  font-weight: 500;
  font-size: 48px;
  line-height: 150%;
  letter-spacing: 0%;
}
.sh_faq_text p {
  margin-top: 16px;
  color: var(--gray_text);
  font-size: 18px;
  font-weight: 500;
  line-height: 21.78px;
}
.sh_faq_cont {
  max-width: 715px;
  width: 100%;
  border-radius: 36px;
}
.sh_faq_accordion {
  width: 100%;
  margin-bottom: 8px;
  border-radius: 10px;
  background-color: var(--white);
  overflow: hidden;
  border: 1px solid #ebebeb;
  padding: 20px;
  transition: all 0.3s ease;
}
.sh_faq_accordion.sh_active {
  border: 1px solid var(--black);
}
.sh_faq_accordion:last-of-type {
  margin-bottom: 0;
}
/* accordion */
/* Style the buttons that are used to open and close the accordion panel */
.sh_accordion {
  cursor: pointer;
  width: 100%;
  text-align: left;
  border: none;
  outline: none;
  transition: 0.4s;
  position: relative;
  font-weight: 400;
  font-size: 20px;
  line-height: 150%;
  letter-spacing: 0%;
  padding-right: 20px;
}
.sh_accordion:after {
  content: url("../assets/icons/plus.svg");
  width: 20px;
  height: 20px;
  right: 0px;
  top: 4px;
  position: absolute;
}
.active:after {
  content: url("../assets/icons/minus.png");
  top: 4px;
}
/* Style the accordion panel. Note: hidden by default */
.sh_panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
}
.sh_panel p {
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  letter-spacing: 0%;
  color: #000000cc;
  padding: 20px 26px 20px;
  background-color: #f9f9f9;
  border: 1px solid #ebebeb;
  border-radius: 10px;
  margin-top: 20px;
}

/* HOVER */
@media (hover: hover) {
  .sh_faq_accordion:hover {
    border: 1px solid var(--black);
  }
}

/* MEDIA */
@media only screen and (max-width: 1140px) {
}

@media only screen and (max-width: 940px) {
  .sh_faq_content {
    flex-direction: column;
  }
}

@media only screen and (max-width: 600px) {
  .sh_faq_cont {
    padding: 0;
  }
  .sh_faq_text {
    margin-bottom: 40px;
  }
  .sh_faq_text h2 {
    font-size: 34px;
    line-height: 41.56px;
    text-align: center;
  }
}
/* FAQ END */
/* ---------------------------------------------------------------- */

/* ---------------------------------------------------------------- */
/* LEFT SCROLL RIGHT STICKY */
.sh_l_scroll_r_sticky {
  width: 100%;
  display: flex;
  gap: 40px;
  justify-content: space-between;
  align-items: flex-start;
}
.sh_l_scroll {
  max-width: 579px;
  display: grid;
  gap: 40px;
}
.sh_l_scroll_item h3 {
  margin-bottom: 12px;
  font-weight: 400;
  font-size: 32px;
  line-height: 150%;
  letter-spacing: 0%;
}
.sh_l_scroll_item p {
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  letter-spacing: 0%;
  color: rgba(0, 0, 0, 0.8);
}
.sh_r_sticky {
  position: sticky;
  top: 100px;
  max-width: 505px;
  min-width: 288px;
  width: 100%;
}
.sh_r_sticky h3 {
  margin-bottom: 12px;
  font-weight: 400;
  font-size: 32px;
  line-height: 100%;
  letter-spacing: 0%;
}
.sh_r_sticky_item_2_wrap {
  background-color: #f9f9f9;
  border: 1px solid #ebebeb;
  padding: 22px 30px;
  border-radius: 10px;
}
.sh_r_sticky_item_2_wrap:first-of-type {
  margin-bottom: 24px;
}
.sh_r_sticky_item_1 {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.sh_r_sticky_item_1:last-of-type {
  margin-bottom: 0;
}
.sh_r_sticky_item_1_cont {
  display: grid;
  gap: 8px;
}
.sh_r_sticky_item_1_cont .sh_tel_name {
  font-weight: 400;
  font-size: 20px;
  line-height: 150%;
  letter-spacing: 0%;
  margin-bottom: 6px;
}
.sh_r_sticky_item_1_icon {
  width: 48px;
  height: 48px;
  background-color: var(--black);
  display: grid;
  place-items: center;
  border-radius: 50%;
}
.sh_r_stick_href {
  display: flex;
  gap: 10px;
  align-items: center;
}
.sh_r_sticky_item_1_icon img {
  width: 16px;
}
.sh_r_sticky_item_1 p {
  font-weight: 400;
  font-size: 20px;
  line-height: 100%;
  letter-spacing: 0%;
  margin-bottom: 6px;
}
.sh_r_sticky_item_1 a {
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  letter-spacing: 0%;
  text-decoration-thickness: 0%;
  color: var(--black);
  text-decoration: underline;
  transition: all 0.3s ease;
}
.sh_r_sticky_item_2 {
  width: 100%;
}
.sh_r_sticky_item_2 a {
  font-size: 32px;
  font-weight: 500;
  line-height: 38.72px;
  color: var(--black);
  text-align: center;
  border-radius: 24px;
  background-color: rgba(43, 174, 171, 0.3);
  padding: 28px 48px;
  display: block;
  border: 1px solid var(--black);
  transition: all 0.3s ease;
}

/* HOVER */
@media (hover: hover) {
  .sh_r_sticky_item_2 a:hover {
    background-color: var(--black);
    color: var(--white);
  }
  .sh_r_stick_href a:hover {
    color: var(--black);
  }
}

/* MEDIA */
@media only screen and (max-width: 940px) {
  .sh_l_scroll_r_sticky {
    flex-direction: column;
  }
  .sh_l_scroll {
    max-width: 768px;
  }
  .sh_r_sticky {
    position: static;
  }
}
/* LEFT SCROLL RIGHT STICKY */
/* ---------------------------------------------------------------- */

/* ---------------------------------------------------------------- */
/* CONTACT HERO BANNER */
.sh_hero_banner_contact {
  display: flex;
  justify-content: space-between;
}
.sh_hero_banner_left {
  width: 50%;
  padding-right: 48px;
  display: flex;
  flex-direction: column;
}
.sh_hero_banner_left h1 {
  font-weight: 500;
  font-size: 48px;
  line-height: 150%;
  letter-spacing: 0%;
  margin-bottom: 8px;
}
.sh_hero_banner_left p {
  color: #000000cc;
  font-weight: 400;
  font-size: 24px;
  line-height: 150%;
  letter-spacing: 0%;
}
.sh_hero_banner_right {
  width: 50%;
  aspect-ratio: 1/1;
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}
.sh_hero_banner_right img {
  position: absolute;
  aspect-ratio: 1/1;
  width: 100%;
  object-fit: cover;
  object-position: center;
  top: 0;
  left: 0;
  border-radius: 20px;
}
.sh_hero_contact_details h4 {
  font-weight: 400;
  font-size: 24px;
  line-height: 150%;
  letter-spacing: 0%;
  margin-top: 75px;
  margin-bottom: 16px;
}
.sh_hero_contact_details .sh_r_kotakt_kont {
  display: flex;
  flex-direction: column;
}
.sh_hero_contact_details .sh_r_kotakt_kont h4 {
  margin-top: 0;
  padding-top: 16px;
  border-top: 1px solid #0000004d;
  max-width: 219px;
}

.sh_hero_contact_details .sh_r_sticky_item_1,
.sh_hero_contact_details .sh_r_kotakt_kont .sh_r_sticky_item_1 {
  padding: 0;
}
.sh_hero_contact_details p {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}
.sh_hero_contact_details p:last-of-type {
  margin-bottom: 0;
}
.sh_hero_contact_details p a {
  color: var(--black);
  border-bottom: 1px solid var(--black);
  font-size: 16px;
  font-weight: 400;
  line-height: 19.36px;
}

/* MEDIA */
@media only screen and (max-width: 940px) {
  .sh_hero_banner_contact {
    flex-direction: column-reverse;
    gap: 40px;
  }
  .sh_hero_banner_left {
    width: 100%;
    padding: 0;
  }
  .sh_hero_banner_left h1 {
    max-width: 768px;
  }
  .sh_hero_banner_left p {
    max-width: 768px;
  }
  .sh_hero_contact_details {
    margin-top: 40px;
  }
  .sh_hero_banner_right {
    width: 100%;
    aspect-ratio: 4/3;
  }
  .sh_hero_contact_details .sh_r_kotakt_kont {
    flex-direction: column;
    gap: 0;
  }
  .sh_hero_contact_details .sh_r_kotakt_kont .sh_r_sticky_item_1 {
    padding: 0;
    max-width: 320px;
  }
}
/* CONTACT HERO BANNER END */
/* ---------------------------------------------------------------- */

/* ---------------------------------------------------------------- */
/* SECTION 50/50 BLACK - IMG */
.sh_50_w_img_black {
  position: relative;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.sh_50_cont_black {
  position: relative;
  z-index: 1;
  padding: 120px 40px 120px 60px;
  background-color: #0b0b0b;
  border-radius: 20px;
  border: 1px solid #282828;
}
.sh_50_cont_black h2 {
  font-weight: 500;
  font-size: 48px;
  line-height: 150%;
  letter-spacing: 0%;
  color: var(--white);
  margin-bottom: 16px;
}
.sh_50_cont_black p {
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  letter-spacing: 0%;
  color: #000000cc;
  margin-bottom: 40px;
  color: var(--white);
}
.sh_50_cont_black a.sh_button {
  background-color: transparent;
  padding: 14px 59px;
  display: inline-block;
  border-radius: 10px;
  font-weight: 400;
  font-size: 20px;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
  color: var(--white);
  border: 1px solid var(--white);
  transition: all 0.3s ease;
}
.sh_50_img_w {
  border-radius: 20px;
  object-fit: cover;
  object-position: center;
  width: 100%;
  height: 100%;
  display: block;
}

/* HOVER */
@media (hover: hover) {
  .sh_50_cont_black a.sh_button:hover {
    background-color: var(--white);
    border-color: var(--white);
    color: #0b0b0b;
  }
}

/* MEDIA */
@media only screen and (max-width: 1140px) {
  .sh_50_cont_black {
    padding: 40px;
  }
}
@media only screen and (max-width: 940px) {
  .sh_50_w_img {
    flex-direction: column;
    min-height: auto;
  }
  .sh_50_w_img_black {
    display: flex;
    flex-direction: column-reverse;
    min-height: auto;
  }
  .sh_50_w_img.sh_col_rev {
    flex-direction: column-reverse;
  }
  .sh_50_cont_black {
    width: 100%;
  }
  .sh_50_cont_black h2 {
    max-width: 768px;
    font-size: 34px;
    line-height: 41.56px;
    margin-bottom: 20px;
  }
  .sh_50_cont_black p {
    margin-bottom: 24px;
  }
  .sh_50_img {
    position: static;
    width: 100%;
    aspect-ratio: 4 / 3;
  }
}
@media only screen and (max-width: 600px) {
  .sh_50_cont_black {
    padding: 34px 20px;
  }
}
@media only screen and (max-width: 320px) {
  .sh_50_cont_black {
    padding: 34px 16px;
  }
}
/* SECTION 50/50 BLACK - IMG END*/
/* ---------------------------------------------------------------- */

/* ---------------------------------------------------------------- */
/* FOOTER */
.sh_footer_top {
  width: 100%;
}
.sh_footer_top_content {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 60px;
}
.sh_footer_links_col {
  max-width: 230px;
}
.sh_footer_links_col:first-of-type {
  max-width: 414px;
}
.sh_footer_links_col h2 {
  color: var(--white);
  font-weight: 400;
  font-size: 32px;
  line-height: 150%;
  letter-spacing: 0%;
  margin-bottom: 12px;
}
.sh_footer_links_col:first-of-type p {
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  letter-spacing: 0%;
  color: var(--white);
}
.sh_footer_links_col h3 {
  font-weight: 400;
  font-size: 20px;
  line-height: 100%;
  letter-spacing: 0%;
  color: #888;
  margin-bottom: 12px;
}
.mt-16 {
  margin-top: 16px;
}
.sh_footer_links {
  display: flex;
  flex-direction: column;
}
.sh_footer_links p {
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  letter-spacing: 0%;
  margin-bottom: 8px;
  color: var(--gray_text);
}
.sh_footer_links p:last-of-type {
  margin-bottom: 0;
}
.sh_footer_links p a,
.sh_footer_links p span {
  cursor: pointer;
  color: var(--secondary);
  border-bottom: 1px solid transparent;
  transition: all 0.3s ease;
}
.sh_footer_lins_divider {
  width: 100%;
  height: 32px;
}
.sh_footer_soc_icn {
  display: flex;
  gap: 12px;
  align-items: center;
}
.sh_footer_bot {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0 24px;
  border-top: 2px solid var(--black);
}
.sh_footer_bot p {
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  letter-spacing: 0%;
  color: var(--white);
}
.sh_footer_bot a {
  color: var(--white);
  border-bottom: 1px solid var(--white);
  transition: all 0.3s ease;
}

/* HOVER */
@media (hover: hover) {
  .sh_footer_links p a:hover,
  .sh_footer_links p span:hover,
  .sh_footer_bot a:hover {
    border-bottom: 1px solid var(--white);
  }
}

/* MEDIA */
@media only screen and (max-width: 940px) {
  .sh_footer_top_content {
    gap: 40px;
    flex-wrap: wrap;
    justify-content: flex-start;
  }
  .sh_footer_links_col:first-of-type {
    max-width: 100%;
    width: 100%;
  }
  .sh_footer_links_col:first-of-type p {
    max-width: 768px;
  }
  .sh_footer_top_cta {
    margin-bottom: 60px;
  }
  .sh_footer_links_col h3.mt-16 {
    margin-top: 40px;
  }
}

@media only screen and (max-width: 600px) {
  .sh_footer_links_col {
    max-width: 100%;
    width: 100%;
  }
  .sh_footer_bot {
    flex-direction: column;
    gap: 20px;
  }
  .sh_footer_bot p {
    text-align: center;
  }
}

/* FOOTER END */
/* ---------------------------------------------------------------- */

/* PRIVACY BOOTOM UNDER FOOTER */
.privacy_popup {
  display: none;
  position: fixed;
  width: 100vw;
  height: 100vh;
  top: 0;
  left: 0;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}
.privacy_popup.privacy_show {
  display: flex;
}
.privacy_popup_close {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
}
.privacy_popup_content {
  max-width: 768px;
  max-height: 90%;
  overflow: auto;
  margin: 20px;
  background-color: var(--white);
  padding: 24px;
  padding-top: 60px;
  z-index: 99999;
  position: relative;
  box-shadow: 0px 15px 39px 0px rgb(8 18 109 / 10%);
  text-align: left !important;
}

.privacy_popup_close_x {
  position: absolute;
  top: 10px;
  right: 20px;
  font-size: 24px;
  /* font-weight: bold; */
  cursor: pointer;
  color: var(--light-green);
  width: 20px;
}

.privacy_popup_content a {
  color: var(--light-green);
}

/* COOKIES BOOTOM UNDER FOOTER */
.cookie_popup {
  display: none;
  position: fixed;
  width: 100vw;
  height: 100vh;
  top: 0;
  left: 0;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}
.cookie_popup.cookie_show {
  display: flex;
}
.cookie_popup_close {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
}
.cookie_popup_content {
  max-width: 768px;
  max-height: 90%;
  overflow: auto;
  margin: 20px;
  background-color: var(--white);
  padding: 24px;
  padding-top: 60px;
  z-index: 99999;
  position: relative;
  box-shadow: 0px 15px 39px 0px rgb(8 18 109 / 10%);
  text-align: left !important;
}

.cookie_popup_close_x {
  position: absolute;
  top: 10px;
  right: 20px;
  font-size: 24px;
  /* font-weight: bold; */
  cursor: pointer;
  color: var(--light-green);
  width: 20px;
}

.cookie_popup_content a {
  color: var(--light-green);
}
