* {
	padding: 0;
	margin: 0;
	box-sizing: border-box;
}

@font-face {
	font-family: futura;
	src: url(fonts/Futura-Font.ttf);
}

@font-face {
	font-family: ubuntu;
	src: url(fonts/ubuntu/Ubuntu-Regular.ttf);
}

:root {
	--background-color: #feffed;
	--text-color: #000000;
	--transiton: all 0.25s ease;
}

body {
	background: var(--background-color);
	font-family: futura;
	position: relative;
}

p {
	margin: 3px 0;
}

a {
	text-decoration: none;
    outline: none;
}

.space-medium {
	padding-top: 20px;
}

.space-small {
	padding-top: 10px;
}

main.content {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	min-height: 100vh;
	position: relative;
	padding-bottom: 200px;
	padding-top: 100px;
}

.logo {
    position: relative;
    z-index: 10;
    padding: 10px;
	margin-top: -267px;
	width: 246px;
	padding: 23px;
	background-color: var(--background-color);
}
.logo img {
	width: 100%;
}


@media screen and (max-width: 550px) {
	.logo {
		width: 156px;
		margin-top: -207px;
	}
}

.text {
	position: relative;
	padding: 140px 0px 60px;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
}

@media screen and (max-width: 1024px) {
	.text {
		padding: 160px 0px 60px;
	}	
}

.text h1 {
	color: var(--text-color);
	text-align: center;
	font-size: 85px;
	font-style: normal;
	font-weight: 600;
	line-height: 100px; /* 117.647% */
}

@media screen and (max-width: 1024px) {
	.text h1 {
		font-size: 60px;
		line-height: 70.2px;
	}
}

@media screen and (max-width: 768px) {
	.text h1 {
		font-size: 50px;
		line-height: 60.2px;
	}
}

@media screen and (max-width: 550px) {
	.text h1 {
		font-size: 40px;
		line-height: 46.8px; /* 117% of 40px */
	}
}

@media screen and (max-width: 450px) {
	.text h1 {
		font-size: 33px;
		line-height: 41.8px; /* 117% of 40px */
	}
}

.rec-2,
.rec-1 {
	position: absolute;
	width: 820px;
}

.rec-2 {
	top: 35px;
	right: -60px;
}

.rec-1 {
	bottom: 0;
	left: -60px;
}

@media screen and (max-width: 1024px) {
	.rec-2,
	.rec-1 {
		position: absolute;
		width: 580px;
	}

	.rec-2 {
		top: 35px;
		right: -40px;
	}

	.rec-1 {
		bottom: 0;
		left: -40px;
	}
}

@media screen and (max-width: 768px) {
	.rec-2,
	.rec-1 {
		position: absolute;
		width: 490px;
	}

	.rec-2 {
		top: 27px;
		right: -40px;
	}

	.rec-1 {
		bottom: 0;
		left: -40px;
	}
}

@media screen and (max-width: 550px) {
	.rec-2,
	.rec-1 {
		position: absolute;
		width: 410px;
	}

	.rec-2 {
		top: 27px;
		right: -40px;
	}

	.rec-1 {
		bottom: 0;
		left: -40px;
	}
}

@media screen and (max-width: 450px) {
	.rec-2,
	.rec-1 {
		position: absolute;
		width: 349px;
	}

	.rec-2 {
		top: 27px;
		right: -40px;
	}

	.rec-1 {
		bottom: 0;
		left: -40px;
	}
}

dialog.bdrp::backdrop {
	background: repeating-linear-gradient(
		60deg,
		rgba(0, 0, 0, 0.2),
		rgba(0, 0, 0, 0.2) 1px,
		rgba(0, 0, 0, 0.3) 1px,
		rgba(0, 0, 0, 0.3) 20px
	);
	backdrop-filter: blur(1px);
}

@keyframes animate-top {
	from {
		top: 30%;
		opacity: 0;
	}
	to {
		top: 50%;
		opacity: 1;
	}
}

.animate {
	animation-name: animate-top;
	animation-duration: 0.4s;
}

.bdrp.animate {
	background: var(--background-color);
	border-radius: 10px;
}

@media screen and (max-width: 768px) {
	.bdrp.animate {
		width: 100%;
	}
}

.wrapper {
	padding: 50px;
	background: var(--background-color);
	color: var(--color-white);
	display: flex;
	flex-direction: column;
	justify-content: center;
	z-index: 10;
	text-align: center;
	color: var(--text-color);
}

@media screen and (max-width: 768px) {
	.wrapper {
		padding: 25px 20px;
	}
}

.wrapper h1 {
	padding-bottom: 20px;
	text-align: center;
}

.wrapper .address {
	margin: 0 0 20px 0;
}

.wrapper p {
	font-weight: 500;
	font-size: 18px;
}

a {
	color: var(--text-color);
	text-decoration: none;
	transition: var(--transiton);
	font-weight: 700;
	word-wrap: break-word;
	hyphens: auto;
	border-bottom: 1px solid var(--text-color);
}

a:hover {
	color: orange;
	border-bottom: 1px solid hsl(39, 100%, 40%);
}

.close {
	color: white;
	font-size: 20px;
	font-weight: bold;
	cursor: pointer;
	background-color: orange;
	padding: 10px 20px;
	border: none;
	border-radius: 5px;
	margin-top: 25px;
	transition: var(--transiton);
}

.close:hover {
	background-color: hsl(39, 100%, 40%);
}

.centerd {
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.links {
	position: absolute;
	bottom: 50px;
	display: flex;
	gap: 22px;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.btns {
	display: flex;
	gap: 40px;
}

.link {
	color: var(--text-color);
	font-size: 14px;
	font-style: normal;
	font-weight: 500;
	line-height: 180%; /* 25.2px */
	letter-spacing: 0.42px;
	background: transparent;
	border: 0;
	cursor: pointer;
	text-decoration: none;
    outline: none;
}

.copyRights {
	color: var(--text-color);
	/* text link */
	font-family: ubuntu;
	font-size: 14px;
	font-style: normal;
	font-weight: 500;
	line-height: 180%;
	letter-spacing: 0.42px;
}

.copyRights a {
	text-decoration: none;
	color: var(--text-color);
}
