@import url('https://fonts.googleapis.com/css2?family=Tektur:wght@400..900&display=swap');
@import url('./null.css');
@import url('./vars.css');

/* Default settings */
@font-face {
	font-family: 'Stolzl Regular';
	src: url('../assets/fonts/stolzl_regular.otf');
	font-weight: 400;
	font-style: normal;
}

@font-face {
	font-family: 'Stolzl Medium';
	src: url('../assets/fonts/stolzl_medium.otf');
	font-weight: 500;
	font-style: normal;
}

.container {
	padding: 0 var(--mob-padding);
	margin: 0 auto;
}

body {
	font-family: var(--font-text-400);
	font-size: var(--font-size);
	overflow-x: hidden !important;
	background-color: var(--background);
}

/* Main styles */
#header {
	width: 100%;
	height: 100%;
	min-height: 568px;
	background: url('../assets/images/section_1/bg/bg-mob.png') no-repeat center
		top;
	background-size: 100%;
	object-fit: cover;

	position: relative;
	transition: 0.3s ease;
	pointer-events: none;
}

#header::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: var(--background, #000);
	z-index: 1;
	opacity: 1;

	animation: welcome-header 3s ease 0s forwards;
	pointer-events: none;
}

@keyframes welcome-header {
	0% {
		opacity: 1;
	}
	100% {
		opacity: 0;
	}
}

#header.active {
	background: var(--background);
}

#header.active .welcome-logo,
#header.active .welcome-title,
#header.active .welcome-btns {
	display: none;
}

.header__inner--top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 12px 0;
	pointer-events: auto;
}

.header__inner--top-desktop {
	display: none;
}

.logo {
	width: 48px;
	height: auto;
}

.burger {
	position: relative;
	width: 32px;
	height: 22px;
	cursor: pointer;
}

.burger::before,
.burger::after {
	content: '';
	position: absolute;
	right: 0;
	width: 100%;
	height: 2px;
	background: var(--primary);
	z-index: 1;

	transition: 0.3s ease;
}

.burger::before {
	top: 0;
}
.burger::after {
	bottom: 0;
	max-width: 26px;
}

.burger span {
	position: absolute;
	top: 50%;
	right: 0;
	transform: translateY(-50%);
	width: 100%;
	height: 2px;
	background: var(--primary);
	z-index: 1;

	opacity: 1;
	transition: 0.3s ease;
}

.burger.active span {
	opacity: 0;
}

.burger.active::before {
	top: 10px;
	transform: rotate(45deg);
}

.burger.active::after {
	bottom: 10px;
	transform: rotate(-45deg);
	max-width: 100%;
}

.header__inner--content {
	position: relative;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	pointer-events: auto;

	text-align: center;
}

.welcome-logo {
	padding-top: 100px;
	margin: 0 auto 10px;
	width: 100%;
	max-width: 256px;

	animation: welcome-logo 1000ms ease 0.5s 1 normal backwards running;
}

@keyframes welcome-logo {
	0% {
		opacity: 0;
		transform: translateY(20px);
	}
	100% {
		opacity: 1;
		transform: none;
	}
}

.welcome-title {
	position: relative;
	width: 260px;
	margin: 0 auto 30px;
}

.welcome-title h1 {
	font-size: 47px;
	line-height: 41.83px;
	letter-spacing: -1.51px;
	color: var(--text-bold);
	font-family: var(--font-title);
	font-weight: 600;
	text-align: left;

	animation: welcome-title 1000ms ease 0.8s 1 normal backwards running;
}

@keyframes welcome-title {
	0% {
		opacity: 0;
		transform: translateY(20px);
	}
	100% {
		opacity: 1;
		transform: none;
	}
}

.welcome-title p {
	position: absolute;
	bottom: 0;
	right: -10px;
	width: 175px;
	color: var(--primary);
	font-size: 12px;
	font-weight: 500;
	line-height: 16.92px;
	text-align: left;

	animation: welcome-text 1100ms ease 1.1s 1 normal backwards running;
}

.welcome-title::after {
	content: '/';
	position: absolute;
	font-size: 12px;
	right: 10px;
	bottom: 0;
	color: var(--primary);

	animation: welcome-text 1200ms ease 1.1s 1 normal backwards running;
}

@keyframes welcome-text {
	0% {
		opacity: 0;
		transform: translateY(20px);
	}
	100% {
		opacity: 1;
		transform: none;
	}
}

.welcome-btns {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 5px;
}

.welcome-btns .support {
	animation: welcome-btn-1 1800ms ease 1.4s 1 normal backwards running;
}

@keyframes welcome-btn-1 {
	0% {
		opacity: 0;
		transform: translateY(20px);
	}
	100% {
		opacity: 1;
		transform: none;
	}
}
.welcome-btns .join {
	animation: welcome-btn-2 1300ms ease 1.4s 1 normal backwards running;
}

@keyframes welcome-btn-2 {
	0% {
		opacity: 0;
		transform: translateY(20px);
	}
	100% {
		opacity: 1;
		transform: none;
	}
}
.top-decors {
	position: relative;
	width: 100%;
	height: 50%;
	left: 0;
	top: 0;
	z-index: 0;
	pointer-events: none;
}

.top-decors .mobile {
	display: block;
}

.top-decors .laptop {
	display: none;
}

.top-decors .desktop {
	display: none;
}

.bottom-decors {
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	bottom: 0;
	width: 100%;
	height: 50%;
	z-index: 0;
	pointer-events: none;
}

.bottom-decors .next-link {
	display: none;
}

.bottom-decors .mobile {
	display: block;
}

.bottom-decors .laptop {
	display: none;
}

.bottom-decors .desktop {
	display: none;
}

.top-decors img:nth-child(1) {
	position: absolute;
	top: 12px;
	left: 0;
}
.top-decors img:nth-child(4) {
	position: absolute;
	top: 12px;
	right: 0;
}

.bottom-decors img:nth-child(1) {
	position: absolute;
	bottom: 14px;
	left: var(--mob-padding);
}
.bottom-decors img:nth-child(4) {
	position: absolute;
	bottom: 14px;
	right: var(--mob-padding);
}

.header__inner--content-menu {
	margin-top: 123px;
	pointer-events: auto;

	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;

	gap: 20px;

	display: none;
}

#header.active .header__inner--content-menu {
	display: flex;
}

.header__inner--content-menu .menu-link {
	color: var(--text-bold);
	font-weight: 600;
	font-family: var(--font-title);
	text-transform: uppercase;
	text-decoration: none;

	font-size: 20px;
}

.header__inner--content-menu .menu-link:hover {
	color: var(--primary);
}

.header__inner--content-menu .menu-link:active {
	color: var(--primary-active);
}

.header__inner--content-menu .language-switcher {
	margin-top: 20px;
}

.header__inner--content-menu .menu-btn {
	margin-top: 18px;
}

.language-switcher {
	display: flex;
	gap: 40px;
	cursor: pointer;
}

.language-switcher span {
	color: var(--text-bold);
	font-weight: 600;
	font-family: var(--font-title);
	font-size: 18px;
	transition: 0.3s ease;
}

.language-switcher span:hover {
	color: var(--primary);
}

.language-switcher span:focus {
	color: var(--primary);
}

.language-switcher span:active {
	color: var(--primary-active);
}

.language-switcher span.active {
	color: var(--primary);
	font-weight: 600;
}

.primary-button {
	display: inline-block;
	text-decoration: none;
	color: var(--background);
	text-transform: uppercase;
	font-family: var(--font-title);
	font-weight: 600;
	padding: 12px 42px;
	background-color: var(--primary);
	transition: 0.1s ease-in-out;
	text-align: center;
	white-space: nowrap;

	max-width: 258px;
	width: 100%;

	clip-path: polygon(
		10px 0,
		100% 0,
		100% calc(100% - 10px),
		calc(100% - 10px) 100%,
		0 100%,
		0 10px
	);
}
.primary-button:hover {
	background-color: var(--primary-hover);
}
.primary-button:active {
	background-color: var(--primary-active);
}

.secondary-button {
	display: inline-block;
	text-decoration: none;
	color: var(--primary);
	text-transform: uppercase;
	font-family: var(--font-title);
	font-weight: 600;
	padding: 12px 42px;
	background-color: rgba(30, 30, 30, 0.9);
	text-align: center;
	clip-path: polygon(
		10px 0,
		100% 0,
		100% calc(100% - 10px),
		calc(100% - 10px) 100%,
		0 100%,
		0 10px
	);
	transition: 0.1s ease-in-out;
	border: 1px solid var(--primary);
	position: relative;
	white-space: nowrap;

	max-width: 258px;
	width: 100%;
}
.secondary-button::before {
	content: '';
	position: absolute;
	top: -12.25px;
	left: -12.25px;
	width: 20px;
	height: 20px;
	transform: rotate(-45deg);
	border-bottom: 2px solid var(--primary);
	transition: 0.1s ease-in-out;
}

.secondary-button::after {
	content: '';
	position: absolute;
	bottom: -12.25px;
	right: -12.25px;
	width: 20px;
	height: 20px;
	border-bottom: 2px solid var(--primary);
	border-top: 2px solid var(--primary);
	transform: rotate(-45deg);
	transition: 0.1s ease-in-out;
}

.secondary-button:hover {
	color: var(--primary-hover);
	border-color: var(--primary-hover);
}

.secondary-button:hover.secondary-button::before {
	border-color: var(--primary-hover);
}
.secondary-button:hover.secondary-button::after {
	border-color: var(--primary-hover);
}

.secondary-button:active,
.secondary-button:active.secondary-button::before,
.secondary-button:active.secondary-button::after {
	color: var(--primary-active);
	border-color: var(--primary-active);
}

#about {
	padding: 40px 0 65px;
}

.about__inner {
	position: relative;
	padding: 37px 0 0 0;
	max-width: 288px;
	margin: 0 auto;
}

.about__inner::before {
	content: '';
	position: absolute;
	top: 0;
	left: -140px;
	width: 248px;
	height: 248px;
	background: url('../assets/images/section_2/bg-logo-outline.svg') no-repeat
		top left;
	background-size: 100%;
	pointer-events: none;
	z-index: -1;
}

.about__inner .label {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	font-weight: 500;
	font-family: var(--font-title);
	color: var(--primary);
	font-size: 12px;
	line-height: 1;
	margin: 0;
	pointer-events: none;
	z-index: 1;
}

.about__inner::after {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	width: 12px;
	height: 12px;
	background: url('../assets/images/section_2/decor-triangle-mob.svg') no-repeat
		top right;
	z-index: 1;
	pointer-events: none;
}

.about__inner h1 {
	color: var(--text-bold);
	font-size: 32px;
	line-height: 32px;
	font-family: var(--font-title);
	font-weight: 600;
	letter-spacing: -1px;
}

.first-row {
	color: var(--text-bold) !important;
}

.about__inner h1 span {
	color: var(--primary);
}

.about__inner h1:nth-child(3) {
	text-align: right;
}

.third-row {
	color: var(--text-bold) !important;
}

.about__inner h1:nth-child(4) {
	position: relative;
	text-align: right;
}

.about__inner h1:nth-child(4)::before {
	content: '';
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	left: 0;
	width: 28px;
	height: 28px;
	background: url('../assets/images/section_2/logo-decor.svg') no-repeat top
		left;
	background-size: 100%;
	z-index: 1;
}

.about__inner p {
	color: var(--text-default);
	font-weight: 500;
	font-family: var(--font-text-400);
	font-size: 14px;
	line-height: 19.6px;
	margin-top: 10px;
}

.about__inner.mobile {
	display: block;
}

.about__inner.lt-dt {
	display: none;
}

#descr {
	padding: 40px 0;
}

.descr__inner .descr-title {
	color: var(--primary);
	font-weight: 500;
	font-size: 12px;
	margin-bottom: 20px;
	display: block;
	text-transform: uppercase;
}

.descr-list {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 30px;
}

.descr-list .descr-item {
	width: 100%;
}

.descr-list .descr-item img {
	max-width: 100%;
	width: 100%;
	height: auto;

	margin-bottom: 10px;
}

.descr-list .descr-item .text {
	display: flex;
	align-items: flex-start;
	justify-content: flex-start;
	gap: 10px;
}

.descr-list .descr-item .text span {
	color: var(--primary);
	font-size: 12px;
	font-weight: 500;
	margin-top: 1px;
}

.descr-list .descr-item .text .item-title {
	color: #bbbbbb;
	font-weight: 500;
	font-size: 20px;
	line-height: 20px;
	text-transform: uppercase;
}

#dt-join-us {
	display: none;
}

/* support-the-division */
#support-the-division {
	padding: 40px 0;
}

.support-the-division__inner {
	max-width: 100%;
	margin: 0 auto;

	position: relative;
}

.support-the-division__inner::after {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	transform: translateY(-50%);
	width: 28px;
	height: 28px;
	background: url('../assets/images/section_2/logo-decor.svg') no-repeat center
		right;
	background-size: 100%;
	z-index: 1;
}

.support-the-division__inner .head {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.support-the-division__inner > .head .wrapper .title,
.support-the-division__inner > .head .wrapper .subtitle {
	font-size: 32px;
	font-weight: 600;
	font-family: var(--font-title);
	line-height: 32px;
	letter-spacing: -1px;
	text-transform: uppercase;
	position: relative;
}

.support-the-division__inner > .head .wrapper .title {
	color: var(--primary);
}

.support-the-division__inner > .head .wrapper .subtitle {
	color: var(--text-bold);
	margin-left: 80px;
}

.support-the-division__inner > .head .text {
	color: var(--text-default);
	margin: 10px 0 25px;
	font-size: 14px;
	font-family: var(--font-text-500);
}

.dropdown .dropdown-header {
	padding: 10px;
	border: 1px solid #ffffff45;

	background: linear-gradient(180deg, #232222 0%, #1e1e1e 100%);

	border-radius: 4px;
	cursor: pointer;

	display: flex;
	align-items: center;
	justify-content: space-between;
}

.dropdown .dropdown-header .title {
	color: var(--text-bold);
	font-size: 20px;
	line-height: 20px;
	font-weight: 500;
	font-family: var(--font-text-500);
}

.dropdown .dropdown-header .tools {
	display: flex;
	align-items: center;
}

.dropdown .dropdown-header .tools img {
	width: 100%;
	max-width: 50px;
	height: auto;
}

.dropdown .dropdown-header .tools .visa {
	margin-right: 2.5px;
}

.dropdown .dropdown-header .tools .arrow {
	margin: 0 0 0 10px;
	transition: 0.3s ease;
}

.dropdown-content {
	display: none;
}

.dropdown.active .dropdown-content {
	display: block;
	margin-top: 20px;
	padding-bottom: 20px;
}

.dropdown.active .dropdown-header .tools .arrow {
	transform: rotate(180deg);
}

.dropdown .dropdown-content {
	border-bottom: 1px solid #ffffff45;
}

.dropdown .dropdown-content .paypal-link {
	color: var(--text-default);
	font-size: 18px;
	font-weight: 500;
}

.dropdown .dropdown-content .title {
	color: var(--primary);
	font-size: 18px;
	font-weight: 500;
	font-family: var(--font-text-500);
}

.dropdown .dropdown-content .descr {
	margin-top: 20px;

	display: flex;
	flex-direction: column;
	flex-wrap: wrap;
	gap: 5px;
}

.dropdown .dropdown-content .descr p {
	font-size: 18px;
	font-weight: 500;
	font-family: var(--font-text-500);
	color: var(--text-default);
}

.dropdown .dropdown-content .bill {
	margin-top: 20px;
	font-size: 18px;
	font-weight: 500;
	font-family: var(--font-text-500);
	color: var(--text-default);
	white-space: normal;
}

#join-us {
	padding: 40px 0;
	background: url('../assets/images/section_5/bg-mob.png') no-repeat top center;
	background-size: 100%;
}

.join-us__inner .label {
	font-weight: 500;
	color: var(--primary);
	font-family: var(--font-text-500);
	font-size: 12px;
	text-transform: uppercase;
}

.join-us__inner {
	max-width: 100%;
	width: 100%;
}

.join-us__inner .head {
	max-width: 290px;
	margin: 20px 0;
}

.join-us__inner .head .title,
.join-us__inner .head .subtitle {
	font-size: 32px;
	line-height: 32px;
	font-weight: 600;
	font-family: var(--font-title);
	text-transform: uppercase;
}

.join-us__inner .head .title {
	color: var(--primary);
	text-align: left;
}

.join-us__inner .head .subtitle {
	color: var(--text-bold);
	text-align: right;
}

#contact-form {
	width: 100%;
}

#contact-form input {
	width: 100%;
	margin-top: 5px;

	padding: 20px;
	background: linear-gradient(180deg, #232222 0%, #1e1e1e 100%);
	border: 1px solid #ffffff45;
	outline: 0;
	border-radius: 4px;

	font-weight: 400;
	font-size: 16px;
	line-height: 16px;
	color: var(--text-default);
}

#contact-form input::placeholder {
	font-weight: 400;
	font-size: 16px;
	line-height: 16px;
	color: var(--text-default);
	text-transform: capitalize;
}

#contact-form input:first-of-type {
	margin: 0;
}

#contact-form .form-btn {
	outline: 0;
	border: 0;
	max-width: 290px;
	margin: 30px auto 0 !important;
	display: block;
	width: 100%;
}

/* Social media */

#social-media {
	padding: 40px 0;
}

.social-media__inner {
	max-width: 290px;
	margin: 0 auto;

	display: block;
}

.social-media__inner.desktop {
	display: none;
}

.social-media__inner .head {
	display: flex;
	align-items: center;
	gap: 8px;
	text-align: left;
	margin-bottom: 20px;
}

.social-media__inner .head .title,
.social-media__inner .head .yellow {
	font-size: 32px;
	line-height: 32px;
	font-family: var(--font-title);
	font-weight: 600;
	letter-spacing: -1px;
	text-transform: uppercase;
}

.social-media__inner .head .title {
	color: var(--text-bold);
}

.social-media__inner .head .yellow {
	color: var(--primary);
}

.social-media__inner .icon-list {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.social-media__inner .collaboration {
	margin: 20px 0 40px !important;
}

.social-media__inner .collaboration .title {
	color: var(--text-bold);
	font-size: 22px;
	font-weight: 500;
	font-family: var(--font-text-500);
	text-transform: uppercase;
}

.social-media__inner .icon-list .item {
	width: 100%;
	min-height: 51px;
	background: url('../assets/images/section_6/btn-base.svg') no-repeat top left;
	object-fit: cover;
	background-size: 100%;

	display: flex;
	align-items: center;
	justify-content: center;
	gap: 5px;

	color: var(--primary);
	text-decoration: none;
}

.social-media__inner .icon-list .item .title {
	color: var(--primary);
	text-decoration: none;
	font-size: 16px !important;
	font-family: var(--font-title);
	text-transform: uppercase;
	line-height: 16px;
	font-weight: 600;
}

.social-media__inner .collaboration .item {
	color: var(--primary);
	font-size: 16px !important;
	font-family: var(--font-title);
	text-transform: uppercase;
	line-height: 16px;
	font-weight: 600;
}

#footer {
	padding: 40px 0 110px;
	background: #151515;
	position: relative;
}

#footer::after {
	content: '©2024 - ОЧІ  | ochi.army';
	position: absolute;
	bottom: 110px;
	left: 50%;
	transform: translateX(-50%);
	width: 100%;
	text-align: center;
	color: #808080;
	font-weight: 400;
	font-size: 12px;
}

.footer__inner {
	text-align: center;
}

.footer-logo {
	margin: 0 auto 30px;
}

.footer-list {
	display: flex;
	flex-direction: column;
	gap: 40px;
}

.footer-list .item a {
	font-size: 18px;
	line-height: 18px;
	font-weight: 600;
	font-family: var(--font-title);
	text-transform: uppercase;
	color: var(--text-bold);
	text-decoration: none;
	transition: 0.3s ease;
}

.footer-list .item a:hover {
	color: var(--primary-hover);
}

.footer-list .item a:active {
	color: var(--primary-active);
}

#footer .social-media {
	margin: 60px 0 80px;
}

#footer .social-media p {
	color: #808080;
	font-size: 20px;
	font-weight: 500;
	line-height: 20px;
}

#footer .social-media ul {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 15px;
	margin-top: 20px;
}

#footer .social-media ul li a img {
	width: 32px;
	height: 32px;
}

@media screen and (min-width: 480px) {
}

@media screen and (min-width: 768px) {
	#header {
		width: 100%;
		height: 100%;
		min-height: 1194px;
		background: url('../assets/images/section_1/bg/bg-lt.png') no-repeat center
			top;
		background-size: 100%;
		object-fit: cover;
	}

	.container {
		padding: 0 var(--lt-padding);
		margin: 0 auto;
	}

	.top-decors .mobile {
		display: none;
	}

	.top-decors .laptop {
		display: block;
	}

	.top-decors .desktop {
		display: none;
	}

	.top-decors img:nth-child(2) {
		position: absolute;
		top: 12px;
		left: 0;
	}
	.top-decors img:nth-child(5) {
		position: absolute;
		top: 12px;
		right: 0;
	}

	.bottom-decors .mobile {
		display: none;
	}

	.bottom-decors .laptop {
		display: block;
	}

	.bottom-decors img:nth-child(2) {
		position: absolute;
		bottom: 30px;
		left: var(--lt-padding);
	}
	.bottom-decors img:nth-child(5) {
		position: absolute;
		bottom: 30px;
		right: var(--lt-padding);
	}

	.logo {
		width: 60px;
		height: auto;
	}

	.burger {
		width: 40px;
	}

	.bottom-decors .next-link {
		display: block;
		position: absolute;
		bottom: 30px;
		left: 50%;
		transform: translateX(-50%);
		width: 32px;
		height: 16px;
		background-size: 100%;
		z-index: 10;
		cursor: pointer;
		pointer-events: auto;
	}

	.bottom-decors .next-link img {
		padding: 0;
		left: 0;
		bottom: 0;
	}

	.welcome-logo {
		padding-top: 550px;
		margin: 0 auto 14px;
		width: 100%;
		max-width: 475px;
	}

	.welcome-title {
		position: relative;
		width: 475px;
		margin: 0 auto 25px;
	}

	.welcome-title h1 {
		font-size: 84px;
		line-height: 74.76px;
	}

	.welcome-title p {
		position: absolute;
		width: 310px;
		font-size: 22px;
		line-height: 31.02px;
	}

	.welcome-title::after {
		content: '/';
		position: absolute;
		font-size: 22px;
		right: 15px;
	}

	.welcome-btns {
		flex-direction: row;
		justify-content: center;
		gap: 10px;
	}

	.welcome-btns a {
		max-width: 230px;
		font-size: 20px;
	}

	.header__inner--content-menu {
		margin-top: 280px;
	}

	.header__inner--content-menu .menu-link {
		font-size: 32px;
	}

	.language-switcher span {
		font-size: 28px;
	}

	.header__inner--content-menu .menu-btn {
		font-size: 20px;
		margin-top: 110px;
	}

	.header__inner--content-menu .language-switcher {
		margin-top: 60px;
	}

	.header__inner--content-menu {
		gap: 40px;
	}

	#about {
		padding: 80px 0 120px;
	}

	.about__inner.mobile {
		display: none;
	}

	.about__inner.lt-dt {
		display: block;
		padding: 50px 0 0 0;
		max-width: 775px;
	}

	.about__inner::before {
		top: -40px;
		left: 40%;
		width: 440px;
		height: 440px;
	}

	.about__inner .label {
		font-size: 22px;
	}

	.about__inner::after {
		width: 16px;
		height: 16px;
		background: url('../assets/images/section_2/decor-triangle.svg') no-repeat
			top right;
	}

	.lt-dt.title {
		text-align: center;
		font-weight: 600;
		font-size: 68px;
		line-height: 68px;
		letter-spacing: -2px;
	}

	.about__inner.lt-dt .second-row {
		text-align: left;
		font-weight: 600;
		font-size: 68px;
		line-height: 68px;
		letter-spacing: -2px;
	}

	.about__inner.lt-dt .text-wrapper {
		display: flex;
		align-items: flex-start;
		justify-content: space-between;
		gap: 6px;

		margin-top: 10px;
	}

	.about__inner.lt-dt .text-wrapper .about-text {
		max-width: 360px;
		font-size: 18px;
		margin: 0;
	}

	.about__inner.lt-dt .text-wrapper .logo-with-date {
		display: flex;
		align-items: flex-start;
		gap: 6px;
	}

	.about__inner.lt-dt .text-wrapper .logo-with-date img {
		width: 56px;
		height: 56px;
	}

	.about__inner.lt-dt .text-wrapper .logo-with-date h1 {
		font-weight: 600;
		font-size: 64px;
		line-height: 64px;
		letter-spacing: -2px;
		text-align: right;
	}

	#descr {
		padding: 80px 0;
	}

	.descr__inner .descr-title {
		font-size: 22px;
		margin-bottom: 40px;
	}

	.descr-list {
		gap: 40px;
	}

	.descr-list .descr-item {
		width: 100%;
	}

	.descr-list .descr-item .text .item-title {
		font-size: 32px;
		line-height: 32px;
	}

	#dt-join-us {
		display: none;
	}

	/* support-the-division */
	#support-the-division {
		padding: 80px 0;
	}

	.support-the-division__inner::after {
		top: 35px;
		right: 0;
		width: 70px;
		height: 70px;
		background: url('../assets/images/section_1/header/logo.svg') no-repeat top
			right;
		background-size: 100%;
	}

	.support-the-division__inner > .head .wrapper .title,
	.support-the-division__inner > .head .wrapper .subtitle {
		font-size: 68px;
		line-height: 68px;
	}

	.support-the-division__inner > .head .wrapper .subtitle {
		margin-left: 180px;
	}

	.support-the-division__inner > .head .text {
		margin: 10px 0 30px;
		font-size: 20px;
	}

	.dropdown .dropdown-header {
		padding: 20px 30px;
	}

	.dropdown .dropdown-header .title {
		font-size: 30px;
		line-height: 30px;
	}

	.dropdown .dropdown-header .tools .visa,
	.dropdown .dropdown-header .tools .mastercard,
	.dropdown .dropdown-header .tools .paypal {
		width: 160px;
		max-width: 160px;
		height: auto;
	}

	.dropdown .dropdown-header .tools .visa {
		margin-right: 5px;
	}

	.dropdown .dropdown-header .tools .arrow {
		margin: 0 0 0 30px;
		width: 20px;
	}

	/* Join us form */

	#join-us {
		padding: 80px 0;
		background: url('../assets/images/section_5/bg-lt.png') no-repeat top center;
		background-size: 100%;
	}

	.join-us__inner .label {
		font-size: 22px;
	}

	.join-us__inner {
		max-width: 100%;
		margin: 0 auto;
	}

	.join-us__inner .head {
		margin: 22px 0 40px;
		max-width: 100%;
	}

	.join-us__inner .head .title,
	.join-us__inner .head .subtitle {
		font-size: 68px;
		line-height: 68px;
	}

	.join-us__inner .head .subtitle {
		text-align: left;
		margin-left: 130px;
	}

	#contact-form {
		position: relative;
	}

	#contact-form::after {
		content: '';
		position: absolute;
		bottom: 0;
		left: 0;
		max-width: 218px;
		width: 100%;
		height: 100%;
		background: url('../assets/images/section_5/lt-decor.svg') no-repeat bottom
			left;
		background-size: 100%;
		pointer-events: none;
		z-index: 1;
	}

	#contact-form .fields-wrapper {
		display: grid;
		grid-template-columns: repeat(2, 1fr);
		gap: 10px;
	}

	#contact-form .fields-wrapper input {
		margin: 0;
	}

	#contact-form .form-btn {
		max-width: 49%;
		margin: 40px 0 0 auto !important;
	}

	/* Social media */

	#social-media {
		padding: 80px 0;
	}

	.social-media__inner {
		max-width: 774px;
		width: 100%;
		margin: 0 auto;
		display: block;
	}

	.social-media__inner .head {
		gap: 16px;
		margin-bottom: 40px;
	}

	.social-media__inner .head .title,
	.social-media__inner .head .yellow {
		font-size: 68px;
		line-height: 68px;
	}

	.social-media__inner .collaboration {
		margin: 20px 0 0 0 !important;
	}

	.social-media__inner .icon-list .item {
		background: url('../assets/images/section_6/btn-base-lt.svg') no-repeat top
			left;
		max-width: 377px;
	}

	.social-media__inner .icon-list .item .title {
		font-size: 20px !important;
		line-height: 20px;
	}

	.social-media__inner .icon-list .item .title:hover {
		color: var(--primary-hover);
	}

	.social-media__inner .collaboration .item {
		font-size: 20px !important;
		line-height: 20px;
	}

	.social-media__inner .collaboration .item:hover {
		color: var(--primary-hover);
	}

	.lt-content {
		display: flex;
		align-items: center;
		justify-content: space-between;
		gap: 20px;
	}

	.lt-content-links {
		max-width: 377px;
		width: 100%;
		flex-shrink: 0;
	}

	.lt-content .sm-logo-mob {
		width: 100%;
		max-width: 377px;
		flex-shrink: 1;
	}

	#footer {
		padding: 80px 0;
	}

	#footer::after {
		bottom: 80px;
	}

	.footer-list {
		flex-direction: row;
		align-items: center;
		justify-content: center;
		gap: 20px;
	}

	.footer-logo {
		margin: 0 auto 50px;
	}
}

@media screen and (min-width: 991px) {
	#header {
		width: 100%;
		height: 100%;
		min-height: 100vh;
		background: url('../assets/images/section_1/bg/bg-dt.png') no-repeat center
			top;
		background-size: 100%;
		object-fit: cover;
	}

	.container {
		max-width: var(--container-max);
		padding: 0 var(--dt-padding);
		margin: 0 auto;
	}

	.header__inner--content {
		min-height: calc(100vh - 100px);
	}

	.header__inner--content .wrapper {
		position: absolute;
		top: 50%;
		left: 90px;
		transform: translateY(-70%);
	}

	.welcome-logo {
		padding-top: 0;
		margin: 0 0 14px;
		width: 100%;
		max-width: 475px;
	}

	.welcome-title {
		margin: 0 0 25px;
	}

	.welcome-title::after {
		bottom: -2px;
	}

	.welcome-btns {
		justify-content: flex-start;
	}

	.top-decors .mobile {
		display: none;
	}

	.top-decors .laptop {
		display: none;
	}

	.top-decors .desktop {
		display: block;
	}

	.top-decors img:nth-child(3) {
		position: absolute;
		top: 15px;
		left: 0;
	}
	.top-decors img:nth-child(6) {
		position: absolute;
		top: 15px;
		right: 0;
	}

	.bottom-decors {
		max-width: calc(var(--container-max) - 60px);
	}

	.bottom-decors img:nth-child(3) {
		position: absolute;
		bottom: 30px;
		left: var(--dt-padding);
	}
	.bottom-decors img:nth-child(6) {
		position: absolute;
		bottom: 30px;
		right: var(--dt-padding);
	}

	.bottom-decors .next-link {
		display: none;
	}

	.logo {
		width: 80px;
	}

	.header__inner--top {
		display: none;
	}

	.header__inner--top-desktop {
		display: flex;
		align-items: center;
		justify-content: space-between;
		padding: 10px 0;
		pointer-events: auto;
	}

	.header__inner--top-desktop nav {
		display: flex;
		align-items: center;
		justify-content: flex-start;
		gap: 40px;
	}

	.header__inner--top-desktop nav ul {
		display: flex;
		align-items: center;
		justify-content: flex-start;
		gap: 20px;
	}

	.header__inner--top-desktop nav ul li a {
		text-decoration: none;
		color: var(--text-bold);
		text-transform: uppercase;
		font-family: var(--font-title);
		font-size: 18px;
		font-weight: 600;
		transition: 0.3s ease;
	}

	.header__inner--top-desktop nav ul li a:hover {
		color: var(--primary);
	}

	.header__inner--top-desktop nav ul li a:active {
		color: var(--primary-active);
	}

	.header__inner--top-desktop > .language-switcher {
		gap: 20px;
	}

	.header__inner--top-desktop > .language-switcher span {
		font-size: 18px;
	}

	#about {
		padding: 100px 0;
	}

	.about__inner.lt-dt {
		display: block;
		padding: 0;
		max-width: var(--container-max);
		width: 100%;
	}

	.about__inner::before {
		top: -100px;
		left: 0;
		width: 568px;
		height: 568px;
	}

	.lt-dt.title {
		text-align: right;
		font-weight: 600;
		font-size: clamp(68px, 7vw, 96px);
		line-height: clamp(68px, 7vw, 96px);
		letter-spacing: -2px;
		margin-right: 100px;
	}

	.about__inner.lt-dt .second-row {
		text-align: left;
		font-weight: 600;
		font-size: clamp(68px, 7vw, 96px);
		line-height: clamp(68px, 7vw, 96px);
		letter-spacing: -2px;
		margin-left: 100px;
	}

	.about__inner.lt-dt .text-wrapper .logo-with-date h1 {
		font-weight: 600;
		font-size: clamp(68px, 7vw, 96px);
		line-height: clamp(68px, 7vw, 96px);
		letter-spacing: -2px;
		text-align: right;
	}

	.about__inner.lt-dt .text-wrapper .logo-with-date img {
		width: clamp(56px, 5vw, 70px);
		height: auto;
	}

	.about__inner.lt-dt .text-wrapper {
		display: flex;
		align-items: flex-start;
		justify-content: space-between;
		gap: 6px;

		margin-top: 10px;
	}

	.about__inner.lt-dt .text-wrapper .about-text {
		max-width: 600px;
		width: clamp(300px, 40vw, 600px);
		font-size: 20px;
		margin: 0 0 0 100px;
		font-size: clamp(18px, 1.6vw, 20px);
	}

	.about__inner.lt-dt .text-wrapper .logo-with-date {
		display: flex;
		align-items: center;
		gap: 6px;
	}

	.descr__inner {
		display: flex;
		align-items: flex-start;
		justify-content: space-between;
		gap: 20px;
	}

	#descr {
		padding: 100px 0;
	}

	.descr__inner .descr-title {
		font-size: clamp(12px, 3vw, 22px);
		white-space: nowrap;
	}

	.descr-list {
		gap: 20px;
		flex-direction: row;
		max-width: 1100px;
	}

	.descr-list .descr-item {
		width: 100%;
	}

	.descr-list .descr-item .text .item-title {
		font-size: clamp(20px, 2.2vw, 32px);
		line-height: clamp(20px, 2.2vw, 32px);
	}

	#dt-join-us {
		display: block;
		padding: 100px 0;
	}

	.dt-join-us__inner {
		position: relative;
	}

	.dt-join-us__inner::after {
		content: '';
		position: absolute;
		top: 0;
		right: 0;
		width: 335px;
		height: 265px;
		background: url('../assets/images/section_4/bg-decor.svg') no-repeat top
			right;
		background-size: 100%;
		z-index: -1;
	}

	.dt-join-us__inner .top-line {
		display: flex;
		align-items: flex-start;
		justify-content: flex-start;
	}

	.dt-join-us__inner .top-line .label {
		font-size: clamp(12px, 3vw, 22px);
		white-space: nowrap;
		color: var(--primary);
		font-weight: 500;
		text-transform: uppercase;
	}

	.dt-join-us__inner .top-line img {
		width: 70px;
		height: auto;

		margin-left: clamp(20px, 4vw, 70px);
	}

	.dt-join-us__inner .top-line h1 {
		font-weight: 600;
		font-size: clamp(48px, 6vw, 96px);
		line-height: clamp(48px, 6vw, 96px);
		letter-spacing: -2px;
		color: var(--text-bold);
		font-family: var(--font-title);
		white-space: nowrap;

		margin-left: clamp(30px, 10vw, 170px);
	}

	.dt-join-us__inner .subtitle {
		display: flex;
		gap: 20px;
	}

	.dt-join-us__inner .subtitle h1 {
		font-weight: 600;
		font-size: clamp(48px, 6vw, 96px);
		line-height: clamp(48px, 6vw, 96px);
		letter-spacing: -2px;
		color: var(--text-bold);
		font-family: var(--font-title);
		white-space: nowrap;

		margin: 0 0 40px 200px;
	}

	.dt-join-us__inner .subtitle span {
		white-space: nowrap;
		color: var(--primary);
		font-weight: 600;
		font-size: clamp(48px, 6vw, 96px);
		line-height: clamp(48px, 6vw, 96px);
		letter-spacing: -2px;
		font-family: var(--font-title);
	}

	.dt-join-us__inner .join {
		margin: 0 auto;
		display: block;

		max-width: 450px;
		width: 100%;
	}

	.dropdown .dropdown-content .bill .desktop {
		display: none;
	}

	.support-the-division__inner .head {
		flex-direction: row;
		align-items: flex-end;
		gap: 30px;
		margin-bottom: 40px;
	}

	.support-the-division__inner > .head .wrapper .title,
	.support-the-division__inner > .head .wrapper .subtitle {
		font-size: clamp(48px, 6vw, 96px);
		line-height: clamp(48px, 6vw, 96px);
	}

	.support-the-division__inner > .head .wrapper .subtitle {
		margin-left: clamp(80px, 10vw, 150px);
	}

	.support-the-division__inner > .head .text {
		margin: 0;
		font-size: clamp(16px, 1.2vw, 20px);
	}

	/* Join us form */

	#join-us {
		padding: 100px 0;
		background: url('../assets/images/section_5/bg-dt.png') no-repeat top center;
		background-size: 100%;
	}

	.join-us__inner {
		max-width: 100%;
		width: 100%;

		display: flex;
		align-items: flex-start;
		justify-content: space-between;
		gap: 20px;

		position: relative;
	}

	.join-us__inner::after {
		content: '';
		position: absolute;
		bottom: 0;
		left: 0;
		max-width: 218px;
		width: 100%;
		height: 100%;
		background: url('../assets/images/section_5/lt-decor.svg') no-repeat bottom
			left;
		background-size: 100%;
		pointer-events: none;
		z-index: 1;
	}

	.join-us__inner .head {
		margin: 30px 0 0 0;
		max-width: 100%;
	}

	.join-us__inner .head .title,
	.join-us__inner .head .subtitle {
		font-size: clamp(68px, 6vw, 96px);
		line-height: clamp(68px, 6vw, 96px);
	}

	.join-us__inner .head .subtitle {
		text-align: left;
		margin-left: 70px;
		white-space: nowrap;
	}

	#contact-form {
		max-width: 686px;
		width: 100%;
		margin-top: 60px;
	}

	#contact-form::after {
		display: none;
	}

	#contact-form .fields-wrapper {
		display: grid;
		grid-template-columns: repeat(2, 1fr);
		gap: 10px;
	}

	#contact-form .fields-wrapper input {
		margin: 0;
	}

	#contact-form .form-btn {
		max-width: 100%;
	}

	.social-media__inner {
		display: none;
	}

	.social-media__inner.desktop {
		display: flex;
		align-items: flex-start;
		justify-content: space-between;
		max-width: 100%;
		gap: 10px;
	}

	.social-media__inner.desktop .info {
		width: 100%;
		max-width: 865px;
	}

	.social-media__inner.desktop .icon-list {
		display: flex;
		flex-direction: row;
		justify-content: center;
		flex-wrap: wrap;

		gap: 20px;
	}

	.social-media__inner.desktop .collaboration {
		display: flex;
		flex-direction: column;
		text-align: center;
		align-items: center;
		gap: 5px;
	}

	.social-media__inner.desktop .icon-list .item {
		background: url('../assets/images/section_6/btn-base-dt.svg') no-repeat top
			left;
		max-width: 272px;

		flex-shrink: 0;
	}

	.social-media__inner.desktop .sm-logo-mob {
		max-width: 330px;
		width: 100%;
		flex-shrink: 1;
	}

	#social-media {
		padding: 100px 0;
	}

	.social-media__inner.desktop .head .title,
	.social-media__inner.desktop .head .yellow {
		font-size: clamp(48px, 6vw, 96px);
		line-height: clamp(48px, 6vw, 96px);
		white-space: nowrap;
	}

	/* footer */

	#footer {
		padding: 32px 0;
	}

	#footer::after {
		bottom: 32px;
	}

	.footer__inner {
		display: flex;
		align-items: center;
		justify-content: space-between;
	}

	.footer-logo {
		margin: 0;
	}
}

@media screen and (min-width: 1280px) {
}

@media screen and (min-width: 1440px) {
}
