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

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: rgb(180 184 204 / 14%);
	border-radius: 2rem;
	text-align: center;
	
}

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

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

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

.menu a {
	color: black;
	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: #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;
}

.main-text {
	display: flex;
	justify-content: space-between;
	gap: 2rem;
    margin: auto;
	width: 80%;
}

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

.block-1 {
	max-width: 40%;
	padding: 6rem 3rem;
	color: #ffffff;
    background: #1f1f24;
	border-radius: 2rem;
	display: flex;
	flex-direction: column;
	gap: 2rem;
}

.block-1 p {
	color: #b6b6b6;
}

.block-1 span {
	color: white;
	word-break: break-all;
}

.block-2 {
    display: flex;
    flex-direction: column;
    gap: 1rem;
	width: 55%;
}

.form-container {
    display: flex;
    flex-direction: column;
}

.form-container input,
.form-container textarea {
    padding: 1rem 1.5rem;
    background-color: #f5f5f7;
    font-size: 1.6rem;
    border: 1px solid #505050;
	font-weight: 320;
    border-radius: 1rem;
    color: #505050;
    box-sizing: border-box;
	margin-top: 0.5rem;
}

.form-container textarea {
    height: 6rem;
	resize: none;
}

.form-container label {
    font-size: 1.6rem;
}

.block-2 button {
    font-size: 1.6rem;
    background: #1f1f24;
    color: #ffffff;
    border: none;
    border-radius: 0.5rem;
    padding: 10px 15px;
}

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

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

	.menu a {
        margin: 0.5rem 0;
        color: #ffffff;
        font-size: 1.4rem;
    }
  
	.menu a:last-child {
		color: #ffffff;
	}
  
	.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,
	h4 {
		font-size: 1.6rem;
	}
	
	p, li {
		font-size: 1.2rem;
	}
	
	.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;
	}
	
	.block-1,
	.block-2 {
		max-width: unset;
		width: unset;
	}
	
	.block-1 {
		padding: 4rem 2rem;
	}
	
	.form-container input,
	.form-container textarea,
	.block-2 button,
	.form-container label   {
	    font-size: 1.2rem;
	}
}

@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;
	}
	
	.block-1,
	.block-2 {
		max-width: unset;
		width: unset;
	}
	
	.block-1 {
		padding: 4rem 2rem;
	}
}

@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;
	}
	
	.block-1,
	.block-2 {
		max-width: unset;
		width: unset;
	}
	
	.block-1 {
		padding: 4rem 2rem;
	}
}