html, body {
  margin: 0;
  padding: 0;
}
body {
  margin:0;
  padding:0;
  font-family: "Marcellus", serif;
  font-size: 17px;
  color: #001F2F;
  overflow-x: hidden;
}
body.no-scroll {
  overflow-y: hidden;
}
* {
  box-sizing: border-box;
  text-decoration: none;
}
a {
  color: #001F2F;
  text-decoration: none;
}
img {
  max-width: 100%;
}
.container {
  max-width: 1240px;
  margin:0 auto;
  padding:0 20px;
}
.header_container {
  max-width: 1360px;
  margin:0 auto;
  padding:0 20px;
}
.header_wrapper {
  position: fixed;
  top:0;
  left:0;
  width: 100%;
  z-index: 9;
  background: #E1D8D0;
  box-shadow: 0px 15px 15px 0px rgba(0,0,0,0.2);
  -webkit-box-shadow: 0px 15px 15px 0px rgba(0,0,0,0.2);
  -moz-box-shadow: 0px 15px 15px 0px rgba(0,0,0,0.2);
  transition: all 0.3s ease;
}
.header_wrapper.fixed {
  position: fixed;
  top: 0;
  left: 0;
  transform: translateY(-100%); /* Hidden above when fixed */
}
.header_wrapper.fixed.show {
  transform: translateY(0); /* Visible when scrolling up */
}
.header_spacer {
  height: 110px;
}
.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 110px;
}
.logo {
  line-height: 0;
}
.logo img {
  height:50px;
}
.header_nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.menu {
  display: flex;
  align-items: center;
  justify-content: center;
}
.menu a {
  text-transform: uppercase;
  font-weight: 600;
  margin:0 45px 0 0;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  transition: all 0.3s ease;
  height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding:5px 0 0 0;
}
.menu a span {
  margin:5px 0 0 0;
  display: block;
  height:2px;
  background: transparent;
  width: 100%;
}
.menu a:hover {
  color: #7F4746;
}
.menu a.active {
  color: #7F4746;
}
.menu a.active span {
  background: #7F4746;
}
.menu_holder {
  margin:0 45px 0 0;
  position: relative;
}
.menu_title {
  padding:5px 0 0 0;
  text-transform: uppercase;
  font-weight: 600;
  position: relative;
  z-index: 1;
  cursor: default;
  height:110px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.menu_title span {
  margin:5px 0 0 0;
  display: block;
  height:2px;
  background: transparent;
  width: 100%;
}
.menu_holder:hover .menu_title {
  color: #7F4746;
}
.menu_title.active {
  color: #7F4746;
}
.menu_title.active span {
  background: #7F4746;
}
.submenu {
  position: absolute;
  top:100%;
  left:-30px;
  min-width: 150px;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
  background: #E0D7D1;
  padding:30px;
  opacity: 0;
  pointer-events: none;
  -webkit-box-shadow: 0px 0px 10px 5px rgba(0,0,0,0.1); 
  box-shadow: 0px 0px 10px 5px rgba(0,0,0,0.1);
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.submenu a {
  white-space: nowrap;
  height:auto;
  padding:0;
  margin:0 0 18px 0;
  font-size: 15px;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.submenu a.active {
  pointer-events: none;
}
.submenu a:last-child {
  margin:0;
}
.submenu a:hover {
  color: #7F4746;
}
.menu_holder:hover .submenu {
  opacity: 1;
  pointer-events: all;
}
.lang {
  display: flex;
}
.lang a {
  text-transform: uppercase;
  color: #7F4746;
  border-bottom:2px solid transparent;
  padding:4px 0;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  transition: all 0.3s ease;
  font-weight: bold;
  height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lang a:hover {
  color: #001F2F;
}
.menu_trigger {
  display: none;
}
.menu_trigger.active {
  display: flex;
}
.mob_menu {
  display: none;
}
.mob_menu.active {
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  top:110px;
  left:0;
  width: 100%;
  height: calc(100dvh - 110px);
  z-index: 999;
  background: #234C58;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='6'%3E%3Cpath d='M0 3 Q10 0 20 3 Q30 6 40 3' stroke='%23001F2F' stroke-width='1' stroke-opacity='1' fill='none'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 40px 6px;
  padding:0 20px;
}
.content_wrapper {
  padding:80px 0 120px 0;
  background-color: #001E2F;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='6'%3E%3Cpath d='M0 3 Q10 0 20 3 Q30 6 40 3' stroke='%23234C58' stroke-width='1' stroke-opacity='1' fill='none'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 40px 6px;
}
.content {
  background: #E0D7D1;
  box-shadow: 0px 15px 15px 0px rgba(0,0,0,0.3);
  -webkit-box-shadow: 0px 15px 15px 0px rgba(0,0,0,0.3);
  -moz-box-shadow: 0px 15px 15px 0px rgba(0,0,0,0.3);
}
.content_header {
  position: relative;
}
.content_header_info {
  padding:50px 80px;
}
.content_header_info_intro {
  font-weight: 600;
  letter-spacing: 2px;
  font-size: 15px;
  text-transform: uppercase;
}
.content_header_info_sep {
  margin:15px 0 10px 0;
  width: 30px;
  height: 2.5px;
  background: #001F2F;
}
.content_header_info_title {
  font-size: 38px;
  line-height: 57px;
}


/* HOME */
.home_header_grid {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.home_header_grid_photo {
  width: 50%;
  line-height: 0;
  height: calc(50dvh - 55px);
}
.home_header_grid_photo img {
  width: 100%;
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.home_header_grid_card {
  width: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  padding:50px;
}
.home_header_grid_card span {
  max-width: 500px;
}
.home_header_grid_card.dark {
  /*background-image: url(../img/home_section_bg_1.svg);*/
  /*background-size: cover;*/
  /*background-position: top right;*/
  /*background-repeat: no-repeat;*/
  font-size: 45px;
  line-height: 67px;

  /* The center (highlight) moves into the main color */
  background: radial-gradient(circle at center, #553B3F 0%, #293740 80%);
  /* Make the background 2x the size of the container */
  background-size: 200% 200%;
  animation: moveSpotlight 8s ease-in-out infinite;
}
@keyframes moveSpotlight {
    0% {
        background-position: 0% 0%;
    }
    25% {
        background-position: 100% 0%;
    }
    50% {
        background-position: 100% 100%;
    }
    75% {
        background-position: 0% 100%;
    }
    100% {
        background-position: 0% 0%;
    }
}
.home_header_grid_card.light {
  /*background-image: url(../img/home_section_bg_2.svg);
  background-size: cover;
  background-position: top right;
  background-repeat: no-repeat;*/
  font-size: 26px;
  line-height: 39px;

  /* The center (highlight) moves into the main color */
  background: radial-gradient(circle at center, #976C49 0%, #30464F 80%);
  /* Make the background 2x the size of the container */
  background-size: 200% 200%;
  animation: moveSpotlight 8s ease-in-out infinite;
}
.home_flow_wrapper {
  background: #C2BDB8;
  padding:100px 0;
}
.home_flow {
  position: relative;
}
.home_flow_line {
  height: 65%;
  position: absolute;
  top:20%;
  left:25%;
}
.home_flow_line img {
  height: 100%;
}
.home_flow_item {
  position: relative;
  padding:30px 0;
}
.home_flow_photo {
  line-height: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.home_flow_photo.first {
  justify-content: flex-end;
}
.home_flow_photo.second {
  justify-content: flex-start;
}
.home_flow_photo.third {
  justify-content: flex-end;
  padding:0 14% 0 0;
}
.home_flow_photo.fourth {
  justify-content: flex-start;
  padding:0 0 0 8%;
}
.home_flow_photo.first img {
  width:80%;
}
.home_flow_photo.second img {
  width:52%;
}
.home_flow_photo.third img {
  width:50%;
}
.home_flow_photo.fourth img {
  width:48%;
}
.home_flow_card {
  position: absolute;
  z-index: 1;
  width: 50%;
  padding:30px;
  bottom:30px;
  -webkit-box-shadow: 10px 10px 10px -1px rgba(0,0,0,0.2); 
  box-shadow: 10px 10px 10px -1px rgba(0,0,0,0.2);
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.home_flow_card.static {

  position: static;
}
.home_flow_card_number {
  font-size: 80px;
  width: 70px;
  margin-top: -10px;
}
.home_flow_card_info {
  width: calc(100% - 70px);
}
.home_flow_card_title {
  font-size: 30px;
  line-height: 45px;
}
.home_flow_card_desc {
  margin:20px 0 0 0;
  font-size: 18px;
  line-height: 27px;
}
.home_flow_card_cta {
  margin:20px 0 0 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.home_flow_card_cta a {
  text-transform: uppercase;
  border-bottom: 1px solid #001F2F;
  padding:0 0 6px 0;
  font-size: 15px;
  line-height: 22.5px;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.home_flow_card_cta a:hover {
  color: #7F4746;
  border-bottom: 1px solid #7F4746;
}
.home_flow_card_cta a svg {
  font-size: 12px;
  margin:0 10px 0 0;
}
.home_flow_card.left {
  left:0;
}
.home_flow_card.right {
  right:0;
}
.home_flow_card.blue {
  background: #CEDCDE;
  border:1px solid #8A9DA3;
}
.home_flow_card.pink {
  background: #E0CECE;
  border:1px solid #A96C6A;
}
.home_flow_card.green {
  background: #ADB5A4;
  border:1px solid #3A3C23;
}
.home_links_wrapper {
  background: #D3CAC4;
  padding:70px 0;
}
.home_links {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.home_links a {
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.home_links a:hover {
  color: #7F4746;
}
.home_link {
  width: calc(100% / 4 - 20px);
}
.home_link_photo {
  line-height: 0;
}
.home_link_photo img {
  transition: filter 0.3s ease; /* Makes the contrast change smooth */
}
.home_links a:hover .home_link_photo img {
  filter: contrast(150%);
}
.home_link_title {
  text-transform: uppercase;
  margin:22px 0 0 0;
  text-align: center;
  font-weight: bold;
  font-size: 16px;
  line-height: 24px;
}
.home_partners_wrapper {
  background: #204A57;
}
.home_partners {
  padding:80px 0 0 0;
}
.home_partners_title {
  font-size: 20px;
  line-height: 30px;
  font-weight: bold;
  color: #D1C9C2;
  text-transform: uppercase;
}
.home_partners_sep {
  margin:10px 0 0 0;
  width: 36px;
  border-bottom:2px solid #D1C9C2;
}
.home_partners_list {
  padding:100px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.home_partners_list_item {
  line-height: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.home_partners_list_item img {
  max-height: 80px;
  max-width: 80%;
  margin:0 auto;
  display: block;
}
/* Force linear transition for the track to prevent stuttering */
.partners_slider .slick-track {
  display: flex;
  align-items: center;
  transition-timing-function: linear !important;
}

/* Ensure images have consistent spacing */
.partners_slider .slick-slide {
  margin: 0 20px;
}
/* END OF HOME */


/* HISTORY */
.content_wrapper.history {
  padding-top: 200px;
}
.content_header.history {
  /* Remove fixed height */
  display: grid;
  grid-template-columns: 1fr; /* Single column stack */
  align-items: start;
  position: relative;
  margin-bottom: 100px; /* Space for the next section */
}
.history_header_photos {
  display: grid;
  grid-template-columns: repeat(12, 1fr); /* 12-column grid for precise overlapping */
  align-items: start;
}
.history_header_photo_card {
  /* Remove position: absolute */
  grid-column: 1 / 8; /* Starts at left, spans 7 columns */
  grid-row: 1;        /* Both elements sit on Row 1 */
  z-index: 1;
  
  /* Your existing styling */
  background-image: url('../img/history_section_bg.svg');
  background-size: cover;
  background-position: top right;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  color: #fff;
  padding: 100px 260px 100px 140px; /* Adjusted padding for safety */
  font-size: 26px;
  line-height: 39px;
  box-shadow: 13px 12px 15px -1px rgba(0,0,0,0.4);
  
  /* Pull it left to match your negative left offset if needed */
  margin-left: -60px; 
}
.history_header_photo_img {
    grid-column: 6 / 13;
    grid-row: 1;
    z-index: 2;
    
    /* 1. Force the image to the top of the grid row */
    align-self: start; 
    
    /* 2. Use relative top to "pop" it up without affecting the flow */
    position: relative;
    top: -300px; /* Use a fixed px or a small 'vw' unit for consistent height */
    margin-bottom:-300px;
    margin-right: -60px;
    /* Remove the margin-top: -50% */
}
.history_header_photo_img img {
  width: 100%;
  display: block;
  box-shadow: 13px 12px 15px -1px rgba(0,0,0,0.4);
}
.history_twins {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding:60px 0;
}
.history_twins.no_padding {
  padding:0;
}
.history_twins.bottom_padding {
  padding:0 0 60px 0;
}
.history_twin_left {
  width: 35%;
}
.history_twin_right {
  width: 65%;
  font-size: 18px;
  line-height: 27px;
}
.history_twin_right_text_holder {
  width: 100%;
  max-width: 440px;
  padding:0 50px 0 0;
}
.history_photo_single {
  line-height: 0;
  padding:0 0 0 80px;
}
.history_photo_single img {
  width: calc(50% + 20px);
}
/* END OF HISTORY */


/* VALUES */
.values_grid {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.values_grid.values_grid_3 {
  margin:250px 0 0 0;
  align-items: center;
}
.values_grid.values_grid_4 {
  margin:150px 0 0 0;
  align-items: center;
  padding:0 0 100px 0;
}
.values_grid_photo {
  width: calc(50% - 30px);
  line-height: 0;
}
.values_grid_photo.values_grid_1 {
  width: calc(50% + 30px);
  margin-left: -60px;
  margin-top: 110px;
}
.values_grid_photo.values_grid_2 {
  position: relative;
  padding-right: 80px;
}
.values_grid_photo.values_grid_4 {
  width: calc(50% + 30px);
  margin-right: -60px;
}
.values_grid_photo.values_grid_2 div:first-child {
  width: 80%;
}
.values_grid_photo.values_grid_2 div:last-child {
  width: 80%;
  position: absolute;
  right:-60px;
  bottom:-200px;
}
.values_grid_info {
  width: calc(50% - 30px);
}
.values_grid_info.values_grid_1 {
  padding:0 120px 0 0;
}
.values_grid_info.values_grid_2 {
  padding-top: 325px;
  padding-left: 80px;
  padding-right: 80px;
}
.values_grid_info.values_grid_3 {
  padding:0 120px 0 0;
}
.values_grid_info.values_grid_4 {
  padding-left: 80px;
  padding-right: 80px;
}
.values_grid_title {
  font-size: 30px;
  line-height: 45px;
}
.values_grid_desc {
  margin:40px 0 0 0;
  font-size: 18px;
  line-height: 27px;
}
/* END OF VALUES */


/* SITE */
.site_single_photo {
  position: relative;
  z-index: 1;
  margin-left: -60px;
  width: 85%;
  line-height: 0;
}
.site_grid {
  margin-top: -100px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.site_grid_info {
  width: 100%;
  max-width: 550px;
  padding:0 80px;
  font-size: 24px;
  line-height: 36px;
}
.site_grid_photo {
  width: 40%;
}
.site_map {
  margin-top: -100px;
  line-height: 0;
  padding:0 40px;
}
.site_map img {
  width: 100%;
}
.site_single_text {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  line-height: 27px;
  padding:60px 0;
}
.site_single_text_holder {
  width: 100%;
  max-width: 440px;
  padding:0 30px;
}
.site_sketch {
  position: relative;
  padding-bottom: 80px;
}
.site_sketch_photo {
  padding:0 40px;
  line-height: 0;
}
.site_sketch_photo img {
  width: 100%;
}
.site_sketch_addon {
  line-height: 0;
  position: absolute;
  bottom:0;
  right:-60px;
  width: 30%;
}
.site_params {
  width: 100%;
  max-width: 600px;
  margin:0 auto;
  padding:40px 30px 100px 30px;
}
.site_param_item {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  border-bottom: 1px solid #001F2F;
  font-size: 18px;
  line-height: 27px;
  padding:6px 0;
}
.site_param_item:last-child {
  border:none;
}
.site_param_title {
  width: 50%;
  font-weight: 600;
}
.site_param_desc {
  width: 50%;
}
/* END OF SITE */


/* TEAM */
.content.next_team {
  margin:80px 0 0 0;
  padding:80px 0 0 0;
}
.team_grid {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding:0 80px 80px 80px;
}
.team_photo {
  width: 25%;
  line-height: 0;
}
.team_info {
  width: 75%;
  padding:0 0 0 80px;
}
.team_title {
  font-size: 30px;
  line-height: 45px;
  border-bottom: 1px solid #001F2F;
  padding:0 0 20px 0;
  margin:0 0 20px 0;
}
.team_title span {
  margin:10px 0 0 0;
  display: block;
  font-size: 20px;
  line-height: 30px;
  opacity: 0.7;
}
.team_bio {
  font-size: 18px;
  line-height: 27px;
}
/* END OF TEAM */


/* REFINING */
.content.refining {
  padding:0 0 100px 0;
}
.refining_intro {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  line-height: 27px;
}
.refining_intro_holder {
  width: 100%;
  max-width: 440px;
}
.refining_split {
  margin:100px 0 0 0;
  padding:0 80px;
  position: relative;
}
.refining_split::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  background: #fff;
  transform: translateX(-50%); /* Perfectly centers the 2px line */
}
.refining_split_item {
  display: flex;
  justify-content: space-between;
  padding:0 0 150px 0;
  position: relative; /* Keeps content above the line */
  z-index: 1;
}
.refining_split_item:last-child {
  padding:0;
}
.refining_stage {
  width:50%;
}
.refining_stage_info {
  margin-top: -40px;
  display: flex;
  align-items: flex-end;
  flex-direction: column;
  padding:0 30px 0 0;
}
.refining_stage_info_title {
  font-size: 30px;
  line-height: 45px;
  text-align: right;
}
.refining_stage_info_year {
  margin:2px 0 0 0;
  padding:5px 0 0 0;
  border-top: 1px solid #001F2F;
  font-size: 16px;
  line-height: 24px;
}
.refining_stage_photo {
  width: calc(100% + 60px);
  line-height: 0;
  margin:30px -60px 0 0;
  position: relative;
  z-index: 1;
}
.refining_stage_photo.last {
  width: calc(100% + 140px);
  margin:30px 0 0 -140px;
}
.refining_stage_photo img {
  width: 100%;
}
.refining_object {
  position: relative;
  width:50%;
}
.refining_object span {
  position: absolute;
  top:0;
  left:-8px;
  display: block;
  width: 14px;
  height: 14px;
  border-radius: 100%;
  background: #fff;
}
.refining_object_info {
  margin-top: -10px;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  padding:0 0 0 30px;
}
.refining_object_info_title {
  font-size: 22px;
  line-height: 33px;
}
.refining_object_info_desc {
  font-size: 16px;
  line-height: 24px;
  padding:0 0 0 30px;
}
.refining_object_photo {
  width: calc(100% + 80px);
  line-height: 0;
  margin:7px 0 0 0;
}
.refining_object_photo.last {
  width: calc(100% + 200px);
  margin-top: 30px;
  margin-left: -60px;
  position: relative;
  z-index: 2;
}
.refining_object_photo img {
  width: 100%;
}
/* END OF REFINING */


/* DISTRIBUTION */
.distribution_header {
  display: flex;
  align-items: flex-start;
  position: relative;
  width: 100%;
}

.distribution_header_left {
  /* Remove position: absolute and top/left offsets */
  flex: 0 0 calc(50% + 60px); /* Sets a fixed width basis */
  z-index: 2;
  margin-left: -60px; /* Moves it left as requested */
  margin-right: -10%; /* Moves it left as requested */
  
  background-image: url('../img/distribution_section_bg.svg');
  background-size: cover;
  background-position: top left;
  background-repeat: no-repeat;
  
  display: flex;
  align-items: center;
  color: #fff;
  padding: 100px 140px;
  font-size: 26px;
  line-height: 39px;
  box-shadow: 13px 12px 15px -1px rgba(0,0,0,0.4);
}

.distribution_header_right {
  flex: 1; /* Takes up remaining space */
  line-height: 0;
  display: flex;
  justify-content: flex-end;
  margin-top: -150px;
}

.distribution_header_right img {
  width: 100%; /* Scales relative to the right container */
  max-width: 100%; 
  display: block;
}
.distribution_collage {
  margin:80px 0 0 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding:0 160px;
}
.distribution_collage_item {
  width: calc(100% / 3 - 4px);
}
.distribution_collage_photo {
  line-height: 0;
}
.distribution_collage_title {
  font-style: italic;
  font-size: 18px;
  line-height: 27px;
}
.distribution_single_text {
  padding:80px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  line-height: 27px;
  position: relative;
}
.distribution_single_text_holder {
  width: 100%;
  max-width: 440px;
}
.distribution_last_photo_left {
  position: absolute;
  bottom:40px;
  left:-60px;
  width: 26%;
  line-height: 0;
}
.distribution_last_photo_right {
  position: absolute;
  top:-100px;
  right:-60px;
  width: 30%;
  line-height: 0;
}
.distribution_map {
  position: relative;
  padding:0 80px;
}
.distribution_map img {
  width: 100%;
}
.distribution_map span {
  position: absolute;
  top:0;
  left:160px;
  font-size: 24px;
  line-height: 36px;
}
/* END OF DISTRIBUTION */


/* OPPORTUNITIES */
.opportunities_twins {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding:60px 0;
}
.opportunities_twin_left {
  width: 30%;
}
.opportunities_twin_right {
  width: 70%;
  font-size: 18px;
  line-height: 27px;
}
.opportunities_twin_right.bigger {
  font-size: 22px;
  line-height: 33px;
}
.opportunities_twin_right_holder {
  width: 100%;
  max-width: 440px;
}
.opportunities_collage {
  position: relative;
  line-height: 0;
  height: 729px;
}
.opportunities_collage_1 {
  width: 68%;
  position: relative;
  z-index: 1;
}
.opportunities_collage_2 {
  width: 45%;
  position: absolute;
  top:350px;
  right:0;
}
.opportunities_links {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
  margin-left: -22px;
  padding-bottom: 80px;
}
.opportunities_links a {
  font-size: 18px;
  line-height: 27px;
  border-bottom: 1px solid #001F2F;
  margin:0 0 12px 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.opportunities_links a:hover {
  color: #7F4746;
  border-bottom: 1px solid #7F4746;
}
.opportunities_links a svg {
  font-size: 12px;
  margin:0 10px 0 0;
}
/* END OF OPPORTUNITIES */

/* SAFETY */
.safety_collage {
  position: relative;
  line-height: 0;
  margin:80px 0 0 0;
}
.safety_collage_photo {
  width: 75%;
}
.safety_collage_card {
  position: absolute;
  top:-100px;
  right:-60px;
  width: 45%;
  background-image: url('../img/safety_section_bg.svg');
  background-size: cover;      /* Scales image to fill the container */
  background-position: top right; /* Centers the image */
  background-repeat: no-repeat;/* Prevents the image from tiling */
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  padding:80px 100px;
  font-size: 26px;
  line-height: 39px;
  -webkit-box-shadow: 13px 12px 15px -1px rgba(0,0,0,0.4); 
  box-shadow: 13px 12px 15px -1px rgba(0,0,0,0.4);
}
/* END OF SAFETY */

/* PROFESSIONS */

.professions_header_photo {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.professions_card {
  position: relative;
  z-index: 1;
  margin-top: -35%;
  width: 60%;
  background-image: url('../img/professions_section_bg.svg');
  background-size: cover;      /* Scales image to fill the container */
  background-position: top right; /* Centers the image */
  background-repeat: no-repeat;/* Prevents the image from tiling */
  color: #fff;
  padding:60px 80px;
  -webkit-box-shadow: 13px 12px 15px -1px rgba(0,0,0,0.4); 
  box-shadow: 13px 12px 15px -1px rgba(0,0,0,0.4);
}
.professions_card_intro {
  font-weight: 600;
  letter-spacing: 2px;
  font-size: 15px;
  text-transform: uppercase;
}
.professions_card_sep {
  margin: 15px 0 10px 0;
  width: 30px;
  height: 2.5px;
  background: #A6ACB1;
}
.professions_card_title {
  font-size: 38px;
  line-height: 57px;
}
.professions_card_desc {
  margin:30px 0 0 0;
  font-size: 20px;
  line-height: 30px;
}
/* END OF PROFESSIONS */


/* CONTACT */
.contact_map_holder {
  position: relative;
  padding:0 0 60px 0;
}
.contact_map {
  line-height: 0;
  width: 80%;
  height: 600px;
  margin-left: -60px;
}
.contact_map iframe {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.contact_param {
  position: absolute;
  top:-100px;
  right:-60px;
  background-image: url('../img/safety_section_bg.svg');
  background-size: cover;
  background-position: top right;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  color: #fff;
  font-size: 26px;
  line-height: 39px;
  box-shadow: 13px 12px 15px -1px rgba(0,0,0,0.4);
  width: 500px;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact_param span {
  margin:10px 25px 0 0;
}
.contact_param svg {
  width: 28px;
  height: 28px;
  fill:#fff;
}
/* END OF CONTACT */


.footer_wrapper {
  background: #234C58;
  padding:100px 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='6'%3E%3Cpath d='M0 3 Q10 0 20 3 Q30 6 40 3' stroke='%23001F2F' stroke-width='1' stroke-opacity='1' fill='none'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 40px 6px;
}
.footer {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.footer_column {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
}
.footer_column span {
  color: #D1C9C2;
  margin:0 0 20px 0;
  font-weight: bold;
  text-transform: uppercase;
}
.footer_column a {
  text-transform: uppercase;
  color: #D1C9C2;
  margin:0 0 20px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.footer_column a.link_primary {
  font-weight: bold;
}
.footer_column a:hover {
  color: #fff;
}
.footer_column a:last-child {
  margin:0;
}
.footer_addon_wrapper {
  padding:70px 0 60px 0;
  background-color: #001E2F;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='6'%3E%3Cpath d='M0 3 Q10 0 20 3 Q30 6 40 3' stroke='%23234C58' stroke-width='1' stroke-opacity='1' fill='none'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 40px 6px;
  text-align: center;
  font-size: 15px;
  color: #D1C9C2;
  text-transform: uppercase;
}
.faq-container {
  width: 100%;
}
/* Core Item Styling */
.faq-item {
  border-bottom: 1px solid #D1C9C2;
  overflow: hidden;
  font-weight: bold;
  text-transform: uppercase;
}
/* Question Trigger */
.faq-question {
    width: 100%;
    padding: 15px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 22px;
    font-weight: bold;
    text-transform: uppercase;
    transition: background 0.3s ease;
    color: #D1C9C2;
    font-family: "Marcellus", serif;
}
/* Icon Rotation */
.faq-question svg {
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    color: #D1C9C2;
}

.faq-item.active svg {
    transform: rotate(180deg);
    color: #D1C9C2;
}
.faq-item.active .faq-question {
  
}

/* Answer Wrapper - Keep display none initially */
.faq-answer {
    display: none; 
    overflow: hidden;
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: column;
    padding:0 0 15px 0;
}

.faq-answer a {
    display: block;
    font-size: 17px;
    font-weight: bold;
    text-transform: uppercase;
    color: #D1C9C2;
    padding:10px 20px;
}

/* Active State Styles */
.faq-item.active .faq-answer {
  max-height: 200px; /* Adjust based on content size */
}

.faq-single-link {

}
.faq-single-link a {
  display: block;
  font-size: 18px;
  font-weight: bold;
  text-transform: uppercase;
  color: #D1C9C2;
  font-family: "Marcellus", serif;
  padding: 15px 0;
  border-bottom: 1px solid #D1C9C2;
  font-size: 22px;
  font-weight: bold;
  text-transform: uppercase;
  transition: background 0.3s ease;
  color: #D1C9C2;
}
.faq-single-link.last a {
  border:none;
}