@font-face {
	font-family: 'Inter V';
	src: url('../fonts/Inter-V.ttf') format('ttf');
	font-style: normal;
}

@font-face {
	font-family: 'Grtsk';
	src:
		url('../fonts/Grtsk-BoldSlant.woff2') format('woff2'),
		url('../fonts/Grtsk-BoldSlant.woff') format('woff'),
		url('../fonts/Grtsk-BoldSlant.ttf') format('ttf');
	font-weight: 700;
	font-style: normal;
}

/* ==================== COMMON STYLES ==================== */

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html,
body {
	margin: 0;
	padding: 0;
}

body {
	font-family: 'Inter V';
	font-weight: 400;
}

img,
picture,
svg {
	display: block;
	max-width: 100%;
}

button,
input,
select,
textarea {
	font: inherit;
}

ul,
ol {
	list-style: none;
}

a {
	text-decoration: none;
	color: inherit;
	cursor: pointer;
}

button {
	display: block;
	cursor: pointer;
	padding: 0;
}

.container {
	margin: 0 auto;
	width: 100%;
	max-width: 1920px;
	padding: 0 16px;
}

@media (min-width: 1440px) {
	.container {
		padding: 0 80px;
	}
}

@media (min-width: 1920px) {
	.container {
		padding: 0 160px;
	}
}

.header {
	background-color: #161616;
	padding: 12px 0;
	position: fixed;
	width: 100%;
	z-index: 1000;
}

.header-cont {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.logo img {
	height: 24px;
	width: auto;
}

.offer-btn {
	border-radius: 16px 0 16px 16px;
	background: #efd070;
	border: none;
	padding: 4px 8px;

	display: flex;
	align-items: center;
	gap: 6px;

	cursor: pointer;
}

.offer-btn span {
	color: #161616;

	font-size: 14px;
	font-style: normal;
	font-weight: 600;
	line-height: 1.4;
	text-transform: uppercase;
}

.offer-icon {
	transition: transform 0.3s ease;
}

.offer-text {
	display: none;
	padding: 0 16px 12px;
	background-color: #161616;
	margin-top: 10px;
}

.offer-text p {
	color: #fcf2df;

	font-size: 14px;
	font-style: normal;
	font-weight: 600;
	line-height: 1.4;

	margin-bottom: 8px;
}

.countdown-timer {
	padding-top: 10px;
	border-top: 2px solid rgba(255, 255, 255, 0.1);

	display: flex;
	align-items: center;
	gap: 8px;

	margin-bottom: 8px;
}

.countdown-timer div {
	border-radius: 8px;
	background: #fcf2df;
	padding: 2px 6px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

.countdown-timer div span:nth-child(1) {
	color: #161616;
	text-align: center;
	font-family: 'Grtsk';
	font-size: 14px;
	font-style: normal;
	font-weight: 700;
	line-height: 1.4;
}

.countdown-timer div span:nth-child(2) {
	color: #161616;
	text-align: center;

	font-size: 12px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
}

.btn-demo {
	border-radius: 24px 0 24px 24px;
	background: #e26530;
	padding: 8px 16px;

	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;

	width: 150px;
	height: 36px;
}

.btn-demo span {
	color: #fcf2df;

	font-size: 14px;
	font-style: normal;
	font-weight: 600;
	line-height: 1.4;
	text-transform: uppercase;
}

.offer-text-desktop {
	display: none;
}

@media (min-width: 1150px) {
	.offer-btn {
		display: none;
	}

	.offer-text-desktop {
		display: flex;
		align-items: center;
		gap: 24px;
	}

	.offer-text-desktop p {
		display: flex;
		align-items: center;
		gap: 10px;
	}

	.offer-text-desktop p span {
		color: #fcf2df;

		font-size: 14px;
		font-style: normal;
		font-weight: 600;
		line-height: 1.4;
	}

	.countdown-timer-desktop {
		display: flex;
		align-items: center;
		gap: 8px;
	}

	.countdown-timer-desktop div {
		border-radius: 8px;
		background: #fcf2df;
		padding: 2px 6px;
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
	}

	.countdown-timer-desktop div span:nth-child(1) {
		color: #161616;
		text-align: center;
		font-family: 'Grtsk';
		font-size: 14px;
		font-style: normal;
		font-weight: 700;
		line-height: 1.4;
	}

	.countdown-timer-desktop div span:nth-child(2) {
		color: #161616;
		text-align: center;

		font-size: 12px;
		font-style: normal;
		font-weight: 400;
		line-height: normal;
	}

	.btn-demo-desktop {
		border-radius: 24px 0 24px 24px;
		background: #e26530;
		padding: 10px 24px;

		display: flex;
		align-items: center;
		justify-content: center;
		gap: 10px;

		width: 160px;
		height: 40px;

		transition: all 0.3s ease-in-out;
	}

	.btn-demo-desktop:hover {
		background: #161616;
	}

	.btn-demo-desktop span {
		color: #fcf2df;

		font-size: 14px;
		font-style: normal;
		font-weight: 600;
		line-height: 1.4;
		text-transform: uppercase;
	}
}

.hero {
	background: #fcf2df;

	padding: 102px 0 80px;

	position: relative;
}

.hero-cont {
	display: flex;
	flex-direction: column;
	gap: 16px;

	position: relative;
	z-index: 1;
}

.hero-cont-content h1 {
	color: #161616;

	font-family: 'Grtsk';
	font-size: 32px;
	font-style: normal;
	font-weight: 700;
	line-height: 1.2;
	letter-spacing: -1.6px;
	text-transform: uppercase;

	margin-bottom: 24px;
}

.hero-cont-content ul {
	display: flex;
	align-items: center;
	gap: 8px;
	flex-wrap: wrap;

	margin-bottom: 16px;
}

.hero-cont-content ul li {
	display: flex;
	align-items: center;
	gap: 6px;
	padding: 6px 16px;

	border-radius: 24px;
	border: 1px solid #f2e3c7;
	background: #fcf2df;
}

.hero-cont-content ul li span {
	color: #161616;

	font-size: 14px;
	font-style: normal;
	font-weight: 400;
	line-height: 1.4;
}

.hero-cont-content p {
	color: #161616;

	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: 1.4;

	margin-bottom: 24px;
}

.hero-btn-demo {
	border-radius: 32px 0 32px 32px;
	background: #e26530;

	padding: 14px 40px;

	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;

	width: 100%;
	height: 48px;

	transition: all 0.3s ease-in-out;
}

.hero-btn-demo:hover {
	background: #161616;
}

.hero-btn-demo span {
	color: #fcf2df;

	font-size: 16px;
	font-style: normal;
	font-weight: 600;
	line-height: normal;
	text-transform: uppercase;
}

.hero-cont-img {
	position: relative;
}

.hero-cont-img-icon {
	position: absolute;
	top: 30%;
	left: -10%;

	width: 75px;
	height: 70px;
}

@media (min-width: 768px) {
	.hero {
		padding: 117px 0 80px;
	}

	.hero-cont {
		flex-direction: row;
		justify-content: space-between;
		gap: 16px;
	}

	.hero-cont-content {
		width: 50%;
	}

	.hero-cont-img {
		width: 50%;
	}
}

@media (min-width: 1000px) {
	.hero-cont-img {
		width: 45%;
	}

	.hero-cont-content h1 {
		font-size: 60px;

		letter-spacing: -3px;

		margin-bottom: 32px;
	}

	.hero-cont-content ul li span {
		font-size: 16px;
	}

	.hero-cont-content p {
		font-size: 18px;

		margin-bottom: 32px;
	}

	.hero-btn-demo {
		width: 200px;
	}
}

@media (min-width: 1300px) {
	.hero-cont-img-icon {
		top: 30%;
		left: -15%;

		width: 153px;
		height: 149px;
	}
}

@media (min-width: 1440px) {
	.hero-cont-content {
		width: 40%;
	}

	.hero-cont-img-icon {
		left: -13%;
	}
}

.about {
	background-color: #fcf2df;
	padding-top: 60px;

	position: relative;
}

.about-cont {
	display: flex;
	flex-direction: column;
	gap: 80px;
	width: 100%;
	position: relative;
}

.about .tab.active {
	z-index: 2000 !important;
}

.tab-description {
	position: relative;
}

.description {
	position: sticky;
	top: 80px;
}

.learn {
	position: sticky;
	top: 100px;
}

.course {
	position: sticky;
	top: 120px;
}

.demo {
	position: sticky;
	top: 140px;
}

.description-content {
	padding: 16px;

	display: flex;
	flex-direction: column;
	gap: 20px;
	border-radius: 40px;
	background-image: url('../images/about-description.webp');
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
}

.description-content-absolut {
	position: absolute;
	top: -26px;
	left: 30px;

	padding: 4px 25px;

	border-radius: 40px 0 0 0;
	background: #e26530;

	border: none;

	color: #fcf2df;
	font-family: 'Grtsk';
	font-size: 16px;
	font-style: normal;
	font-weight: 700;
	line-height: 1.2;
	letter-spacing: -0.8px;
	text-transform: uppercase;
}

.description-content-top ul {
	display: flex;
	align-items: center;
	gap: 8px;
	flex-wrap: wrap;

	margin-bottom: 16px;
}

.description-content-top ul li {
	display: flex;
	align-items: center;
	gap: 6px;

	padding: 6px 16px;
	border-radius: 24px;
	border: 1px solid #f2e3c7;
	background: #fff9ef;
}

.description-content-top ul li span {
	color: #161616;

	font-size: 14px;
	font-style: normal;
	font-weight: 400;
	line-height: 1.4;
}

.description-content-top p {
	color: #fcf2df;

	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: 1.4;
}

.description-content-bottom {
	padding: 16px;
	border-radius: 24px 0 24px 24px;
	background: #fff9ef;
}

.description-content-bottom p {
	color: #161616;

	font-family: 'Grtsk';
	font-size: 18px;
	font-style: normal;
	font-weight: 700;
	line-height: 1.2;
	letter-spacing: -0.9px;
	text-transform: uppercase;

	margin: 16px 0;
}

.description-content-bottom-img {
	display: flex;
	align-items: center;
	gap: 8px;

	padding-top: 16px;

	border-top: 1px solid #f2e3c7;
}

.description-content-bottom-img img {
	width: auto;
	height: 52px;
}

.description-content-bottom-img div {
	display: flex;
	flex-direction: column;
	gap: 2px;
}

.description-content-bottom-img div span:nth-child(1) {
	color: #161616;

	font-size: 14px;
	font-style: normal;
	font-weight: 400;
	line-height: 1.4;
}

.description-content-bottom-img div span:nth-child(2) {
	color: #161616;

	font-size: 16px;
	font-style: normal;
	font-weight: 600;
	line-height: 1.4;
}

/* .learn {
	position: absolute;
	top: 20px;
	left: 16px;
	right: 16px;
} */

.tab-learn {
	position: relative;
}

.learn-content {
	padding: 16px;

	border-radius: 24px;
	background: #efd070;

	display: flex;
	flex-direction: column;
	gap: 20px;
}

.learn-content-absolut {
	position: absolute;
	top: -26px;
	left: 50px;

	padding: 4px 25px;

	border-radius: 40px 0 0 0;
	background: #efd070;
	border: none;

	color: #161616;
	font-family: 'Grtsk';
	font-size: 16px;
	font-style: normal;
	font-weight: 700;
	line-height: 1.2;
	letter-spacing: -0.8px;
	text-transform: uppercase;
}

.learn-content-top img {
	display: none;
}

.learn-content-top p {
	color: #161616;

	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: 1.4;
}

.learn-content-top a,
.learn-content-top-svg {
	display: none;
}

.learn-content-bottom ul {
	display: flex;
	flex-direction: column;
	gap: 20px;

	height: 500px;
	overflow: auto;
}

.learn-content-bottom ul li {
	padding: 16px;

	display: flex;
	flex-direction: column;
	gap: 16px;

	border-radius: 24px;
	border: 2px solid #f2e3c7;
	background: #fff9ef;

	transition: all 0.3s ease-in-out;
}

.learn-content-bottom ul li:hover {
	border-top-right-radius: 0px;

	background-image: url('../images/reviews-bg-hover.webp');
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;

	transform: scale(1.02);
}

.learn-content-bottom ul li div {
	display: flex;
	align-items: center;
	gap: 8px;
}

.learn-content-bottom ul li div span {
	color: #161616;

	font-family: 'Grtsk';
	font-size: 18px;
	font-style: normal;
	font-weight: 700;
	line-height: 1.2;
	letter-spacing: -0.9px;
	text-transform: uppercase;
}

.learn-content-bottom ul li p {
	color: #161616;

	font-size: 14px;
	font-style: normal;
	font-weight: 400;
	line-height: 1.4;
}

.learn-content-bottom a {
	padding: 12px 30px;

	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;

	border-radius: 18px 0 18px 18px;
	background: #e26530;

	color: #fcf2df;

	font-size: 14px;
	font-style: normal;
	font-weight: 600;
	line-height: 1.4;
	text-transform: uppercase;
	margin-top: 24px;

	transition: all 0.3s ease-in-out;
}

.learn-content-bottom a:hover {
	background: #161616;
}

@media (min-width: 768px) {
	.description {
		top: 100px;
	}

	.learn {
		position: sticky;
		top: 110px;
	}

	.course {
		position: sticky;
		top: 120px;
	}

	.demo {
		position: sticky;
		top: 130px;
	}

	.description-content {
		padding: 30px;
	}

	.description-content-absolut {
		top: -45px;

		padding: 12px 60px;

		font-size: 22px;

		letter-spacing: -1.1px;
	}

	.description-content-top ul li span {
		font-size: 16px;
	}

	.description-content-top p {
		font-size: 18px;
	}

	.description-content-bottom {
		padding: 24px;
	}

	.description-content-bottom p {
		font-size: 28px;

		letter-spacing: -1.4px;
	}

	.description-content-bottom-img div span:nth-child(2) {
		font-size: 18px;
	}

	.learn-content {
		padding: 30px;
	}

	.learn-content-absolut {
		top: -45px;
		left: 20%;

		padding: 12px 60px;

		font-size: 22px;

		letter-spacing: -1.1px;
	}

	.learn-content-top img {
		display: none;
	}

	.learn-content-top p {
		font-size: 18px;
	}

	.learn-content-top a {
		display: none;
	}

	.learn-content-bottom ul {
		display: grid;
		grid-template-columns: repeat(2, 1fr);
		gap: 20px;
	}

	.learn-content-bottom ul li {
		padding: 24px;
	}

	.learn-content-bottom ul li div span {
		font-size: 22px;

		letter-spacing: -1.1px;
	}

	.learn-content-bottom ul li p {
		font-size: 16px;
	}

	.learn-content-bottom a {
		padding: 14px 40px;

		font-size: 16px;

		line-height: normal;

		margin-top: 32px;
	}
}

@media (min-width: 1200px) {
	.learn-content-absolut {
		left: 25%;
	}

	.course-content-absolut {
		left: 50% !important;
	}

	.demo-content-absolut {
		left: 73% !important;
	}
}

@media (min-width: 1000px) {
	.description-content {
		padding: 80px;

		flex-direction: row;
		align-items: flex-start;
		justify-content: space-between;
		gap: 20px;
	}

	.description {
		top: 120px;
	}

	.learn {
		position: sticky;
		top: 140px;
	}

	.course {
		position: sticky;
		top: 160px;
	}

	.demo {
		position: sticky;
		top: 180px;
	}
}

@media (min-width: 1200px) {
	.learn-content {
		padding: 80px;

		flex-direction: row;
		align-items: stretch;
		justify-content: space-between;
		gap: 20px;
	}

	.learn-content-top,
	.learn-content-bottom {
		width: 50%;
	}

	.learn-content-top {
		display: flex;
		flex-direction: column;
		justify-content: space-between;
	}

	.learn-content-top a {
		padding: 14px 40px;

		display: flex;
		align-items: center;
		justify-content: center;
		gap: 10px;

		border-radius: 18px 0 18px 18px;
		background: #e26530;

		color: #fcf2df;

		font-size: 16px;
		font-style: normal;
		font-weight: 600;
		line-height: normal;
		text-transform: uppercase;
		margin-top: 32px;

		width: 200px;
		height: 48px;

		transition: all 0.3s ease-in-out;
	}

	.learn-content-top a:hover {
		background: #161616;
	}

	.learn-content-bottom a {
		display: none;
	}

	.learn-content-top-svg {
		display: block;
		width: 50%;
		height: auto;
	}

	.learn-content-bottom ul {
		height: 700px;
		/* overflow: auto; */
	}
}

.form {
	background-image: url('../images/blue-bg.webp');
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;

	padding: 65px 0 24px;
	position: relative;
}

.form-wrapper {
	position: absolute;
	top: 0;
	left: 0;

	width: 100%;

	padding: 12px 0;

	background: #efd070;

	overflow: hidden;
}

.form-wrapper-block {
	white-space: nowrap;

	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
}

.form-wrapper-block svg {
	flex-shrink: 0;
	width: 21px !important;
	height: 20px !important;
}

.form-wrapper-block p {
	color: #161616;

	font-family: 'Grtsk';
	font-size: 22px;
	font-style: normal;
	font-weight: 700;
	line-height: 1.2;
	letter-spacing: -1.1px;
	text-transform: uppercase;
}

.form-cont {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.form-cont-content h2 {
	color: #fcf2df;

	font-family: 'Grtsk';
	font-size: 28px;
	font-style: normal;
	font-weight: 700;
	line-height: 1.2;
	letter-spacing: -1.4px;
	text-transform: uppercase;

	text-align: center;
}

.form-container {
	padding: 16px;
	border-radius: 24px;
	background: #fcf2df;
	width: 100%;

	max-width: 603px;

	margin: 0 auto;
}

.form-container-header {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 8px;

	margin-bottom: 24px;
}

.form-container p {
	color: #161616;

	font-family: 'Grtsk';
	font-size: 18px;
	font-style: normal;
	font-weight: 700;
	line-height: 1.2;
	letter-spacing: -0.9px;
	text-transform: uppercase;

	text-align: center;
}

.countdown-timer-form {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
}

.countdown-timer-form div {
	display: flex;
	align-items: flex-end;
	gap: 6px;

	padding: 6px 8px;

	border-radius: 8px;
	background: #161616;
}

.countdown-timer-form div span:nth-child(1) {
	color: #efd070;
	text-align: center;

	font-family: 'Grtsk';
	font-size: 18px;
	font-style: normal;
	font-weight: 700;
	line-height: 1.2;
	letter-spacing: -0.9px;
	text-transform: uppercase;
}

.countdown-timer-form div span:nth-child(2) {
	color: #fcf2df;
	text-align: center;

	font-size: 12px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
}

.form-container form {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.form-container label {
	font-size: 14px;
	margin-bottom: 5px;
}

.form-container input,
.form-container select {
	padding: 14px 16px;

	border-radius: 32px;
	background: #f2e3c7;

	border: none;

	color: #161616;

	font-size: 14px;
	font-style: normal;
	font-weight: 400;
	line-height: 1.4;
}

.form-container input::placeholder {
	color: #646464;

	font-size: 14px;
	font-style: normal;
	font-weight: 400;
	line-height: 1.4;
}

.form-container button {
	margin-top: 24px;

	padding: 16px 32px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;

	border-radius: 32px 0 32px 32px;
	background: #e26530;
	border: none;

	color: #fcf2df;

	font-size: 14px;
	font-style: normal;
	font-weight: 600;
	line-height: 1.4;
	text-transform: uppercase;

	transition: all 0.3s ease-in-out;
}

.form-container button:hover {
	background: #161616;
}

@media (min-width: 768px) {
	.form {
		padding: 166px 0 80px;
	}

	.form-wrapper {
		padding: 24px 0;
	}

	.form-wrapper-block {
		gap: 16px;
	}

	.form-wrapper-block svg {
		width: 26px !important;
		height: 25px !important;
	}

	.form-wrapper-block p {
		font-size: 32px;

		letter-spacing: -1.6px;
	}

	.form-cont {
		gap: 50px;
	}

	.form-cont-content h2 {
		font-size: 60px;

		letter-spacing: -5.5px;
	}

	.form-container {
		padding: 16px;
		border-radius: 24px;
		background: #fcf2df;
		width: 100%;

		max-width: 603px;

		margin: 0 auto;
	}

	.form-container-header {
		flex-direction: row;
		align-items: center;
		justify-content: space-between;
	}

	.form-container p {
		font-size: 22px;

		letter-spacing: -1.1px;
	}

	.countdown-timer-form div span:nth-child(1) {
		font-size: 32px;

		letter-spacing: -1.6px;
	}

	.countdown-timer-form div span:nth-child(2) {
		font-size: 16px;

		line-height: 1.4;
	}

	.form-container input,
	.form-container select {
		padding: 14px 20px;

		font-size: 16px;
	}

	.form-container input::placeholder {
		font-size: 16px;
	}

	.form-container button {
		padding: 14px 40px;

		font-size: 16px;

		line-height: normal;
	}
}

@media (min-width: 1000px) {
	.form-cont {
		flex-direction: row;
		align-items: flex-end;
		justify-content: space-between;
		gap: 20px;
	}

	.form-cont-content h2 {
		font-size: 110px;

		text-align: start;
	}
}

/* .course {
	position: absolute;
	top: 40px;
	left: 16px;
	right: 16px;
} */

.course-content {
	padding: 16px;
	border-radius: 24px;
	background: #93b4bc;

	position: relative;
}

.tab-course {
	position: relative;
}

.course-content-absolut {
	position: absolute;
	top: -26px;
	left: 70px;

	padding: 4px 25px;

	border-radius: 40px 0 0 0;
	background: #93b4bc;

	border: none;

	color: #161616;
	font-family: 'Grtsk';
	font-size: 16px;
	font-style: normal;
	font-weight: 700;
	line-height: 1.2;
	letter-spacing: -0.8px;
	text-transform: uppercase;
}

.course-review-card {
	border-radius: 24px;
	background: #fff9ef;
	padding: 16px;

	height: 100%;
	display: flex;
	flex-direction: column;
	gap: 24px;
	justify-content: space-between;

	transition: all 0.3s ease-in-out;
}

.course-review-card:hover {
	border-top-right-radius: 0px;
}

.course-review-card__header {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.course-review-card__avatar img {
	width: 67px;
	height: 67px;

	object-fit: cover;
}

.course-review-card__name {
	color: #161616;

	font-family: 'Grtsk';
	font-size: 22px;
	font-style: normal;
	font-weight: 700;
	line-height: 1.2;
	letter-spacing: -1.1px;
	text-transform: uppercase;

	margin-bottom: 8px;
}

.course-review-card__meta {
	color: #161616;

	font-size: 14px;
	font-style: normal;
	font-weight: 400;
	line-height: 1.4;
}

.course-review-card__body {
	border-radius: 24px;
	border: 1px solid #f2e3c7;
	background: #fcf2df;

	padding: 16px;

	display: flex;
	flex-direction: column;
	gap: 24px;
}

.course-review-card__body div {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.course-review-card__body div img {
	width: 30px;
	height: 30px;
}

.course-review-card__body div p {
	color: #161616;

	font-size: 14px;
	font-style: normal;
	font-weight: 400;
	line-height: 1.4;
}

.course-review-card__footer {
	display: none;
}

.course-reviews-btns {
	display: flex;
	align-items: center;
	justify-content: space-between;

	margin-top: 32px;
}

:root {
	--swiper-navigation-size: 0px !important;
}

.course-swiper-pagination {
	position: static !important;
	text-align: start !important;
}

.swiper-pagination-bullet {
	width: 8px !important;
	height: 8px !important;

	border-radius: 16px !important;
	opacity: 0.2 !important;
	background: #161616 !important;

	transition: all 0.3s ease-in-out;
}

.swiper-pagination-bullet:hover {
	background: #e26530 !important;
	opacity: 1 !important;
}

.swiper-pagination-bullet-active {
	width: 37px !important;
	height: 8px !important;

	border-radius: 16px !important;
	background: #161616 !important;
	opacity: 1 !important;
}

.course-reviews-btns-pn {
	display: flex;
	align-items: center;
	gap: 24px;
}

.swiper-button-prev:after,
.swiper-button-next:after {
	content: none !important;
}

.course-reviews-prev,
.course-reviews-next {
	position: static !important;
	width: 90px !important;
	height: 44px !important;
	border-radius: 300px;
	background: #161616;
	padding-left: 8px 18px;
	display: flex;
	justify-content: center;
	align-items: center;

	transition: all 0.3s ease-in-out;
}

.course-reviews-prev:hover,
.course-reviews-next:hover {
	background: #e26530 !important;
}

.course-reviews-prev svg,
.course-reviews-next svg {
	width: 25px !important;
	height: 17px !important;
}

@media (min-width: 768px) {
	.course-content {
		padding: 30px;
	}

	.course-content-absolut {
		top: -45px;
		left: 35%;

		padding: 12px 60px;

		font-size: 22px;

		letter-spacing: -1.1px;
	}

	.course-review-card {
		padding: 24px;
	}

	.course-review-card__header {
		flex-direction: row;
		align-items: center;
		gap: 20px;
	}

	.course-review-card__avatar img {
		width: 90px;
		height: 90px;
	}

	.course-review-card__name {
		font-size: 28px;

		letter-spacing: -1.4px;
	}

	.course-review-card__meta {
		font-size: 16px;
	}

	.course-review-card__body div {
		flex-direction: row;
		align-items: center;
		gap: 16px;
	}

	.course-review-card__body div img {
		width: 44px;
		height: 44px;
	}

	.course-review-card__body div p {
		font-size: 18px;
	}

	.course-review-card__footer {
		display: block;
	}

	.course-review-card__footer img {
		width: 90px;
		height: 90px;
	}

	.course-reviews-btns {
		width: 50%;
		margin: 32px 0 0 auto;
	}
}

@media (min-width: 1000px) {
	.course-content {
		padding: 80px;
	}
}

/* .demo {
	position: absolute;
	top: 60px;
	left: 16px;
	right: 16px;
} */

.demo-bg {
	background-image: url('../images/bg-green.webp');
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	padding: 16px;
	border-top-left-radius: 50px;
	border-top-right-radius: 50px;

	position: relative;
}

.tab-demo {
	position: relative;
}

.demo-content {
	margin-bottom: 40px;
}

.demo-content-absolut {
	position: absolute;
	top: -26px;
	left: 110px;

	padding: 4px 25px;

	border-radius: 40px 0 0 0;
	background: #928c50;

	border: none;

	color: #fcf2df;
	font-family: 'Grtsk';
	font-size: 16px;
	font-style: normal;
	font-weight: 700;
	line-height: 1.2;
	letter-spacing: -0.8px;
	text-transform: uppercase;
}

.demo-content-text {
	color: #fcf2df;

	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: 1.4;

	margin-bottom: 32px;
}

.demo-list {
	display: flex;
	flex-direction: column;
	gap: 16px;

	margin: 32px auto 0 auto;
	position: relative;

	max-width: 790px;
	position: relative;
}

.demo-list li:nth-child(2) .demo-list-first,
.demo-list li:nth-child(2) .demo-list-second {
	display: none;
}

.demo-list::before {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 250px;
	background: linear-gradient(
		to bottom,
		rgba(252, 242, 223, 1),
		rgba(252, 242, 223, 0.8)
	);
	pointer-events: none;
	border-radius: 30px;

	z-index: 100;
}

.demo-list-item {
	padding: 16px;
	border-radius: 30px 0 30px 30px;
	border: 2px solid #f2e3c7;
	background: #fff9ef;
}

.demo-list-item-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 16px;
}

.demo-list-item-header p {
	color: #161616;

	font-family: 'Grtsk';
	font-size: 18px;
	font-style: normal;
	font-weight: 700;
	line-height: 1.2;
	letter-spacing: -0.9px;
	text-transform: uppercase;
}

.demo-list-item-header div {
	width: 32px;
	height: 32px;
	border-radius: 50%;
	background: #161616;

	display: flex;
	align-items: center;
	justify-content: center;
}

.demo-list-first {
	display: flex;
	align-items: center;
	gap: 8px;
	flex-wrap: wrap;

	margin-bottom: 24px;
}

.demo-list-first li {
	padding: 4px 16px;

	display: flex;
	align-items: center;
	gap: 6px;

	border-radius: 24px;
	border: 1px solid #f2e3c7;
	background: #fcf2df;
}

.demo-list-first li span {
	color: #161616;

	font-size: 14px;
	font-style: normal;
	font-weight: 400;
	line-height: 1.4;
}

.demo-list-second {
	display: flex;
	flex-direction: column;
}

.demo-list-second li:nth-child(1) {
	padding-bottom: 8px;
}

.demo-list-second li:nth-child(1) div {
	padding: 8px;
	display: flex;
	align-items: center;
	gap: 8px;

	border-radius: 8px;
	background: #f2e3c7;
}

.demo-list-second-svg {
	width: 10%;
}

.demo-list-second li:nth-child(1) div span {
	color: #161616;

	font-size: 14px;
	font-style: normal;
	font-weight: 400;
	line-height: 1.4;
	width: 70%;
}

.demo-list-second li:nth-child(2) {
	border-top: 1px solid #f2e3c7;
	border-bottom: 1px solid #f2e3c7;
}

.demo-list-second li:nth-child(2),
.demo-list-second li:nth-child(3) {
	padding: 8px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 8px;
}

.demo-list-second li:nth-child(2) p,
.demo-list-second li:nth-child(3) p {
	display: flex;
	align-items: center;
	gap: 8px;
	width: 100%;
	/* padding-left: 5px; */
}

.demo-list-second li:nth-child(2) span,
.demo-list-second li:nth-child(3) span {
	color: #161616;

	font-size: 14px;
	font-style: normal;
	font-weight: 400;
	line-height: 1.4;
}

.demo-list-second li:nth-child(2) div,
.demo-list-second li:nth-child(3) div {
	border-radius: 50%;
	background: #161616;
	width: 32px;
	height: 32px;

	padding: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
}

/* .demo-position {
	position: absolute;
	bottom: -260px;
	left: 50%;
	transform: translate(-50%);

	margin: 0 auto;

	width: 90%;
	max-width: 1330px;

	z-index: 200;
} */

.demo-yellow {
	position: absolute;
	bottom: 30px;
	left: 50%;
	transform: translate(-50%);

	border-radius: 24px;
	background: #e26530;
	padding: 16px;
	width: 276px;

	z-index: 500;
}

.demo-yellow p {
	color: #fcf2df;
	text-align: center;

	font-family: 'Grtsk';
	font-size: 18px;
	font-style: normal;
	font-weight: 700;
	line-height: 1.2;
	letter-spacing: -0.9px;
	text-transform: uppercase;
}

.demo-count {
	background-image: url('../images/bg-orange.webp');
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;

	padding: 40px 16px;
	border-radius: 30px 0 30px 30px;
	width: 100%;

	display: none;
}

.demo-count-text {
	color: #fcf2df;
	text-align: center;

	font-size: 18px;
	font-style: normal;
	font-weight: 600;
	line-height: 1.4;

	margin-bottom: 8px;
}

.demo-count-timer {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;

	margin-bottom: 20px;
}

.demo-count-timer div {
	padding: 6px;
	border-radius: 8px;
	background: #fcf2df;

	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;

	width: 78px;
	height: 50px;
}

.demo-count-timer div span:nth-child(1) {
	color: #161616;
	text-align: center;

	font-family: 'Grtsk';
	font-size: 18px;
	font-style: normal;
	font-weight: 700;
	line-height: 1.2;
	letter-spacing: -0.9px;
	text-transform: uppercase;
}

.demo-count-timer div span:nth-child(2) {
	color: #161616;
	text-align: center;

	font-size: 14px;
	font-style: normal;
	font-weight: 400;
	line-height: 1.4;
}

.demo-count-title {
	color: #fcf2df;
	text-align: center;

	font-family: 'Grtsk';
	font-size: 28px;
	font-style: normal;
	font-weight: 700;
	line-height: 1.2;
	letter-spacing: -1.4px;
	text-transform: uppercase;

	margin-bottom: 24px;
}

.demo-count a {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;

	padding: 18px 32px;
	border-radius: 32px 0 32px 32px;
	background: #161616;

	max-width: 460px;
	height: 75px;
	margin: 0 auto;

	transition: all 0.3s ease-in-out;
}

.demo-count a:hover {
	background: #efd070;
}

.demo-count a span {
	color: #fcf2df;

	font-size: 18px;
	font-style: normal;
	font-weight: 600;
	line-height: normal;
	text-transform: uppercase;
}

.demo-count a:hover span {
	color: #161616;
}

.demo-count a svg {
	fill: #fcf2df;
}

.demo-count a:hover svg {
	fill: #161616;
}

.demo-desktop {
	display: none;
}

@media (min-width: 768px) {
	.demo-bg {
		padding: 30px;
	}

	.demo-content-absolut {
		top: -45px;
		left: 45%;

		padding: 12px 60px;

		font-size: 22px;

		letter-spacing: -1.1px;
	}

	.demo-content-text {
		font-size: 18px;
	}

	.demo-countdown {
		flex-direction: row;

		gap: 16px;
	}

	.demo-countdown p {
		font-size: 22px;

		letter-spacing: -1.1px;
	}

	.demo-countdown-timer div {
		align-items: flex-end;
		border-radius: 8px;
		background: #161616;
	}

	.demo-countdown-timer div span:nth-child(1) {
		font-size: 28px;

		letter-spacing: -1.4px;
	}

	.demo-countdown-timer div span:nth-child(2) {
		font-size: 14px;

		line-height: 1.4;
	}

	.demo-list::before {
		height: 70%;
	}

	.demo-list-item {
		position: relative;
	}

	.demo-list li:nth-child(2) .demo-list-first {
		display: flex;
	}

	.demo-list-item {
		padding: 24px;
	}

	.demo-list-item-header {
		margin-bottom: 8px;
	}

	.demo-list-item-header p {
		font-size: 22px;

		letter-spacing: -1.1px;
	}

	.demo-list-item-header div {
		width: 40px;
		height: 40px;
	}

	.demo-list-first {
		position: absolute;
		top: 28px;
		right: 80px;

		margin-bottom: 0;
	}

	.demo-list-first li span {
		font-size: 16px;
	}

	.demo-list-second li:nth-child(1) div span {
		font-size: 16px;
	}

	.demo-list-second li:nth-child(2) span,
	.demo-list-second li:nth-child(3) span {
		font-size: 16px;
	}

	.demo-count {
		max-width: 1330px;
		border-radius: 100px 0 100px 100px;
	}
}

@media (min-width: 1200px) {
}

@media (min-width: 1000px) {
	.demo-bg {
		padding: 80px;
	}

	.demo-desktop {
		display: block;
		width: 50%;
	}

	.demo-mobile {
		display: none;
	}

	.demo-yellow {
		width: 435px;
		margin: 0 auto 50px 0;
	}

	.demo-yellow p {
		font-size: 28px;

		letter-spacing: -1.4px;
	}

	.demo-count {
		padding: 80px;
	}

	.demo-count-text {
		font-size: 20px;

		margin-bottom: 15px;
	}

	.demo-count-timer div {
		padding: 15px;
		gap: 4px;

		width: 70px;
		height: 70px;
	}

	.demo-count-timer div span:nth-child(1) {
		font-size: 32px;

		letter-spacing: -1.6px;
	}

	.demo-count-timer div span:nth-child(2) {
		font-size: 18px;
	}

	.demo-count-title {
		font-size: 80px;

		letter-spacing: -4px;

		margin-bottom: 30px;
	}

	.demo-count a span {
		font-size: 32px;
	}
}

@media (min-width: 1300px) {
	.demo-bg {
		padding: 80px;

		display: flex;
		align-items: flex-start;
		gap: 30px;
		justify-content: space-between;
	}

	.demo-content {
		margin-bottom: 0;
	}

	.demo-cont {
		display: flex;
		align-items: center;
		justify-content: space-between;
		gap: 50px;
	}

	.demo-content {
		width: 85%;
	}
}

@media (min-width: 1440px) {
	.demo-content {
		width: 80%;
	}
}

.consulta {
	padding: 60px 0;
	background-color: #fcf2df;
}

.consulta h2 {
	color: #161616;
	text-align: center;

	font-family: 'Grtsk';
	font-size: 28px;
	font-style: normal;
	font-weight: 700;
	line-height: 1.2;
	letter-spacing: -1.4px;
	text-transform: uppercase;

	margin-bottom: 24px;
}

.consulta ul {
	display: flex;
	flex-direction: column;
	gap: 130px;

	transition: all 0.3s ease-in-out;
}

.consulta ul li {
	background-repeat: no-repeat;
	background-size: cover;
	background-position: bottom;

	padding: 24px;
	height: 378px;
	border-radius: 32px;

	transition: all 0.3s ease-in-out;
}

.consulta ul li:nth-child(1) {
	background-image: url('../images/consulta-list-3-mob.webp');
}

.consulta ul li:nth-child(2) {
	background-image: url('../images/consulta-list-2-mob.webp');
	position: relative;
}

.consulta ul:hover li:nth-child(2)::after,
.consulta ul:hover li:nth-child(2)::before {
	transform: rotate(0deg);
}

.consulta ul li:nth-child(2)::after {
	position: absolute;
	top: -110px;
	left: 0;
	content: '';
	width: 90px;
	height: 90px;
	background-image: url('../images/consulta-arrow-1.webp');
	background-repeat: no-repeat;
	background-position: center;
	background-size: 90px 90px;

	transform: rotate(90deg);

	transition: all 0.3s ease-in-out;
}

.consulta ul li:nth-child(2)::before {
	position: absolute;
	bottom: -110px;
	left: 0;
	content: '';
	width: 90px;
	height: 90px;
	background-image: url('../images/consulta-arrow-2.webp');
	background-repeat: no-repeat;
	background-position: center;
	background-size: 90px 90px;

	transform: rotate(90deg);

	transition: all 0.3s ease-in-out;
}

.consulta ul li:nth-child(3) {
	background-image: url('../images/consulta-list-1-mob.webp');
}

.consulta ul li:nth-child(1):hover {
	border-radius: 32px 0 32px 32px;

	background-image: url('../images/consulta-list-1-hover.webp');
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
}

.consulta ul li:nth-child(2):hover {
	border-radius: 32px 0 32px 32px;

	background-image: url('../images/consulta-list-2-hover.webp');
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
}

.consulta ul li:nth-child(3):hover {
	border-radius: 32px 0 32px 32px;

	background-image: url('../images/consulta-list-3-hover.webp');
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
}

.consulta ul li h3 {
	color: #fcf2df;

	font-family: 'Grtsk';
	font-size: 22px;
	font-style: normal;
	font-weight: 700;
	line-height: 1.2;
	letter-spacing: -1.1px;
	text-transform: uppercase;

	margin-bottom: 16px;
}

.consulta ul li p {
	color: #fcf2df;

	font-size: 14px;
	font-style: normal;
	font-weight: 400;
	line-height: 1.4;
}

@media (min-width: 768px) {
	.consulta {
		padding: 130px 0 80px;
	}

	.consulta h2 {
		font-size: 40px;

		letter-spacing: -2px;

		margin-bottom: 40px;
	}

	.consulta ul li {
		background-position: bottom;

		border-radius: 60px;
	}

	.consulta ul li:nth-child(1) {
		background-image: url('../images/consulta-list-3-mob.webp');
	}

	.consulta ul li:nth-child(2) {
		background-image: url('../images/consulta-list-2-mob.webp');
		position: relative;
	}

	.consulta ul li:nth-child(2)::after {
		position: absolute;
		top: -110px;
		left: 0;
		content: '';
		width: 90px;
		height: 90px;
		background-image: url('../images/consulta-arrow-1.webp');
		background-repeat: no-repeat;
		background-position: center;
		background-size: 90px 90px;
	}

	.consulta ul li:nth-child(2)::before {
		position: absolute;
		bottom: -110px;
		left: 0;
		content: '';
		width: 90px;
		height: 90px;
		background-image: url('../images/consulta-arrow-2.webp');
		background-repeat: no-repeat;
		background-position: center;
		background-size: 90px 90px;
	}

	.consulta ul li:nth-child(3) {
		background-image: url('../images/consulta-list-1-mob.webp');
	}

	.consulta ul li h3 {
		font-size: 32px;

		letter-spacing: -1.6px;

		margin-bottom: 24px;
	}

	.consulta ul li p {
		font-size: 18px;
	}
}

@media (min-width: 850px) {
	.consulta {
		padding: 130px 0 200px;
	}

	.consulta ul {
		flex-direction: row;
		align-items: center;
		justify-content: space-between;
		gap: 40px;
	}

	.consulta ul li {
		height: 640px;
		border-radius: 30px;

		max-width: 446px;
	}

	.consulta ul li:nth-child(1) {
		background-image: url('../images/consulta-list-1-desktop.webp');
	}

	.consulta ul li:nth-child(2) {
		background-image: url('../images/consulta-list-2-desktop.webp');
		position: relative;
		top: 60px;
	}

	.consulta ul li:nth-child(2)::after {
		position: absolute;
		top: 50%;

		left: -30%;
		content: '';
		width: 90px;
		height: 90px;
		background-image: url('../images/consulta-arrow-1.webp');

		background-size: 90px 90px;
	}

	.consulta ul li:nth-child(2)::before {
		position: absolute;
		top: 50%;

		left: 90%;
		content: '';
		width: 90px;
		height: 90px;
		background-image: url('../images/consulta-arrow-2.webp');
		background-repeat: no-repeat;
		background-position: center;
		background-size: 90px 90px;
	}

	.consulta ul li:nth-child(3) {
		background-image: url('../images/consulta-list-3-desktop.webp');
		position: relative;
		top: 120px;
	}
}

@media (min-width: 1200px) {
	.consulta ul li:nth-child(2)::after {
		top: 50%;

		left: -20%;
		content: '';

		background-image: url('../images/consulta-arrow-1.webp');
	}
}

@media (min-width: 1600px) {
	.consulta ul li:nth-child(2)::before {
		position: absolute;
		top: 50%;

		left: 100%;
		content: '';

		background-image: url('../images/consulta-arrow-2.webp');
	}
}

@media (min-width: 1800px) {
	.consulta ul li:nth-child(2)::after {
		top: 50%;

		left: -30%;
		content: '';

		background-image: url('../images/consulta-arrow-1.webp');
	}

	.consulta ul li:nth-child(2)::before {
		position: absolute;
		top: 50%;

		left: 110%;
		content: '';

		background-image: url('../images/consulta-arrow-2.webp');
	}
}

@media (min-width: 1920px) {
	.consulta ul li:nth-child(2)::after {
		top: 50%;

		left: -25%;
		content: '';

		background-image: url('../images/consulta-arrow-1.webp');
	}

	.consulta ul li:nth-child(2)::before {
		position: absolute;
		top: 50%;

		left: 105%;
		content: '';

		background-image: url('../images/consulta-arrow-2.webp');
	}
}

.instructors {
	padding-bottom: 60px;
	background-color: #fcf2df;
}

.instructors-title-mob {
	color: #161616;

	font-family: 'Grtsk';
	font-size: 28px;
	font-style: normal;
	font-weight: 700;
	line-height: 1.2;
	letter-spacing: -1.4px;
	text-transform: uppercase;

	margin-bottom: 24px;
}

.instructors-title-desktop {
	display: none;
}

.instructors-review-card {
	border-radius: 24px;
	background: #fff9ef;

	height: 100%;
	display: flex;
	flex-direction: column;
	gap: 24px;
	justify-content: space-between;

	transition: all 0.3s ease-in-out;
}

.instructors-review-card:hover {
	border-top-right-radius: 0px;

	background-image: url('../images/instructors-bg.webp');
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	height: 100%;
}

.instructors-review-card:hover .instructors-review-card__footer {
	background-image: none;
}

.instructors-review-card-top {
	padding: 16px 16px 0;
}

.instructors-review-card__header {
	display: flex;
	align-items: center;
	justify-content: space-between;

	margin-bottom: 16px;
}

.instructors-review-card__header ul {
	display: flex;
	align-items: center;
	gap: 16px;
}

.instructors-review-card__header ul li {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 4px 16px;

	border-radius: 24px;
	border: 2px solid #f2e3c7;
	background: #fcf2df;
}

.instructors-review-card__header ul li span {
	color: #161616;

	font-size: 12px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
}

.instructors-review-card__body p {
	color: #161616;

	font-family: 'Grtsk';
	font-size: 22px;
	font-style: normal;
	font-weight: 700;
	line-height: 1.2;
	letter-spacing: -1.1px;
	text-transform: uppercase;

	margin-bottom: 16px;
}

.instructors-review-card__body ul {
	display: flex;
	flex-direction: column;
	gap: 6px;

	margin-bottom: 24px;
}

.instructors-review-card__body ul li {
	display: flex;
	align-items: center;
	gap: 6px;
}

.instructors-review-card__body ul li img {
	width: 11px;
	height: 11px;
}

.instructors-review-card__body ul li span {
	color: #161616;

	font-size: 14px;
	font-style: normal;
	font-weight: 400;
	line-height: 1.4;
	width: 90%;
}

.instructors-review-card-top a {
	padding: 12px 30px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;

	border-radius: 32px 0 32px 32px;
	background: #e26530;

	color: #fcf2df;

	font-size: 14px;
	font-style: normal;
	font-weight: 600;
	line-height: 1.4;
	text-transform: uppercase;

	transition: all 0.3s ease-in-out;
}

.instructors-review-card-top a:hover {
	background: #161616;
}

.instructors-review-card__footer {
	height: 100%;

	background-image: url('../images/instructors-bg.webp');
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	border-radius: 20px;
	overflow: hidden;
}

.instructors-reviews-btns {
	display: flex;
	align-items: center;
	justify-content: space-between;

	margin-top: 32px;
}

.instructors-swiper-pagination {
	position: static !important;
	text-align: start !important;
}

.swiper-pagination-bullet {
	width: 8px !important;
	height: 8px !important;

	border-radius: 16px !important;
	opacity: 0.2 !important;
	background: #161616 !important;

	transition: all 0.3s ease-in-out;
}

.swiper-pagination-bullet:hover {
	background: #e26530 !important;
	opacity: 1 !important;
}

.swiper-pagination-bullet-active {
	width: 37px !important;
	height: 8px !important;

	border-radius: 16px !important;
	background: #161616 !important;
	opacity: 1 !important;
}

.instructors-reviews-btns-pn {
	display: flex;
	align-items: center;
	gap: 24px;
}

.instructors-reviews-prev,
.instructors-reviews-next {
	position: static !important;
	width: 90px !important;
	height: 44px !important;
	border-radius: 300px;
	background: #161616;
	padding-left: 8px 18px;
	display: flex;
	justify-content: center;
	align-items: center;

	transition: all 0.3s ease-in-out;
}

.instructors-reviews-prev:hover,
.instructors-reviews-next:hover {
	background: #e26530 !important;
}

.instructors-reviews-prev svg,
.instructors-reviews-next svg {
	width: 25px !important;
	height: 17px !important;
}

@media (min-width: 768px) {
	.instructors {
		padding-bottom: 80px;
	}

	.instructors-title-mob {
		display: none;
	}

	.instructors-title-desktop {
		display: block;

		color: #161616;

		font-family: 'Grtsk';
		font-size: 40px;
		font-style: normal;
		font-weight: 700;
		line-height: 1.2;
		letter-spacing: -2px;
		text-transform: uppercase;

		margin-bottom: 40px;
	}

	.instructors-review-card {
		border-radius: 32px;

		gap: 32px;
	}

	.instructors-review-card-top {
		padding: 24px 24px 0;
	}

	.instructors-review-card__header {
		margin-bottom: 32px;
	}

	.instructors-review-card__header ul li {
		gap: 6px;
		padding: 4px 12px;
	}

	.instructors-review-card__header ul li span {
		font-size: 14px;

		line-height: 1.4;
	}

	.instructors-review-card__body p {
		font-size: 28px;

		letter-spacing: -1.4px;
	}

	.instructors-review-card__body ul {
		margin-bottom: 32px;
	}

	.instructors-review-card__body ul li {
		gap: 10px;
	}

	.instructors-review-card__body ul li img {
		width: 11px;
		height: 11px;
	}

	.instructors-review-card__body ul li span {
		font-size: 16px;
	}

	.instructors-review-card-top a {
		padding: 14px 40px;

		font-size: 16px;

		line-height: normal;
	}

	.instructors-reviews-btns {
		width: 50%;
		margin: 32px 0 0 auto;
	}
}

.faq {
	padding: 24px 0;
	background-color: #161616;
}

.faq-heading {
	display: flex;
	align-items: center;
	justify-content: space-between;

	margin-bottom: 32px;

	width: 100%;
}

.faq-title {
	color: #fcf2df;

	font-family: 'Grtsk';
	font-size: 28px;
	font-style: normal;
	font-weight: 700;
	line-height: 1.2;
	letter-spacing: -1.4px;
	text-transform: uppercase;
	width: 50%;
}

.faq-arrow {
	width: 104px;
	height: 52px;
}

.faq-btn-desktop {
	display: none;
}

.faq-right {
	margin-bottom: 32px;
}

.faq-list {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.faq-item {
	border-radius: 24px;
	border: 2px solid #f2e3c7;
	background: #fcf2df;
	width: 100%;
	padding: 16px;

	overflow: hidden;
	transition: all 0.3s ease-in-out;
}

.faq-item:hover,
.faq-item.open {
	border-radius: 24px 0 24px 24px;
}

.faq-question {
	width: 100%;
	background: transparent;
	border: none;

	display: flex;
	justify-content: space-between;
	align-items: center;

	cursor: pointer;
}

.faq-question span {
	color: #161616;
	text-align: start;
	font-family: 'Grtsk';
	font-size: 18px;
	font-style: normal;
	font-weight: 700;
	line-height: 1.2;
	letter-spacing: -0.9px;
	text-transform: uppercase;
}

.faq-question span:first-child {
	flex: 1;
}

.faq-icon {
	flex-shrink: 0;
	width: 32px;
	height: 32px;
	border-radius: 50%;
	background-color: #161616;
	display: flex;
	align-items: center;
	justify-content: center;
	transition:
		transform 0.2s ease,
		background-color 0.2s ease;
}

.faq-item.open .faq-icon svg {
	transform: rotate(180deg);
}

.faq-answer {
	max-height: 0;
	opacity: 0;

	transition:
		max-height 0.25s ease,
		opacity 0.25s ease,
		padding-bottom 0.25s ease;
}

.faq-item.open .faq-answer {
	padding-top: 8px;
	max-height: 400px;
	opacity: 1;
}

.faq-answer p {
	color: #161616;

	font-size: 14px;
	font-style: normal;
	font-weight: 400;
	line-height: 1.4;
}

.faq-btn-mob {
	padding: 14px 40px;

	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;

	border-radius: 32px 0 32px 32px;
	background: #e26530;

	width: 100%;

	color: #fcf2df;

	font-size: 16px;
	font-style: normal;
	font-weight: 600;
	line-height: normal;
	text-transform: uppercase;
}

@media (min-width: 768px) {
	.faq {
		padding: 60px 0;
	}

	.faq-title {
		font-size: 40px;

		letter-spacing: -2px;

		width: 100%;
	}

	.faq-item {
		padding: 24px;
	}

	.faq-question span {
		font-size: 22px;

		letter-spacing: -1.1px;
	}

	.faq-icon {
		width: 40px;
		height: 40px;
	}

	.faq-answer p {
		font-size: 16px;
	}

	.faq-btn-mob {
		width: 200px;
		height: 48px;
		margin: 0 auto;
	}
}

@media (min-width: 1000px) {
	.faq-cont {
		display: flex;
		align-items: stretch;
		justify-content: space-between;
		gap: 20px;
	}

	.faq-btn-mob {
		display: none;
	}

	.faq-left,
	.faq-right {
		width: 45%;
	}

	.faq-btn-desktop {
		padding: 14px 40px;

		display: flex;
		align-items: center;
		justify-content: center;
		gap: 10px;

		border-radius: 32px 0 32px 32px;
		background: #e26530;

		width: 100%;

		color: #fcf2df;

		font-size: 16px;
		font-style: normal;
		font-weight: 600;
		line-height: normal;
		text-transform: uppercase;

		width: 200px;
		height: 48px;

		margin-top: 32px;

		transition: all 0.3s ease-in-out;
	}

	.faq-btn-desktop:hover {
		background: #161616;
	}

	.faq-heading {
		flex-direction: column;
		align-items: flex-start;
		justify-content: space-between;

		margin-bottom: 0;

		width: 100%;
		height: 100%;
	}

	.faq-arrow {
		width: 70%;
		height: auto;
	}
}

.reviews {
	padding: 24px 0;

	background-image: url('../images/reviews-bg.webp');
	background-repeat: no-repeat;
	background-position: center;
}

.reviews-title {
	color: #efd070;

	font-family: 'Grtsk';
	font-size: 32px;
	font-style: normal;
	font-weight: 700;
	line-height: 1.2;
	letter-spacing: -1.6px;
	text-transform: uppercase;

	margin-bottom: 16px;
}

.reviews-desc {
	color: #fcf2df;

	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: 1.4;

	margin-bottom: 24px;
}

.rev-review-card {
	border-radius: 24px;
	background: #fff9ef;
	padding: 16px;

	height: 100%;

	transition: all 0.3s ease-in-out;
}

.rev-review-card:hover {
	background-image: url('../images/reviews-bg-hover.webp');
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
}

.rev-review-card__header {
	display: flex;
	align-items: center;
	gap: 16px;

	margin-bottom: 16px;
}

.rev-review-card__header-content {
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.rev-review-card__header-content p {
	color: #161616;

	font-size: 16px;
	font-style: normal;
	font-weight: 600;
	line-height: 1.4;

	margin: 0;
}

.rev-review-card__header-content div {
	display: flex;
	align-items: center;
	gap: 4px;
}

.rev-review-card__body p {
	color: #161616;

	font-size: 14px;
	font-style: normal;
	font-weight: 400;
	line-height: 1.4;

	margin-bottom: 16px;
}

.rev-review-card__footer ul {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.rev-review-card__footer ul li {
	padding-top: 16px;

	border-top: 1px solid #f2e3c7;

	display: flex;
	align-items: center;
	gap: 8px;
}

.rev-review-card__footer ul li img {
	height: 37px;
	width: auto;
}

.rev-review-card__footer ul li div {
	display: flex;
	flex-direction: column;
	gap: 2px;
}

.rev-review-card__footer ul li div p:nth-child(1) {
	color: #161616;

	font-size: 12px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
	width: 100%;
	margin: 0;
}

.rev-review-card__footer ul li div p:nth-child(2) {
	color: #161616;

	font-size: 14px;
	font-style: normal;
	font-weight: 600;
	line-height: 1.4;
	width: 100%;
	margin: 0;
}

.rev-reviews-btns {
	display: flex;
	align-items: center;
	justify-content: space-between;

	margin-top: 32px;
}

.rev-swiper-pagination {
	position: static !important;
	text-align: start !important;
}

.rev-reviews-btns-pn {
	display: flex;
	align-items: center;
	gap: 24px;
}

.rev-reviews-prev,
.rev-reviews-next {
	position: static !important;
	width: 90px !important;
	height: 44px !important;
	border-radius: 300px;
	background: #161616;
	padding-left: 8px 18px;
	display: flex;
	justify-content: center;
	align-items: center;

	transition: all 0.3s ease-in-out;
}

.rev-reviews-prev:hover,
.rev-reviews-next:hover {
	background: #e26530 !important;
}

.rev-reviews-prev svg,
.rev-reviews-next svg {
	width: 25px !important;
	height: 17px !important;
}

@media (min-width: 768px) {
	.reviews {
		padding: 60px 0;
	}

	.reviews-title {
		font-size: 40px;

		letter-spacing: -2px;

		max-width: 70%;
	}

	.reviews-desc {
		font-size: 18px;

		margin-bottom: 40px;
		max-width: 70%;
	}

	.rev-review-card {
		padding: 24px;
	}

	.rev-review-card__header-content {
		gap: 4px;
	}

	.rev-review-card__header-content p {
		font-size: 18px;
		margin: 0;
	}

	.rev-review-card__body p {
		font-size: 18px;
	}

	.rev-review-card__footer ul li img {
		height: 48px;
	}

	.rev-review-card__footer ul li div p:nth-child(1) {
		font-size: 14px;
		width: 100%;
		line-height: 1.4;
	}

	.rev-review-card__footer ul li div p:nth-child(2) {
		font-size: 16px;
		width: 100% !important;
	}

	.rev-reviews-btns {
		width: 50%;
		margin: 32px 0 0 auto;
	}
}

@media (min-width: 1100px) {
	.reviews-title {
		max-width: 50%;
	}

	.reviews-desc {
		max-width: 45%;
	}
}

.footer {
	padding: 60px 0 162px;
	background-color: #fcf2df;
}

.footer-top {
	padding-bottom: 60px;

	/* border-bottom: 1px solid rgba(22, 22, 22, 0.2);

	position: relative; */
}

.footer-top h3 {
	color: #161616;

	font-size: 18px;
	font-style: normal;
	font-weight: 600;
	line-height: 1.4;

	margin-bottom: 8px;
}

.footer-top p {
	color: #161616;

	font-size: 12px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;

	max-height: 150px;
	overflow: hidden;
	transition: max-height 0.3s ease;
}

.footer-top p span {
	opacity: 0.1;
}

.see-more-btn {
	background-color: transparent;
	border: none;
	color: #161616;

	font-size: 14px;
	font-style: normal;
	font-weight: 600;
	line-height: 1.4;

	cursor: pointer;
	display: flex;
	align-items: center;
	gap: 6px;

	margin-top: 20px;

	transition: transform 0.3s ease;
}

.see-more-btn .see-more-icon {
	display: inline-block;
	transition: transform 0.3s ease;
}

.footer-top p.open {
	max-height: 1000px;
}

.footer-top p.open span {
	opacity: 1;
}

.see-more-btn.open .see-more-icon {
	transform: rotate(180deg);
}

.see-more-btn:focus {
	outline: none;
}

.back-to-top-btn {
	position: absolute;
	top: -17px;
	right: 0;

	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;

	border-radius: 30px;
	border: 2px solid #fcf2df;
	background: #161616;
	border: none;

	color: #fcf2df;

	font-size: 14px;
	font-style: normal;
	font-weight: 600;
	line-height: 1.4;

	width: 102px;
	height: 36px;

	cursor: pointer;

	transition: all 0.3s ease-in-out;
}

.back-to-top-btn svg {
	stroke: #fcf2df;
}

.back-to-top-btn:hover {
	background: #efd070;

	color: #161616;
}

@keyframes slideUp {
	from {
		opacity: 0;
		transform: translateY(20px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.footer-center {
	padding: 24px 0;

	display: flex;
	flex-direction: column;
	gap: 32px;

	border-top: 1px solid rgba(22, 22, 22, 0.2);

	position: relative;
}

.footer-center-link {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 60px;
}

.footer-center-link-first {
	width: 50%;
}

.footer-center-link-first p {
	margin-bottom: 10px;

	color: #161616;

	font-size: 14px;
	font-style: normal;
	font-weight: 600;
	line-height: 1.4;
}

.footer-center-link-first ul,
.footer-center-link-first ul div {
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.footer-center-link-first ul li {
	color: #161616;

	font-size: 12px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;

	transition: all 0.5s ease-in-out;
}

.footer-center-link-first ul li:hover {
	color: #e26530;
}

.footer-center-contact h3 {
	color: #161616;

	font-size: 16px;
	font-style: normal;
	font-weight: 600;
	line-height: 1.4;

	margin-bottom: 16px;
}

.footer-center-contact-list {
	display: flex;
	flex-direction: column;
	gap: 8px;

	margin-bottom: 8px;
}

.footer-center-contact-list li {
	display: flex;
	align-items: center;
	gap: 8px;
}

.footer-center-contact0list li span {
	color: #161616;

	font-size: 14px;
	font-style: normal;
	font-weight: 400;
	line-height: 1.4;
}

.footer-center-contact-social {
	display: flex;
	align-items: center;
	gap: 16px;
}

.footer-center-contact-social li {
	width: 44px;
	height: 44px;

	border-radius: 8px;
	background: #e26530;

	display: flex;
	align-items: center;
	justify-content: center;

	transition: all 0.5s ease-in-out;
}

.footer-center-contact-social li:hover {
	background: #161616;
}

.footer-img {
	padding-bottom: 24px;

	border-bottom: 1px solid rgba(22, 22, 22, 0.2);
}

.footer-bottom {
	padding-top: 24px;

	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 24px;
}

.footer-bottom p:nth-child(1) {
	color: #161616;
	text-align: center;

	font-size: 12px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
}

.footer-bottom p:nth-child(2) {
	color: #161616;
	text-align: center;

	font-size: 14px;
	font-style: normal;
	font-weight: 600;
	line-height: 1.4;
}

.footer-bottom ul {
	display: flex;
	align-items: center;
	gap: 24px;
}

.footer-bottom ul li a {
	color: #161616;

	font-size: 12px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;

	transition: all 0.3s ease-in-out;
}

.footer-bottom ul li a:hover {
	color: #e26530;
}

@media (min-width: 768px) {
	.footer {
		padding: 80px 0 198px;
	}

	.footer-top h3 {
		margin-bottom: 16px;
	}

	.footer-top p {
		font-size: 16px;

		line-height: 1.4;
	}

	.see-more-btn {
		font-size: 16px;
	}

	.back-to-top-btn {
		font-size: 18px;

		width: 133px;
		height: 42px;
	}

	.footer-center-link-first p {
		margin-bottom: 16px;

		font-size: 18px;
	}

	.footer-center-link-first ul li {
		font-size: 16px;
		line-height: 1.4;
	}

	.footer-center-contact h3 {
		font-size: 18px;
	}

	.footer-center-contact0list li span {
		font-size: 16px;
	}

	.footer-center-contact-social li {
		width: 48px;
		height: 48px;
	}

	.footer-img {
		padding-bottom: 60px;
	}

	.footer-bottom {
		padding-top: 40px;
	}

	.footer-bottom p:nth-child(1) {
		font-size: 16px;

		line-height: 1.4;
	}

	.footer-bottom p:nth-child(2) {
		font-size: 16px;
	}

	.footer-bottom ul li {
		font-size: 16px;

		line-height: 1.4;
	}
}

@media (min-width: 900px) {
	.footer-center-link-first ul {
		flex-direction: row;
		flex-wrap: wrap;
		column-gap: 24px;
		row-gap: 10px;
	}

	.footer-bottom {
		flex-direction: row;
		align-items: center;
		justify-content: space-between;
	}
}

@media (min-width: 1200px) {
	.footer-center {
		padding: 60px 0;

		flex-direction: row;
		align-items: flex-start;
		justify-content: space-between;
		gap: 32px;
	}

	.footer-center-link-first {
		width: auto;
	}
}

.offer-banner {
	position: fixed !important;
	bottom: 0;
	left: 0;
	right: 0;
	background-color: #efd070;

	padding: 12px 0;
	z-index: 9999;
	position: relative;
}

.offer-banner-content {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.offer-banner-content img {
	display: none;
}

.offer-banner-content-left div ul {
	display: none;
}

.offer-banner-title {
	color: #161616;

	font-family: 'Grtsk';
	font-size: 18px;
	font-style: normal;
	font-weight: 700;
	line-height: 1.2;
	letter-spacing: -0.9px;
	text-transform: uppercase;
	width: 90%;
}

.offer-banner-content-btn {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.countdown-timer-banner {
	display: flex;
	align-items: center;
	gap: 8px;
}

.countdown-timer-banner div {
	width: 46px;
	height: 43px;
	padding: 6px;

	border-radius: 8px;
	background: #161616;

	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

.countdown-timer-banner div span:nth-child(1) {
	color: #fcf2df;
	text-align: center;
	font-family: 'Grtsk';
	font-size: 14px;
	font-style: normal;
	font-weight: 700;
	line-height: 1.4;
}

.countdown-timer-banner div span:nth-child(2) {
	color: #fcf2df;
	text-align: center;

	font-size: 12px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
}

.offer-banner-btn-demo {
	padding: 12px 30px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;

	color: #fcf2df;

	font-size: 14px;
	font-style: normal;
	font-weight: 600;
	line-height: 1.4;
	text-transform: uppercase;

	border-radius: 32px 0 32px 32px;
	background: #e26530;

	width: 170px;
	height: 44px;

	transition: all 0.3s ease-in-out;
}

.offer-banner-btn-demo:hover {
	background: #161616;
}

.offer-banner-close-btn {
	position: absolute;
	top: 12px;
	right: 16px;
}

@media (min-width: 768px) {
	.offer-banner {
		padding: 24px 0;
	}

	.offer-banner-content {
		flex-direction: row;
		align-items: center;
		justify-content: space-between;
		gap: 10px;
	}

	.offer-banner-content img {
		display: none;
	}

	.offer-banner-content-left div ul {
		display: none;
	}

	.offer-banner-title {
		font-size: 22px;

		letter-spacing: -1.1px;
	}

	.offer-banner-content-btn {
		gap: 16px;
	}

	.countdown-timer-banner div {
		height: 45px;
	}

	.countdown-timer-banner div span:nth-child(1) {
		font-size: 16px;
	}

	.offer-banner-btn-demo {
		padding: 14px 40px;

		font-size: 16px;

		line-height: normal;

		width: 308px;
		height: 48px;
	}
}

@media (min-width: 1100px) {
	.offer-banner-title {
		width: 100%;
	}

	.offer-banner-content-left {
		display: flex;
		align-items: center;
		gap: 8px;
	}

	.offer-banner-content img {
		display: block;
		width: 102px;
		height: 57px;
	}
}

@media (min-width: 1440px) {
	.offer-banner-content-left div ul {
		display: flex;
		align-items: center;
		gap: 8px;

		margin-top: 8px;
	}

	.offer-banner-content-left div ul li {
		display: flex;
		align-items: center;
		gap: 6px;

		padding: 6px 16px;

		border-radius: 24px;
		border: 1px solid #f2e3c7;
		background: #fff9ef;
	}

	.offer-banner-content-left div ul li span {
		color: #161616;

		font-size: 14px;
		font-style: normal;
		font-weight: 400;
		line-height: 1.4;
	}
}

.card {
	opacity: 0;
	transform: translateY(40px);
	transition:
		opacity 0.5s ease,
		transform 0.5s ease;
}

.card.visible {
	opacity: 1;
	transform: translateY(0);
}

.politic {
	background-color: #fcf2df;
	padding-top: 84px;
}

.politic h1 {
	color: #161616;

	font-family: 'Grtsk';
	font-size: 32px;
	font-style: normal;
	font-weight: 700;
	line-height: 1.2;
	letter-spacing: -1.6px;
	text-transform: uppercase;

	margin-bottom: 16px;
}

.politic h2 {
	color: #161616;

	font-family: 'Grtsk';
	font-size: 22px;
	font-style: normal;
	font-weight: 700;
	line-height: 1.2;
	letter-spacing: -1.1px;
	text-transform: uppercase;

	margin: 40px 0 16px;
}

.politic h3 {
	color: #161616;

	font-family: 'Grtsk';
	font-size: 18px;
	font-style: normal;
	font-weight: 700;
	line-height: 1.2;
	letter-spacing: -0.9px;
	text-transform: uppercase;

	margin: 16px 0 8px;
}

.politic p {
	color: #161616;

	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: 1.4;
}

.politic ul {
	display: flex;
	flex-direction: column;

	list-style-type: disc;
	list-style-position: inside;
	padding-left: 10px;
}

.politic ul li {
	color: #161616;

	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: 1.4;
}

@media (min-width: 768px) {
	.politic {
		padding-top: 117px;
	}

	.politic h1 {
		font-size: 60px;

		letter-spacing: -3px;
	}

	.politic h2 {
		font-size: 40px;

		letter-spacing: -2px;

		margin: 60px 0 24px;
	}

	.politic h3 {
		font-size: 22px;

		letter-spacing: -1.1px;

		margin: 24px 0 16px;
	}
}

.thanks {
	padding: 76px 0 60px;
	background-color: #fcf2df;
}

.thanks-wrapper {
	background-image: url('../images/thanks-bg.webp');
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;

	padding: 40px 16px;

	border-radius: 50px;
}

.thanks-wrapper-icon {
	width: 81px;
	height: 76px;

	margin: 0 auto;
}

.thanks-wrapper h1 {
	color: #161616;
	text-align: center;

	font-family: 'Grtsk';
	font-size: 28px;
	font-style: normal;
	font-weight: 700;
	line-height: 1.2;
	letter-spacing: -1.4px;
	text-transform: uppercase;

	margin: 8px 0;
}

.thanks-wrapper p {
	color: #161616;
	text-align: center;

	font-size: 14px;
	font-style: normal;
	font-weight: 400;
	line-height: 1.4;

	margin-bottom: 24px;
}

.thanks-wrapper a {
	padding: 13px 32px;

	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;

	border-radius: 30px 0 30px 30px;
	background: #e26530;

	transition: all 0.3s ease-in-out;
}

.thanks-wrapper a:hover {
	background: #161616;
}

.thanks-wrapper a span {
	color: #fcf2df;

	font-size: 14px;
	font-style: normal;
	font-weight: 600;
	line-height: 1.4;
	text-transform: uppercase;
}

@media (min-width: 768px) {
	.thanks {
		padding: 117px 0 80px;
	}

	.thanks-wrapper {
		padding: 77px 16px;
	}

	.thanks-wrapper-icon {
		width: 126px;
		height: 119px;
	}

	.thanks-wrapper h1 {
		font-size: 60px;

		letter-spacing: -3px;
	}

	.thanks-wrapper p {
		font-size: 18px;

		margin-bottom: 32px;
	}

	.thanks-wrapper a {
		padding: 16px 32px;

		width: 175px;
		height: 52px;
		margin: 0 auto;
	}
}
