body {
	margin: 0;
	font-family: "Inter", sans-serif;
    font-style: normal;
	display: flex;
	flex-direction: column;
	gap: 8rem;
	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: 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: #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;
	align-items: center;
	gap: 2rem;
    margin: auto;
	width: 80%;
}

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

.bg-block {
	padding: 4rem 3rem;
	color: white;
    background: #1f1f24;
	border-radius: 2rem;
	display: flex;
	flex-direction: column;
	gap: 2rem;
	width: 60%;
}

.login-block,
.need-help-1,
.question-1,
.question-2,
.question-3,
.question-win {
	display: flex;
	flex-direction: column;
	gap: 2rem;
}

.question-counter {
	display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(1, 1fr);
	gap: 0.1rem;
	width: 100%;
}

.question-counter p {
	padding: 1rem;
	background: #d9d9d9;
	font-weight: 600;
    font-size: 2rem;
	text-align: center;
	color: #000000;
}

.question-counter p:first-child {
	border-radius: 1rem 0 0 1rem;
	border-right: 4px solid #1f1f24;
}

.question-counter p:last-child {
	border-radius: 0 1rem 1rem 0;
	border-left: 4px solid #1f1f24;
}

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

.form-container input {
    padding: 1rem 1.5rem;
    background-color: #1f1f24;
    font-size: 1.6rem;
    border: 2px solid #404040;
	font-weight: 320;
    border-radius: 1rem;
    color: #ffffff;
    box-sizing: border-box;
	margin-top: 0.5rem;
}

.question-1 input,
.question-2 input,
.question-3 input {
    padding: 1rem 1.5rem;
    background-color: #1f1f24;
    font-size: 1.6rem;
    border: 2px solid #404040;
	font-weight: 320;
    border-radius: 1rem;
    color: #ffffff;
    box-sizing: border-box;
	margin-top: 0.5rem;
}

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

.bg-block button,
.go-internal-page {
    font-size: 1.6rem;
    background: #ffffff;
    color: #000000;
    border: none;
    border-radius: 0.9rem;
    padding: 1rem 3rem;
    text-decoration: none;
    text-align: center;
}

.need-help {
    border-radius: unset !important;
	padding: unset !important;
	background: none !important;
    text-align: center;
	color: #ffffff !important;
	font-weight: 200;
}

.delta-id {
	font-size: 1.4rem;
	text-align: center;
	font-weight: 300;
}

.delta-id span {
	border-radius: 0.8rem;
    font-weight: 600;
    color: black;
    background: white;
    padding: 0.3rem 0.6rem;
}

.switch {
	display: flex;
	background: #000000;
	border-radius: 1.2rem;
	padding: 2px;
	box-sizing: border-box;
}

.switch button {
	flex: 1;
	border: none;
	background: transparent;
	color: #404040;
	font-size: 1.6rem;
	border-radius: 1rem;
	cursor: pointer;
	transition: all 0.3s ease;
}

.switch button.active {
	background: #1f1f24;
	color: #ffffff;
}

.hidden {
	display: none;
}

.shake-text {
  display: inline-block;
  animation: shake 0.5s ease-in-out 1;
}

@keyframes shake {
  0%, 100% {
    transform: translateX(0);
  }
  20% {
    transform: translateX(-5px);
  }
  40% {
    transform: translateX(5px);
  }
  60% {
    transform: translateX(-3px);
  }
  80% {
    transform: translateX(3px);
  }
}

@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 {
		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;
	}
	
	.login-block,
    .need-help-1,
    .question-1,
    .question-2,
    .question-3,
    .question-win {
	    display: flex;
	    flex-direction: column;
	    gap: 1.2rem;
    }
	
	.delta-id {
		margin-bottom: 2rem;
	}
	
	.bg-block {
		padding: 3rem 1.5rem;
		gap: 1.2rem;
		width: 90%;
	}
	
	.form-container input {
		font-size: 1.2rem;
	}
	
	.bg-block button,
	.go-internal-page {
		font-size: 1.2rem;
		margin-top: 1.2rem;
	}
	
	.need-help {
		margin-top: 0 !important;
	}
	
	.switch button {
		font-size: 0.8rem;
		margin-top: 0;
	}
	
	.question-counter p {
	    font-size: unset;
	}
	
	.question-1 input,
	.question-2 input,
	.question-3 input {
	    font-size: 1.4rem;
	}
	
	.bg-block button,
	.go-internal-page {
	    margin-top: unset;
	}
}

@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;
	}
	
	.bg-block {
		width: 80%;
	}
}

@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;
	}
}