@font-face {
	font-family: 'Montserrat';
	src: url('../fonts/montserrat-400.woff2') format('woff2');
	font-weight: 400;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Montserrat';
	src: url('../fonts/montserrat-500.woff2') format('woff2');
	font-weight: 500;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Montserrat';
	src: url('../fonts/montserrat-600.woff2') format('woff2');
	font-weight: 600;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Montserrat';
	src: url('../fonts/montserrat-700.woff2') format('woff2');
	font-weight: 700;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'LucyCousins';
	src: url('../font/LucyCousins.otf') format('opentype'),
	url('../font/LucyCousins.ttf') format('truetype');
	font-weight: 400;
	font-style: normal;
	font-display: swap;
}

.top_label {
	font-family: 'LucyCousins', cursive;
	font-size: 14px;
	line-height: 20px;
	color: var(--green);
	text-transform: uppercase;
	margin-bottom: 6px;
}

.entry-content .top_label {
	font-size: 20px;
	line-height: 29px;
	font-weight: 400;
	text-transform: none;
}

#page {
	overflow: clip;
	position: relative;
	min-height: 100vh;
	display: flex;
	flex-direction: column;
}

#page > footer {
	margin-top: auto;
}

html,
body {
	padding: 0;
	margin: 0;
	max-width: 100%;
	color: var(--font-color);
	font-family: 'Montserrat', sans-serif;
	font-size: 16px;
	line-height: 1.625;
}

@media (max-width: 991px) {
	html,
	body {
	}
}

.entry-content p {
	font-size: 16px;
	line-height: 1.625;
}

img {
	max-width: 100%;
	height: auto;
	display: block;
}

.container {
	box-sizing: border-box;
	width: 100%;
	max-width: 1350px; /* 1320px content + 15px left/right padding */
	margin-left: auto;
	margin-right: auto;
	padding-left: 15px;
	padding-right: 15px;
}

.container.small_container {
	max-width: 1298px; /* 1268px content + 15px left/right padding */
}

button,
.button {
	padding: 14px 24px;
	border-radius: 40px;
	background-color: var(--green);
	color: white;
	font-size: 14px;
	line-height: 20px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.42px;
	border: none;
	cursor: pointer;
	text-align: center;
	transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
	text-decoration: none;
	display: inline-block;
}

button:hover,
.button:hover {
	background-color: var(--pink);
}

.pink_inverse {
	background-color: transparent;
	color: var(--pink);
	border: 2px solid var(--pink);
}

.pink_inverse:hover {
	background-color: var(--dark-pink);
	border-color: var(--dark-pink);
	color: white;
}

.pink_button {
	background-color: var(--pink);
}

.pink_button:hover {
	background-color: var(--dark-pink);
}

.blue_button {
	background-color: var(--blue);
}

.blue_button:hover {
	background-color: var(--dark-blue);
}

.white_button {
	background-color: #FFF;
	color: var(--blue);
	border: 1px solid #FFF;
}

.white_button:hover {
	background-color: var(--blue);
	color: #FFF;
	border-color: #FFF;
}

input[type="text"],
input[type="email"] {
	padding: 12px 20px;
	border-radius: 34px;
	border: 2px solid var(--green);
	font-size: 14px;
	line-height: 20px;
	font-weight: 600;
	letter-spacing: 0.42px;
	transition: border-color 0.3s ease;
}

input[type="text"]::placeholder,
input[type="email"]::placeholder {
	color: var(--font-color);
	text-transform: uppercase;
	transition: color 0.3s ease;
}

input[type="text"]:hover,
input[type="text"]:focus,
input[type="email"]:hover,
input[type="email"]:focus {
	border-color: var(--pink);
	outline: none;
}

input[type="text"]:hover::placeholder,
input[type="text"]:focus::placeholder,
input[type="email"]:hover::placeholder,
input[type="email"]:focus::placeholder {
	color: var(--pink);
}

h1, h2, h3, h4, h5, h6,
.entry-content h2 {
	margin-top: 0;
	font-weight: bold;
	font-family: 'Montserrat', sans-serif;
}

h2,
.entry-content h2 {
	font-size: 42px;
	line-height: 1.24;
	font-family: 'Montserrat', sans-serif;
}

h2, h3 {
	line-height: 1;
}

h3 {
	font-size: 28px;
}

p {
	margin-top: 0;
}

.secondary_link {
	font-size: 14px;
	line-height: 20px;
	font-weight: 600;
	text-transform: uppercase;
	text-decoration: none;
	letter-spacing: 0.42px;
	color: var(--font-color);
	transition: color 0.3s ease;
}

.secondary_link:hover {
	color: var(--pink);
}

.page-template-page-in-company .secondary_link:hover {
	color: var(--blue);
}

.courses-page-overview__breadcrumbs,
.tt-course-page__breadcrumbs {
	margin-bottom: 39px;
	font-size: 14px;
	line-height: 20px;
	letter-spacing: 0.42px;
	color: #000;
}

.tt-breadcrumbs__list {
	display: flex;
	align-items: center;
	list-style: none;
	margin: 0;
	padding: 0;
}

.tt-breadcrumbs__item a {
	color: inherit;
	text-decoration: none;
	font-weight: 600;
	transition: color 0.2s ease;
}

.tt-breadcrumbs__item a:hover {
	color: var(--pink);
}

.tt-breadcrumbs__item--current {
	color: inherit;
}

.tt-breadcrumbs__separator {
	margin: 0 8px;
	color: inherit;
}

.tt-page-surface {
	background-color: var(--beige, #fdefda);
	position: relative;
	overflow: visible;
}

.page-in-company-page {
	background-color: var(--light-blue, #DDEAF5);
	position: relative;
	overflow: visible;
	padding-bottom: 150px;
}

.page-in-company-page .divider_curves {
	color: var(--light-blue, #DDEAF5);
}

.tt-page-surface::before {
	content: '';
	position: absolute;
	top: -25px;
	left: 0;
	width: 100%;
	height: 303px;
	background: linear-gradient(0deg, #fdefda 33.13%, #fff 93.11%);
	z-index: 0;
	pointer-events: none;
}

.tt-page-surface > .container {
	position: relative;
	z-index: 1;
}

.tt-page-surface__shape {
	position: absolute;
	border-radius: 50%;
	pointer-events: none;
	z-index: -1;
}

.tt-page-surface__shape--green {
	width: 498px;
	height: 498px;
	background: var(--lighter-green, #ddf1e1);
	top: 0;
	left: 60px;
	transform: translateX(-100%);
}

.tt-page-surface__shape--beige {
	width: 218px;
	height: 218px;
	background: var(--beige, #fdefda);
	top: 0;
	right: 0;
}

.tt-page-surface__shape--pink {
	width: 300px;
	height: 300px;
	background: var(--light-pink, #fce4f2);
	top: 400px;
	right: 60px;
	transform: translateX(100%);
}

.divider_curves {
	position: absolute;
	width: 100%;
	left: 0;
	height: 36px;
	line-height: 0;
}

.divider_curves .curves_mobile {
	display: none;
}

.header_curves {
	top: 0;
	transform: translateY(-100%);
}

.footer_curves {
	bottom: 0;
	transform: translateY(100%);
	z-index: 1;
}

div.fullwidth {
	overflow: visible;
}

.ht-ctc {
	left: 15px !important;
	right: auto !important;
}

@media (max-width: 991px) {
	#wpadminbar {
		display: none !important;
	}

	html,
	body {
		margin-top: 0 !important;
	}
}

@media (max-width: 767px) {
	.divider_curves {
		height: 24px;
	}

	.divider_curves .curves_desktop {
		display: none;
	}

	.divider_curves .curves_mobile {
		display: block;
	}

	.entry-content .top_label {
		font-size: 14px;
		line-height: 20px;
	}

	.ht-ctc {
		display: none !important;
	}

	h2, .entry-content h2 {
		font-size: 28px;
		line-height: 36px;
		font-family: 'Montserrat', sans-serif;
	}

	.container {
		padding-left: 20px;
		padding-right: 20px;
	}
}
