/* Fonts */
@font-face {
	font-family: "Montserrat-Bold";
	src: url("/assets/fonts/Montserrat-Bold.ttf");
}

@font-face {
	font-family: "Montserrat-ExtraBold";
	src: url("/assets/fonts/Montserrat-ExtraBold.ttf");
}

@font-face {
	font-family: "Montserrat-Regular";
	src: url("/assets/fonts/Montserrat-Regular.ttf");
}

/* Variables */
:root {
	--font-r: "Montserrat-Regular";
	--font-b: "Montserrat-Bold";
	--font-eb: "Montserrat-ExtraBold";
	--blue-cl: #2046f2;
	--black-cl: #1e1e1e;
}

/* General */
body {
	background: #ececec;
}

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

.button-action {
	background: var(--blue-cl);
	width: 198px;
	height: 41px;
	color: #fff;
	border-radius: 3px;
	display: grid;
	place-items: center;
	transition: 0.3s ease;
	outline: none;
	border: 2px solid var(--blue-cl);
}

.button-action:hover {
	background: #fff;
	color: var(--blue-cl);
}

.section-template {
	width: 100%;
	margin-bottom: 45px;
}

.section-title {
	font-family: var(--font-eb);
	font-size: 35px;
	color: var(--black-cl);
	margin-bottom: 15px;
}

.section-information {
	font-family: var(--font-r);
	font-size: 20px;
	color: var(--black-cl);
	width: 450px;
}

/* Navigation */
.navigation,
.navigation-container,
.navigation-links,
.navigation-actions {
	display: flex;
	align-content: center;
	flex-wrap: wrap;
}

.navigation,
.mnavigation {
	height: 70px;
}

.navigation {
	padding: 5px;
}

.mnavigation {
	padding: 10px 5px;
}

.mnavigation {
	display: none;
}

.navigation-logo {
	margin-right: 50px;
}

.navigation-logo-link svg,
.mnavigation-logo-link svg {
	object-fit: contain;
}

.navigation-logo-link svg {
	height: 50px;
}

.mnavigation-logo-link svg {
	height: 35px;
}

.navigation-links {
	gap: 22px;
}

.navigation-link,
.button-action {
	font-size: 14px;
	text-transform: uppercase;
	font-family: var(--font-r);
}

.navigation-link {
	color: var(--black-cl);
	transition: 0.3s ease;
}

.navigation-link:hover {
	color: #3650c7;
}

.navigation-actions {
	margin-left: auto;
}

/* Modal */
#consultation_modal .button-action {
	width: 100%;
}

.modal-content {
	background: #fff;
}

.modal-header h1 {
	font-size: 20px;
	font-family: var(--font-b);
}

.icursuri-form {
	display: flex;
	justify-content: center;
	align-content: center;
	flex-direction: column;
	gap: 15px;
}

.icursuri-input input,
.icursuri-input textarea {
	width: 100%;
	padding-left: 10px;
	color: var(--black-cl);
	background: #e6e5e3;
	border: 2px solid transparent;
	border-radius: 8px;
	transition: 0.3s ease;
	font-family: var(--font-r);
}

.icursuri-input input {
	height: 40px;
}

.icursuri-input input::placeholder {
	color: #636361;
}

.icursuri-input input:focus {
	border: 2px solid #636361;
}

/* Hero */
.hero-section {
	height: calc(100vh - 70px);
}

.container,
.hero-container {
	height: 100%;
}

.hero-container {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.hero-welcome {
	width: 30%;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.hero-welcome-title {
	font-size: 50px;
	font-family: var(--font-eb);
	color: var(--black-cl);
	margin-bottom: 40px;
}

.hero-welcome-message {
	font-size: 18px;
	font-family: var(--font-r);
	color: var(--black-cl);
	margin-bottom: 50px;
}

.hero-welcome .button-action {
	width: 100%;
}

.hero-courses {
	width: 65%;
	display: flex;
	gap: 30px;
	height: 100%;
}

.hero-course-card {
	cursor: pointer;
	user-select: none;
	width: 33%;
	height: 90%;
	overflow: hidden;
	transition: 0.8s ease;
	border-radius: 8px;
	position: relative;
	display: flex;
	align-items: end;
	justify-content: center;
}

.hero-course-card img,
.hero-course-slider-card img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 8px;
}

.hero-course-card[data-card="yoga"] {
	width: 100%;
}

.hero-course-slider-title,
.hero-course-title {
	position: absolute;
	left: 20px;
	font-family: var(--font-r);
	color: #fff;
}

.hero-course-title {
	font-size: 26px;
	transform: rotate(-90deg);
	width: 120px;
	transition: 0.8s ease;
	bottom: 60px;
}

.hero-course-slider-title {
	font-size: 19px;
	bottom: 40px;
}

.hero-course-card[data-card="yoga"] .hero-course-title {
	transform: rotate(0deg);
}

.hero-course-card-shadow,
.hero-course-slider-shadow {
	height: 70px;
	width: 100%;
	background: linear-gradient(#01081e00, #1e1e1e);
	position: absolute;
	bottom: 0;
}

.hero-course-slider-shadow {
	border-bottom-left-radius: 8px;
	border-bottom-right-radius: 8px;
}

.hero-courses-slider {
	display: none;
}

/* About */
.about-section {
	margin-top: 70px;
}

.about-card {
	background: #fff;
	padding: 30px 20px 30px 40px;
	position: relative;
	border-radius: 8px;
	margin-bottom: 27px;
}

.about-card-sm {
	height: 230px;
}

.about-card-lg {
	height: 280px;
}

.about-card-number {
	color: #fff;
	background: var(--blue-cl);
	display: grid;
	place-items: center;
	font-size: 18px;
	font-family: var(--font-r);
	position: absolute;
	top: -20px;
	left: -20px;
	height: 50px;
	width: 50px;
	border-radius: 50%;
}

.about-card-title {
	font-size: 20px;
	font-family: var(--font-b);
	margin-bottom: 20px;
}

.about-card-information {
	font-size: 16px;
	font-family: var(--font-r);
}

.about-card-information ul {
	padding-left: 0;
}

.about-footer {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-top: 35px;
}

.about-footer-information {
	font-size: 20px;
	font-family: var(--font-r);
	width: 600px;
}

.about-footer-action .button-action {
	width: 350px;
}

/* Courses */
.courses-section {
	margin-top: 70px;
}

.courses-block {
	display: flex;
	flex-direction: column;
	justify-content: center;
	height: 100%;
}

.courses-title {
	font-size: 45px;
	font-family: var(--font-eb);
	margin-bottom: 30px;
}

.courses-information {
	font-size: 20px;
	font-family: var(--font-r);
}

.course-card {
	font-size: 18px;
	color: #fff;
	background: var(--blue-cl);
	border-radius: 8px;
	width: 100%;
	height: 65px;
	display: grid;
	place-items: center;
	text-align: center;
	font-family: var(--font-r);
	margin-top: 25px;
}

.courses-video {
	height: 400px;
	position: relative;
	display: flex;
	justify-content: center;
	border-radius: 8px;
}

.courses-video video {
	object-fit: cover;
	width: 100%;
}

.video-line {
	position: absolute;
	width: 95%;
	height: 3px;
	background: #ccc;
	top: 380px;
	border-radius: 10px;
}

.video-line-complete {
	width: 0%;
	height: 3px;
	background: var(--blue-cl);
	transition: 1.2s ease-out;
	border-radius: 10px;
}

.courses-video video {
	width: 100%;
	border-radius: 8px;
}

.courses-video video {
	transition: opacity 0.8s ease-in-out;
}

.courses-video video.hidden {
	opacity: 0;
}

/* Marketing */
.marketing-section {
	margin-top: 70px;
}

/* Interface */
.interface-section {
	margin-top: 70px;
}

/* Functionalities */
.functionalities-section {
	margin-top: 70px;
}

.functionalities-section .section-template {
	margin-bottom: 15px;
}

.functionalities-list {
	list-style: none;
	padding-left: 0;
}

.functionality {
	margin-bottom: 15px;
	display: flex;
	gap: 10px;
	font-size: 17px;
	font-family: var(--font-r);
}

.functionality img {
	height: 20px;
	width: 20px;
}

.functionality-sm {
	align-items: center;
}

.functionality-lg {
	margin-top: 5px;
}

/* Try */
.try-section {
	margin-top: 70px;
}

.try-container {
	background: var(--blue-cl);
	padding: 30px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	border-radius: 8px;
}

.try-text {
	color: #fff;
}

.try-title {
	font-size: 30px;
	font-family: var(--font-b);
	margin-bottom: 20px;
}

.try-information {
	font-size: 20px;
	font-family: var(--font-r);
}

.try-action {
	width: 40%;
}

.try-action .button-action {
	width: 100%;
	background: #fff;
	color: var(--blue-cl);
	height: 60px;
	font-size: 16px;
}

/* Others */
.others {
	margin-top: 70px;
}

.other-card {
	height: 200px;
	background-color: var(--blue-cl);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	border-radius: 15px;
	position: relative;
	padding: 20px;
}

.other-card-img-sm {
	height: 40px;
}

.other-card-img-lg {
	height: 20px;
}

.other-card-img img {
	height: 100%;
	width: 100%;
	object-fit: contain;
}

.other-card-title {
	font-size: 15px;
	color: #fff;
	font-family: var(--font-r);
	position: absolute;
	bottom: 10px;
	text-align: center;
	padding: 10px;
}

/* Footer */
.footer {
	margin-top: 70px;
	background-color: var(--black-cl);
	height: 100px;
}

.footer-container {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 100%;
}

.footer-container > * {
	width: 33%;
}

.footer-socials {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 20px;
}

.footer-social img {
	height: 25px;
	width: 100%;
	object-fit: contain;
}

.footer-dev {
	text-align: end;
}

.footer-dev a {
	color: #fff;
	font-size: 16px;
	font-family: var(--font-r);
}
