/* ### Team Block ### */
@media (min-width: 1025px) {
  .fullscreen_modal_content_row_left {
    margin-bottom: -7px;
  }
}

.fullscreen_modal_overlay {
  display: none;
  width: 100%;
  height: 100%;
  position: fixed;
  background: rgba(0, 0, 0, 0.5);
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9;
}

.fullscreen_modal_overlay_img_zoom {
  display: none;
  width: 100%;
  height: 100%;
  position: fixed;
  background: rgba(0, 0, 0, 0.5);
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 10;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.2s;
  cursor: pointer;
}

.fullscreen_modal_overlay_img_zoom img {
  height: 80%;
  width: 80%;
  object-fit: contain;
  cursor: pointer;
}

.fullscreen_modal_overlay.active {
  display: block;
}

.fullscreen_modal_overlay_img_zoom.active {
  display: flex;
  opacity: 1;
}

.fullscreen_modal {
  display: none;
  width: 100%;
  max-width: 912px;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
}

.fullscreen_modal .fullscreen_modal_content_wrap {
  padding: 0 20px;
}

.fullscreen_modal .fullscreen_modal_content {
  position: relative;
  border-top: 9px solid black;
  background: #fff;
  padding: 20px 50px;
  overflow-y: auto;
  max-height: 90vh;
}

.fullscreen_modal_content_top {
  position: absolute;
  display: flex;
  justify-content: flex-start;
  margin-bottom: 0px;
}

.fullscreen_modal_content_top svg {
  cursor: pointer;
}

.n-column-block {
  padding-bottom: 0px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  grid-column-gap: 12px;
  grid-row-gap: 30px;
}

.n-column-block.three-columns {
  grid-template-columns: repeat(3, 1fr);
}

.n-column-block.col-gap-24 {
  grid-column-gap: 24px;
}

.column-sm-img-wrap {
  width: 100%;
  height: 216px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}
.column-sm-img-wrap img {
  max-width: none;
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
}

.column-sm-title {
  font-weight: bold;
  margin-top: 20px;
  margin-bottom: 4px;
}

.column-sm-subtitle {
  opacity: 0.6;
  margin-bottom: 0px;
}

.column-sm-modal-link {
  font-family: "Helvetica Neue";
  margin-top: 22px;
  color: #f0a51f;
  font-weight: bold;
  cursor: pointer;
}

.fullscreen_modal_content_hidden {
  display: none;
}

.fullscreen_modal_content_row_1,
.fullscreen_modal_content_row_2 {
  display: flex;
  gap: 16px;
  width: 100%;
  color: #000;
}

.fullscreen_modal_content_row_1 {
  align-items: flex-end;
  margin-bottom: 30px;
}

.fullscreen_modal_content_row_left {
  width: 265px;
  margin-right: 15px;
  flex-shrink: 0;
}

.fullscreen_modal_content_title {
  font-size: 21px;
  line-height: 1.3;
}

.fullscreen_modal_content_subtitle {
  font-size: 21px;
  line-height: 1.3;
  opacity: 0.4;
}

.fullscreen_modal_content_right_img {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 336px;
}

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

.fullscreen_modal_content_accomplishments_title {
  font-family: "Helvetica Neue";
  font-weight: bold;
  font-size: 16px;
  margin-bottom: 10px;
  margin-top: 3px;
}

.fullscreen_modal_content_accomplishments_text {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}

.fullscreen_modal_content_text {
  font-size: 21px;
  line-height: 1.3;
  font-weight: 300;
}

@media (max-width: 1024px) {
  .display-none-max1024{
    display: none;
  }
  .fullscreen_modal {
    max-width: none;
    height: 100vh;
    overflow-y: auto;
  }

  .fullscreen_modal_content_top {
    position: static;
    margin-bottom: 5px;
    margin-top: 5px;
  }

  .fullscreen_modal .fullscreen_modal_content_wrap {
    padding: 0px;
    height: 100vh;
  }

  .fullscreen_modal .fullscreen_modal_content {
    position: relative;
    border-top: 9px solid black;
    background: #fff;
    padding: 0px 20px;
    overflow-y: auto;
    height: calc(100% - 9px);
    max-height: none;
  }

  .n-column-block {
    position: relative;
    height: auto;
    min-width: 0;
    grid-row-gap: 4vh;
  }
  .fullscreen_modal_content_row_1,
  .fullscreen_modal_content_row_2 {
    display: flex;
    flex-direction: column-reverse;
    align-items: start;
  }

  .fullscreen_modal_content_title {
    font-size: 16px;
    line-height: 24px;
  }

  .fullscreen_modal_content_subtitle {
    font-size: 16px;
    line-height: 24px;
  }

  .fullscreen_modal_content_right_img {
    height: 280px;
  }

  .fullscreen_modal_content_accomplishments_title {
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 10px;
  }

  .fullscreen_modal_content_accomplishments_text {
    font-size: 16px;
    line-height: 24px;
  }

  .fullscreen_modal_content_text {
    font-size: 16px;
    line-height: 24px;
    margin-top: 10px;
  }
}

@media (max-width: 831px) {
  .team-block-cusotm-title {
    padding-left: 10px;
  }
}

@media (max-width: 650px) {
  .n-column-block.three-columns {
    grid-template-columns: 1fr;
  }
}
/* ### Team Block ### */

/* ### Grid (used in Blogs, Media) ### */
.grid-block .grid-table {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 50px 20px;
}

.grid-block .pagination {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  margin-top: 30px;
  gap: 10px;
}

.grid-block .grid-table .grid-item {
  display: flex;
  flex-direction: column;
}

.grid-block .grid-table .grid-item-image {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 100%;
  height: 150px;
  max-height: 150px;
  overflow: hidden;
  margin-bottom: 15px;
}

.grid-block .grid-table .grid-item-image img {
  object-fit: cover;
  min-height: 100%;
  min-width: 100%;
}

.grid-block .grid-table .grid-item-subtitle {
  font-family: 'Chronicle Deck';
  color: #96918C;
  margin: 0px;
}

.grid-block .grid-table .grid-item-date {
  font-family: 'Chronicle Deck';
  color: #96918C;
  margin: 0px;
  margin-bottom: 5px;
}

.grid-block .grid-table .grid-item-title {
  font-family: 'Chronicle Deck';
  margin: 0px;
  margin-bottom: 5px;
  color: black;
}

.grid-block .grid-table .grid-item-title:hover {
  color: #F1A51D;
}

.grid-block .grid-table .grid-item-description {
  font-family: 'Chronicle Deck';
  margin: 0px;
  margin-top: 5px;
}

.grid-block .grid-table .grid-item-keywords {
  font-family: 'Chronicle Deck';
  margin: 0px;
  margin-top: 9px;
  color: white;
}

.grid-block .grid-table .grid-item-keyword {
  display: inline-block;
  background-color: #3C3732;
  padding: 3px 5px;
  margin-right: 3px;
  margin-top: 3px;
}

@media (max-width: 1072px) {
  .grid-block .grid-table {
      grid-template-columns: repeat(2, minmax(0, 1fr));
  }

}

@media (max-width: 831px) {
  .grid-block .grid-table .grid-item-texts {
      padding-left: 30px;
      padding-right: 10px;
  }

  .grid-block .main-title {
      padding-left: 30px;
  }

}

@media (max-width: 650px) {
  .grid-block .grid-table {
      display: flex;
      flex-direction: column;
      gap: 20px;
  }

  .grid-block .grid-table .grid-item-image {
      height: 280px;
      max-height: 280px;
  }

}
/* Blogs block */
[data-block="blogs-block"] .navigation {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  width: calc(100% - 4rem);
}
[data-block="blogs-block"] .navigation a{
  font-weight: normal;
  color: black;
}
[data-block="blogs-block"] .navigation a.active{
  color: #F0A51E;
  font-weight: bold;
}
@media (max-width: 831px) {
  [data-block="blogs-block"] .navigation {
    flex-direction: column;
    align-items: flex-start;
    justify-content: unset;
    padding-left: 30px;
    height: auto;
    width: auto;
    margin-bottom: 20px;
  }
}
/* Blogs block */
/* ### Grid Block ### */
