@font-face {
    font-family: 'CustomFontBlack';
    src: url('fonts/Epilogue-Black.ttf') format('truetype');
}

@font-face {
    font-family: 'CustomFontExtraLight';
    src: url('fonts/Epilogue-ExtraLight.ttf') format('truetype');
    font-weight: 200;
}

body {
    margin: 0;
    background-color: #F5F5F5;
}

html, body {
    overflow-x: hidden;
}

.statusbar {
    width: 100%;
    height: 56px;
    background-color: #f5f5f5d0;
    display: none;
}

.header {
    width: 100%;
    height: 96px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 16px;
    box-sizing: border-box;
    background-color: #333333; 
    bottom: 0;
    top: 0;
    position: fixed;
    z-index: 100;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    transition: background-color 0.3s ease, backdrop-filter 0.3s ease;
}

.header.sidebar-open {
    background-color: #f5f5f5 !important;
}

.header.homepage-style {
    background-image: linear-gradient(to bottom,
        rgba(255, 255, 255, 0.3) 0%,
        rgba(0,0,0,0.15) 40%,
        rgba(0,0,0,0) 100%);
    background-color: transparent !important;
    box-shadow: #f5f5f5d0;
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
}


.headermenu {
    width: 32px;
    height: 32px;
    position: relative;
    cursor: pointer;
    z-index: 100;
}

.headermenu img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.closeicon {
    display: none;
}

.headerlogo {
    width: 189px;
    height: 32px;
    z-index: 150;
    position: relative;
}

.sidebar {
    position: fixed;
    top: 0;
    right: 0;
    transform: translateX(100%); 
    max-width: 402px; 
    width: 100%;
    height: 100vh;
    background-color: #f5f5f5;
    transition: transform 0.3s ease; 
    z-index: 5;
    padding-top: 96px; 
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 0fr);
    box-sizing: border-box; 
    overflow-y: auto; 
}

.opensidebar{
    transform: translateX(0);
}

.noscroll {
    overflow: hidden;
    height: 100vh;
}

.sidebarmedium{
    height: 200px;
    background-color: #F5F5F5;
    box-sizing: border-box;
    position: relative;
}

.sidebarsmall{
    height: 200px;
    background-color: #F5F5F5;
    box-sizing: border-box;
    position: relative;
}

.sidebarlarge{
    height: 170px;
    background-color: #F5F5F5;
    border-top: 2px solid #EEEEEE;
    box-sizing: border-box;
    position: relative;
}

.sidebartext {
    position: absolute;
    bottom: 24px;
    left: 24px;
    font-size: 24px;
    font-weight: 700;
    font-family: CustomFontBlack, sans-serif;
}

.sidebarteklif {
    grid-column: span 2;
}

.about-hero {
    padding-top: 90px;
    min-height: calc(102vh - 100px);
    background-color: #333333;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding-left: 16px;
    padding-right: 16px;
    position: relative;
    z-index: 1;
}

.about-hero-content {
    color: white; 
}

.headermenu .menuicon,
.headermenu .menuicon img,
.headermenu .menuicon svg {
    filter: none !important;
    color: #fff !important;
    transition: filter .18s ease, color .18s ease, opacity .18s ease;
}

.header.homepage-style .headermenu .menuicon,
.header.homepage-style .headermenu .menuicon img,
.header.homepage-style .headermenu .menuicon svg {
    filter: invert(1) !important;
    color: #000 !important;
}

.about-main-title {
    font-family: CustomFontBlack, sans-serif;
    font-size: 48px; 
    font-weight: 700;
    margin: 0;
}

.about-subtitle {
    font-family: CustomFontBlack, sans-serif;
    font-size: 24px;
    font-weight: 400;
    opacity: 0.7; 
    margin-top: 10px;
}

.founders-section {
    padding: 0px 16px; 
    padding-top: 48px;
    background-color: #ffffff;
}

.founders-title {
    font-family: CustomFontBlack, sans-serif;
    font-size: 32px;
    font-weight: 700;
    margin: 0 0 16px 0;
}

.containerfounders {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    font-family: CustomFontBlack, sans-serif;
    width: 100%;
    padding: 0px 16px;
    box-sizing: border-box;
}

.accordion {
    margin-bottom: 48px;
}

.accordion-item {
    margin-bottom: 8px;
    border-radius: 8px;
    background-color: transparent;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.accordion-header {
    height: 54px;
    align-items: center;
    padding: 12px 16px;
    cursor: pointer;
    font-weight: 600;
    display: flex;
    background-color: #ffffff;
    border-radius: 8px;
    width: 368px;
    box-sizing: border-box;
}

.profile-img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    margin-right: 16px;
    background-color: transparent;
}

.accordion-header > span:first-of-type {
    flex-grow: 1; 
    font-size: 16px;
    color: #333;
}

.arrow {
    width: 24px;
    height: 24px;
    display: block;
    align-self: center;
    transition: transform 0.3s ease, filter 0.2s ease;
    filter: invert(1) brightness(0.35);
}

.accordion-header.active {
    background-color: #000000;
    color: white;
}

.accordion-header.active > span {
    color: white;
}

.accordion-header.active .arrow {
    transform: rotate(180deg);
    filter: invert(0) brightness(1);
}

.accordion-content {
    max-height: 0px; 
    overflow: hidden;
    transition: opacity 0.1s ease-out, max-height 0.2s ease-in-out, padding 0.2s ease;
    background-color: white;
    margin: 0;
    border: none;
    padding: 0 20px;
    width: 280px;
    opacity: 0;
}

.accordion-content p {
    margin: 0;
    font-size: 16px;
    overflow: hidden;
}

.accordion-content.active {
    max-height: 150px; 
    width: 280px;
    padding: 16px 20px;
    background-color: white; 
    border-radius: 0 0 8px 8px; 
    opacity: 1;
    transition: opacity 0.1s ease-out, max-height 0.2s ease-in-out, padding 0.2s ease;
}

.maintextfounders {
    align-self: flex-start;
    font-size: 40px;
    font-weight: 700;
    margin-top: 48px;
    margin-bottom: 32px;
    font-family: CustomFontBlack, sans-serif;
}

.aboutus-content{
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0px 16px;
}

.au-subtitle {
    font-size: 32px;
    font-weight: 700;
    margin: 0;
    margin-bottom: 24px;
    align-self: flex-start;
    font-family: CustomFontBlack, sans-serif;
}

.au-content {
    margin: 0;
    font-family: CustomFontBlack, sans-serif;
    font-size: 24px;
    font-weight: 400;
    opacity: 0.7;
    width: 90%;
    align-self: flex-start;
    margin-bottom: 48px;
}

.mission{
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0px 16px;
}

.mission-subtitle {
    font-size: 24px;
    font-weight: 700;
    margin: 0;
    margin-bottom: 24px;
    align-self: flex-start;
    font-family: CustomFontBlack, sans-serif;
}

.mission-container {
    display: flex;
    align-items: center;
    width: 100%;
    height: 62px;
    background-color: #ffffff;
    border-radius: 8px;
    padding: 0px 24px;
    align-self: stretch;
    overflow: hidden;
    box-sizing: border-box;
}

.mscontainer-content {
    font-family: CustomFontBlack, sans-serif;
    font-size: 20px;
    font-weight: 400;
}

.mscontent-bottom {
    width: 306px;
    height: 50px;
    background-color: #F7F7F7;
    margin-bottom: 48px;
    border: #FFFFFF solid 2px;
    border-top: none !important;
    padding: 0px 16px;
    align-items: center;
    display: flex;
    justify-content: center;
    gap: 48px;
}

.mscontent-alignment{
    align-items: center;
    display: flex;
    gap: 4px;   
}

.mscontent-type{
    font-family: CustomFontBlack, sans-serif;
    font-size: 14px;
    font-weight: 600;
    opacity: 0.6;
}

.mscontent-img{
    opacity: 0.6;
}

.vision{
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0px 16px;
}

.vision-subtitle {
    font-size: 24px;
    font-weight: 700;
    margin: 0;
    margin-bottom: 24px;
    align-self: flex-start;
    font-family: CustomFontBlack, sans-serif;
}

.vision-container {
    display: flex;
    align-items: center;
    width: 100%;
    height: 62px;
    background-color: #ffffff;
    border-radius: 8px;
    padding: 0px 24px;
    align-self: stretch;
    overflow: hidden;
    box-sizing: border-box;
}

.vscontainer-content {
    font-family: CustomFontBlack, sans-serif;
    font-size: 20px;
    font-weight: 400;
}

.vscontent-bottom {
    width: 306px;
    height: 50px;
    background-color: #F7F7F7;
    margin-bottom: 12px;
    border: #FFFFFF solid 2px;
    border-top: none !important;
    padding: 0px 16px;
    align-items: center;
    display: flex;
    justify-content: center;
    gap: 48px;
    margin-bottom: 48px;
}

.vscontent-alignment{
    align-items: center;
    display: flex;
    gap: 4px;   
}

.vscontent-type{
    font-family: CustomFontBlack, sans-serif;
    font-size: 14px;
    font-weight: 600;
    opacity: 0.6;
}

.vscontent-img{
    opacity: 0.6;
}

.aboutus-content-2{
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0px 16px;
}


.expertise-section{
  padding: 0px 16px;
  max-width: 720px;
  margin: 0 auto 48px;
}

.expertise-title{
  font-family: CustomFontBlack, sans-serif;
  font-size: 40px;
  margin-bottom: 32px !important;
  margin: 0;
}

.expertise-grid{
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.expertise-card{
  width: 169px;
  height: 169px;
  background: #EEEEEE;
  border-radius: 12px;
  display: flex;
  align-items: flex-end;
  padding: 24px;
  box-sizing: border-box;
  font-family: CustomFontBlack, sans-serif;
  font-weight: 700;
  color: #000;
}

.expertise-card span{
  font-size: 16px;
}

.expertise-grid{
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, 169px);
  justify-content: center;
  gap: 16px;
}

.endlineimage{
    width: 100%;
}

.footer {
    width: 100%;
    height: auto;
    background-color: rgba(218, 61, 47, 1);
    padding: 48px;
    box-sizing: border-box;
}


.footertoplogowhite{
    width: 200px;
    height: auto; 
    margin-bottom: 48px;
}

.footerbottomlogowhite{
    margin-top: 48px;
    justify-content: center;
    display: flex;
}

.interactionpanel{
    list-style-type: none;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    color: white;
    font-family: CustomFontBlack, sans-serif;
    text-align: center;
    padding: 0;
    margin: 0;
    line-height: 24px;
    width: 147px;
    height: 128px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 15px;
}


.footercontainer{
    display: grid;
    grid-template-columns: repeat(2, 147px);
    grid-template-rows: auto auto;
    justify-content: center;
    align-content: start;
    gap: 48px 12px;
}

.interactionpanel li:nth-child(1){
    font-weight: 700;
    color: white;
    font-family: CustomFontBlack, sans-serif;
    background-color: rgba(255, 255, 255, 0.16);
    padding: 0px 12px;
    border-radius: 24px;
}

.interactionpanel li:hover{
    cursor: pointer;
}

.maintitleinpanel{
    background-color: #ffffff !important;
    color: #DA3D2F !important;
}