/* CSS Document */
/* Variables */
@font-face {
  font-family: "Lato";
  src: url("../assets/fonts/lato/Lato-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Lato";
  src: url("../assets/fonts/lato/Lato-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: "Big Caslon";
  src: url("../assets/fonts/big-caslon/BigCaslonFB-Regular.eot"),
    url("../assets/fonts/big-caslon/BigCaslonFB-Regular.eot?#iefix")
      format("embedded-opentype"),
    url("../assets/fonts/big-caslon/BigCaslonFB-Regular.woff2") format("woff2"),
    url("../assets/fonts/big-caslon/BigCaslonFB-Regular.woff") format("woff"),
    url("../assets/fonts/big-caslon/BigCaslonFB-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  background-color: #f3f3f3;
}

body {
  font-family: Lato;
  font-size: 16px;
  line-height: 1.5;
  background-color: #fff;
}
@media all and (max-width: 1023px) {
  body {
    font-size: 14px;
  }
}

a {
  text-decoration: none;
  color: #000;
}

ul {
  list-style-type: none;
}

h1,
h2,
h3,
h4,
.main_title {
  font-family: "Big Caslon";
  font-weight: 500;
}

h1,
h2 {
  line-height: 1.2;
  text-transform: capitalize;
}

h3 {
  line-height: 1.41;
  text-transform: capitalize;
}

h1 {
  font-size: 72px;
}
@media all and (max-width: 1279px) {
  h1 {
    font-size: 48px;
  }
}
@media all and (max-width: 767px) {
  h1 {
    font-size: 40px;
  }
}

h2 {
  font-size: 40px;
}
@media all and (max-width: 1023px) {
  h2 {
    font-size: 32px;
  }
}

h2.medium {
  font-size: 64px;
}
@media all and (max-width: 1023px) {
  h2.medium {
    font-size: 48px;
  }
}
@media all and (max-width: 767px) {
  h2.medium {
    font-size: 40px;
  }
}

h2.large {
  font-size: 90px;
  line-height: 1;
}
@media all and (max-width: 1023px) {
  h2.large {
    font-size: 60px;
  }
}
@media all and (max-width: 767px) {
  h2.large {
    font-size: 32px;
  }
}

h3 {
  font-size: 24px;
}
@media all and (max-width: 1023px) {
  h3 {
    font-size: 20px;
  }
}

h2:has(+ p) {
  margin-bottom: 24px;
}
@media all and (max-width: 767px) {
  h2:has(+ p) {
    margin-bottom: 20px;
  }
}

h3:has(+ p),
p:not(:last-child) {
  margin-bottom: 16px;
}
@media all and (max-width: 1023px) {
  h3:has(+ p),
  p:not(:last-child) {
    margin-bottom: 12px;
  }
}

img {
  width: 100%;
  height: auto;
  display: block;
}

a.link_underline {
  text-decoration: underline;
}

.container {
  width: 100%;
  margin: 0 auto;
}

.container_large {
  padding-right: calc((100% - 90.5vw) / 2);
  padding-left: calc((100% - 90.5vw) / 2);
}
@media all and (max-width: 1023px) {
  .container_large {
    padding-right: 32px;
    padding-left: 32px;
  }
}
@media all and (max-width: 767px) {
  .container_large {
    padding-right: 0;
    padding-left: 0;
  }
}

.container_medium {
  padding-right: calc((100% - 79vw) / 2);
  padding-left: calc((100% - 79vw) / 2);
}
@media all and (max-width: 1023px) {
  .container_medium {
    padding-right: 32px;
    padding-left: 32px;
  }
}
@media all and (max-width: 767px) {
  .container_medium {
    padding-right: 20px;
    padding-left: 20px;
  }
}

.container_small {
  padding-right: calc((100% - 68vw) / 2);
  padding-left: calc((100% - 68vw) / 2);
}
@media all and (max-width: 1023px) {
  .container_small {
    padding-right: 32px;
    padding-left: 32px;
  }
}
@media all and (max-width: 767px) {
  .container_small {
    padding-right: 20px;
    padding-left: 20px;
  }
}

.icon {
  display: block;
  background-repeat: no-repeat;
  background-position: center;
  border-radius: 50%;
  width: 45px;
  height: 45px;
  background-size: 24px 24px;
  transition: background-color 0.3s ease, background-image 0.3s ease;
}
@media all and (max-width: 1023px) {
  .icon {
    width: 38px;
    height: 38px;
    background-size: 20px 20px;
  }
}
@media all and (max-width: 767px) {
  .icon {
    width: 32px;
    height: 32px;
    background-size: 17px 17px;
  }
}

.icon_dark {
  border: 1px solid #000;
}

.arrow_right_dark {
  background-image: url(../assets/images/arrow-right-dark.svg);
}

.icon_light {
  border: 1px solid #fff;
}

.arrow_right_light {
  background-image: url(../assets/images/arrow-right-light.svg);
}

.arrow_left_light {
  background-image: url(../assets/images/arrow-right-light.svg);
  transform: scaleX(-1);
}

.arrow_bottom_light {
  background-image: url(../assets/images/arrow-bottom-light.svg);
}

.arrow_up_dark {
  background-image: url(../assets/images/arrow-up-dark.svg);
}

.arrow_bottom_dark {
  background-image: url(../assets/images/arrow-bottom-dark.svg);
}

.arrow_up_light {
  background-image: url(../assets/images/arrow-up-light.svg);
}

header {
  border-top: 10px solid #00704a;
  height: 150px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media all and (max-width: 1023px) {
  header {
    border-top-width: 7px;
    height: 107px;
  }
}
@media all and (max-width: 767px) {
  header {
    border-top: 0;
    height: 85px;
  }
}
header .header_inner_wrapper {
  display: flex;
  justify-content: space-between;
  width: 100%;
}

.mobile_header {
  display: none;
}
@media all and (max-width: 1023px) {
  .mobile_header {
    display: block;
  }
}

.mobile_header_logo a {
  display: none;
}
@media all and (max-width: 1023px) {
  .mobile_header_logo a {
    display: block;
  }
}

.light_header {
  position: absolute;
  z-index: 999;
  width: 100%;
}
.light_header nav ul li {
  color: #fff;
}
@media all and (max-width: 1023px) {
  .light_header nav ul li {
    color: #000;
  }
}
.light_header nav ul li a:before,
.light_header nav ul li span:before {
  background-color: #fff;
}
@media all and (max-width: 1023px) {
  .light_header nav ul li a:before,
  .light_header nav ul li span:before {
    background-color: #000;
  }
}
.light_header nav ul a {
  color: #fff;
}
@media all and (max-width: 1023px) {
  .light_header nav ul a {
    color: #000;
  }
}
.light_header nav ul .menu_home_item {
  display: none;
}
.light_header nav .sub_menu a {
  color: #000;
}
.light_header nav .sub_menu li a:before {
  background-color: #000;
}
.light_header .hamburger span {
  background-color: #fff;
}
.light_header .hamburger.active span {
  background-color: #000;
}

nav ul li {
  display: inline-block;
}
@media all and (max-width: 1023px) {
  nav ul li {
    display: block;
    margin-bottom: 40px;
  }
}
nav ul a:before,
nav ul span:before {
  background-color: #000;
}
nav > ul li {
  font-weight: 700;
}

nav.vertical .menu {
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  background-color: #fff;
  padding-right: 20px;
  padding-left: 20px;
  height: 100vh;
}
@media all and (max-width: 1023px) {
  nav.vertical .menu {
    z-index: 999;
  }
}

.has_children span {
  position: relative;
  cursor: pointer;
}
@media all and (max-width: 1023px) {
  .has_children span {
    display: flex;
    justify-content: space-between;
    line-height: 1;
  }
}
.has_children span:after {
  content: url("../assets/images/chevron-bottom.svg");
  padding: 0 9px;
}
@media all and (max-width: 1023px) {
  .has_children span:before {
    content: unset;
  }
}

.light_header .has_children span:after {
  content: url("../assets/images/chevron-light-bottom.svg");
}
@media all and (max-width: 1023px) {
  .light_header .has_children span:after {
    content: url("../assets/images/chevron-bottom.svg");
  }
}

.menu {
  display: flex;
  justify-content: space-between;
  gap: 50px;
}
@media all and (max-width: 1279px) {
  .menu {
    gap: 2vw;
  }
}
@media all and (max-width: 1023px) {
  .menu {
    display: none;
  }
}

.sub_menu {
  opacity: 0;
  position: absolute;
  box-shadow: 0 4px 14px 0 rgba(0, 0, 0, 0.2509803922);
  width: max-content;
  min-width: 215px;
  background: #fff;
  border-radius: 4px;
  z-index: -999;
  visibility: hidden;
  max-height: 0;
  transition: opacity 0.3s ease-in-out, max-height 0.3s ease-in-out;
  overflow: hidden;
}
@media all and (max-width: 1023px) {
  .sub_menu {
    box-shadow: unset;
    position: unset;
    min-width: unset;
    width: 100%;
    border-radius: 0;
  }
}
.sub_menu li {
  margin: 10px 0;
  display: block;
  max-width: fit-content;
  font-weight: 400;
}

.sub_menu.show {
  max-height: inherit;
  visibility: visible;
  z-index: 999;
  opacity: 1;
  padding: 8px 20px;
}

.hamburger {
  display: none;
  flex-direction: column;
  width: 27px;
  cursor: pointer;
  float: right;
  z-index: 9999;
}
.hamburger span {
  background-color: #000;
  width: 18px;
  height: 2px;
  margin-bottom: 5px;
  border-radius: 2px;
  transition: all 0.3s ease-in-out;
}
@media all and (max-width: 1023px) {
  .hamburger {
    display: flex;
  }
}

.hamburger.active {
  padding-top: 20px;
}
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.logo {
  display: block;
  width: 100%;
}

.header_logo {
  height: 60px;
  max-width: 297px;
}
@media all and (max-width: 1365px) {
  .header_logo {
    height: 42px;
    max-width: 211px;
  }
}
@media all and (max-width: 1279px) {
  .header_logo {
    height: 40px;
    max-width: 198px;
  }
}
@media all and (max-width: 767px) {
  .header_logo {
    height: 30px;
    max-width: 148px;
  }
}

.footer_logo {
  height: 46px;
  max-width: 228px;
}
@media all and (max-width: 1023px) {
  .footer_logo {
    height: 32px;
    max-width: 159px;
  }
}

.colored_logo {
  background: url("../assets/images/colored-logo.svg") no-repeat center;
  background-size: contain;
}

.white_logo {
  background: url("../assets/images/white-logo.svg") no-repeat center;
  background-size: contain;
}

.black_logo {
  background: url("../assets/images/black-logo.svg") no-repeat center;
  background-size: contain;
  margin-top: 48px;
  margin-bottom: 27px;
  max-width: 148.5px;
  height: 30px;
}

footer {
  background: #000;
  color: #fff;
  padding-top: 102px;
  padding-bottom: 0;
}
@media all and (max-width: 767px) {
  footer {
    padding-top: 70px;
  }
}
footer a {
  color: rgba(255, 255, 255, 0.6);
}
footer ul li a {
  /*			display: block;*/
  width: fit-content;
  margin-bottom: 12px;
}
@media all and (max-width: 1023px) {
  footer ul li a {
    margin-bottom: 16px;
  }
}
@media all and (max-width: 767px) {
  footer ul li a {
    margin-bottom: 12px;
  }
}
footer ul li a:before {
  background-color: #fff;
}

nav ul li a,
nav ul span,
footer .footer_col ul li a,
footer .footer_col ul span {
  position: relative;
  display: inline-block;
}
nav ul li a:before,
nav ul span:before,
footer .footer_col ul li a:before,
footer .footer_col ul span:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  transition: width 0.3s ease-in-out;
}
nav ul li a:hover:before,
nav ul span:hover:before,
footer .footer_col ul li a:hover:before,
footer .footer_col ul span:hover:before {
  width: 100%;
}

.max_small_width {
  max-width: 1305px;
  margin: 0 auto;
}

.max_medium_width {
  max-width: 1519px;
  margin: 0 auto;
}

.max_large_width {
  max-width: 1738px;
  margin: 0 auto;
}

.footer_container .top_footer {
  display: grid;
  grid-template-columns: 29% 28% 29% 14%;
  grid-template-areas: "col1 col2 col3 col4" "col6 col2 col3 col5";
  padding-bottom: 100px;
}
@media all and (max-width: 1023px) {
  .footer_container .top_footer {
    grid-template-areas: "col1 col2 col3" "col6 col4 col5";
    grid-template-columns: 39% 38% 23%;
    row-gap: 80px;
  }
}
@media all and (max-width: 767px) {
  .footer_container .top_footer {
    grid-template-areas: "col1 col1" "col2 col3" "col4 col5" "col6 col5";
    grid-template-columns: 50% 50%;
    row-gap: 70px;
  }
}
@media all and (max-width: 360px) {
  .footer_container .top_footer {
    grid-template-columns: unset;
    grid-template-areas: "col1" "col2" "col3" "col4" "col5" "col6";
    row-gap: 70px;
  }
}
.footer_container .top_footer div:nth-child(1) {
  grid-area: col1;
}
.footer_container .top_footer div:nth-child(2) {
  grid-area: col2;
}
.footer_container .top_footer div:nth-child(3) {
  grid-area: col3;
}
.footer_container .top_footer div:nth-child(4) {
  grid-area: col4;
  margin-bottom: 64px;
}
@media all and (max-width: 1023px) {
  .footer_container .top_footer div:nth-child(4) {
    margin-bottom: 0;
  }
}
.footer_container .top_footer div:nth-child(5) {
  grid-area: col5;
}
.footer_container .top_footer div:nth-child(4),
.footer_container .top_footer div:nth-child(5) {
  text-align: right;
}
@media all and (max-width: 1023px) {
  .footer_container .top_footer div:nth-child(4),
  .footer_container .top_footer div:nth-child(5) {
    text-align: left;
  }
  .footer_container .top_footer div:nth-child(4) p,
  .footer_container .top_footer div:nth-child(5) p {
    line-height: 1.42;
    padding-right: 15px;
  }
}
.footer_container .top_footer div:nth-child(6) {
  grid-area: col6;
}
@media all and (max-width: 1023px) {
  .footer_container .top_footer {
    padding-bottom: 80px;
  }
}
@media all and (max-width: 767px) {
  .footer_container .top_footer {
    padding-bottom: 80px;
  }
}
.footer_container .top_footer .phone {
  display: inline-block;
  margin-top: 16px;
  font-weight: 700;
  line-height: 1.2;
  color: #00704a;
  opacity: 1;
}
.footer_container .top_footer .phone:hover {
  opacity: 0.85;
}
.footer_container .top_footer .address:hover {
  opacity: 0.85;
}
.footer_container .top_footer p {
  margin-bottom: 0;
}

.footer_col .main_title {
  font-size: 24px;
  line-height: 1.1;
  opacity: 1;
  margin-bottom: 24px;
  display: inline-block;
}
@media all and (max-width: 1023px) {
  .footer_col .main_title {
    font-size: 18px;
    line-height: 1.2;
  }
}
@media all and (max-width: 767px) {
  .footer_col .main_title {
    margin-bottom: 20px;
  }
}
.footer_col p,
.footer_col span {
  opacity: 0.6;
}
.footer_col a p {
  opacity: 1;
}

.footer_container .bottom_footer {
  padding-top: 20px;
  padding-bottom: 25px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  font-weight: 500;
  border-top: 1px solid #b5b5b5;
}
.footer_container .bottom_footer a:hover {
  opacity: 0.85;
}
@media all and (max-width: 1023px) {
  .footer_container .bottom_footer {
    padding: 16px 0;
    font-size: 12px;
    line-height: 1.66;
  }
}
@media all and (max-width: 767px) {
  .footer_container .bottom_footer {
    padding: 24px 0;
    font-size: 10px;
    line-height: 2;
  }
}

.copyright_content span,
.copyright_content a {
  font-size: 12px;
  line-height: 25px;
  letter-spacing: 1.5px;
  font-weight: 500;
  text-transform: uppercase;
}
@media all and (max-width: 767px) {
  .copyright_content span,
  .copyright_content a {
    font-size: 10px;
    letter-spacing: 0;
  }
}

.hideme {
  display: none !important;
}

.social_media_wrapper {
  display: flex;
  flex-direction: row;
  gap: 18px;
  height: 24px;
}
@media all and (max-width: 1023px) {
  .social_media_wrapper {
    gap: 16px;
  }
}
.social_media_wrapper svg {
  width: 24px;
  height: 24px;
  opacity: 0.6;
  transition: opacity 0.3s ease-in-out;
}
.social_media_wrapper a:hover svg {
  opacity: 1;
}

.pt_x_large {
  padding-top: 200px;
}
@media all and (max-width: 1023px) {
  .pt_x_large {
    padding-top: 150px;
  }
}
@media all and (max-width: 767px) {
  .pt_x_large {
    padding-top: 100px;
  }
}

.pb_x_large {
  padding-bottom: 200px;
}
@media all and (max-width: 1023px) {
  .pb_x_large {
    padding-bottom: 100px;
  }
}

.pt_large {
  padding-top: 150px;
}
@media all and (max-width: 1023px) {
  .pt_large {
    padding-top: 100px;
  }
}
@media all and (max-width: 767px) {
  .pt_large {
    padding-top: 80px;
  }
}

.pb_large {
  padding-bottom: 150px;
}
@media all and (max-width: 1023px) {
  .pb_large {
    padding-bottom: 100px;
  }
}
@media all and (max-width: 767px) {
  .pb_large {
    padding-bottom: 80px;
  }
}

.pt_medium {
  padding-top: 120px;
}
@media all and (max-width: 1023px) {
  .pt_medium {
    padding-top: 80px;
  }
}
@media all and (max-width: 767px) {
  .pt_medium {
    padding-top: 50px;
  }
}

.pb_medium {
  padding-bottom: 120px;
}
@media all and (max-width: 1023px) {
  .pb_medium {
    padding-bottom: 80px;
  }
}
@media all and (max-width: 767px) {
  .pb_medium {
    padding-bottom: 50px;
  }
}

.pb_x_medium {
  padding-bottom: 100px;
}
@media all and (max-width: 1023px) {
  .pb_x_medium {
    padding-bottom: 80px;
  }
}
@media all and (max-width: 767px) {
  .pb_x_medium {
    padding-bottom: 50px;
  }
}

.pt_x_medium {
  padding-top: 100px;
}
@media all and (max-width: 1023px) {
  .pt_x_medium {
    padding-top: 80px;
  }
}
@media all and (max-width: 767px) {
  .pt_x_medium {
    padding-top: 50px;
  }
}

.pb_small {
  padding-bottom: 80px;
}
@media all and (max-width: 1023px) {
  .pb_small {
    padding-bottom: 60px;
  }
}
@media all and (max-width: 767px) {
  .pb_small {
    padding-bottom: 50px;
  }
}

.pt_small {
  padding-top: 80px;
}
@media all and (max-width: 1023px) {
  .pt_small {
    padding-top: 60px;
  }
}
@media all and (max-width: 767px) {
  .pt_small {
    padding-top: 50px;
  }
}

.pt_small_1 {
  padding-top: 74px;
}
@media all and (max-width: 1023px) {
  .pt_small_1 {
    padding-top: 60px;
  }
}
@media all and (max-width: 767px) {
  .pt_small_1 {
    padding-top: 58px;
  }
}

.pb_x_small {
  padding-bottom: 50px;
}
@media all and (max-width: 1023px) {
  .pb_x_small {
    padding-bottom: 40px;
  }
}

.pt_x_small {
  padding-top: 50px;
}
@media all and (max-width: 1023px) {
  .pt_x_small {
    padding-top: 40px;
  }
}

.py_x_small_1 {
  padding-bottom: 40px;
  padding-top: 40px;
}
@media all and (max-width: 1023px) {
  .py_x_small_1 {
    padding-bottom: 30px;
    padding-top: 30px;
  }
}
@media all and (max-width: 767px) {
  .py_x_small_1 {
    padding-bottom: 20px;
    padding-top: 20px;
  }
}

.px_x_small_1 {
  padding-right: 40px;
  padding-left: 40px;
}
@media all and (max-width: 1023px) {
  .px_x_small_1 {
    padding-right: 30px;
    padding-left: 30px;
  }
}
@media all and (max-width: 767px) {
  .px_x_small_1 {
    padding-right: 20px;
    padding-left: 20px;
  }
}

.pb_tiny {
  padding-bottom: 24px;
}

.my_tiny {
  margin-bottom: 32px;
  margin-top: 32px;
}

.mb_0 {
  margin-bottom: 0 !important;
}

.fw_bold {
  font-weight: 700;
}
.italic {
  font-style: italic;
}

.has_primary_bg {
  background-color: #00704a;
  color: #fff;
  border: 2px solid #00704a;
}
.has_primary_bg a {
  color: inherit;
}

.has_light_gray_bg {
  background-color: #f8f8f8;
}

.has_transparent_bg {
  background-color: rgba(255, 255, 255, 0.1019607843);
}

.btn_light {
  display: inline-block;
  float: right;
}

.row {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

@media all and (max-width: 1023px) {
  .row_top_of_page {
    flex-direction: column;
  }
}
.row_top_of_page > div:first-child {
  max-width: 52%;
  padding-right: 30px;
}
@media all and (max-width: 1495px) {
  .row_top_of_page > div:first-child br {
    display: none;
  }
}
@media all and (max-width: 1023px) {
  .row_top_of_page > div:first-child {
    max-width: 70%;
    padding-right: 0;
    margin-bottom: 24px;
  }
}
@media all and (max-width: 767px) {
  .row_top_of_page > div:first-child {
    margin-bottom: 30px;
    max-width: 350px;
  }
}
@media all and (max-width: 360px) {
  .row_top_of_page > div:first-child {
    max-width: 100%;
  }
}
.row_top_of_page > div:last-child {
  width: 42.5%;
}
@media all and (max-width: 1023px) {
  .row_top_of_page > div:last-child {
    width: 75%;
  }
}
@media all and (max-width: 767px) {
  .row_top_of_page > div:last-child {
    width: 100%;
  }
}
.row_top_of_page > div:last-child p {
  font-size: 18px;
  line-height: 1.66;
}
@media all and (max-width: 1023px) {
  .row_top_of_page > div:last-child p {
    font-size: 16px;
    line-height: 1.5;
  }
}

@media all and (max-width: 1023px) {
  .row_2_col_type_1 {
    gap: 30px;
  }
}
@media all and (max-width: 767px) {
  .row_2_col_type_1 {
    flex-direction: column;
    gap: 12px;
  }
}
.row_2_col_type_1 > div:first-child {
  width: 39%;
}
.row_2_col_type_1 > div:last-child {
  width: 48%;
}
@media all and (max-width: 1023px) {
  .row_2_col_type_1 > div:first-child {
    width: unset;
    flex: 1;
  }
  .row_2_col_type_1 > div:last-child {
    width: unset;
    flex: 1;
  }
}
@media all and (max-width: 767px) {
  .row_2_col_type_1 > div:first-child {
    width: 100%;
  }
  .row_2_col_type_1 > div:last-child {
    width: 100%;
  }
}

@media all and (max-width: 767px) {
  .row_2_col_type_2 {
    flex-direction: column;
    gap: 80px;
  }
}
.row_2_col_type_2 > div:first-child {
  width: 23%;
}
@media all and (max-width: 767px) {
  .row_2_col_type_2 > div:first-child {
    width: 40%;
  }
}
.row_2_col_type_2 > div:last-child {
  width: 49%;
}
@media all and (max-width: 1023px) {
  .row_2_col_type_2 > div:last-child {
    width: 62%;
  }
}
@media all and (max-width: 767px) {
  .row_2_col_type_2 > div:last-child {
    width: 100%;
  }
}

.row_2_col_type_3 {
  gap: 126px;
}
@media all and (max-width: 1023px) {
  .row_2_col_type_3 {
    gap: 20px;
  }
}
@media all and (max-width: 767px) {
  .row_2_col_type_3 {
    flex-direction: column;
  }
}
.row_2_col_type_3 > div {
  flex: 1;
}

@media all and (max-width: 1023px) {
  .row_2_col_left_img_right_text {
    align-items: center;
    gap: 25px;
  }
}
@media all and (max-width: 767px) {
  .row_2_col_left_img_right_text {
    flex-direction: column;
    align-items: normal;
    gap: 50px;
  }
}
.row_2_col_left_img_right_text > div:first-child {
  width: 42.5%;
}
@media all and (max-width: 767px) {
  .row_2_col_left_img_right_text > div:first-child {
    width: 100%;
  }
}
.row_2_col_left_img_right_text > div:last-child {
  width: 45%;
}
@media all and (max-width: 1023px) {
  .row_2_col_left_img_right_text > div:last-child {
    padding-top: 0;
  }
}
@media all and (max-width: 767px) {
  .row_2_col_left_img_right_text > div:last-child {
    width: 100%;
  }
}
@media all and (max-width: 1023px) {
  .row_2_col_left_img_right_text > div {
    width: unset;
    flex: 1;
  }
}

@media all and (max-width: 1279px) {
  .row_2_col_right_img_left_text {
    gap: 20px;
  }
}
@media all and (max-width: 767px) {
  .row_2_col_right_img_left_text {
    flex-direction: column;
    gap: 50px;
  }
}
.row_2_col_right_img_left_text > div:first-child {
  width: 42%;
}
@media all and (max-width: 1279px) {
  .row_2_col_right_img_left_text > div:first-child {
    width: unset;
    flex: 1;
  }
}
.row_2_col_right_img_left_text > div:first-child h2 {
  padding-top: 80px;
}
@media all and (max-width: 1023px) {
  .row_2_col_right_img_left_text > div:first-child h2 {
    padding-top: 30px;
  }
}
@media all and (max-width: 767px) {
  .row_2_col_right_img_left_text > div:first-child h2 {
    padding-top: 0;
  }
}
.row_2_col_right_img_left_text > div:last-child {
  width: 40%;
  gap: 20px;
}
@media all and (max-width: 1279px) {
  .row_2_col_right_img_left_text > div:last-child {
    width: unset;
    flex: 1;
    gap: 15px;
  }
}
@media all and (max-width: 1023px) {
  .row_2_col_right_img_left_text > div:last-child {
    flex-direction: row;
    gap: 6px;
  }
}

.row_2_col_img_text > div:first-child {
  width: 42%;
}
.row_2_col_img_text > div:last-child {
  width: 40%;
  gap: 20px;
}

@media all and (max-width: 1023px) {
  .row_2_col_equal {
    gap: 20px;
  }
}
@media all and (max-width: 767px) {
  .row_2_col_equal {
    flex-direction: column;
    gap: 30px;
  }
}
.row_2_col_equal > div {
  width: 46%;
}
@media all and (max-width: 1023px) {
  .row_2_col_equal > div {
    width: unset;
    flex: 1;
  }
}

@media all and (max-width: 767px) {
  .row_2_col_equal_type_1 {
    flex-direction: column;
    gap: 24px;
  }
}
.row_2_col_equal_type_1 > div {
  width: 47%;
}
@media all and (max-width: 767px) {
  .row_2_col_equal_type_1 > div {
    width: 100%;
  }
}

@media all and (max-width: 1023px) {
  .row_3_col {
    gap: 30px;
  }
}
@media all and (max-width: 767px) {
  .row_3_col {
    flex-direction: column;
    gap: 40px;
  }
}
.row_3_col > div {
  width: 28%;
}
@media all and (max-width: 1023px) {
  .row_3_col > div {
    width: unset;
    flex: 1;
  }
}
@media all and (max-width: 767px) {
  .row_3_col > div {
    width: 100%;
  }
}

@media all and (max-width: 1023px) {
  .row_4_col {
    flex-wrap: wrap;
    gap: 30px;
  }
}
@media all and (max-width: 767px) {
  .row_4_col {
    gap: 40px;
  }
}
.row_4_col > div {
  width: 23%;
}
@media all and (max-width: 1023px) {
  .row_4_col > div {
    width: 47.8%;
  }
}
@media all and (max-width: 767px) {
  .row_4_col > div {
    width: 100%;
  }
}

@media all and (max-width: 1023px) {
  .row_4_col_type_1 {
    gap: 50px;
  }
}
@media all and (max-width: 767px) {
  .row_4_col_type_1 {
    flex-direction: column;
    gap: 40px;
  }
}
.row_4_col_type_1 > div {
  width: 23%;
}
@media all and (max-width: 767px) {
  .row_4_col_type_1 > div {
    width: 100%;
  }
}

@media all and (max-width: 767px) {
  .column-reverse {
    flex-direction: column-reverse;
    gap: 50px;
  }
}

.grid_box {
  flex-wrap: wrap;
  row-gap: 65px;
}
@media all and (max-width: 767px) {
  .grid_box {
    gap: 40px 10px;
  }
}
.grid_box > div {
  flex: 0 1 45%;
  max-width: 300px;
}
@media all and (max-width: 1023px) {
  .grid_box > div {
    flex: 0 1 49%;
    max-width: 225px;
  }
}
@media all and (max-width: 767px) {
  .grid_box > div {
    flex: 0 1 48%;
    max-width: unset;
  }
}
.grid_box > div p {
  max-width: 280px;
}
@media all and (max-width: 1023px) {
  .grid_box > div p {
    max-width: 180px;
  }
}
@media all and (max-width: 1023px) {
  .grid_box > div .title_large {
    margin-bottom: 16px;
  }
}
@media all and (max-width: 1023px) {
  .grid_box > div:nth-child(3) p,
  .grid_box > div:nth-child(4) p {
    max-width: 220px;
  }
}

.content_type_1 {
  font-size: 24px;
  line-height: 1.33;
}
@media all and (max-width: 1023px) {
  .content_type_1 {
    font-size: 20px;
    line-height: 1.6;
  }
  .content_type_1 br {
    display: none;
  }
}
@media all and (max-width: 767px) {
  .content_type_1 {
    font-size: 18px;
    line-height: 1.44;
  }
}

.content_type_2 {
  font-size: 18px;
  line-height: 1.66;
}
@media all and (max-width: 1023px) {
  .content_type_2 {
    font-size: 16px;
    line-height: 1.5;
  }
}
@media all and (max-width: 767px) {
  .content_type_2 br {
    display: none;
  }
}

.content_type_3 {
  line-height: 1.2;
}

@media all and (max-width: 1023px) {
  .content_type_5 {
    line-height: 1.42;
  }
}

.content_type_4 {
  font-family: "Big Caslon";
  font-weight: 500;
  font-size: 24px;
  line-height: 1.41;
  margin-bottom: 16px;
}
@media all and (max-width: 1023px) {
  .content_type_4 {
    font-size: 20px;
    line-height: 1.2;
  }
}

.red_title {
  color: #8a2729;
  line-height: 1.2;
  font-weight: 700;
}
@media all and (max-width: 1023px) {
  .red_title {
    margin-bottom: 16px;
  }
}

.small_text {
  font-size: 14px;
  line-height: 1.2;
  color: #363636;
}
@media all and (max-width: 1023px) {
  .small_text {
    font-size: 12px;
  }
}

.title_large {
  font-size: 72px;
  line-height: 1.2;
  font-family: "Big Caslon";
  font-weight: 500;
}
@media all and (max-width: 1023px) {
  .title_large {
    font-size: 64px;
  }
}
@media all and (max-width: 767px) {
  .title_large {
    font-size: 48px;
  }
}

.title_type_3 {
  font-size: 32px;
}
@media all and (max-width: 1023px) {
  .title_type_3 {
    font-size: 28px;
  }
}
@media all and (max-width: 767px) {
  .title_type_3 {
    font-size: 24px;
    line-height: 1.41;
  }
}

.content_box_type_1 {
  margin-bottom: 12px !important;
}
@media all and (max-width: 1023px) {
  .content_box_type_1 {
    line-height: 1.42;
  }
}

.width_90 {
  width: 90%;
}

.width_half {
  max-width: 645px;
}

.float_right {
  float: right;
}
@media all and (max-width: 767px) {
  .float_right {
    float: unset;
  }
}

.title_box {
  font-family: Lato;
  font-size: 30px;
  font-weight: 700;
  line-height: 1.2;
  display: flex;
  justify-content: space-between;
  cursor: pointer;
}
@media all and (max-width: 1023px) {
  .title_box {
    font-size: 20px;
    gap: 10px;
  }
}
@media all and (max-width: 767px) {
  .title_box {
    font-size: 18px;
  }
}
.title_box:hover .icon {
  background-color: #000;
}
.title_box:hover .arrow_right_dark {
  background-image: url(../assets/images/arrow-right-light.svg);
}
.title_box .title_box.active .icon {
  background-color: #000;
  background-image: url(../assets/images/arrow-right-light.svg);
}

.dark_box_wrapper {
  display: flex;
  flex-direction: row;
  align-items: stretch;
}
@media all and (max-width: 1279px) {
  .dark_box_wrapper {
    flex-wrap: wrap;
  }
}
@media all and (max-width: 767px) {
  .dark_box_wrapper {
    flex-direction: column;
    gap: 40px;
  }
}
.dark_box_wrapper .dark_box {
  position: relative;
  flex: 0 1 25%;
  min-height: 602px;
  height: inherit;
  overflow: hidden;
}
@media all and (max-width: 1279px) {
  .dark_box_wrapper .dark_box {
    flex: 0 1 50%;
    min-height: 490px;
  }
  .dark_box_wrapper .dark_box p {
    line-height: 1.42;
  }
}
@media all and (max-width: 767px) {
  .dark_box_wrapper .dark_box {
    flex: 1;
    min-height: 524px;
  }
  .dark_box_wrapper .dark_box p {
    line-height: 1.42;
  }
}
.dark_box_wrapper .dark_box .front {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  height: inherit;
  display: flex;
  align-items: center;
  opacity: 1;
  transition: opacity 0.2s ease-in-out;
  z-index: 3;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  cursor: pointer;
}
.dark_box_wrapper .dark_box .front:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #000;
  opacity: 0.7;
}
.dark_box_wrapper .dark_box .logo {
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  z-index: 1;
  height: 42px;
  max-width: 70%;
  margin: 0 auto;
}
@media all and (max-width: 1279px) {
  .dark_box_wrapper .dark_box .logo {
    height: 24px !important;
  }
}
.dark_box_wrapper .dark_box .white_layer {
  opacity: 0;
  top: 0;
  left: 0;
  background: rgba(255, 255, 255, 0.1);
  position: absolute;
  width: 100%;
  height: 100%;
  transition: opacity 0.1s ease-in-out;
  z-index: 2;
  pointer-events: none;
}
.dark_box_wrapper .dark_box .back {
  padding: 70px 25px 25px 25px;
  text-align: center;
  opacity: 0;
  transition: opacity 0.2s ease-in-out;
  z-index: 4;
  pointer-events: auto;
}
@media all and (max-width: 1279px) {
  .dark_box_wrapper .dark_box .back {
    padding: 86px 70px 20px 70px;
  }
}
@media all and (max-width: 767px) {
  .dark_box_wrapper .dark_box .back {
    padding: 60px 30px 20px 30px;
  }
}
.dark_box_wrapper .dark_box .back .logo {
  margin-bottom: 40px;
}
@media all and (max-width: 1279px) {
  .dark_box_wrapper .dark_box .back .logo {
    margin-bottom: 30px;
  }
}
.dark_box_wrapper .dark_box .back a {
  margin-top: 30px;
  font-weight: 700;
  position: relative;
  z-index: 5;
  display: inline-block;
  width: fit-content;
}
.dark_box_wrapper .dark_box .back a:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  transition: width 0.3s ease-in-out;
  background-color: #fff;
}
.dark_box_wrapper .dark_box .back a:hover:before {
  width: 100%;
}

.dark_box:hover .front {
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}

.dark_box:hover .back {
  opacity: 1;
  transition: opacity 0.3s ease-in-out 0.1s;
}

.dark_box:hover .white_layer {
  opacity: 1;
  transition: opacity 0.3s ease-in-out;
}

.dark_box:not(:hover) .back {
  opacity: 0;
  transition: opacity 0.2s ease-in-out;
}

.dark_box:not(:hover) .white_layer {
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}

.dark_box_1 .front {
  background-image: url(../assets/images/ret-CarbonQuest.jpg);
}

.dark_box_2 .front {
  background-image: url(../assets/images/ret-Qube1a.jpg);
}

.dark_box_3 .front {
  background-image: url(../assets/images/portfolio-3.webp);
}
@media all and (max-width: 1279px) {
  .dark_box_3 .logo {
    height: 35px !important;
  }
}

.dark_box_4 .front {
  background-image:
    linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(0,0,0,0) 48%, rgba(0,0,0,0.15) 50%, rgba(0,0,0,0) 52%, rgba(0,0,0,0) 100%),
    url(../assets/images/harness.webp),
    url(../assets/images/panels2.webp) !important;
  background-position: center, top center, bottom center !important;
  background-size: 100% 100%, 150% 50%, 150% 50% !important;
  background-repeat: no-repeat !important;
  flex-direction: column;
  justify-content: center;
  background-color: #004d35;
}

.dark_box_4 .front span,
.dark_box_4 .back span {
  z-index: 5;
  position: relative;
  font-size: 24px;
}
.dark_box_4 .logo[style*="company-4"] {
    height: 23px !important;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    margin-bottom: 8px !important;
  }
  .dark_box_4 .logo[style*="sesame-logo"] {
    height: 45px !important;
  }
@media all and (max-width: 1279px) {
  .dark_box_4 .logo[style*="company-4"] {
    height: 18px !important;
  }
  .dark_box_4 .logo[style*="sesame-logo"] {
    height: 45px !important;
  }
}

.accordion .item {
  border-bottom: 1px solid #8994a8;
}
.accordion .title_box {
  cursor: pointer;
}
@media all and (max-width: 767px) {
  .accordion .title_box .icon {
    width: 24px;
    height: 24px;
    background-size: 12px 12px;
  }
}
.accordion .content {
  display: none;
  margin-top: 20px;
}

.light_accordion .title_box:hover .icon {
  background-color: #000;
}
.light_accordion .title_box:hover .arrow_bottom_dark {
  background-image: url(../assets/images/arrow-bottom-light.svg);
}
.light_accordion .title_box.active .icon {
  background-color: #000;
  background-image: url(../assets/images/arrow-up-light.svg);
}

.team_accordion .member_wrapper {
  gap: 60px 32px;
  justify-content: stretch;
  flex-wrap: wrap;
}
@media all and (max-width: 767px) {
  .team_accordion .member_wrapper {
    gap: 40px 20px;
  }
}
.team_accordion .member_wrapper .member {
  max-width: 23%;
}
@media all and (max-width: 1023px) {
  .team_accordion .member_wrapper .member {
    max-width: 24%;
  }
}
@media all and (max-width: 767px) {
  .team_accordion .member_wrapper .member {
    max-width: 52%;
  }
}

.team_accordion .member_wrapper .member.clickable-member {
  cursor: pointer;
  transition: all 0.4s ease;
  border-radius: 8px;
  padding: 12px;
  margin: -12px;
}

.team_accordion .member_wrapper .member.clickable-member:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  background-color: #fff;
  border-radius: 8px;
}

.team_accordion .member_wrapper .member.clickable-member:hover figure img {
  transform: scale(1.02);
  transition: transform 0.4s ease;
}

.team_accordion .member_wrapper .member.clickable-member:hover .name {
  color: #00704a;
  transition: color 0.4s ease;
}
.team_accordion .member_wrapper .member figure {
  margin-bottom: 24px;
  width: 100%;
  aspect-ratio: 482 / 586;
  overflow: hidden;
  background-color: #ffffff;
}
@media all and (max-width: 1023px) {
  .team_accordion .member_wrapper .member figure {
    margin-bottom: 20px;
  }
}
.team_accordion .member_wrapper .member figure img {
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: center;
}
.team_accordion .member_wrapper .member .name {
  font-size: 18px;
  line-height: 1.2;
  margin-bottom: 12px;
}
@media all and (max-width: 1023px) {
  .team_accordion .member_wrapper .member .name {
    font-size: 16px;
  }
}
.team_accordion .member_wrapper .member .job_title {
  font-size: 16px;
  line-height: 1.5;
  color: #363636;
}
@media all and (max-width: 767px) {
  .team_accordion .member_wrapper .member .job_title {
    font-size: 14px;
    line-height: 1.2;
  }
}
.team_accordion .member_wrapper .member p:last-child {
  margin-bottom: 0;
}

.location_accordion .content {
  width: 60%;
}
@media all and (max-width: 1495px) {
  .location_accordion .content {
    width: 80%;
  }
}
@media all and (max-width: 767px) {
  .location_accordion .content {
    width: 95%;
  }
}

.accordion_filled_box .item {
  border-bottom: 0;
}
.accordion_filled_box .item:not(:last-child) {
  margin-bottom: 20px;
}
@media all and (max-width: 1023px) {
  .accordion_filled_box .item:not(:last-child) {
    margin-bottom: 12px;
  }
}
@media all and (max-width: 767px) {
  .accordion_filled_box .item:not(:last-child) {
    margin-bottom: 2px;
  }
}
.accordion_filled_box .title_box:hover .icon {
  background-color: #fff;
}
.accordion_filled_box .title_box:hover .arrow_bottom_light {
  background-image: url(../assets/images/arrow-bottom-dark.svg);
}
.accordion_filled_box .title_box.active .icon {
  background-color: #fff;
  background-image: url(../assets/images/arrow-up-dark.svg);
}
.accordion_filled_box .content {
  display: none;
  margin-top: 20px;
}
.accordion_filled_box .content a {
  display: block;
}

@media all and (max-width: 1023px) {
  .accordion_small_space .item {
    padding-top: 24px;
    padding-bottom: 24px;
  }
}
.accordion_small_space .item:not(:last-child) {
  margin-bottom: 4px;
}
@media all and (max-width: 767px) {
  .accordion_small_space .item:not(:last-child) {
    margin-bottom: 2px;
  }
}
.accordion_small_space .content {
  width: 80%;
}
@media all and (max-width: 767px) {
  .accordion_small_space .content {
    width: 90%;
  }
}
.accordion_small_space .content p {
  font-size: 18px;
  line-height: 1.66;
}
@media all and (max-width: 1023px) {
  .accordion_small_space .content p {
    font-size: 16px;
    line-height: 1.5;
  }
}
@media all and (max-width: 767px) {
  .accordion_small_space .content p {
    font-size: 14px;
    line-height: 1.2;
  }
}

.icon_after_text {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}
.icon_after_text:after {
  content: "";
  display: block;
  width: 45px;
  height: 45px;
  opacity: 1;
  transition: opacity 0.2s ease-in-out;
  background-size: 100%;
}
@media all and (max-width: 1023px) {
  .icon_after_text:after {
    width: 38px;
    height: 38px;
  }
}
@media all and (max-width: 767px) {
  .icon_after_text:after {
    width: 32px;
    height: 32px;
  }
}
.icon_after_text:hover:after {
  opacity: 0.7;
}

.link_box_wrapper .accordion {
  margin-bottom: 20px;
}
.link_box_wrapper .accordion:last-child {
  margin-bottom: 0;
}
@media all and (max-width: 1023px) {
  .link_box_wrapper .accordion {
    margin-bottom: 12px;
  }
}
@media all and (max-width: 767px) {
  .link_box_wrapper .accordion {
    margin-bottom: 2px;
  }
}
.link_box_wrapper .accordion .item {
  border-bottom: 0;
}
.link_box_wrapper .accordion .item a {
  color: #363636;
  display: block;
  line-height: 1.44;
  font-size: 18px;
}
@media all and (max-width: 767px) {
  .link_box_wrapper .accordion .item a {
    font-size: 16px;
    line-height: 1.2;
  }
}
.link_box_wrapper .accordion .item a:not(:last-child) {
  margin-bottom: 16px;
}
@media all and (max-width: 767px) {
  .link_box_wrapper .accordion .item a:not(:last-child) {
    margin-bottom: 14px;
  }
}

.link_box {
  margin-bottom: 20px;
}
@media all and (max-width: 767px) {
  .link_box .title_box .icon {
    width: 24px;
    height: 24px;
    background-size: 12px 12px;
  }
}
@media all and (max-width: 1023px) {
  .link_box {
    margin-bottom: 12px;
  }
}
@media all and (max-width: 767px) {
  .link_box {
    margin-bottom: 2px;
  }
}

.list_type_1 li {
  padding-bottom: 12px;
  padding-top: 12px;
  border-bottom: 1px solid #8994a8;
}
@media all and (max-width: 1023px) {
  .list_type_1 li {
    line-height: 1.2;
  }
}

/*.post {
	@include bp(max767) {margin-right: 20px; margin-left: 20px;}
}*/
.post h2 {
  font-size: 24px;
  line-height: 1.44;
}
@media all and (max-width: 1023px) {
  .post h2 {
    font-size: 20px;
    line-height: 1.2;
  }
}

.post p {
  line-height: 1.42;
}
@media all and (max-width: 1023px) {
  .post p {
    line-height: 1.5;
  }
}

.post_content > div {
  width: 65%;
}
@media all and (max-width: 767px) {
  .post_content > div {
    width: 100%;
  }
}
@media all and (max-width: 1023px) {
  .post_content p {
    line-height: 1.42;
  }
}

.posts_wrapper {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 60px 16px;
}
@media all and (max-width: 1023px) {
  .posts_wrapper {
    gap: 50px 20px;
  }
}
@media all and (max-width: 767px) {
  .posts_wrapper {
    padding-left: 20px;
    padding-right: 20px;
  }
}

.selected_posts_wrapper h2 {
  margin-bottom: 40px;
}
@media all and (max-width: 767px) {
  .selected_posts_wrapper {
    padding-top: 80px;
    padding-bottom: 80px;
  }
  .selected_posts_wrapper h2 {
    font-size: 32px;
  }
}
.selected_posts_wrapper .posts_wrapper {
  gap: 16px;
}
@media all and (max-width: 767px) {
  .selected_posts_wrapper .posts_wrapper {
    flex-direction: column;
    padding-right: 0;
    padding-left: 0;
    gap: 40px;
  }
}
.selected_posts_wrapper .posts_wrapper .post_card {
  flex: 1;
}
.selected_posts_wrapper .posts_wrapper .post_title {
  line-height: 1.2;
  margin-bottom: 32px;
}
@media all and (max-width: 767px) {
  .selected_posts_wrapper .posts_wrapper .post_title {
    margin-bottom: 16px;
  }
}

.post_card {
  flex: 0 1 23.9%;
  display: flex;
  flex-direction: column;
}
@media all and (max-width: 1279px) {
  .post_card {
    flex: 0 1 32%;
  }
}
@media all and (max-width: 1023px) {
  .post_card {
    flex: 1 1 48%;
  }
}
@media all and (max-width: 767px) {
  .post_card {
    flex: 1 1 100%;
  }
}
.post_card .post_featured_img {
  margin-bottom: 24px;
}
.post_card .post_title {
  font-size: 18px;
  margin-bottom: 12px;
  width: 70%;
}
@media all and (max-width: 1679px) {
  .post_card .post_title {
    width: 80%;
  }
}
@media all and (max-width: 1365px) {
  .post_card .post_title {
    width: 85%;
  }
}
@media all and (max-width: 1023px) {
  .post_card .post_title {
    font-size: 16px;
    width: 93%;
  }
}
.post_card .post_date {
  font-size: 14px;
  display: block;
  margin-bottom: 8px;
  line-height: 1.2;
}
@media all and (max-width: 1023px) {
  .post_card .post_date {
    font-size: 12px;
  }
}
.post_card .post_link {
  font-size: 18px;
  font-weight: 700;
  margin-top: auto;
  line-height: 45px;
}
@media all and (max-width: 1023px) {
  .post_card .post_link {
    font-size: 16px;
    line-height: 27px;
  }
}
@media all and (max-width: 767px) {
  .post_card .post_link {
    font-size: 14px;
    line-height: 35px;
  }
}

.post_meta_bottom {
  display: block;
  margin-top: 32px;
}
@media all and (max-width: 1023px) {
  .post_meta_bottom {
    margin-top: 24px;
  }
}
@media all and (max-width: 767px) {
  .post_meta_bottom {
    margin-top: 20px;
  }
}
.post_meta_bottom .published_date span:first-child {
  font-size: 14px;
}
@media all and (max-width: 1023px) {
  .post_meta_bottom .published_date span:first-child {
    font-size: 12px;
  }
}
.post_meta_bottom .published_date span:last-child {
  font-size: 18px;
  line-height: 1.44;
  font-weight: 700;
  margin-top: 12px;
}
@media all and (max-width: 1023px) {
  .post_meta_bottom .published_date span:last-child {
    font-size: 16px;
    line-height: 1.62;
  }
}
@media all and (max-width: 1023px) {
  .post_meta_bottom .published_date span:last-child {
    margin-top: 8px;
  }
}
.post_meta_bottom .published_date > span {
  display: block;
}

/*.section_top_of_post {
	@include bp(max767) {
		padding-top: 80px;
		padding-bottom: 80px;
	}
}*/
.row_top_of_post {
  width: 60%;
  margin-bottom: 64px;
}
@media all and (max-width: 1279px) {
  .row_top_of_post {
    width: 70%;
    margin-bottom: 50px;
  }
}
@media all and (max-width: 767px) {
  .row_top_of_post {
    width: 100%;
  }
}
.row_top_of_post .post_title {
  font-size: 32px;
  margin-bottom: 24px;
}
@media all and (max-width: 1023px) {
  .row_top_of_post .post_title {
    font-size: 28px;
  }
}
@media all and (max-width: 767px) {
  .row_top_of_post .post_title {
    font-size: 24px;
    line-height: 1.41;
  }
}

.link_icon {
  background-image: url(../assets/images/link.svg);
  background-repeat: no-repeat;
  background-position: center;
  display: inline-block;
  width: 16px;
  height: 16px;
  margin-right: 6px;
}

.image_link_wrapper {
  margin-top: 16px;
  font-size: 14px;
  line-height: 1.2;
  color: #363636;
}
.image_link_wrapper a {
  color: #363636;
}

.slider_container {
  position: relative;
}
.slider_container .slide_wrapper {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  color: #fff;
}
@media all and (max-width: 1023px) {
  .slider_container .slide_wrapper {
    max-height: 700px;
  }
}
@media all and (max-width: 767px) {
  .slider_container .slide_wrapper {
    max-height: 776px;
  }
}
.slider_container .slide_wrapper .slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  z-index: 0;
}
.slider_container .slide_wrapper .slide.active {
  opacity: 1;
  z-index: 1;
}
.slider_container .slide_wrapper:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.8) 0%,
    rgba(0, 0, 0, 0.2) 40.5%,
    rgba(0, 0, 0, 0.93) 85.5%,
    #000000 100%
  );
  pointer-events: none;
  z-index: 11;
}
.slider_container .slide_category_wrapper > div {
  width: 100%;
  z-index: 111;
  position: absolute;
  bottom: 35px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 16px;
}
@media all and (max-width: 1023px) {
  .slider_container .slide_category_wrapper > div {
    bottom: 30px;
  }
}
@media all and (max-width: 767px) {
  .slider_container .slide_category_wrapper > div {
    gap: 10px;
  }
}
.slider_container .slide_category_wrapper > div .item {
  width: 33%;
  cursor: pointer;
}
.slider_container .slide_category_wrapper > div .item a {
  font-size: 14px;
  line-height: 2.14;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.5019607843);
  font-weight: 700;
}
.slider_container .slide_category_wrapper > div .item a:hover {
  color: #fff;
}
@media all and (max-width: 1023px) {
  .slider_container .slide_category_wrapper > div .item a {
    font-size: 12px;
    line-height: 2;
    letter-spacing: 1px;
  }
}
@media all and (max-width: 767px) {
  .slider_container .slide_category_wrapper > div .item a {
    font-size: 10px;
    line-height: 1.2;
  }
}
.slider_container .slide_category_wrapper > div .item .border_nav {
  position: relative;
  display: block;
  margin-bottom: 15px;
  overflow: hidden;
  background-color: #9c9999;
  height: 3px;
  border-radius: 6px;
  transition: background-color 0.3s ease-in-out;
}
.slider_container .slide_category_wrapper > div .item .border_nav:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  transform: translateX(-100%);
  transition: transform 4s ease-in-out;
  z-index: 0;
}
.slider_container
  .slide_category_wrapper
  > div
  .item
  .border_nav.active:before {
  background-color: #fff;
  transform: translateX(0);
}
.slider_container .slide_category_wrapper > div .item.active a {
  color: #fff;
}
.slider_container .slide_overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 111;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 95%;
  color: #fff;
}
@media all and (max-width: 1023px) {
  .slider_container .slide_overlay {
    width: 100%;
    padding-right: 32px;
    padding-left: 32px;
  }
}
@media all and (max-width: 767px) {
  .slider_container .slide_overlay {
    padding-right: 20px;
    padding-left: 20px;
  }
}
.slider_container .slide_overlay .description {
  width: 33%;
  font-size: 20px;
  text-align: center;
}
@media all and (max-width: 1495px) {
  .slider_container .slide_overlay .description {
    width: 45%;
  }
}
@media all and (max-width: 1023px) {
  .slider_container .slide_overlay .description {
    font-size: 18px;
    line-height: 1.66;
    width: 55%;
  }
}
@media all and (max-width: 767px) {
  .slider_container .slide_overlay .description {
    line-height: 1.33;
    width: 100%;
  }
}
.slider_container .slide_overlay .title {
  text-align: center;
}
@media all and (max-width: 767px) {
  .slider_container .slide_overlay .title {
    margin-bottom: 20px;
  }
}

@media (min-width: 1920px) {
  .slide_category_wrapper > div {
    max-width: 1305px;
    margin: 0 auto;
    padding-right: 0;
    padding-left: 0;
  }
}
.background_video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  opacity: 0.7;
  transition: opacity 1s ease-in-out;
}

.slide.active .background_video {
  opacity: 1;
}

.small_divider {
  display: inline-block;
  width: 64px;
  border-top: 2px solid #fff;
}
@media all and (max-width: 1023px) {
  .small_divider {
    margin-top: 30px;
    margin-bottom: 30px;
    width: 42px;
  }
}
@media all and (max-width: 767px) {
  .small_divider {
    display: none;
  }
}

.tabs div.tab_nav {
  display: flex;
  margin-bottom: 100px;
  cursor: pointer;
  gap: 80px;
  height: 42px;
}
@media all and (max-width: 1023px) {
  .tabs div.tab_nav {
    gap: 50px;
    margin-bottom: 70px;
  }
}
@media all and (max-width: 767px) {
  .tabs div.tab_nav {
    display: none;
  }
}
.tabs div.tab_nav .tab {
  font-size: 20px;
  padding-top: 6px;
  position: relative;
}
@media all and (max-width: 1023px) {
  .tabs div.tab_nav .tab {
    font-size: 18px;
    line-height: 1.66;
  }
}
.tabs div.tab_nav .tab:after {
  content: "";
  display: block;
  height: 1px;
  width: 0%;
  position: absolute;
  bottom: -6px;
  left: 0;
  background-color: #8994a8;
  transition: width 0.3s ease-in-out;
}
.tabs div.tab_nav .tab:hover {
  color: #8a2729;
}
.tabs div.tab_nav .tab:hover:after {
  width: 100%;
  background-color: #8994a8;
}
.tabs div.tab_nav .tab.active {
  cursor: auto;
}
.tabs div.tab_nav .tab.active:after {
  width: 100%;
  background-color: #8994a8;
}
.tabs select.tab_nav {
  display: none;
}
@media all and (max-width: 767px) {
  .tabs select.tab_nav {
    display: block;
    margin-bottom: 20px;
    background-color: #000;
    color: #fff;
    padding: 16px;
    width: 100%;
    font-size: 16px;
    line-height: 1.5;
    -webkit-appearance: none;
    appearance: none;
    background-image: url("../assets/images/select-chevron.svg");
    background-position: 97%;
    background-repeat: no-repeat;
    border: 0;
    outline: 0;
  }
}
.tabs .tab_content_wrapper {
  position: relative;
}
.tabs .tab_content_wrapper .tab_content_title {
  margin-bottom: 24px;
  line-height: 1.2;
}
.tabs .tab_content_wrapper .tab_content {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  opacity: 0;
  z-index: 0;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  transition: opacity 0.3s ease-in-out, z-index 0s step-end 0.3s;
}
@media all and (max-width: 1023px) {
  .tabs .tab_content_wrapper .tab_content {
    gap: 20px;
  }
}
@media all and (max-width: 767px) {
  .tabs .tab_content_wrapper .tab_content {
    flex-direction: column;
    gap: 50px;
    opacity: 1;
    z-index: 1;
    position: relative;
    margin-bottom: 50px;
  }
  .tabs .tab_content_wrapper .tab_content:last-child {
    margin-bottom: 0;
  }
}
.tabs .tab_content_wrapper .tab_content > div:first-child {
  width: 42%;
}
@media all and (max-width: 1023px) {
  .tabs .tab_content_wrapper .tab_content > div:first-child {
    flex: 1;
  }
}
@media all and (max-width: 767px) {
  .tabs .tab_content_wrapper .tab_content > div:first-child {
    width: 100%;
  }
}
.tabs .tab_content_wrapper .tab_content > div:last-child {
  width: 49.2%;
}
.tabs .tab_content_wrapper .tab_content > div:last-child img {
  height: 494px;
}
@media all and (max-width: 767px) {
  .tabs .tab_content_wrapper .tab_content > div:last-child img {
    height: 500px;
  }
}
@media all and (max-width: 360px) {
  .tabs .tab_content_wrapper .tab_content > div:last-child img {
    object-position: 60%;
  }
}
@media all and (max-width: 1023px) {
  .tabs .tab_content_wrapper .tab_content > div:last-child {
    flex: 1;
  }
}
@media all and (max-width: 767px) {
  .tabs .tab_content_wrapper .tab_content > div:last-child {
    width: 100%;
    height: 500px;
  }
}
.tabs .tab_content_wrapper .tab_content h3 br {
  display: none;
}
@media all and (max-width: 480px) {
  .tabs .tab_content_wrapper .tab_content h3 br {
    display: block;
  }
}
.tabs .tab_content_wrapper .tab_content p {
  margin-bottom: 24px;
}
.tabs .tab_content_wrapper .tab_content ul li {
  font-size: 18px;
  margin-bottom: 40px;
}
@media all and (max-width: 1023px) {
  .tabs .tab_content_wrapper .tab_content ul li {
    margin-bottom: 29px;
  }
}
.tabs .tab_content_wrapper .tab_content ul li .title {
  color: #69b09a;
  font-weight: 700;
  line-height: 1.2;
}
.tabs .tab_content_wrapper .tab_content ul li .description {
  line-height: 1.5;
}
@media all and (max-width: 1023px) {
  .tabs .tab_content_wrapper .tab_content ul li .description {
    font-size: 16px;
    line-height: 1.2;
  }
}
.tabs .tab_content_wrapper .tab_content ul li:last-child {
  margin-bottom: 0;
}
.tabs .tab_content_wrapper .tab_content:nth-child(3) img {
  object-position: 100% !important;
}
@media all and (max-width: 1365px) {
  .tabs .tab_content_wrapper .tab_content:nth-child(3) img {
    object-position: 85% !important;
  }
}
.tabs .tab_content_wrapper .tab_content.active {
  opacity: 1;
  z-index: 1;
  position: relative;
  transition: opacity 0.5s ease-in-out, z-index 0s step-start 0.5s;
}
.tabs .tab_title {
  display: none;
}
@media all and (max-width: 767px) {
  .tabs .tab_title {
    display: block;
    background-color: #000;
    color: #fff;
    border-radius: 3px;
    padding: 10px;
    margin-bottom: 25px;
  }
}

.section_title {
  display: inline-block;
  line-height: 1.2;
  margin-bottom: 70px;
  text-transform: uppercase;
}
@media all and (max-width: 1023px) {
  .section_title {
    font-size: 14px;
    margin-bottom: 60px;
  }
}
@media all and (max-width: 767px) {
  .section_title {
    font-size: 10px;
    margin-bottom: 48px;
  }
}

.h_line {
  display: inline-block;
  width: 60px;
  border-top: 1px solid #000;
  margin-left: 20px;
}

.h_line_light {
  border-color: #fff;
}

@keyframes bounce {
  0% {
    transform: translateY(-12px);
  }
  100% {
    transform: translateY(0px);
  }
}
.explore_more {
  display: inline-flex;
  align-items: center;
  font-weight: 700;
  font-size: 18px;
  gap: 28px;
  padding-top: 85px;
  /*	&:hover {
  		.text {animation: bounce 0.3s ease;}
  	}*/
}
@media all and (max-width: 1023px) {
  .explore_more {
    font-size: 16px;
    padding-top: 67px;
    gap: 24px;
  }
}
@media all and (max-width: 767px) {
  .explore_more {
    padding-top: 63px;
    gap: 20px;
  }
}

.explore_more.dark:hover .icon {
  background-color: #000;
}
.explore_more.dark:hover .arrow_right_dark {
  background-image: url(../assets/images/arrow-right-light.svg);
}

.explore_more.light:hover .icon {
  background-color: #fff;
}
.explore_more.light:hover .arrow_right_light {
  background-image: url(../assets/images/arrow-right-dark.svg);
}

.button {
  width: 100%;
  font-weight: 700;
  padding: 16px 24px;
  background: #8a2729;
  color: #fff;
  outline: none;
  border: 0;
  cursor: pointer;
  opacity: 1;
  transition: opacity 0.3s ease;
}
.button:hover {
  opacity: 0.85;
}

#send_message_form_overlay .content_wrapper {
  display: flex;
  flex-direction: row;
  gap: 126px;
}
@media all and (max-width: 1023px) {
  #send_message_form_overlay .content_wrapper {
    gap: 20px;
  }
}
@media all and (max-width: 767px) {
  #send_message_form_overlay .content_wrapper {
    flex-direction: column;
    gap: 50px;
  }
}
#send_message_form_overlay .content_wrapper form input[type="text"],
#send_message_form_overlay .content_wrapper form textarea,
#send_message_form_overlay .content_wrapper form input[type="email"],
#send_message_form_overlay .content_wrapper form input[type="tel"],
#send_message_form_overlay .content_wrapper form input:-webkit-autofill,
#send_message_form_overlay .content_wrapper form textarea:-webkit-autofill,
#send_message_form_overlay .content_wrapper form select:-webkit-autofill {
  background: #000;
  display: block;
  border: 1px solid rgba(248, 248, 248, 0.2);
  box-sizing: border-box;
  border-radius: 0;
  padding: 20px 24px;
  width: 100%;
  color: #fff;
}
#send_message_form_overlay .content_wrapper form label {
  display: block;
  margin-bottom: 16px;
}
#send_message_form_overlay .content_wrapper form .form_group {
  margin-bottom: 24px;
}
#send_message_form_overlay .content_wrapper form::placeholder {
  color: #363636;
  opacity: 1;
}
#send_message_form_overlay .content_wrapper form:-ms-input-placeholder {
  color: #363636;
}
#send_message_form_overlay .content_wrapper .form_title {
  font-family: "Big Caslon";
  font-weight: 500;
  font-size: 64px;
  line-height: 1.2;
  margin-bottom: 24px;
}
@media all and (max-width: 1023px) {
  #send_message_form_overlay .content_wrapper .form_title {
    font-size: 48px;
  }
}
@media all and (max-width: 767px) {
  #send_message_form_overlay .content_wrapper .form_title {
    font-size: 40px;
  }
}
#send_message_form_overlay .content_wrapper .form_description {
  font-size: 18px;
  line-height: 1.44;
}
@media all and (max-width: 1023px) {
  #send_message_form_overlay .content_wrapper .form_description {
    font-size: 16px;
    line-height: 1.5;
  }
}
#send_message_form_overlay .description_wrapper {
  width: 42%;
}
@media all and (max-width: 767px) {
  #send_message_form_overlay .description_wrapper {
    width: 100%;
  }
}
#send_message_form_overlay .form_wrapper {
  width: 48%;
}
@media all and (max-width: 767px) {
  #send_message_form_overlay .form_wrapper {
    width: 100%;
  }
}

.error {
  color: #8a2729;
  font-size: 12px;
  margin-top: 4px;
}

.dark_overlay {
  color: #fff;
  background-color: #000;
  padding-top: 80px;
  padding-bottom: 35px;
}
@media all and (max-width: 767px) {
  .dark_overlay {
    padding-top: 40px;
  }
}

#contact_form_result_overlay .text {
  display: flex;
  align-items: center;
  text-align: center;
  flex-direction: column;
  margin-top: 25%;
}
@media all and (max-width: 767px) {
  #contact_form_result_overlay .text {
    margin-top: 40%;
  }
}
#contact_form_result_overlay .text .title {
  font-family: "Big Caslon";
  font-weight: 500;
  font-size: 64px;
  line-height: 1.2;
  margin-bottom: 20px;
}
@media all and (max-width: 1023px) {
  #contact_form_result_overlay .text .title {
    font-size: 48px;
  }
}
@media all and (max-width: 767px) {
  #contact_form_result_overlay .text .title {
    font-size: 40px;
  }
}
#contact_form_result_overlay .text #contact_form_success_message {
  font-size: 18px;
  line-height: 1.44;
}
@media all and (max-width: 1023px) {
  #contact_form_result_overlay .text #contact_form_success_message {
    font-size: 16px;
    line-height: 1.5;
  }
}

#send_message_form_overlay,
#contact_form_result_overlay {
  position: fixed;
  bottom: 0;
  width: 100%;
  height: 100vh;
  opacity: 0;
  transform: translateY(100%);
  pointer-events: none;
  z-index: 9999;
  transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
  -ms-overflow-style: none;
  scrollbar-width: none;
  overflow-x: auto;
  user-select: none;
}

#send_message_form_overlay.show,
#contact_form_result_overlay.show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

#send_message_form_overlay::-webkit-scrollbar,
#contact_form_result_overlay::-webkit-scrollbar {
  display: none;
}

.close_btn {
  display: none;
  position: relative;
  align-items: center;
  justify-content: flex-end;
  cursor: pointer;
  font-size: 18px;
  opacity: 1;
  margin-right: 20px;
  margin-bottom: 20px;
}
@media all and (max-width: 767px) {
  .close_btn {
    display: flex;
    font-size: 16px;
    margin-bottom: 16px;
  }
}
.close_btn:after {
  content: "";
  position: absolute;
  left: calc(100% + 18px);
  opacity: 1;
  background-image: url(../assets/images/close.svg);
  background-repeat: no-repeat;
  background-size: 100%;
  width: 45px;
  height: 45px;
  transition: opacity 0.3s ease-in-out;
}
@media all and (max-width: 1023px) {
  .close_btn:after {
    left: calc(100% + 28px);
    width: 38px;
    height: 38px;
  }
}
@media all and (max-width: 767px) {
  .close_btn:after {
    left: calc(100% + 18px);
    width: 24px;
    height: 24px;
  }
}
.close_btn:hover:after {
  opacity: 0.8;
}
.close_btn:hover {
  opacity: 0.8;
}

/* Bio Modal Close Button Override */
.bio_modal_content .close_btn {
  display: flex;
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  color: #363636;
  transition: all 0.3s ease;
  z-index: 10;
  margin: 0;
  padding: 0;
}
@media all and (max-width: 1023px) {
  .bio_modal_content .close_btn {
    top: 15px;
    right: 15px;
    width: 36px;
    height: 36px;
  }
}
@media all and (max-width: 767px) {
  .bio_modal_content .close_btn {
    top: 15px;
    right: 15px;
    width: 32px;
    height: 32px;
  }
}

.bio_modal_content .close_btn:after {
  display: none;
}

.bio_modal_content .close_btn:hover {
  background-color: rgba(0, 0, 0, 0.05);
  color: #00704a;
  opacity: 1;
}

.bio_modal_content .close_btn svg {
  width: 24px;
  height: 24px;
}
@media all and (max-width: 767px) {
  .bio_modal_content .close_btn svg {
    width: 20px;
    height: 20px;
  }
}

.success,
#contact_form_message {
  margin-top: 5px;
  color: #00704a;
}

.map_wrapper {
  position: relative;
  margin-top: 120px;
  height: 660px;
}
@media all and (max-width: 1023px) {
  .map_wrapper {
    margin-top: 80px;
    height: 400px;
  }
}
@media all and (max-width: 767px) {
  .map_wrapper {
    margin-top: 50px;
    height: 500px;
  }
}
.map_wrapper > div {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  max-width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}
.map_wrapper > div.active {
  opacity: 1;
}

img {
  object-fit: cover;
}

.img_820 {
  height: 820px;
}
@media all and (max-width: 1023px) {
  .img_820 {
    height: 598px;
  }
}
@media all and (max-width: 767px) {
  .img_820 {
    height: 500px;
  }
}

.img_810 {
  height: 810px;
}
@media all and (max-width: 1023px) {
  .img_810 {
    height: 400px;
  }
}
@media all and (max-width: 767px) {
  .img_810 {
    height: 500px;
  }
}

.img_670 {
  height: 670px;
}
@media all and (max-width: 1023px) {
  .img_670 {
    height: 400px;
  }
}
@media all and (max-width: 767px) {
  .img_670 {
    height: 580px;
  }
}

.img_562 {
  height: 562px;
}
@media all and (max-width: 1023px) {
  .img_562 {
    height: 427px;
  }
}
@media all and (max-width: 767px) {
  .img_562 {
    height: unset;
  }
}
@media all and (max-width: 360px) {
  .img_562 {
    height: 321px;
  }
}

.img_705 {
  height: 705px;
}
@media all and (max-width: 1023px) {
  .img_705 {
    height: 598px;
  }
}
@media all and (max-width: 767px) {
  .img_705 {
    height: 500px;
  }
}

@media all and (max-width: 767px) {
  .pad_x_0 {
    padding-right: 0;
    padding-left: 0;
  }
}

.operated_img {
  object-position: left;
}
@media all and (max-width: 480px) {
  .operated_img {
    object-position: 10%;
  }
}

.non-operated_img {
  object-position: 100% 40%;
}
@media all and (max-width: 1023px) {
  .non-operated_img {
    object-position: 100%;
  }
}
@media all and (max-width: 767px) {
  .non-operated_img {
    object-position: 65%;
  }
}
@media all and (max-width: 360px) {
  .non-operated_img {
    object-position: 60%;
  }
}

.power_generation_page_img {
  object-position: 100% 70%;
}
@media all and (max-width: 480px) {
  .power_generation_page_img {
    object-position: 80%;
  }
}

.energy_transition_page_img {
  object-position: 100% 25%;
}
@media all and (max-width: 480px) {
  .energy_transition_page_img {
    object-position: 50%;
  }
}

@media all and (max-width: 480px) {
  .about_header_img {
    object-position: 60%;
  }
}

.about_mission_img {
  object-position: 100% 0;
}
@media all and (max-width: 1023px) {
  .about_mission_img {
    object-position: 60%;
  }
}

@media all and (max-width: 360px) {
  .contact_header_img {
    object-position: 52%;
  }
}

.corporate_responsibility_header_img {
  object-position: 100%;
}
@media all and (max-width: 767px) {
  .corporate_responsibility_header_img {
    object-position: right;
  }
}

.aside {
  position: sticky;
  top: 50px;
  align-self: flex-start;
}
@media all and (max-width: 767px) {
  .aside {
    align-self: unset;
  }
}

/* Team Bio Modal Styles */
#team_bio_overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.7);
  opacity: 0;
  pointer-events: none;
  z-index: 9999;
  transition: opacity 0.3s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
}

#team_bio_overlay.show {
  opacity: 1;
  pointer-events: auto;
}

.bio_modal_container {
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  max-width: 1400px;
  width: 100%;
  max-height: 85vh;
  overflow-y: auto;
  position: relative;
  transform: scale(0.9);
  transition: transform 0.3s ease-in-out;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

#team_bio_overlay.show .bio_modal_container {
  transform: scale(1);
}

.bio_modal_container::-webkit-scrollbar {
  display: none;
}

.bio_modal_content {
  position: relative;
  padding: 40px 50px;
  display: flex;
  flex-direction: column;
}
@media all and (max-width: 1023px) {
  .bio_modal_content {
    padding: 30px 40px;
  }
}
@media all and (max-width: 767px) {
  .bio_modal_content {
    padding: 25px 30px;
  }
}

/* Main Content Area */
.bio_main_content {
  display: flex;
  gap: 60px;
  margin-bottom: 30px;
  align-items: flex-start;
}
@media all and (max-width: 1023px) {
  .bio_main_content {
    gap: 40px;
    margin-bottom: 25px;
  }
}
@media all and (max-width: 767px) {
  .bio_main_content {
    flex-direction: column;
    gap: 30px;
    margin-bottom: 25px;
  }
}

.bio_content_left {
  flex: 2;
  min-width: 0;
}
@media all and (max-width: 767px) {
  .bio_content_left {
    flex: 1;
  }
}

.bio_title_area {
  margin-bottom: 20px;
}

.bio_name {
  font-size: 64px;
  line-height: 1.1;
  margin-bottom: 12px;
  color: #00704a;
  font-weight: normal;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}
@media all and (max-width: 1023px) {
  .bio_name {
    font-size: 48px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}
@media all and (max-width: 767px) {
  .bio_name {
    font-size: 36px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: clamp(24px, 8vw, 36px);
  }
}

.bio_title_header {
  font-size: 16px;
  line-height: 1.4;
  color: #8994a8;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 0;
  font-weight: normal;
}
@media all and (max-width: 1023px) {
  .bio_title_header {
    font-size: 15px;
  }
}
@media all and (max-width: 767px) {
  .bio_title_header {
    font-size: 14px;
  }
}

.bio_content_right {
  flex: 1;
  flex-shrink: 0;
}
@media all and (max-width: 724px) {
  .bio_content_right.desktop_image {
    display: none;
  }

  .bio_content_right.mobile_image {
    width: 100%;
    max-width: 280px;
    margin: 0 auto 20px auto;
    display: block;
  }
}

@media all and (min-width: 768px) {
  .bio_content_right.mobile_image {
    display: none;
  }

  .bio_content_right.desktop_image {
    display: block;
  }
}

.bio_description p {
  font-size: 16px;
  line-height: 1.6;
  color: #363636;
  margin-bottom: 20px;
  /* text-wrap: balance; */
  /* hyphens: auto;
  word-wrap: break-word;
  overflow-wrap: break-word; */
}
@media all and (max-width: 1023px) {
  .bio_description p {
    font-size: 15px;
    margin-bottom: 18px;
  }
}
@media all and (max-width: 767px) {
  .bio_description p {
    font-size: 14px;
    margin-bottom: 16px;
    text-align: left;
  }
}

.bio_accomplishments {
  margin-top: 10px;
}

.bio_accomplishments ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.bio_accomplishments ul li {
  font-size: 16px;
  line-height: 1.6;
  color: #363636;
  margin-bottom: 12px;
  padding-left: 40px;
  position: relative;
  text-align: left;
  /* text-wrap: balance; */
  /* hyphens: auto;
  word-wrap: break-word;
  overflow-wrap: break-word; */
}
@media all and (max-width: 1023px) {
  .bio_accomplishments ul li {
    font-size: 15px;
    margin-bottom: 10px;
    padding-left: 35px;
  }
}
@media all and (max-width: 767px) {
  .bio_accomplishments ul li {
    font-size: 14px;
    margin-bottom: 10px;
    padding-left: 30px;
  }
}

.bio_accomplishments ul li:before {
  content: "•";
  color: #363636;
  position: absolute;
  left: 20px;
  top: 0;
  font-size: 16px;
  line-height: 1.6;
}
@media all and (max-width: 1023px) {
  .bio_accomplishments ul li:before {
    left: 15px;
  }
}
@media all and (max-width: 767px) {
  .bio_accomplishments ul li:before {
    left: 10px;
  }
}

.bio_accomplishments ul li:last-child {
  margin-bottom: 0;
}

.bio_image_wrapper {
  width: 100%;
}

.bio_image_wrapper img {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 0;
}

/* Education and Personal Sections */
.bio_bottom_sections {
  display: flex;
  flex-direction: row;
  gap: 30px;
  margin-bottom: 30px;
  padding-top: 24px;
}

@media all and (max-width: 1023px) {
  .bio_bottom_sections {
    gap: 25px;
    margin-bottom: 25px;
    padding-top: 18px;
  }
}
@media all and (max-width: 767px) {
  .bio_bottom_sections {
    flex-direction: column;
    gap: 18px;
    margin-bottom: 20px;
    padding-top: 15px;
  }
}

.bio_education_wrapper,
.bio_personal_wrapper {
  flex: 1;
  min-width: 0;
}

.bio_education_wrapper h3,
.bio_personal_wrapper h3 {
  font-size: 14px;
  line-height: 1.2;
  margin-bottom: 12px;
  color: #00704a;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-family: "Lato";
  font-weight: normal;
}
@media all and (max-width: 1023px) {
  .bio_education_wrapper h3,
  .bio_personal_wrapper h3 {
    font-size: 13px;
    margin-bottom: 10px;
  }
}
@media all and (max-width: 767px) {
  .bio_education_wrapper h3,
  .bio_personal_wrapper h3 {
    font-size: 12px;
    margin-bottom: 8px;
  }
}

.bio_personal_wrapper p {
  font-size: 16px;
  line-height: 1.6;
  color: #363636;
  margin-bottom: 0;
}
@media all and (max-width: 1023px) {
  .bio_personal_wrapper p {
    font-size: 15px;
  }
}
@media all and (max-width: 767px) {
  .bio_personal_wrapper p {
    font-size: 14px;
  }
}

#bio_education {
  font-size: 16px;
  line-height: 1.6;
  color: #363636;
}
@media all and (max-width: 1023px) {
  #bio_education {
    font-size: 15px;
  }
}
@media all and (max-width: 767px) {
  #bio_education {
    font-size: 14px;
  }
}

#bio_education p {
  margin-bottom: 6px;
}

#bio_education p:last-child {
  margin-bottom: 0;
}

/* Footer */
.bio_footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  padding-top: 30px;
  border-top: 1px solid #8994a8;
}
@media all and (max-width: 767px) {
  .bio_footer {
    flex-direction: column;
    gap: 16px;
    text-align: center;
    padding-top: 20px;
  }
}

.return_to_team_btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  background: none;
  border: 2px solid #00704a;
  color: #00704a;
  border-radius: 50px;
  text-decoration: none;
  font-size: 13px;
  font-weight: normal;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
}
@media all and (max-width: 1023px) {
  .return_to_team_btn {
    font-size: 12px;
    padding: 8px 16px;
  }
}

.return_to_team_btn:hover {
  background-color: #00704a;
  color: #fff;
}

.return_to_team_btn svg {
  flex-shrink: 0;
  width: 14px;
  height: 14px;
}

.linkedin_footer_btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  background: none;
  border: 2px solid #00704a;
  color: #00704a !important;
  border-radius: 50px;
  text-decoration: none;
  font-size: 13px;
  font-weight: normal;
  text-transform: none;
  cursor: pointer;
  transition: all 0.3s ease;
}
@media all and (max-width: 1023px) {
  .linkedin_footer_btn {
    font-size: 12px;
    padding: 8px 16px;
  }
}

.linkedin_footer_btn:hover {
  background-color: #00704a;
  color: #fff !important;
}

.linkedin_footer_btn svg {
  flex-shrink: 0;
  width: 14px;
  height: 14px;
}

/*# sourceMappingURL=style.css.map */
