* {
	box-sizing: border-box;
}

.overlay {
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: black;
	z-index: 95;
	cursor: pointer;
	opacity: 0.5;
}

.content-container {
	padding: 0;
}

.wrapped-container {
	max-width: 1440px;
	margin-left: auto;
	margin-right: auto;
}

/*.wrapped-container:before {*/
/*	content: '';*/
/*	position: absolute;*/
/*	top: 0; left: 0; right: 0; bottom: 0;*/
/*	width: 100%;*/
/*	height: 100%;*/
/*	background-color: inherit;*/
/*}*/

body {
	color: black;
	background-color: #EFF1F6;
	overflow-x: hidden; /*added this because the main page of the site had a horizontal scroll....*/
}

.language-select-wrapper {
	display: none;
}

.contact-sales-contact-support {
	display: flex;
	flex-direction: column;
	gap: 32px;
}

.contact-sales-btn {
	display: inline-block;
	padding: 15px 30px;
	border-radius: 30px;
	background-color: #52BCBE;
	color: white;
	cursor: "pointer";
	text-decoration: none;
	font-weight: 600;
}

.contact-sales-btn:hover {
	background-color: #47a4a6;
	color: white;
}

.contact-support-text-link {
	font-size: 16px;
}

.contact-support-link {
	color: #1C60DD;
	text-decoration: underline;    /* Підкреслення стандартним способом */
    text-decoration-style: solid; 
	font-weight: 500;
}

.need-help {
	margin-top: 50px;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 15px;
}

.need-help h3 {
	margin-bottom: 0px;
}

.need-help-contact-support {
	display: inline-block;
	padding: 15px 30px;
	border-radius: 30px;
	border: 1px solid #1C60DD;
	color: #1C60DD;
	cursor: "pointer";
	text-decoration: none;
}

.need-help-contact-support:hover {
	background-color: #1C60DD;
	color: white;
}