section {
	box-sizing: border-box;
}

.btn__circle {
	position: absolute;
	left: 12px;
	top: 50%;
	transform: translateY(-50%);
	width: 5px;
	height: 5px;
	border-radius: 50%;
	background: var(--color-a);
}

.header {
	font-family: 'Bauk';
	font-size: var(--64px);
	text-transform: uppercase;
}

.description {
	text-transform: uppercase;
}

.btn {
	border-radius: 10px;
    padding: 10px 40px 10px 60px;
    border:  none;
    background: white;
    cursor: pointer;
    display: block;
    color: black;
    clip-path: var(--btn);
    font-weight: 800;
    font-size: var(--14px);
    position: relative;
    z-index: 1;
    text-transform: uppercase;
    transition: .5s ease;
}

.btn:hover {
	background: lightgray;
	color: black;
}


.footer__bot {
	margin-top: 275px;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: flex-start;
}

.footer__bot > div {
	margin-right: 105px;
}

.footer__bot a {
	text-decoration: none;
	text-transform: uppercase;
	font-weight: 400;
	position: relative;
	color: white;
}

.footer__bot  a:before {
	position: absolute;
	content: '';
	width: 6px;
	height: 6px;
	display: block;
	top: 2px;
	left: -20px;
	border-radius: 50%;
	background: var(--color-a);
}

.footer__cop {
	text-transform: uppercase;

}

.close {
	font-size: 32px;
	cursor: pointer;
	color: white;
}



@media screen and (max-width: 1200px) {
}


@media screen and (max-width: 1024px) {
}

@media screen and (max-width: 768px) {

	.header {
		font-size: 32px !important;
	}

}

@media screen and (max-width: 576px) {
}

@media screen and (max-width: 375px) {

	.header {
		font-size: 26px !important;
	}
}

