/* USER VARIABLES SECTION */

:root {
	--accent: #f0dcdc;
	--fontsize: 18px;
	--textcolor: #333;
	--lineheight: 28px;
	--userfont: roboto-st, sans-serif;
	--systemfont: "Montserrat", Arial, sans-serif;
	--systembackgroundcolor: #393939;
	--pcolor: #f0dcdc;
}

/* BOOTSTRAP SETTINGS SECTION */

/* gutter 20px (10px + 10px). Comment this code for default gutter start at 1.5rem (24px) wide. */
.container,
.container-fluid,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl {
	--bs-gutter-x: 0.625rem;
}
.row,
.row > * {
	--bs-gutter-x: 1.25rem;
}

/* FONTS LOAD SECTION */
@font-face {
	src: url("../fonts/Cormorant-Regular-Latin.woff2") format("woff2");
	font-family: "Cormorant";
	font-weight: 400;
	font-style: normal;
}
@font-face {
	src: url("../fonts/Cormorant-Regular.woff2") format("woff2");
	font-family: "Cormorant";
	font-weight: 400;
	font-style: normal;
}
@font-face {
	src: url("../fonts/Montserrat-Light.woff2") format("woff2");
	font-family: "Montserrat";
	font-weight: 300;
	font-style: normal;
}
@font-face {
	src: url("../fonts/Montserrat-Light-Latin.woff2") format("woff2");
	font-family: "Montserrat";
	font-weight: 300;
	font-style: normal;
}
@font-face {
	src: url("../fonts/Montserrat-Regular.woff2") format("woff2");
	font-family: "Montserrat";
	font-weight: 400;
	font-style: normal;
}
@font-face {
	src: url("../fonts/Montserrat-Medium.woff2") format("woff2");
	font-family: "Montserrat";
	font-weight: 500;
	font-style: normal;
}

/* GENERAL CSS SETTINGS */

*,
::after,
::before {
	box-sizing: inherit;
}

::placeholder {
	color: #666;
}
::selection {
	background-color: var(--accent);
	color: #000;
}
input,
textarea {
	outline: none;
}
/* input:focus:required:invalid, textarea:focus:required:invalid { border-color: red; }
input:required:valid, textarea:required:valid { border-color: green; } */

body {
	font-family: var(--systemfont);
	font-size: var(--fontsize);
	line-height: var(--lineheight);
	color: var(--textcolor);
	background-color: var(--systembackgroundcolor);
	min-width: 320px;
	position: relative;
	overflow-x: hidden;
	color: var(--accent);
	font-weight: 300;
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	margin: 0;
	padding: 0;
}

ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

a,
a:hover {
	color: var(--accent);
	text-decoration: none;
}

h1 {
	font: 85px/95px "Cormorant";
	margin: 25px 0px;
}

h2 {
	font: 70px/80px "Cormorant";
	margin: 30px 0px;
}

p {
	color: var(--pcolor);
}

img {
	width: 100%;
}

/* USER STYLES */

.nav {
	height: 100%;
}

.header {
	padding: 20px 0px 10px 0px;
	border-bottom: 1px solid #cca79c;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 99;
	background-color: #393939;
}

.header {
	transition: all 0.4s ease;
}

.header.out {
	transform: translateY(-120%);
}

.header-ul {
	display: flex;
	list-style: none;
	justify-content: space-between;
	align-items: center;
	height: 100%;
}

.btn {
	display: inline-block;
	padding: 20px 100px;
	z-index: 2;
	position: relative;
	background-color: #393939;
	border: 1px solid #f0dcdc;
	border-radius: 100%;
	color: var(--pcolor);
}

.btn:hover {
	background-color: #f0dcdc;
	color: #393939;
}

.btn-wrap {
	position: relative;
	border: 1px solid #f0dcdc;
	display: inline-block;
	border-radius: 100%;
	color: var(--pcolor);
}

.btn-wrap:hover::after {
	transform: rotate(0);
	transition: transform 1s ease;
}

.btn-wrap::after {
	position: absolute;
	content: "";
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border-radius: 100%;
	border: 1px solid #f0dcdc;
	transform: rotate(-7deg);
	transition: transform 1s ease;
}

.section-animation-wrap {
	width: 100%;
	white-space: nowrap;
	overflow: hidden;
}

.section-animation-txt {
	color: #f0dcdc;
	font-size: 18px;
	display: inline-block;
	padding-left: 30px;
	-webkit-animation: nayada-anim-2 10s infinite linear;
	animation: nayada-anim-2 10s infinite linear;
}

.section-animation {
	padding: 10px 0px;
	border-top: 1px solid #f0dcdc;
	border-bottom: 1px solid #f0dcdc;
}

.nayada-school-logo {
	width: 140px;
}
.footer {
	padding: 60px 0px;
}
.footer-menu {
	text-align: right;
}

.footer-menu-link {
	margin: 5px 0px;
	display: inline-block;
}

.header-link {
	font-size: 14px;
}

.header-mobile-menu {
	display: none;
}

.tingle-modal-box__content {
	color: #1f1f1f;
}

.content-module-h1 {
	font: 50px/60px "Cormorant";
	margin-top: 0px;
}

.content-module-description-head {
	margin-top: 20px;
	margin-bottom: 10px;
	font-weight: 400;
	font-size: 20px;
	display: flex;
	align-items: center;
}

.content-module-li {
	margin-bottom: 5px;
}

.content-module {
	display: none;
}

.tingle-modal__closeLabel {
	display: none !important;
}

.section-nine-all-reviews-desctop,
.section-nine-all-reviews-phone {
	color: #393939;
	text-decoration: underline;
	margin-top: 25px;
	font-weight: 400;
}

.section-nine-all-reviews-desctop:hover,
.section-nine-all-reviews-phone:hover {
	color: #393939;
	text-decoration: underline;
}

.section-nine-h2-wrap {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.section-nine-all-reviews-phone {
	display: none;
}

.section-nine-all-reviews-phone-wrap {
	text-align: center;
}

.section-one-left-top {
	display: flex;
	align-items: center;
}

.section-one-left-top--span {
	margin-left: 10px;
}

.section-two-item {
	border: 1px solid #f0dcdc;
	padding: 20px 15px;
	border-top-right-radius: 80px;
	height: 100%;
}

.section-three-head--p {
	margin-bottom: 50px;
}

.section-four-item-txt {
	font-size: 18px;
	font-weight: 500;
	background-color: #f0dcdc;
	color: #393939;
	padding: 10px;
	height: 85px;
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	border-top-left-radius: 40px;
}

.section-four-item {
	margin-top: 20px;
}

.section-four-btn {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100%;
}

.section-four-btn .btn {
	padding: 20px 40px;
}

.section-eight--li1 {
	display: flex;
	align-items: flex-start;
	margin-bottom: 20px;
}

.section-eight--span1 {
	margin-left: 10px;
}

.section-eight--p {
	font-weight: 900;
	margin: 30px 0px;
}

.section-eight--ul1 {
	margin-top: 30px;
}

.section-eight--li2 {
	margin: 10px 0px;
}

.section-eight-link {
	display: inline-block;
	margin-top: 30px;
}

.mf-section {
	padding: 70px 0px;
	border-bottom: 1px solid #cca79c;
}

.section-one {
	padding-top: 200px;
	padding-bottom: 40px;
}

.section-one-btn {
	margin-top: 40px;
}

.form--input {
	width: 100%;
	margin: 10px 0px;
	padding: 10px;
	background-color: #393939;
	border: 1px solid #c4c4c4;
	color: #fff;
}

.form {
	padding: 10px;
}

.form--submit {
	width: 100%;
	padding: 20px 10px;
	border-radius: 100%;
	background-color: #393939;
	border: 1px solid #c4c4c4;
	color: #c4c4c4;
	margin-top: 15px;
	cursor: pointer;
}

.section-three-item-txt {
	margin-top: 10px;
	font-weight: 600;
	font-size: 20px;
}

.section-three-item {
	margin-bottom: 45px;
}

.section-five-item {
	display: flex;
	height: 100px;
	margin-top: 30px;
}

.section-five-item-left {
	padding: 5px;
	background-color: #f0dcdc;
	color: #393939;
	flex: 0 0 120px;
	display: flex;
	justify-content: center;
	align-items: center;
	border-top-left-radius: 30px;
}

.section-five-item-right {
	border: 1px solid #f0dcdb;
	padding: 10px;
	width: 100%;
}

.section-five-item-right-t {
	font-weight: 600;
}

.section-five-bottom {
	margin-top: 30px;
}

.section-five-bottom-btn {
	margin-top: 30px;
}

.section-seven-item {
	border: 1px solid #f0dcdc;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	text-align: center;
}

.section-seven-head {
	background-color: #f0dcdc;
	text-align: center;
	padding: 10px;
	height: 70px;
	color: #393939;
	font-size: 20px;
	font-weight: 500;
	display: flex;
	justify-content: center;
	align-items: center;
}

.section-seven--ul {
	padding: 15px;
	text-align: center;
	flex: auto;
}

.section-seven-content-price {
	text-align: center;
	font-family: "Cormorant";
	font-size: 50px;
	line-height: 60px;
}

.section-seven-content-btn {
	margin: 25px 0px;
}

.section-seven-content-btn .btn {
	padding: 10px 60px;
}

.section-seven--li {
	font-size: 15px;
	margin: 20px 0px;
}

.section-seven-content-price-old {
	color: #888888;
	text-decoration: line-through;
	font-size: 20px;
	margin-top: 20px;
}

.section-seven-content-btn2 {
	margin-bottom: 30px;
}

.section-eight--li1 svg {
	flex: none;
}

.section-eight--h3 {
	font-size: 30px;
	font-weight: 400;
}

.section-seven-item.first,
.section-seven-item.first .section-seven-head {
	border-top-left-radius: 80px;
}

.section-seven-item.third,
.section-seven-item.third .section-seven-head {
	border-top-right-radius: 80px;
}

.header-li {
	text-align: center;
}

@-webkit-keyframes nayada-anim-2 {
	0% {
		-webkit-transform: translate(0, 0);
	}
	100% {
		-webkit-transform: translate(-100%, 0);
	}
}
@keyframes nayada-anim-2 {
	0% {
		transform: translate(0, 0);
	}
	100% {
		transform: translate(-100%, 0);
	}
}

@keyframes nayada-anim-1 {
	0% {
		opacity: 1;
		transform: translateX(0px) translateY(0px) rotate(0deg) scale(1, 1);
		animation-timing-function: linear;
	}
	100% {
		opacity: 1;
		transform: translateX(0px) translateY(0px) rotate(360deg) scale(1, 1);
	}
}
