:root {
	--color-primary: #fba61f;
	--color-hover: #f5d7a7;
}

.section1__wrapper,
.section2__wrapper {
	display: flex;
	gap: 50px;
}

.descr__box,
.section2__descr-box {
	display: flex;
	align-items: center;
	justify-content: center;
}


.section2__descr-box {
	width: 50%;
}

.section2__img-box {
	width: 50%;
}

.cid-tOU3xU68ZE .mbr-text {
	color: #000 !important;
}

/*thanks*/
.thanksWrapper {
	font-family: 'Raleway', sans-serif;
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 30px;
}

.thanks__img-box {
	text-align: center;
}

.thanksLogo {
	width: 150px;
}

.thanksTextContent {
	display: flex;
	flex-direction: column;
	text-align: center;
	gap: 10px;
}

.thanksText {
	font-size: 18px;
	line-height: 30px;
	margin-bottom: 0;
}

@media (max-width: 480px) {
	.thanksLogo {
		width: 80px;
	}

	.thanksWrapper {
		padding: 0 30px;
	}

	.thanksText {
		font-size: 14px;
	}
}


@media (max-width: 767.98px) {
	.section {
		padding-top: 50px !important;
		padding-bottom: 50px !important;
	}

	.section1__wrapper {
		flex-direction: column;
	}

	.section2__wrapper {
		flex-direction: column-reverse;
	}

	.section2__descr-box,
	.section2__img-box {
		width: 100%;
	}

}

@media (max-width: 479.98px) {
	.section {
		padding-top: 30px !important;
		padding-bottom: 30px !important;
	}
}

.mandatory {
	color: red;
}

/*footer*/
.footer {
	font-family: 'Raleway', sans-serif;
	padding: 80px 0;
	background-color: #232323;
	text-align: left !important;
	color: white;
}

.footer .container .row {
	margin-bottom: 15px;
}

.footer .col-md-6 b,
.footer .col-md-3 b {
	font-size: 16px;
}

.footer img {
	width: 100%;
	max-width: 100px;
	margin-bottom: 15px;
	display: block;
}

.footer p {
	line-height: 24px;
}

.footer a {
	color: var(--color-primary);
	text-decoration: none;
}

.footer a:hover {
	color: var(--color-hover);
}

.footer ul {
	list-style-type: none;
	padding-left: 0;
	font-size: 14px;
}

.footer ul li {
	display: block;
	padding-bottom: 10px;
}

.copyright {
	text-align: center;
	font-size: 14px;
}

@media (max-width: 1024px) {
	.footer {
		padding: 25px 0;
	}
}

@media(max-width:640px) {

	.footer .col-md-3,
	.footer .col-md-6 {
		margin-bottom: 10px;
	}

	.footer ul li {
		margin-bottom: 5px;
	}

	.copyright {
		margin-top: 0;
	}
}

/*docs*/
.wrapper {
	font-family: 'Raleway', sans-serif;
	min-height: 100vh;
	padding: 150px 0;
}

.wrapper h1 {
	margin-bottom: 50px;
	text-align: center;
	font-size: 22px;
	word-wrap: break-word;
}

.wrapper p,
.wrapper ul li {
	font-size: 18px;
	line-height: 22px;
}

.wrapper p:not(:last-child) {
	margin-bottom: 16px;
}

.wrapper a {
	text-decoration: none;
	cursor: pointer;
	color: var(--color-primary);
}

.wrapper a:hover {
	color: var(--color-hover);
}

@media(max-width:640px) {
	.wrapper {
		padding: 150px 50px;
		text-align: justify;
	}

	.wrapper h1 {
		font-size: 22px;
	}
}

@media(max-width:480px) {
	.wrapper {
		padding: 120px 25px;
	}

	.wrapper p,
	.wrapper ul li {
		font-size: 16px;
	}

	.wrapper h1 {
		font-size: 20px;
		margin-bottom: 25px;
	}
}

/*cookie*/
#cookPopup {
	font-family: 'Raleway', sans-serif;
	display: none;
	justify-content: space-between;
	flex-direction: column;
	align-items: center;
	gap: 1rem;
	position: fixed;
	bottom: 15px;
	left: 50%;
	width: 900px;
	max-width: 90%;
	transform: translateX(-50%);
	padding: 25px;
	background-color: white;
	border-radius: 4px;
	box-shadow: 2px 3px 10px rgba(0, 0, 0, 0.4);
	z-index: 9999;
}

#cookPopup p {
	margin: 0;
	text-align: left
}

#cookPopup a {
	color: var(--color-primary);
}

.cookPopup_btn {
	padding: 7px 15px;
	cursor: pointer;
	border: 0;
	background: var(--color-primary);
	border-radius: 4px;
	font-weight: 800;
	color: #fff;
	transition: 0.5s all;
}

.cookPopup_btn:hover {
	background: var(--color-hover);
}

.cookPopup_title {
	font-size: 16px;
	font-weight: 700
}

.cookPopup_desc {
	font-size: 16px
}

.show {
	display: flex !important
}

@media(min-width:576px) {
	#cookPopup.show {
		display: flex;
		align-items: center
	}
}

@media(max-width:575px) {
	#cookPopup.show {
		display: block;
		text-align: left
	}

	.cookPopup_btn {
		margin: 10px 0 0 0
	}

	.form-group .col-md-6 {
		display: flex;
		justify-content: center;
	}
}