body {
	margin: 0;
	font-family: "Inter", sans-serif;
    font-style: normal;
	display: flex;
	flex-direction: column;
	gap: 8rem;
}

button,
.investor-cube,
.case-news,
.footer-bottom-company-smedia svg {
	cursor: pointer;
}

h1 {
	font-size: 4rem;
	margin: 0;
}

h2,
h3 {
	font-size: 2.8rem;
	margin: 0;
}

h4 {
	font-size: 1rem;
    margin: 0;
    font-weight: 400;
}

p {
    font-size: 1.6rem;
	margin: 0;
}

.description {
	font-size: 2rem;
}

.main {
	position: relative;
	width: 100%;
	height: 100vh;
	color: white;
}

.main-bg {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
}


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


.main-bg .overlay {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.65);
}

.navbar {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 1.5rem 3rem;
}

.logo {
	position: relative;
	display: flex;
	align-items: center;
}

.logo img {
	max-width: 220px;
}

.index {
    display: flex;
    align-items: center;
	gap: 0.2rem;
}

.index svg {
	width: 22px;
}

.index p {
	font-size: 1.2rem;
}

.menu {
	position: relative;
	display: flex;
	align-items: center;
	gap: 1rem;
}

.menu a:last-child {
	padding: 0.8rem 1.5rem;
    background: rgb(180 184 204 / 14%);
	border-radius: 2rem;
	text-align: center;
	
}

.menu a:last-child:hover {
	background: #1f1f24;
	text-decoration: none;
	
}

.menu a:hover {
	text-decoration: underline;
	
}

.menu-mobile-only {
	display: none;
}

.menu a {
	color: white;
	font-size: 1.2rem;
	text-decoration: none;
}

.main-content {
	position: relative;
	max-width: 70%;
	padding: 0 40px;
	height: 80%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 1rem;
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 25px;
  height: 18px;
  cursor: pointer;
  z-index: 20;
}

.hamburger span {
  display: block;
  height: 3px;
  width: 100%;
  background: white;
  border-radius: 2px;
  transition: 0.3s;
}

.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(6px, -6px);
}

.about_us {
    border-radius: 3rem;
    box-sizing: border-box;
    padding: 3rem;
    background: rgb(180 184 204 / 14%);
    display: flex;
    gap: 5.5rem;
    width: 95%;
    margin: auto;
    flex-direction: column;
}

.about-container {
    display: flex;
    flex: 1;
    flex-direction: column;
	gap: 2rem;
}

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

.stat-box {
    box-sizing: border-box;
    width: 31%;
    flex: none;
    display: flex;
    flex-direction: column;
    gap: 3rem;
    background: #1f1f24;
    padding: 3.2rem 2rem;
    border-radius: 2rem;
    text-align: left;
    color: #ffffff;
}

.stat-box h4 {
    padding: 0.6rem 1.2rem;
    width: fit-content;
    background: rgb(180 184 204 / 14%);
    border-radius: 1.5rem;
}

.map-container {
	margin: 0 5rem;
	display: flex;
    gap: 3rem;
    flex-direction: column;
	align-items: center;
}

.map-container-title {
	text-align: center;
}

.map-container img {
	width: 85%;
}

.esg-container {
	margin: -4rem 5rem 0 5rem;
	display: flex;
    gap: 1.5rem;
    flex-direction: column;
}

.interactive-cards {
    border-radius: 3rem;
    box-sizing: border-box;
    padding: 3rem;
    background: rgb(180 184 204 / 14%);
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    margin-top: 3rem;
}

.interactive-card {
    box-sizing: border-box;
    width: 31%;
    flex: none;
    padding: 3.2rem 2rem;
    background: #ffffff;
    display: flex;
    flex-direction: column;
    max-width: 31%;
    border-radius: 2rem;
    gap: 3.5rem;
}

.interactive-card h4 {
    padding: 0.6rem 1.2rem;
    width: fit-content;
    background: #1f1f24;
    border-radius: 1.5rem;
    color: #ffffff;
}

.case {
    display: flex;
    justify-content: center;
    width: 100%;
    height: 550px;
}

.case-bg {
    background-image: url(/platform-ocean.webp);
    background-size: cover;
    display: flex;
    align-items: center;
    border-radius: 3.5rem;
    width: 95%;
}

.case-content {
	gap: 2rem;
    color: white;
    margin: auto;
    text-align: center;
    display: flex;
    width: 80%;
    flex-direction: column;
    align-items: center;
}

.case-content p {
	font-size: 1.6rem;
}

.team {
    display: flex;
    flex-direction: column;
	align-items: center;
    max-width: 80%;
    margin: auto;
    text-align: center;
	gap: 1.5rem;
}

.team button {
    background-color: #1f1f24;
    color: #fff;
    text-decoration: none;
    padding: 1rem 2rem;
    border-radius: 999px;
	font-size: 1.4rem;
	width: 50%;
}

.news {
    display: flex;
    gap: 1.5rem;
    flex-direction: column;
	margin: 0 5rem;
}

.cases-news {
    gap: 1rem;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
}

.case-news {
    display: flex;
    flex-direction: column;
	gap: 1rem;
    width: 27%;
    padding: 2rem;
}

.case-news img {
	max-width: 100%;
	height: 200px;
	object-fit: cover;
	border-radius: 1rem;
}

.case-news-text {
	font-weight: 700;
}

.case-news-date {
	color: #c8c8c8;
}

.investor {
    display: flex;
    gap: 3rem;
    flex-direction: column;
    margin: 0 5rem;
}

.investor-cubes {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 2rem;
}

.investor-cube {
    display: flex;
    flex-direction: column;
    align-items: center;
	justify-content: center;
	padding: 2rem;
	gap: 1rem;
	border-radius: 1rem;
	text-align: center;
}

.investor-cube p {
	font-weight: 700;
}

.abc2 {
    grid-column-start: 1;
    grid-row-start: 2;
}

.abc3 {
    grid-row: span 2 / span 2;
    grid-column-start: 2;
    grid-row-start: 1;
}

.investor-cube {
	background: rgb(180 184 204 / 14%);
}

.investor-cube svg {
	width: 55px;
}

.footer {
	background: #1f1f24;
	color: #ffffff;
	width: 100%;
}

.footer-bottom {
	display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: stretch;
	justify-content: space-between;
	gap: 2rem;
	margin: 3rem 1rem;
}

.footer-bottom-left {
	gap: 1rem;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
	align-items: flex-start;
}

.footer-bottom-company-text,
.footer-bottom-company-address {
	max-width: 200px;
}

.footer p {
	font-size: 1rem;
	line-height: 1.5rem;
	opacity: 0.7;
	letter-spacing: -0.02em;
}

.footer img {
	width: 180px;
	opacity: 0.7;
	object-fit: contain;
}

.footer-bottom-company-smedia {
	margin-right: 2rem;
}

.footer-bottom-company-smedia p {
	opacity: 1;
	font-size: 1.2rem;
}

.footer-bottom-company-smedia-icon {
	display: flex;
    justify-content: space-between;
	margin-top: 0.3rem;
}

.footer-bottom-company-smedia-icon svg {
	width: 38px;
}

@media (max-width: 1150px) {
  .hamburger {
    display: flex;
  }

  .menu {
    display: none;
    position: absolute;
    top: 70px;
    right: 20px;
	width: 70%;
    flex-direction: column;
	align-items: unset;
    background: #1f1f24;
    padding: 20px;
    border-radius: 10px;
    z-index: 9999;
	
  }

  .menu.show {
    display: flex !important;
  }

    .menu a {
        margin: 0.5rem 0;
        color: #ffffff;
        font-size: 1.4rem;
    }
  
  .hamburger.active {
	  height: 18px;
  }
}

@media (max-width: 480px) {
	body {
		gap: 5rem;
	}
	
	h1 {
		font-size: 2.5rem;
	}
	
	h2 {
		font-size: 1.8rem;
	}
	
	h3 {
		font-size: 1.6rem;
	}
	
	h4 {
        font-size: 0.8rem;
    }
	
	p {
		font-size: 1.2rem;
	}
	
	.navbar {
		padding: 1.2rem;
	}
	
	.main-content {
		padding: 0 1.2rem;
		max-width: 100%;
	}
	
	.about_us,
	.map-container,
	.news,
	.investor,
	.esg-container {
		margin: 0 1.5rem;
	}
	
	.about-container {
		max-width: unset;
	}
	
	.interactive-card {
		max-width: unset;
	}
	
	.map-container-title {
		font-size: 1.6rem;
	}
	
	.map-container img {
		width: 240%;
	}
	
	.case-content p {
		font-size: 1.2rem;
	}
	
	.case-bg {
		background-position: center;
		border-radius: 1.5rem;
	}
	
	.team button {
		width: unset;
		font-size: 1.2rem;
	}
	
	.case-news {
		width: unset;
		padding: 1rem;
	}
	
	.case-content {
		width: 90%;
	}
	
	.description {
		font-size: 1.2rem;
	}
	
	.logo img {
		max-width: 150px;
	}
	
	.about_us,
	.interactive-cards {
	    border-radius: 2rem;
	    padding: 5rem 1.5rem;
		flex-direction: column;
	}
	
	.interactive-cards {
		flex-direction: column;
	}
	
	.cases-news {
		flex-direction: column;
		gap: unset;
	}
	
	.investor-cubes,
    .stats	{
		display: flex;
		flex-direction: column;
		gap: 2rem;
        width: 100%;
	}
	
	.footer-bottom {
		flex-direction: column;
	}
	
	.footer-bottom-left {
		flex-direction: column;
	}
	
	.footer-bottom-company-smedia-icon {
		justify-content: unset;
		gap: 1rem;
		margin-top: 0.7rem;
	}
	
	.stat-box,
	.interactive-card {
	    border-radius: 1.2rem;
	    padding: 3.5rem 1.5rem;
	    width: 100%;
	}
	
	.about_us {
	    width: unset;
	}
	
	.map-container {
	    align-items: flex-start;
	    overflow: hidden;
	}
}

@media screen and (min-width: 481px) and (max-width: 768px) {
	body {
		gap: 5rem;
	}
	
	h1 {
		font-size: 3.5rem;
	}
	
	h2 {
		font-size: 2.8rem;
	}
	
	h3 {
		font-size: 2.2rem;
	}
	
	p {
		font-size: 1.6rem;
	}
	
	.navbar {
		padding: 1.6rem;
	}
	
	.main-content {
		padding: 0 1.2rem;
		max-width: 100%;
	}
	
	.about_us,
	.map-container,
	.news,
	.investor,
	.esg-container {
		margin: 0 1.5rem;
	}
	
	.about-container {
		max-width: unset;
	}
	
	.interactive-card {
		max-width: unset;
	}
	
	.map-container-title {
		font-size: 2.2rem;
	}
	
	.map-container img {
		width: 240%;
	}
	
	.case-bg {
		background-position: center;
		border-radius: 1.5rem;
	}
	
	.team button {
		width: unset;
		font-size: 1.6rem;
	}
	
	.case-news {
		width: unset;
		padding: 1rem;
	}
	
	.case-content {
		width: 90%;
	}
	
	.description {
		font-size: 1.2rem;
	}
	
	.logo img {
		max-width: 150px;
	}
	
	.about_us,
	.interactive-cards {
	    border-radius: 2rem;
	    padding: 5rem 1.5rem;
		flex-direction: column;
	}
	
	.interactive-cards {
		flex-direction: column;
	}
	
	.cases-news {
		flex-direction: column;
		gap: unset;
	}
	
	.investor-cubes,
    .stats	{
		display: flex;
		flex-direction: column;
		gap: 2rem;
        width: 100%;
	}
	
	.footer-bottom {
		flex-direction: column;
	}
	
	.footer-bottom-left {
		flex-direction: column;
	}
	
	.footer-bottom-company-smedia-icon {
		justify-content: unset;
		gap: 1rem;
		margin-top: 0.7rem;
	}
	
	.stat-box,
	.interactive-card {
	    border-radius: 1.2rem;
	    padding: 3.5rem 1.5rem;
	    width: 100%;
	}
	
	.about_us {
	    width: unset;
	}
	
	.map-container {
	    align-items: flex-start;
	    overflow: hidden;
	}
}

@media (max-height: 510px) {
	.main {
		height: 150vh;
	}
}

@media screen and (min-width: 769px) and (max-width: 950px) {
	.about_us {
		flex-direction: column;
	}
	
	.about-container {
		max-width: unset;
	}
	
	.about_us,
	.map-container,
	.news,
	.investor,
	.esg-container {
		margin: 0 1.5rem;
	}
	
	.about-container {
		max-width: unset;
	}
	
	.interactive-card {
		max-width: unset;
	}
	
	.map-container-title {
		font-size: 2.2rem;
	}
	
	.map-container img {
		width: 100%;
	}
	
	.case-bg {
		background-position: center;
		border-radius: 1.5rem;
	}
	
	.team button {
		width: unset;
		font-size: 1.6rem;
	}
	
	.case-news {
		width: unset;
		padding: 1rem;
	}
	
	.case-content {
		width: 90%;
	}
	
	.description {
		font-size: 1.2rem;
	}
	
	.logo img {
		max-width: 150px;
	}
	
	.about_us,
	.interactive-cards {
	    border-radius: 2rem;
	    padding: 5rem 1.5rem;
		flex-direction: column;
	}
	
	.interactive-cards {
		flex-direction: column;
	}
	
	.cases-news {
		gap: unset;
	}
	
    .stats	{
		display: flex;
		flex-direction: column;
		gap: 2rem;
        width: 100%;
	}
	
	.stat-box,
	.interactive-card {
	    border-radius: 1.2rem;
	    padding: 3.5rem 1.5rem;
	    width: 100%;
	}
	
	.about_us {
	    width: unset;
	}
	
	.map-container {
	    align-items: flex-start;
	    overflow: hidden;
	}
}

@media screen and (min-width: 769px) and (max-width: 1100px) {
	.about_us,
	.map-container,
	.news,
	.investor,
	.esg-container {
		margin: 0 2rem;
	}
	
	h1 {
		font-size: 3rem;
		margin: 0;
	}

	h2 {
		font-size: 2.5rem;
		margin: 0;
	}

	h3 {
		font-size: 2.2rem;
		margin: 0;
	}

	h4 {
		font-size: 1.2rem;
		margin: 0;
	}

	p,
	.team button {
		font-size: 1.6rem;
		margin: 0;
	}

	.description {
		font-size: 1.8rem;
	}
	
	.case-news img {
		height: 170px;
	}
	
	.footer p {
		font-size: 0.8rem;
		line-height: 1rem;
	}
	
	.footer-bottom-company-smedia p {
		font-size: 1rem;
	}
	
	.footer img {
		width: 150px;
	}
	
	.footer-bottom-company-text,
	.footer-bottom-company-address {
		max-width: 160px;
	}
	
	.footer-bottom-company-smedia-icon {
		margin-top: 0.6rem;
	}
	
	.footer-bottom-company-smedia-icon svg {
		width: 30px;
	}
}