* {
	padding: 0;
	margin: 0;
	box-sizing: border-box;
}

html {
	font-family: Arial, Helvetica, sans-serif;
	--primary-color: rgb(34, 115, 253);

	--primary-color-transparent: rgba(34, 114, 253, 0.09);

	--secondary-color: rgb(0, 0, 182);

	--heading-1: calc(2vw + 2rem);
	--heading-2: calc(2vw + 1.4rem);
	--heading-3: calc(2vw + 1rem);
}

a {
	text-decoration: none;
	color: inherit;
}

p {
	line-height: 1.8rem;
}

button {
	background-color: transparent;
	border: none;
	outline: none;
}

li {
	list-style: none;
}

.heading-1 {
	font-size: var(--heading-1);
}

.heading-2 {
	padding: 20px 5px;
	font-size: var(--heading-2);
	text-align: center;
}

.heading-3 {
	padding: 20px;
	font-size: var(--heading-3);
	text-align: center;
}

.link-styled-btn {
	display: inline-block;
	padding: 10px 30px;
	margin: 10px 0px;
	border-radius: 35px;
	text-wrap: wrap;
	font-size: 1rem;
	cursor: pointer;
}

.bold {
	font-weight: bold;
}

.center-text {
	text-align: center;
}

/* SCROLLBAR */

/* For WebKit browsers (e.g., Chrome, Safari) */
::-webkit-scrollbar {
	width: 12px; /* Width of the scrollbar */
}

/* Track */
::-webkit-scrollbar-track {
	background: #f5f5f5; /* Lighter background color of the track */
}

/* Handle */
::-webkit-scrollbar-thumb {
	background: var(--secondary-color); /* Lighter color of the handle */
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
	background: var(--primary-color); /* Lighter color of the handle on hover */
}

.alert {
	padding: 10px 5px;
	color: white;
	text-align: center;
}

.alert-success {
	background: #00da0f;
}

.alert-error {
	background: #ff0033;
}

.social-info-links li a {
	display: block;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	font-size: 16px;
	line-height: 20px;
	border: 2px solid grey;
	color: grey;
	text-align: center;
	box-sizing: border-box;
	padding: 8px 0 0 0;
}

.contact-us-btn-about-section {
	background-color: var(--primary-color);
	color: white;
}

.footer {
	background-color: var(--secondary-color);
	color: white;
	padding: 2rem;
	text-align: center;
}



@media only screen and (min-width: 800px) {
	.links-section .social-info-links {
		display: flex;
		gap: 20px;
	}
}

@media only screen and (min-width: 950px) {
	.links-wrapper {
		display: flex;
	}
}

.cookie-message {
    position: fixed;
    bottom: 0;
    left: 0;
    background-color: white;
    width: 100%;
    padding: 1rem 10px;
    z-index: 100000000;
    
}

.cookie-message p {
    text-align: center;
}

.cookie-message-wrapper {
    display: flex;
    gap: 5px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.cookie-message-wrapper button {
    display: inline-block;
    background-color: #fff;
    color: #505a68;
    border: 2px solid #505050;
    border-radius: 100px;
    text-align: center;
    margin: 10px;
    padding: 5px 30px;
    cursor: pointer;
}

.cookie-message-wrapper p {
    margin: 0;
}


