:root {
  --color-1: #c4a965;
  --background: #0f0514;
  --white: #fff;
}

.w-layout-blockcontainer {
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.w-layout-grid {
  grid-row-gap: 16px;
  grid-column-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

@media screen and (max-width: 991px) {
  .w-layout-blockcontainer {
    max-width: 728px;
  }
}

@media screen and (max-width: 767px) {
  .w-layout-blockcontainer {
    max-width: none;
  }
}

body {
  color: #fff;
  background-color: #0f0514;
  flex-flow: column;
  font-family: Inter, sans-serif;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.4;
  display: flex;
}

h1 {
  color: var(--color-1);
  letter-spacing: 15px;
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 38px;
  font-weight: 200;
  line-height: 1.2;
}

h2 {
  color: var(--color-1);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 25px;
  font-weight: 300;
  line-height: 1.4;
}

p {
  margin-bottom: 10px;
  font-weight: 300;
}

.navbar {
  z-index: 997;
  border-bottom: 1px solid var(--color-1);
  background-color: var(--background);
  padding: 20px 3%;
  position: fixed;
  inset: 0% 0% auto;
}

.nav-link {
  color: var(--color-1);
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 300;
  transition: color .3s;
  display: flex;
}

.nav-link:hover, .nav-link.w--current {
  color: var(--white);
}

.language_switch {
  color: var(--color-1);
  justify-content: center;
  align-items: stretch;
  text-decoration: none;
  display: flex;
  position: static;
  inset: auto 0% auto auto;
}

.i {
  margin-left: 5px;
  margin-right: 5px;
}

.white {
  color: var(--white);
}

.nav_container {
  flex-flow: column;
  justify-content: center;
  align-items: stretch;
  max-width: 1200px;
  display: flex;
}

.nav-menu {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.brand_mobile {
  display: none;
}

.brand {
  margin-left: 45px;
  margin-right: 0px;
}

.hero-heading {
  color: var(--white);
  text-align: center;
  letter-spacing: 15px;
  text-transform: uppercase;
  font-weight: 100;
}

.section {
  z-index: 1;
  border-bottom: 1px solid var(--color-1);
  background-color: var(--background);
  flex-flow: column;
  justify-content: center;
  align-items: center;
  min-height: 80svh;
  padding-bottom: 0;
  display: flex;
  position: relative;
}

.section.first {
  background-image: url('../images/ezgif-37952e03fcfd5c.webp');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
  justify-content: center;
  align-items: center;
  min-height: 90svh;
  padding-bottom: 0;
  display: flex;
}

.section.first.about {
  background-color: #100817;
  background-image: url('../images/730c589bb9046075ae31ab6032d402f7.png');
  min-height: 60svh;
}

.section.center {
  flex-flow: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.section.padding {
  z-index: 1;
  padding-bottom: 60px;
  position: relative;
}

.container {
  flex-flow: column;
  margin-top: 0;
  margin-bottom: 0;
  display: flex;
}

.container.wide {
  max-width: 1200px;
  margin-left: 3%;
  margin-right: 4%;
}

.center-align {
  text-align: center;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.divider {
  background-color: var(--color-1);
  width: 350px;
  height: 1px;
  margin-top: 70px;
  margin-bottom: 70px;
}

.hero_subtitle {
  font-size: 25px;
  font-weight: 200;
}

.heading {
  margin-top: 0;
  margin-bottom: 0;
}

.grid_about {
  grid-column-gap: 10%;
  grid-row-gap: 0px;
  flex-flow: wrap;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  max-width: 1200px;
  margin-left: 3%;
  margin-right: 3%;
  display: flex;
}

.grid_image_holder {
  width: 55%;
  position: relative;
}

.grid_text_holder {
  grid-column-gap: 61px;
  grid-row-gap: 61px;
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
  width: 35%;
  display: flex;
}

.paragraph_large {
  font-size: 20px;
  font-weight: 200;
}

.paragraph_large.more-spacing {
  line-height: 2.4;
}

.fading-left {
  background-image: linear-gradient(90deg, var(--background), #fff0 30%);
  position: absolute;
  inset: 0%;
}

.fading-right {
  background-image: linear-gradient(270deg, var(--background), #fff0 30%);
  position: absolute;
  inset: 0%;
}

.image_background-full {
  background-image: linear-gradient(180deg, var(--background), #fff0 35%), url('../images/ezgif-2ceeaac7e17a01.webp');
  background-position: 0 0, 50%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
  width: 100%;
  height: 80svh;
}

.content_wrapper {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  flex-flow: column;
  max-width: 100%;
  margin-top: 150px;
  margin-bottom: 100px;
  display: flex;
}

.heading-1 {
  margin-bottom: 60px;
}

.grid_team {
  grid-column-gap: 80px;
  grid-row-gap: 80px;
  grid-template-columns: 1fr 1fr 1fr;
  width: 940px;
}

.team_member_card {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex-flow: column;
  display: flex;
}

.team_image_wrapper {
  border-radius: 25px;
  height: 400px;
  position: relative;
  overflow: hidden;
}

.team_title {
  color: #999;
  font-weight: 200;
}

.team_name {
  text-transform: uppercase;
  font-size: 18px;
}

.team_pic_color {
  background-color: var(--color-1);
  position: absolute;
  inset: 0%;
}

.logo-item {
  justify-content: center;
  align-self: auto;
  align-items: center;
  display: flex;
}

.logos-row-wrapper {
  width: 100%;
  margin-top: 1.5rem;
  position: relative;
  overflow: hidden;
}

.overflow-hidden {
  position: relative;
  overflow: hidden;
}

.logos-card-line, .logos-inside-line {
  display: flex;
}

.logos-gradient-left {
  z-index: 3;
  background-image: linear-gradient(90deg, var(--background) 8%, transparent);
  width: 5%;
  height: 100%;
  position: absolute;
  inset: 0% auto 0% 0%;
}

.logos-container {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: 72rem;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.text-size-small {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}

.padding-top {
  padding-bottom: 0;
  padding-left: 0;
  padding-right: 0;
}

.padding-top.padding-huge {
  margin: -13px -10px 60px;
}

.image-2 {
  padding-top: 18px;
  padding-left: 43px;
  padding-right: 0;
}

.logos-gradient-right {
  z-index: 3;
  background-image: linear-gradient(270deg, var(--background) 8%, transparent);
  width: 5%;
  height: 100%;
  position: absolute;
  inset: 0% 0% 0% auto;
}

.subheader {
  margin-bottom: 20px;
  font-size: 18px;
}

.paragraph_light {
  color: #9c9c9c;
}

.image-3 {
  opacity: .6;
  object-fit: contain;
  max-width: none;
  max-height: 100px;
}

.gallery-overview {
  background-color: #f5f7fa;
  border-bottom: 1px solid #e4ebf3;
  padding: 80px 30px;
  position: relative;
}

.container-2 {
  z-index: 1;
  width: 100%;
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.container-2.fixed {
  position: sticky;
  top: auto;
  bottom: 0;
}

.gallery-wrapper {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: start;
  display: grid;
}

.gallery-block {
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.gallery-features-block {
  margin-top: 16px;
  margin-bottom: 24px;
}

.gallery-feature {
  background-image: url('../images/');
  background-position: 0%;
  background-repeat: no-repeat;
  background-size: 20px;
  margin-bottom: 8px;
  padding-left: 30px;
  font-size: 14px;
  line-height: 24px;
}

.button-primary {
  color: #fff;
  letter-spacing: 2px;
  text-transform: uppercase;
  background-color: #1a1b1f;
  padding: 12px 25px;
  font-size: 12px;
  line-height: 20px;
  transition: all .2s;
}

.button-primary:hover {
  color: #fff;
  background-color: #32343a;
}

.button-primary:active {
  background-color: #43464d;
}

.gallery-grid {
  grid-row-gap: 40px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.gallery-image {
  width: 100%;
}

.grid_news {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  grid-template-columns: 1fr 1fr 1fr;
}

.news_card {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  border: 1px solid var(--color-1);
  border-radius: 20px;
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
  padding: 34px;
  display: flex;
}

.news_date {
  color: var(--color-1);
}

.news_title {
  margin-bottom: 5px;
}

.news_description {
  color: #b3b3b3;
}

.button {
  background-color: var(--color-1);
  color: var(--background);
  text-align: center;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 50px;
  padding: 15px 20px;
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
}

.footer-section {
  z-index: 0;
  background-color: var(--color-1);
  height: 100svh;
  padding-bottom: 0;
  position: fixed;
  inset: auto 0% 0%;
  overflow: hidden;
}

.footer-content {
  z-index: 0;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  margin-top: 0;
  margin-bottom: 0;
  padding-bottom: 0;
  display: flex;
}

.footer-heading {
  color: var(--white);
  letter-spacing: 3px;
  margin-bottom: 20px;
  font-size: 24px;
}

.footer_text {
  color: var(--background);
  font-weight: 400;
}

.footer_grid {
  grid-column-gap: 80px;
  grid-row-gap: 20px;
  grid-template-rows: auto;
  grid-template-columns: 1.5fr 1fr;
  margin-bottom: 60px;
}

.footer_grid.bottom {
  grid-row-gap: 0px;
  line-height: 1;
}

.footer_link {
  color: var(--background);
  padding: 8px 0;
  font-weight: 400;
  text-decoration: none;
}

.footer_link:hover {
  text-decoration: underline;
}

.blank_section {
  height: 100svh;
}

.grid_about_large {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  grid-template-columns: 1fr 1fr;
  max-width: 100%;
  margin-top: 100px;
  margin-bottom: 100px;
}

.abou {
  margin-bottom: 5px;
}

.about-card {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  border: 1px solid var(--color-1);
  border-radius: 20px;
  flex-flow: column;
  justify-content: space-between;
  align-items: flex-start;
  padding: 40px;
  display: flex;
}

.about-divider {
  background-color: var(--color-1);
  width: 350px;
  height: 1px;
  margin-top: 0;
  margin-bottom: 0;
}

.utility-page-wrap {
  justify-content: center;
  align-items: center;
  width: 100vw;
  max-width: 100%;
  height: 100vh;
  max-height: 100%;
  display: flex;
}

.utility-page-content {
  text-align: center;
  flex-direction: column;
  width: 260px;
  display: flex;
}

.nav_blank-section {
  height: 80px;
}

.loading-screen {
  z-index: 999;
  background-color: var(--background);
  display: none;
  position: fixed;
  inset: 0%;
}

.loading-lottie {
  width: 15%;
  height: 15%;
  position: static;
  inset: 0%;
}

.lottie-holder {
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
  position: absolute;
}

.background-video {
  z-index: 998;
  opacity: 0;
  height: 100svh;
  display: block;
  position: fixed;
  inset: 0%;
}

.close-div {
  justify-content: flex-end;
  align-items: flex-start;
  width: 100%;
  height: 100%;
  display: flex;
}

.befektetes_card {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  border-top: 1px solid var(--color-1);
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  margin-top: 100px;
  padding-top: 15px;
  padding-bottom: 15px;
  display: flex;
}

@media screen and (max-width: 991px) {
  .language_switch {
    justify-content: flex-start;
    align-items: center;
    padding: 20px;
    position: static;
  }

  .nav_container {
    flex-flow: row;
    justify-content: space-between;
    display: block;
  }

  .nav-menu, .menu-button.w--open {
    background-color: #191819;
  }

  .brand_mobile {
    background-image: url('../images/initia_logo.png');
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: contain;
    justify-content: center;
    align-items: center;
    width: 250px;
    display: flex;
  }

  .brand_mobile.w--current {
    height: 50px;
  }

  .brand, .brand.w--current {
    display: none;
  }

  .hero-heading {
    font-size: 20px;
  }

  .hero_subtitle {
    font-size: 18px;
  }

  .heading {
    font-size: 20px;
  }

  .paragraph_large {
    font-size: 15px;
  }

  .heading-1 {
    font-size: 25px;
  }

  .grid_team {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr 1fr;
    width: auto;
  }

  .team_name {
    font-size: 16px;
  }

  .logo-item {
    width: 100%;
    margin-right: 20px;
  }

  .overflow-hidden {
    padding-top: 2rem;
  }

  .padding-top {
    padding-bottom: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .container-2 {
    max-width: 728px;
  }

  .gallery-wrapper {
    grid-template-columns: 1fr 1fr;
  }

  .footer_grid {
    grid-row-gap: 20px;
    margin-bottom: 30px;
  }

  .grid_about_large {
    grid-template-columns: 1fr;
  }
}

@media screen and (max-width: 767px) {
  .brand_mobile {
    width: 150px;
  }

  .container {
    max-width: 100%;
    padding-left: 5%;
    padding-right: 5%;
  }

  .grid_team {
    grid-template-columns: 1fr 1fr;
  }

  .logo-item {
    margin-right: 10px;
  }

  .overflow-hidden {
    padding-top: .8rem;
  }

  .padding-top {
    padding-bottom: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .gallery-overview {
    padding: 60px 15px;
  }

  .container-2 {
    padding-left: 5%;
    padding-right: 5%;
  }

  .grid_news {
    grid-template-columns: 1fr 1fr;
  }

  .grid_about_large {
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
  }

  .about-card {
    padding-left: 21px;
    padding-right: 21px;
  }
}

@media screen and (max-width: 479px) {
  .navbar {
    padding-top: 0;
    padding-bottom: 0;
  }

  .nav-link.blank {
    display: none;
  }

  .language_switch {
    justify-content: flex-start;
    align-items: center;
    padding: 20px;
  }

  .nav_container {
    justify-content: space-between;
    align-items: center;
    display: block;
  }

  .nav-menu {
    background-color: var(--background);
  }

  .brand_mobile {
    height: 100%;
  }

  .brand {
    display: none;
  }

  .section.padding {
    overflow: hidden;
  }

  .container {
    max-width: 100%;
    padding: 4px 5%;
  }

  .divider {
    width: 50%;
  }

  .hero_subtitle, .heading {
    font-size: 15px;
  }

  .grid_about {
    grid-column-gap: 47px;
    grid-row-gap: 47px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
    grid-auto-columns: 1fr;
    margin-left: 0%;
    margin-right: 0%;
    display: grid;
  }

  .grid_image_holder {
    width: 100%;
  }

  .grid_text_holder {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    width: 100%;
    padding-left: 8%;
    padding-right: 8%;
  }

  .content_wrapper {
    margin-top: 82px;
    margin-bottom: 82px;
  }

  .heading-1 {
    letter-spacing: 10px;
    margin-bottom: 40px;
    font-size: 18px;
  }

  .grid_team {
    grid-template-columns: 1fr;
  }

  .overflow-hidden {
    padding-top: .5rem;
  }

  .padding-top {
    padding-bottom: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .image-3 {
    height: 100%;
  }

  .container-2 {
    max-width: none;
  }

  .gallery-wrapper, .grid_news {
    grid-template-columns: 1fr;
  }

  .footer-section {
    height: auto;
    padding: 20% 10%;
    position: static;
  }

  .footer_grid {
    grid-template-columns: 1.5fr;
  }

  .blank_section {
    display: none;
  }

  .grid_about_large {
    grid-template-columns: 1fr;
  }

  .about-card {
    grid-column-gap: 24px;
    grid-row-gap: 24px;
  }

  .about-divider {
    width: 50%;
  }

  .background-video {
    display: none;
  }
}

#w-node-_1ab80309-516f-e62f-8359-9e19bbd25a9e-442cda78 {
  justify-self: start;
}

#w-node-_34a4eeaa-7ef2-2c14-04ff-d1a5b8e84fff-442cda78 {
  justify-self: end;
}

#w-node-_6b0c2876-0dc5-9ce0-0aa3-ede42a741a1e-02e3dd3c {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_1ab80309-516f-e62f-8359-9e19bbd25a9e-f1bc33c3 {
  justify-self: start;
}

#w-node-_34a4eeaa-7ef2-2c14-04ff-d1a5b8e84fff-f1bc33c3 {
  justify-self: end;
}

@media screen and (max-width: 991px) {
  #w-node-_6b0c2876-0dc5-9ce0-0aa3-ede42a741a1e-02e3dd3c {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }
}

@media screen and (max-width: 767px) {
  #w-node-_6b0c2876-0dc5-9ce0-0aa3-ede42a741a1e-02e3dd3c {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }
}

@media screen and (max-width: 479px) {
  #w-node-_34a4eeaa-7ef2-2c14-04ff-d1a5b8e84fff-442cda78, #w-node-_34a4eeaa-7ef2-2c14-04ff-d1a5b8e84fff-f1bc33c3 {
    grid-area: 4 / 1 / 5 / 2;
  }
}


