html {
	-webkit-text-size-adjust: 100%; 
}
html {
	height: 100%;
	min-width: 320px;
}


.container {
	width: 100%;
	max-width: 500px;
	margin: 0 auto;
	padding: 0 10px;
}
@media (min-width: 1025px) {
	.container {
		max-width: 1320px;
	}
}

.download-box {
	display: flex;
	flex-direction: column;
	color: #fff;
	min-height: 100vh;
	padding-bottom: 20px;
	overflow: hidden;
}
@media (min-width: 1025px) {
	.download-box {
		padding-bottom: 0;
	}
}

.download-head {
    background: var(--primary-color);
    border-bottom: 1px solid var(--border-color);
	padding: 18px 0;
	text-align: center;
	margin-bottom: 20px;
}
@media (min-width: 1025px) {
	.download-head {
		margin-bottom: 0;
		padding: 23px 0;
	}
}

.logo {
	display: inline-block;
	vertical-align: top;
    padding: 0;
    margin: 0;
}
.img-logo {
	display: block;
	height: 40px;
}
@media (min-width: 1025px) {
	.img-logo {
		height: 50px;
	}
}

.download-content {
	flex-grow: 1;
	display: flex;
	align-items: center;
	justify-content: center;
}
.download-block {
	margin: 0 auto;
	background-color: transparent;
	padding: 0;
    border-radius: 10px;
}
@media (min-width: 1025px) {
	.download-block {
		color: var(--main-color);
		background: var(--primary-color);
		border: 1px solid var(--border-color);
		padding: 30px;
		display: grid;
		grid-template-columns: 1.5fr 1fr;
		align-items: center;
		gap: 15px 30px;
	}
}
@media (min-width: 1300px) {
	.download-block {
		gap: 30px;
	}
}

.download-title {
    margin-bottom: 15px;
    line-height: 1.15;
}
@media (min-width: 1025px) {
	.download-title {
		line-height: 1;
		margin-bottom: 0;
	}
}
.download-title .name-small {
	font-size: 34px;
	font-weight: 700;
	text-transform: capitalize;
}
@media (min-width: 1300px) {
	.download-title .name-small {
		font-size: 46px;
	}
}
.download-title .accent {
	color: var(--active-color);
	font-weight: 900;
	font-size: 54px;
	text-transform: uppercase;
}
@media (min-width: 420px) {
	.download-title .accent {
		font-size: 60px;
	}
}
@media (min-width: 1025px) {
	.download-title .accent {
		font-size: 50px;
	}
}
@media (min-width: 1300px) {
	.download-title .accent {
		font-size: 76px;
	}
}
.download-title .mark {
	color: var(--active-color);
}

.box-mob-btn .download-btn {
	margin-bottom: 20px;
}
@media (min-width: 1025px) {
	.box-mob-btn {
		display: none;
	}
}

.box-thumb {
	margin-bottom: 15px;
    border-radius: 10px;
    overflow: hidden;
}
@media (min-width: 1025px) {
	.box-thumb {
		margin-bottom: 0;
		grid-row: 1 / 4;
	}
}
.thumb-holder {
	padding-bottom: 56.25%;
	position: relative;
}
.thumb {
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.thumb-info {
	background-color:rgba(11, 11, 11, .6);
	border-radius: 0 0 5px 5px;
	padding: 12px 5px;
}
.thumb-name {
	color: #fff;
	font-size: 18px;
	line-height: 24px;
}
.thumb-label {
	margin-top: 3px;
	color: #909090;
	font-size: 16px;
}

.download-list {
	margin-bottom: 24px;
}
@media (min-width: 1025px) {
	.download-list {
		margin-bottom: 0;
	}
}
.download-list .item {
	margin-bottom: 12px;
	position: relative;
	padding-left: 16px;
}
.download-list .item:last-child {
	margin-bottom: 0;
}
.download-list .item:before {
	content: "";
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background-color: var(--active-color);
	margin-right: 10px;
	position: absolute;
	top: 8px;
	left: 0;
}


.download-footer {
	display: none;
	background: var(--primary-color);
    border-top: 1px solid var(--border-color);
	padding: 13px 0;
}
@media (min-width: 1025px) {
	.download-footer {
		display: block;
	}
}
.box-footer {
	display: flex;
	align-items: center;
	justify-content: center;
}
.download-footer .text {
	color: var(--main-color);
	margin-right: 20px;
	text-transform: uppercase;
	font-size: 16px;
	line-height: 20px;
}


/* buttons */
.download-btn {
	width: 100%;
	font-size: 22px;
	line-height: 28px;
	font-weight: 700;
	display: inline-block;
	text-transform: capitalize;
	padding: 11px 10px;
    border-radius: 10px;
	text-align: center;
	background: var(--active-color);
	color: var(--card-color);
    transition: color .3s, background .3s;
}

.download-btn.sm {
	text-transform: uppercase;
	font-size: 18px;
	white-space: nowrap;
}
@media (max-width: 1026px) {
    .download-btn {
        background: var(--active-color);
        color: var(--card-color);
    }
    .download-list .item,
    .download-title .name-small {
        color: var(--main-color);
    }
}

@media screen and (min-width: 1025px) {
    .download-btn:hover {
		background: #ff3333;
		color: var(--primary-color);
    }
}

@media (min-width: 1025px) {
	.download-btn.sm {
		width: auto;
	}
}
@media (min-width: 1300px) {
	.wrap-btn {
		display: flex;
	}
	.download-btn + .download-btn {
		margin: 0 0 0 20px;
	}
}

.footer {
    display: none;
}

body.dark .download-footer,
body.dark .download-head {
	background: #000;
}

@media (min-width: 1025px) {
	body.dark .download-block {
		background: #000;
	}
}