body {
	margin: 0;
	font-family: "Inter", sans-serif;
    font-style: normal;
	display: flex;
	flex-direction: column;
	gap: 2rem;
	color: #1f1f24;
	min-height: 100vh;
}

button,
.footer-bottom-company-smedia svg {
	cursor: pointer;
}

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

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

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

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

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

li {
    font-size: 1.8rem;
	margin-bottom: 1rem;
}

ul {
	margin: 0;
}

.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: #d9d9d9;
	border-radius: 2rem;
	text-align: center;
	
}

.menu a:last-child:hover {
	background: #000000;
	color: #ffffff;
	text-decoration: none;
	
}

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

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

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

.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: black;
  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);
}

.footer {
	background: #1f1f24;
	color: white;
	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;
}

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

.main-text h1 {
	text-align: center;
	margin-bottom: 3rem;
}

.user-avatar {
	max-width: 60px;
}

.user-avatar img {
	width: 100%;
	border-radius: 50%;
    overflow: hidden;
}

.user-data {
	gap: 2rem;
    display: flex;
	align-items: center;
    width: 75%;
	background: rgb(180 184 204 / 14%);
	padding: 2rem;
	border-radius: 2rem;
	box-sizing: border-box;
}

.user-data img {
	width: 100px;
	border-radius: 50%;
}

.user-data-text-name {
	font-weight: 700;
}

.user-data-text p:last-child {
	color: rgb(133 136 158 / 100%);
	font-size: 1.4rem;
}

.cubes {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 1fr);
    gap: 1rem;
	width: 75%;
	margin-bottom: 3rem;
}

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

.cube {
    box-sizing: border-box;
    padding: 1.5rem 2.5rem;
	background: rgb(180 184 204 / 14%);
	border-radius: 2rem;
}

.cube svg {
    width: 40px;
	height: 40px;
}

.cube p {
    font-size: 1.6rem;
	margin-top: 3rem;
	font-weight: 600;
}

@media (max-width: 1050px) {
	.hamburger {
		display: none;
	}

	.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;
		color: #ffffff;
	}

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

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

@media (max-width: 480px) {
	body {
		gap: 5rem;
	}
	
	h1 {
		font-size: 2.5rem;
	}
	
	h2 {
		font-size: 1.8rem;
		margin-top: 0;
	}
	
	h3 {
		font-size: 1.5rem;
	}
	
	p, li {
		font-size: 1.4rem;
	}
	
	.navbar {
		padding: 1.2rem;
	}
	
	.logo img {
		max-width: 150px;
	}
	
	.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;
	}
	
	.main-text {
		width: 90%;
		display: flex;
		flex-direction: column;
		gap: 2rem;
		margin: auto;
	}
	
	.cubes {
        display: flex;
        flex-direction: column;
        width: 100%;
    }
    
    .cube {
        border-radius: 1rem;
    }
    
    .user-data {
        width: 100%;
        border-radius: 1rem;
    }
    
    .user-data img {
        width: 60px;
    }
}

@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.5rem;
	}
	
	p, li {
		font-size: 1.6rem;
	}
	
	.navbar {
		padding: 1.6rem;
	}
	
	.logo img {
		max-width: 180px;
	}
	
	.hamburger {
		width: 35px;
		height: 25px;
	}
	
	.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;
	}
	
	.main-text {
		width: 85%;
		display: flex;
		flex-direction: column;
		gap: 2rem;
		margin: auto;
	}
	
	.cubes {
        display: flex;
        flex-direction: column;
        width: 100%;
    }
    
    .cube {
        border-radius: 1rem;
    }
    
    .user-data {
        width: 100%;
        border-radius: 1rem;
    }
    
    .user-data img {
        width: 60px;
    }
}

@media screen and (min-width: 769px) and (max-width: 1100px) {	
	h1 {
		font-size: 3.5rem;
		margin: 0;
	}

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

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

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

	p, li {
		font-size: 1.6rem;
		margin: 0;
	}
	
	.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;
	}
	
	.main-text {
		width: 85%;
		display: flex;
		flex-direction: column;
		gap: 2rem;
		margin: auto;
	}
	
	.user-data {
        width: 100%;
    }
    
    .cubes {
        width: 100%;
    }
}