/* Cookie Consent */
.cookie-consent {
    position: fixed;
    background: #FFFFFF;
    border-radius: 6px;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    max-width: 652px;
    width: 100%;
    box-shadow: 0 5px 10px rgba(167, 167, 167, 0.25);
    z-index: 99000;
}

.cookie-consent, .cookie-consent * {
	-webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.cookie-consent__wrapper {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    padding: 35px 50px 35px 44px;
	font-family: 'Montserrat', Arial, sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.5;
    color: #465A63;
}
.cookie-consent__actions {
	flex-shrink: 0;
}
.cookie-consent__content a {
	color: inherit;
}
.cookie-consent__actions button {
	font-family: 'Montserrat', Arial, sans-serif;
	font-weight: 600;
	color: #ffffff;
    background-color: #d6152c;
    border-radius: 30px;
    -moz-border-radius: 30px;
    -webkit-border-radius: 30px;	
	border: none;
    padding: 10px 25px;
    cursor: pointer;
}
.cookie-consent.pantera button {
	font-family: 'Comfortaa', Arial, sans-serif;
    background-color: #000000;
}
.cookie-consent.cn button {
	font-family: 'Comfortaa', Arial, sans-serif;
    background-color: #4a5946;
}

@media (max-width: 639px) {
    .cookie-consent {
        border-radius: 0;
        bottom: 0;
        left: 0 !important;
        transform: none;
        max-width: 100%;
        box-shadow: 0 -5px 10px rgba(167, 167, 167, 0.25);
    }
	.cookie-consent__wrapper {
        flex-direction: column;
        text-align: center;
        gap: 20px;
        padding: 20px;
    }
}
/* \Cookie Consent */

.main {
	padding: 60px 20px;
	max-width: 1120px;
	margin: 0 auto;
}

.main p {
	color: #000000;
    font-size: 18px;
    font-family: 'Montserrat', Arial, sans-serif;
    line-height: 1.44;
    font-weight: 400;
	margin-block-start: 1em;
    margin-block-end: 1em;
}

.main h1 {
	color: #4a5946;
    font-size: 36px;
	margin-block-start: 1em;
    margin-block-end: 1em;
    font-family: 'Comfortaa', Arial, sans-serif;
    line-height: normal;
    font-weight: 700;
}

.main h2 {
	color: #4a5946;
    font-size: 30px;
	margin-block-start: 1.2em;
    margin-block-end: 1.2em;
    font-family: 'Comfortaa', Arial, sans-serif;
    line-height: normal;
    font-weight: 700;
}

@media screen and (max-width: 639px) {
    .main h1 {
        font-size: 24px;
    }
	.main h2 {
		font-size: 20px;
	}
	.main p {
		font-size: 16px;
	}
}

@media screen and (max-width: 479px) {
    .main h1 {
        font-size: 18px;
    }
	.main h2 {
		font-size: 15px;
	}
	.main p {
		font-size: 14px;
	}
}