/*!
Theme Name: Miami School
Theme URI: http://underscores.me/
Author: Miami School
Author URI: http://underscores.me/
Description: Description
Version: 1.0.0
Tested up to: 5.4
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: miami-school
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned.

Miami School is based on Underscores https://underscores.me/, (C) 2012-2020 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal https://necolas.github.io/normalize.css/
*/

/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Generic
	- Normalize
	- Box sizing
# Base
	- Typography
	- Elements
	- Links
	- Forms
## Layouts
# Components
	- Navigation
	- Posts and pages
	- Comments
	- Widgets
	- Media
	- Captions
	- Galleries
# plugins
	- Jetpack infinite scroll
# Utilities
	- Accessibility
	- Alignments

--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Generic
--------------------------------------------------------------*/

/* Normalize
--------------------------------------------- */

/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */

/* Document
	 ========================================================================== */

/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */

@import url('https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&family=Oswald:wght@200..700&display=swap');

:root {
	--mm-primary-dark: #276174;
	--mm-primary-green: #05979C;
	--mm-primary-green-100: #3CB6BA;
	--mm-primary-green-200: #04818C;
	--mm-primary-grey: #454444;
	--mm-primary-pink: #FF498F;
	--mm-green-200: #F0F6F7;
	--mm-green-300: #AEE5E6;
	--mm-white: #fff;
	--mm-light-gray: #EAEAEA;
	--mm-primary-black: #000;
	--mm-font-primary: "Oswald", sans-serif;
	--mm-font-secondary: "Jost", sans-serif;
	--mm-base: 16px;
	--mm-h1: 48px;
	--mm-h2: 48px;
	--mm-h3: 40px;
	--mm-h4: 32px;
	--mm-h5: 28px;
	--mm-h6: 24px;
	--mm-p: 20px;


}
html {
	line-height: 1.15;
	-webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}



/* Sections
	 ========================================================================== */

/**
 * Remove the margin in all browsers.
 */
body {
	font-size: var(--mm-base);
	line-height: 1.5;
	font-weight: normal;
	font-family: var(--mm-font-secondary);	
	margin: 0;
}

/**
 * Render the `main` element consistently in IE.
 */
main {
	display: block;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */
h1, h2, h3, h4, h5, h6 {
	font-family: var(--mm-font-primary);
	line-height: 1.47;
	margin-top: 0;
}
h1 {
	font-size: var(--mm-h1);
	margin: 0 0 15px 0;
}

h2 {
	font-size: var(--mm-h2);
}

h3 {
	font-size: var(--mm-h3);
}

h4 {
	font-size: var(--mm-h4);
}
h5 {
	font-size: var(--mm-h5);
}

h6 {
	font-size: var(--mm-h6);
}

/* Grouping content
	 ========================================================================== */

/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
	box-sizing: content-box;
	height: 0;
	overflow: visible;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
	font-family: monospace, monospace;
	font-size: 1em;
}

/* Text-level semantics
	 ========================================================================== */

/**
 * Remove the gray background on active links in IE 10.
 */
a {
	background-color: transparent;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
	border-bottom: none;
	text-decoration: underline;
	text-decoration: underline dotted;
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
	font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
	font-family: monospace, monospace;
	font-size: 1em;
}

/**
 * Add the correct font size in all browsers.
 */
small {
	font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
	font-size: 75%;
	line-height: 0;
	position: relative;
	vertical-align: baseline;
}

sub {
	bottom: -0.25em;
}

sup {
	top: -0.5em;
}

/* Embedded content
	 ========================================================================== */

/**
 * Remove the border on images inside links in IE 10.
 */
img {
	border-style: none;
}

/* Forms
	 ========================================================================== */

/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
	font-size: var(--mm-base);
	font-family: var(--mm-font-secondary);
	line-height: 1.5;
	margin: 0;
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input {
	overflow: visible;
}

.d-flex {
	display: flex;
	flex-wrap: wrap;
}

.d-grid {
	display: grid;
	grid-auto-flow: row;
	grid-template-columns: repeat(2, 6fr);
}

.d-block {
	display: block;
}

.d-none {
	display: none;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select {
	text-transform: none;
	font-size: var(--mm-base);
	font-family: var(--mm-font-secondary);
	line-height: 1.5;

}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */
button,
[type="button"],
[type="reset"],
[type="submit"] {
	-webkit-appearance: button;
	font-size: var(--mm-base);
	font-family: var(--mm-font-secondary);
	line-height: 1.5;

}

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
	border-style: none;
	padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
	outline: 1px dotted ButtonText;
}

/**
 * Correct the padding in Firefox.
 */
fieldset {
	font-size: var(--mm-base);
	font-family: var(--mm-font-secondary);
	line-height: 1.5;
	padding: 0.35em 0.75em 0.625em;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *		`fieldset` elements in all browsers.
 */
legend {
	box-sizing: border-box;
	color: inherit;
	display: table;
	max-width: 100%;
	padding: 0;
	white-space: normal;
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
	vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
	overflow: auto;
	font-size: var(--mm-base);
	font-family: var(--mm-font-secondary);
	line-height: 1.5;
}

/**
 * 1. Add the correct box sizing in IE 10.
 * 2. Remove the padding in IE 10.
 */
[type="checkbox"],
[type="radio"] {
	box-sizing: border-box;
	padding: 0;
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
	height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */
[type="search"] {
	-webkit-appearance: textfield;
	outline-offset: -2px;
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type="search"]::-webkit-search-decoration {
	-webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
	-webkit-appearance: button;
	font: inherit;
}

/* Interactive
	 ========================================================================== */

/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
	display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
	display: list-item;
}

/* Misc
	 ========================================================================== */

/**
 * Add the correct display in IE 10+.
 */
template {
	display: none;
}

/**
 * Add the correct display in IE 10.
 */
[hidden] {
	display: none;
}

/* Box sizing
--------------------------------------------- */

/* Inherit box-sizing to more easily change it's value on a component level.
@link http://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/ */
*,
*::before,
*::after {
	box-sizing: inherit;
}

html {
	box-sizing: border-box;
}

/*--------------------------------------------------------------
# Base
--------------------------------------------------------------*/

/* Typography
--------------------------------------------- */
body,
button,
input,
select,
optgroup,
textarea {
	color: var(--mm-primary-grey);
	font-size: var(--mm-base);
	font-family: var(--mm-font-secondary);
	line-height: 1.5;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	clear: both;
	margin-bottom: 15px;
	line-height: 1.5;
}

p {
	margin-bottom: 15px;
	margin-top: 0;
}

dfn,
cite,
em,
i {
	font-style: italic;
}

blockquote {
	margin: 0 1.5em;
}

address {
	margin: 0 0 1.5em;
}

pre {
	background: #eee;
	font-family: var(--mm-font-secondary);
	line-height: 1.6;
	margin-bottom: 1.6em;
	max-width: 100%;
	overflow: auto;
	padding: 1.6em;
}

code,
kbd,
tt,
var {
	font-family: var(--mm-font-secondary);
}

abbr,
acronym {
	border-bottom: 1px dotted #666;
	cursor: help;
}

mark,
ins {
	background: #fff9c0;
	text-decoration: none;
}

big {
	font-size: 125%;
}

/* Elements
--------------------------------------------- */
body {
	background: #fff;
	-webkit-font-smoothing: antialiased; /* Makes text thinner */
    -moz-osx-font-smoothing: grayscale;
}

hr {
	background-color: #ccc;
	border: 0;
	height: 1px;
	margin-bottom: 1.5em;
}

ul,
ol {
	margin: 0 0 1.5em 3em;
}

ul {
	list-style: disc;
}

ol {
	list-style: decimal;
}

li > ul,
li > ol {
	margin-bottom: 0;
	margin-left: 1.5em;
}

dt {
	font-weight: 700;
}

dd {
	margin: 0 1.5em 1.5em;
}

/* Make sure embeds and iframes fit their containers. */
embed,
iframe,
object {
	max-width: 100%;
}

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

figure {
	margin: 1em 0;
}

table {
	margin: 0 0 1.5em;
	width: 100%;
}

/* Links
--------------------------------------------- */
a {
	color: var(--mm-primary-grey);
}

a:visited {
	color: var(--mm-primary-dark);
}

a:hover,
a:focus,
a:active {
	color: var(--mm-primary-dark);
}

a:focus {
	outline: none;
}

a:hover,
a:active {
	outline: 0;
}

/* Forms
--------------------------------------------- */
button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
	border: 1px solid;
	border-color: #ccc #ccc #bbb;
	border-radius: 3px;
	background: #e6e6e6;
	color: rgba(0, 0, 0, 0.8);
	line-height: 1;
	padding: 0.6em 1em 0.4em;
}

button:hover,
input[type="button"]:hover,
input[type="reset"]:hover,
input[type="submit"]:hover {
	border-color: #ccc #bbb #aaa;
}

button:active,
button:focus,
input[type="button"]:active,
input[type="button"]:focus,
input[type="reset"]:active,
input[type="reset"]:focus,
input[type="submit"]:active,
input[type="submit"]:focus {
	border-color: #aaa #bbb #bbb;
}

input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
input[type="number"],
input[type="tel"],
input[type="range"],
input[type="date"],
input[type="month"],
input[type="week"],
input[type="time"],
input[type="datetime"],
input[type="datetime-local"],
input[type="color"],
textarea {
	color: #666;
	border: 1px solid #ccc;
	border-radius: 3px;
	padding: 3px;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
input[type="number"]:focus,
input[type="tel"]:focus,
input[type="range"]:focus,
input[type="date"]:focus,
input[type="month"]:focus,
input[type="week"]:focus,
input[type="time"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="color"]:focus,
textarea:focus {
	color: #111;
}

select {
	border: 1px solid #ccc;
}

textarea {
	width: 100%;
}

.p-relative {
	position: relative;
}

.p-absulte {
	position: absolute;
}

/*--------------------------------------------------------------
# Layouts
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Components
--------------------------------------------------------------*/

/* Navigation
--------------------------------------------- */
.main-navigation {
	display: block;
	width: 100%;
}

.main-navigation ul {
	display: none;
	list-style: none;
	margin: 0;
	padding-left: 0;
}

.main-navigation ul ul {
	box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
	float: left;
	position: absolute;
	top: 100%;
	left: -999em;
	z-index: 99999;
}

.main-navigation ul ul ul {
	left: -999em;
	top: 0;
}

.main-navigation ul ul li:hover > ul,
.main-navigation ul ul li.focus > ul {
	display: block;
	left: auto;
}

.main-navigation ul ul a {
	width: 200px;
}

.main-navigation ul li:hover > ul,
.main-navigation ul li.focus > ul {
	left: auto;
}

.main-navigation li {
	position: relative;
}

.main-navigation a {
	display: block;
	text-decoration: none;
}

/* Small menu. */
.menu-toggle,
.main-navigation.toggled ul {
	display: block;
}

@media screen and (min-width: 37.5em) {

	.menu-toggle {
		display: none;
	}

	.main-navigation ul {
		display: flex;
	}
}

.site-main .comment-navigation,
.site-main
.posts-navigation,
.site-main
.post-navigation {
	margin: 0 0 1.5em;
}

.comment-navigation .nav-links,
.posts-navigation .nav-links,
.post-navigation .nav-links {
	display: flex;
}

.comment-navigation .nav-previous,
.posts-navigation .nav-previous,
.post-navigation .nav-previous {
	flex: 1 0 50%;
}

.comment-navigation .nav-next,
.posts-navigation .nav-next,
.post-navigation .nav-next {
	text-align: end;
	flex: 1 0 50%;
}

/* Posts and pages
--------------------------------------------- */
.sticky {
	display: block;
}

.post,
.page {
	margin: 0;
}

.updated:not(.published) {
	display: none;
}

.page-content,
.entry-content,
.entry-summary {
	margin: 1.5em 0 0;
}

.page-links {
	clear: both;
	margin: 0 0 1.5em;
}

/* Comments
--------------------------------------------- */
.comment-content a {
	word-wrap: break-word;
}

.bypostauthor {
	display: block;
}

/* Widgets
--------------------------------------------- */
.widget {
	margin: 0 0 1.5em;
}

.widget select {
	max-width: 100%;
}

/* Media
--------------------------------------------- */
.page-content .wp-smiley,
.entry-content .wp-smiley,
.comment-content .wp-smiley {
	border: none;
	margin-bottom: 0;
	margin-top: 0;
	padding: 0;
}

/* Make sure logo link wraps around logo image. */
.custom-logo-link {
	display: inline-block;
}

/* Captions
--------------------------------------------- */
.wp-caption {
	margin-bottom: 1.5em;
	max-width: 100%;
}

.wp-caption img[class*="wp-image-"] {
	display: block;
	margin-left: auto;
	margin-right: auto;
}

.wp-caption .wp-caption-text {
	margin: 0.8075em 0;
}

.wp-caption-text {
	text-align: center;
}

/* Galleries
--------------------------------------------- */
.gallery {
	margin-bottom: 1.5em;
	display: grid;
	grid-gap: 1.5em;
}

.gallery-item {
	display: inline-block;
	text-align: center;
	width: 100%;
}

.gallery-columns-2 {
	grid-template-columns: repeat(2, 1fr);
}

.gallery-columns-3 {
	grid-template-columns: repeat(3, 1fr);
}

.gallery-columns-4 {
	grid-template-columns: repeat(4, 1fr);
}

.gallery-columns-5 {
	grid-template-columns: repeat(5, 1fr);
}

.gallery-columns-6 {
	grid-template-columns: repeat(6, 1fr);
}

.gallery-columns-7 {
	grid-template-columns: repeat(7, 1fr);
}

.gallery-columns-8 {
	grid-template-columns: repeat(8, 1fr);
}

.gallery-columns-9 {
	grid-template-columns: repeat(9, 1fr);
}

.gallery-caption {
	display: block;
}

/*--------------------------------------------------------------
# Plugins
--------------------------------------------------------------*/

/* Jetpack infinite scroll
--------------------------------------------- */

/* Hide the Posts Navigation and the Footer when Infinite Scroll is in use. */
.infinite-scroll .posts-navigation,
.infinite-scroll.neverending .site-footer {
	display: none;
}

/* Re-display the Theme Footer when Infinite Scroll has reached its end. */
.infinity-end.neverending .site-footer {
	display: block;
}

/*--------------------------------------------------------------
# Utilities
--------------------------------------------------------------*/

/* Accessibility
--------------------------------------------- */

/* Text meant only for screen readers. */
.screen-reader-text {
	border: 0;
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute !important;
	width: 1px;
	word-wrap: normal !important;
}

.screen-reader-text:focus {
	background-color: #f1f1f1;
	border-radius: 3px;
	box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
	clip: auto !important;
	clip-path: none;
	color: #21759b;
	display: block;
	font-size: 0.875rem;
	font-weight: 700;
	height: auto;
	left: 5px;
	line-height: normal;
	padding: 15px 23px 14px;
	text-decoration: none;
	top: 5px;
	width: auto;
	z-index: 100000;
}

/* Do not show the outline on the skip link target. */
#primary[tabindex="-1"]:focus {
	outline: 0;
}

/* Alignments
--------------------------------------------- */
.alignleft {

	/*rtl:ignore*/
	float: left;

	/*rtl:ignore*/
	margin-right: 1.5em;
	margin-bottom: 1.5em;
}

.alignright {

	/*rtl:ignore*/
	float: right;

	/*rtl:ignore*/
	margin-left: 1.5em;
	margin-bottom: 1.5em;
}

.aligncenter {
	clear: both;
	display: block;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 1.5em;
}


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

.container-mid {
	max-width: 1000px !important;
	padding: 0 20px;
	margin: 0 auto;
	width: 100%;
}
.site-header {
	position: absolute;
	z-index: 9;
	left: 0;
	right: 0;
	background-color: transparent !important;
	margin: 0 auto;
	padding: 24px 0;
}


.site-header .container {
	margin: 0 auto;
}

.site-header .container .row {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
}

.site-header .container .row .connect-us ul {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	list-style: none;
	text-decoration: none;
	margin: 0;
	padding: 0;
	 grid-gap: 30px; 
}


.site-header .container .row .connect-us ul li a {
	display: flex;
	align-items: center;
	text-decoration: none;
	color: var(--mm-white);
	font-size: 20px;
	font-weight: 500;
	grid-gap: 10px;
	transition: all 0.5s linear;
}

.site-header .container .row .connect-us ul li a:hover {
	color: var(--mm-primary-pink);
}

.site-header .container .row .connect-us svg rect {
	fill: var(--mm-white) !important;
}

.site-header .container .row .connect-us ul li a:hover svg path {
	fill: var(--mm-primary-pink) !important;
}

.site-header .container .row .connect-us svg path {
	fill: var(--mm-primary-green) !important;
}

.site-footer .footer-content {
	margin: 0 auto;
	background-color: var(--mm-primary-green-100);
	border-radius: 0;
	padding-top: 36px;
	padding-bottom: 36px;
}

.site-logo a.brand {
    display: block;
    line-height: 1;
}

.site-logo a.brand img {
    max-width: 258px;
}

.site-footer .footer-content {
    margin: 0 auto;
    background-color: var(--mm-primary-green-100);
    border-radius: 0;
    padding-top: 33px;
    padding-bottom: 33px;
}



.footer-content .footer-logo {
    flex: 0 0 50%;
}

.footer-content .footer-logo a {
    display: block;
    max-width: 300px;
}


.footer-content .footer-right {
    flex: 0 0 50%;
}

.footer-content .row {
    display: flex;
    flex-wrap: 	wrap;
    align-items: center;
}

.footer-content .row ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-wrap: 	wrap;
    grid-gap: 30px;
    justify-content: flex-end;
}

.footer-content .row ul a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--mm-white);
    font-weight: 500;
    font-size: 20px;
}

.footer-content .row ul a:hover {
    color: var(--mm-primary-pink);
}

.footer-content .row ul a:hover svg path {
    fill: var(--mm-primary-pink);
}

.footer-content .row ul a svg {
    margin-right: 10px;
    
}

/*Testimonial*/


.testimonial {
    background-color: var(--mm-primary-green-200);
    position: relative;
}

.testimonial .testimonial-bg {
	background-image: url('./../miami-school/img/testimonial-bg.svg');
	padding: 80px 0;
}


.title {
    text-align: center;
}

.testimonial .title {
    margin-bottom: 22px;
    text-transform: uppercase;

}

.testimonial .title h3 {
    font-weight: 500;
    letter-spacing: 0.08em;
    color: var(--mm-white);
    text-transform: uppercase;
}

.testimonial-list .slick-slide {
    padding: 0 27px;
}

.testimonial-list .slick-slide .sl-col {
    border-radius: 0;
    padding: 0;
    height: 100%;
}

.testimonial-list .slick-slide .sl-col .sl-inner .tQuote {
	background-image: url('./../miami-school/img/quate.svg');
    max-width: 60px;
    height: 52px;
    margin-bottom: 24px;
}

.testimonial-list  .slick-list {
    margin: 0 -20px;
}

.testimonial-list .slick-slide .sl-col .sl-inner .tcontent {
    margin-top: 20px;
    color: var(--mm-white);
    margin-bottom: 24px;
}

.testimonial-list .slick-slide .sl-col .sl-inner .tAuthor {
    font-size: calc(var(--mm-base));
    color: var(--mm-white);
    margin: 0;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    text-align: center;
    text-transform: capitalize;
    font-family: var(--mm-font-primary);
}

.testimonial-list .slick-slide .sl-col .sl-inner .tAuthor span {
    margin-right: 5px;
}

.testimonial-list .slick-slide .sl-col .sl-inner {
    padding-bottom: 23px;
    position: relative;
    height: 100%;
    text-align: center;
}

.slick-track > div {
    height: 100%;
}

.testimonial-list .slick-track {
    display: flex !important;
    bottom: 0;
    align-items: stretch;
}

.testimonial-list .slick-track .slick-slide {
    height: inherit !important;
}

.testimonial-list .slick-track .slick-slide > div {
    height: 100%;
}	

.slick-slider .slick-dots {
    display: flex;
    align-items: center;
    margin: 48px 0 0 auto;
    padding: 0;
    justify-content: center;
    list-style: none;
}

.slick-slider .slick-dots li button {
    font-size: 0;
    padding: 0;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: 0;
    background-color: var(--mm-white);
    opacity: 0.5;
    transition: all 0.5s ease;
    cursor: pointer;
}

.slick-slider .slick-dots li {
    padding: 0 4.5px;
    height: inherit;
    display: flex;
    align-items: center;
}

.slick-slider .slick-dots li.slick-active button {
    width: 46px;
    border-radius: 10px;
    opacity: 1;
}


.testimonial-list .slick-slide .sl-col .sl-inner .profile {
    display: inline-block;
    position: relative;
    width: 90px;
    height: 90px;
    background-color: #3CB6BA;
    border-radius: 50%;
    margin: 0 auto;

}

.testimonial-list .slick-slide .sl-col .sl-inner .profile img.profile-img {
    max-width: 90px;
    max-height: 90px;
    z-index: 999;
    left: 10px;
    top: 10px;
    position: absolute;
    border-width: 2px;
    border-style: solid;
    border-image: url(img/image-frame.png);
}


.pf-quote {
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border-radius: 50%;
    z-index: 999;
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
       right: -13px;
    bottom: -20px;
}
	

.faq-data {
     padding: 80px 0;
    background: linear-gradient(180deg, #F0F6F7 0%, rgba(240, 246, 247, 0) 93.48%);
}



.faq-data .title h3 {
        margin-bottom: 16px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;

}

.faq-data .fQUestion span svg path {
    stroke: var(--mm-primary-green);
}

.faq-list {
    max-width: 840px;
    margin: 0 auto;
    padding: 0;
    counter-reset: item;
}


.faq-list .qa .fAnswer {
    margin: 0;
    display: none;
    margin-top: 16px;
}

.faq-list .qa .fAnswer p a {
    color: var(--mm-primary-pink);
}

.faq-list .qa .fAnswer p a:hover {
    color: var(--mm-primary-dark);
}

.faq-list .qa .fQUestion span {
    position: absolute;
    left: 16px;
    display: flex;
    align-items: center;
    width: 20px;
    height: 20px;
    top: 29px;
}

.faq-list .qa .fQUestion {
    font-weight: 500;
    margin-bottom: 0;
    letter-spacing: 0.04em;
}

.faq-list .qa.active .fQUestion {
    color: var(--mm-primary-dark);
}

.faq-list .qa.active {
    padding: 32px 16px 32px 60px;
}

.faq-list .qa.active .fQUestion span {
    transform: rotate(90deg);
}

.faq-list .qa.active .fQUestion span svg path {
    stroke: var(--mm-primary-pink);
}

.faq-list .qa:first-child .fAnswer {
    display: block;
}

.let-wrap .let-wrap-inner div {
    width: 50%;
    flex: 0 0 50%;
}


.let-wrap .let-wrap-inner {
    margin: 0 auto;
    position: relative;
    background-position: center;
    padding: 32px 0 32px 62px;
    border-radius: 16px;
    align-items: center;
    border-top-width: 1px;
    background-color: #DCF4F5;
}

.let-wrap {
    border-radius: 24px 24px;
}



.let-wrap .let-wrap-inner .col-4 {
  display: flex;
    align-items: center;
    width: 50%;
    flex: 0 0 50%;
    justify-content: flex-end;
    padding-right: 78px;
}

.let-wrap .let-wrap-inner .col-4 figure {
   margin: 0;
    display: flex;
    margin-left: -36px;
}

.let-wrap .col-8 h3 {
    color: var(--mm-primary-dark);
    font-weight: 600;
    letter-spacing:  0.04em;
    text-transform: uppercase;
}

.let-wrap .col-8 h4 {
    font-size: 36px;
    color: var(--mm-primary-dark);
    margin-bottom: 32px;
    text-transform: uppercase;
       letter-spacing: 0.04em;
    font-weight: 600;
}

.let-wrap .col-8 h3 span {
    color: var(--mm-primary-pink);
}

.let-wrap .col-8  h6 {
    color: var(--mm-primary-dark);
    margin-bottom: 24px;
    line-height: 1.35;
}

.let-wrap .col-8  a {
       font-size: var(--mm-base);
    text-decoration: none;
    background-color: var(--mm-primary-pink);
    padding: 8px 64px;
    border: 0;
    display: inline-block;
    border-radius: 4px;
    height: inherit;
    line-height: 1.5;
    color: var(--mm-white);
    font-family: var(--mm-font-secondary);
    font-weight: 600;
}

.let-wrap .col-8 a:hover {
    color: #3CB6BA;
}

.cta-section .container {
    max-width: 1000px;
}

.let-wrap .col-8 a:hover {
    background-color: var(--mm-primary-dark);
    color: var(--mm-white);
}

.cta-section {
    padding-bottom: 80px;
}

.cta-pink .let-wrap .let-wrap-inner .col-4 figure {
    margin: 0 auto;
}

.cta-pink .let-wrap .let-wrap-inner div .short_description {
    width: 100%;
}

.cta-pink .let-wrap .let-wrap-inner .col-4 figure {
    margin: 0 auto;
}

.cta-pink .let-wrap .let-wrap-inner div .short_description {
    width: 100%;
}

.cta-pink .let-wrap .let-wrap-inner {
    box-sizing: border-box;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(64px);
    -webkit-backdrop-filter: blur(64px);
    border-radius: 32px;
    border: 2px solid #FF9FC5;
    border-top-color: rgb(224 121 179 / 70%);
    padding: 60px 0 70px 80px;
}

.gform-theme--framework .gform_validation_errors {
    margin-top: 13px;
    margin: 10px 0 !important;
}

.cta-pink .let-wrap {
    background-color: #FFB8E0;
}


.cta-pink .let-wrap .let-wrap-inner .col-4 figure {
    margin: 0 auto;
    margin-left: -9px;

}

.cta-pink .let-wrap .let-wrap-inner div .short_description {
    width: 100%;
    margin-bottom: 24px;
}


.cta-pink .let-wrap {
    background-color: #FFB8E0;
}

.cta-pink .let-wrap .col-8 h4 {
    font-size: 32px;
    color: var(--mm-primary-grey);
    font-weight: 600;
    padding-top: 10px;
    margin-bottom: 8px;
    line-height: 1.5;
}

.cta-pink .let-wrap .col-8 h3 {
        color: var(--mm-primary-pink);
    text-transform: uppercase;
    line-height: 1.4;
    letter-spacing: 0.04em;
    font-weight: 600;
    margin-bottom: 24px;
}

.cta-pink .let-wrap .col-8 a {
    background-color: var(--mm-primary-pink);
    color: var(--mm-white);
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    padding: 14px 15px;
    min-width: 320px;
    display: inline-block;
    text-align: center;
    transition: all 0.5s ease;
    border: 1px solid var(--mm-primary-pink);
    border-radius: 8px;
    text-transform: uppercase;
}

.cta-pink .let-wrap .col-8 a:hover {
    background-color: var(--mm-primary-dark);
    border-color: var(--mm-primary-dark);
}

.cta-pink .let-wrap .let-wrap-inner div .short_description p {
    margin-bottom: 0;
}

.cta-pink .let-wrap .let-wrap-inner .col-8 {
    width: 65%;
    flex: 0 0 65%;
}

.cta-pink .let-wrap .let-wrap-inner .col-4 {
    flex: 0 0 35%;
}

.cta-section.cta-pink {
    padding-bottom: 100px;
}

.services {
    padding: 80px 0;
    position: relative;
}

.services .title h3 {
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: 0.04em;
    margin-bottom: 5px;
}

.services .row {
    padding-top: 35px;
    grid-gap: 50px;
}

.cta-section.let-know {
    padding-top: 64px;
}




.services .row .service-col {/* Card01 */
/* Frame 56 *//* background: #83D5D6; */border-radius: 24px;position: relative;}

.services .row .service-col .services-col-inner {
    margin: 0;
    box-shadow: 0px 20px 25px rgba(0, 0, 0, 0.06);
    border-radius: 16px;
    padding: 40px 32px 51px 32px;
    text-align: left;
    height: 100%;
    background-color: rgb(255 255 255 / 80%);
    box-shadow: 0px 20px 25px rgba(0, 0, 0, 0.05);
	backdrop-filter: blur(15px);
	-webkit-backdrop-filter: blur(15px);
	border: 1px solid #81D2D3;
}

.services .row .service-col:nth-child(2) .services-col-inner {
	border-color: #FBB5DD;
}


.services .row .service-col:nth-child(2) .services-col-inner .s-title {
    color: var(--mm-primary-pink);
}

.services .row .service-col:nth-child(2)::before {background-color: #FFB8E0;}

.services .row .service-col .services-col-inner .s-title {
    margin-bottom: 22px;
    letter-spacing: 0;
    font-weight: 500;
    color: var(--mm-primary-dark);
        line-height: 1.25;
}

.services .row .service-col .services-col-inner .price {
    font-size: 44px;
    color: var(--mm-primary-green);
    margin-bottom: 32px;
}

.services .row .service-col .services-col-inner .price sub {
    bottom: 0;
    font-size: 20px;
    line-height: 1;
    color: var(--mm-primary-grey);
    margin-left: 5px;
    text-decoration: line-through;
}

.services .row .service-col:nth-child(2) .services-col-inner .price {
    color: var(--mm-primary-pink);
}

.services .row .service-col .services-col-inner .des {
        padding-right: 0;
    margin-bottom: 0;
    font-size: 20px;
    line-height: normal;
}

.services .container.container-mid {
    max-width: 960px !important;
    padding: 0 14px;
}

.services .row .service-col:first-child .services-col-inner .des {
    padding-right: 10px;
}

.services .row .service-col:before {
   content: '';
    display: block;
    position: absolute;
    left: -15px;
    top: -15px;
    min-height: calc(100% - 25px);
    background-color: #81D2D3;
    border-radius: 16px;
    width: 100%;
}

.services .row .service-col .services-col-inner .sc-cta {
    background-color: var(--mm-primary-dark);
    color: var(--mm-white);
    font-size: 16px;
    padding: 14px;
    font-weight: 500;
    width: 100%;
    display: block;
    text-align: center;
    border-radius: 8px;
    letter-spacing: 0.5px;
    cursor: pointer;
    border: 1px solid var(--mm-primary-dark);
    transition: all 0.5s ease;
}

.services .row .service-col .services-col-inner .sc-cta:hover {
    background-color: var(--mm-white);
    color: var(--mm-primary-dark);
}

.services .row .service-col:nth-child(2) .services-col-inner .sc-cta {
    background-color: var(--mm-primary-pink);
    border-color: var(--mm-primary-pink);
}

.services .row .service-col:nth-child(2) .services-col-inner .sc-cta:hover {
    background-color: var(--mm-white);
    color: var(--mm-primary-pink);
}

.school_type .title h2 {
    max-width: 61%;
    margin: 0 auto;
    text-transform: uppercase;
    line-height: 1.3;
    letter-spacing: 0.04em;
    font-weight: 500;
}

.school_type .title {
    margin-bottom: 50px;
    position: sticky;
    top: 50px;
}



.school_type .row {
    grid-gap: 38px;
}

.school_type .row .col-5 .st-des {
    position: sticky;
    top: 250px;
}

.school_type .row .st-slide {
    position: relative;
    padding-left: 62px;
}

.school_type .row .st-slide .school-data {
    position: sticky;
    width: 406px;
    height: 406px;
    border-radius: 24px;
    overflow: hidden;
    top: 270px;
    background-repeat: no-repeat;
    background-position: center;

}

.school_type .row .st-slide .school-data .st-inner {
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.school_type .row .st-slide .school-data .st-inner p {
    margin: 0;
    color: var(--mm-white);
    font-weight: 600;
}

.school_type .row .st-slide .school-data:not(:first-child) {
    margin-top: -170px;
}

.school_type {
    padding: 128px 0;
    background-image: url(./../miami-school/img/School-Type3.png);
   background-position: center;
    background-position-y: 0;
    background-repeat: no-repeat;
    background-size: cover;
/*    position: relative;*/
}

.school_type-shape:before, .school_type-shape:after{
	content: '';
	position: absolute;
} 
.school_type-shape {
	position: relative;
}

.school_type-shape .container.container-mid {
    position: relative;
}
.school_type .school_type-shape .top-ss {
	position: absolute;
	width: 200px;
	height: 209px;
	background-image: url(./../miami-school/img/export-1.png);
	top: -260px;
	left: -80px;
	z-index: -1;
}

.school_type-shape:before {
	background-image: url(./../miami-school/img/book-ss.png);
	    width: 145px;
    height: 231px;
   left: 0;
  top: 558px;
}

.school_type-shape:after {
	background-image: url(./../miami-school/img/pin-1.png);
	width: 48px;
	height: 75px;
	top: -131px;
  right: 20px;
}

.school_type .row .st-slide .school-data:not(:first-child) {
    margin-top: -170px;
}



.school_type .row .st-slide .school-data:nth-child(2) {
    transform: rotate(350deg);
}

.school_type .row .st-slide .school-data:nth-child(3) {
    transform: rotate(4deg);
}

.school_type .row .st-slide .school-data:nth-child(4) {
    transform: rotate(356deg);
}

.school_type .row .st-slide .school-data:nth-child(5) {
    transform: rotate(11deg);
}


.education-consultant .title h4 {font-weight: 500;letter-spacing: 0.08em;text-transform: uppercase;margin-bottom: 24px; line-height: 1.5;}

.education-consultant .title h4 span {
    color: var(--mm-primary-pink);
}

.education-consultant  .des p {
    font-size: 24px;
    letter-spacing: 0;
    margin-bottom: 0;
}

.education-consultant {
    padding-bottom: 68px;
}

.banner .col-left h1{
    font-weight: 600;
    letter-spacing: 0.04em;
    line-height: 1.33;
    text-transform: uppercase;
}

.banner .col-left h1 span {
    color: var(--mm-primary-pink);
    display: block;
    padding-right: 40px;
}

.banner .col-left p.bn-des {
      font-size: 32px;
    font-weight: 500;
    max-width: 93%;
}

.banner .row {
    grid-gap: 43px;
    grid-template-columns: 6.1fr 4.9fr;
}

.banner .col-left ul, .banner .col-left ol {
    margin-left: 0;
    padding: 0;
    list-style: none;
    margin-bottom: 24px;
    letter-spacing: -0.1px;
}

.banner .col-left ul li:not(:last-child),
.banner .col-left ol li:not(:last-child)  {
    margin-bottom: 12px;
}

.banner .col-left ul li,
.banner .col-left ol li {
    padding-left: 32px;
    position: relative;
    letter-spacing: -0.5px;
}

.home .gform-theme--framework .gform_validation_errors {
    display: none;
}

.home .gform-theme--framework .gfield_validation_message {
    display: none;
}

.home .gfield_error input {
    border-color: red !important;
}

.banner .col-left ul li:before,
.banner .col-left ol li:before {
    content: '';
    display: block;
    width: 24px;
    height: 24px;
    position: absolute;
    left: 0;
    background-image: url(./../miami-school/img/arrow-2.png);
    background-repeat: no-repeat;
    background-position: center;
}

.banner .row .col-right .form-wrap {
    max-width: 557px;
    margin: 0 auto;
    text-align: center;
    padding: 24px;
    background-color: #FFEDF9;
    border-radius: 24px;
    position: relative;
}

.banner .row .col-right h4 {
    color: var(--mm-primary-dark);
    font-weight: 500;
    margin-bottom: 24px;
        max-width: 476px;
    margin: 0 auto;
}

.banner .row .col-right .sub-title {
    line-height: 1.3;
    font-weight: 600;
    letter-spacing: 0.5px;
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 9px;
}

.banner .row .col-right 
 .form-des {
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 	24px;
}

.banner {
    padding: 36px 0 30px 0;
    background-image: url(./../miami-school/img/banner-bottom.png);
    background-repeat: no-repeat;
    background-position: center 100.5%;
    background-size: 100% 171px;
    position: relative;
}

.gravity-form-wrap {
    text-align: left;
}


.gravity-form-wrap .gform-theme--foundation .gfield .ginput_password, 
.gravity-form-wrap .gform-theme--foundation .gfield input, 
.gravity-form-wrap .gform-theme--foundation .gfield textarea, 
.gravity-form-wrap .gform-theme--foundation .gfield select {
    font-size: 16px;
    font-family: var(--mm-font-secondary);
    padding: 12px 16px;
    line-height: 1.4;
    height: inherit;
    border: 1px solid rgb(69 68 68 / 20%);
    box-shadow: none;
    border-radius: 8px;
}

.gravity-form-wrap .gform-theme--foundation .gfield .ginput_password::placeholder, 
.gravity-form-wrap .gform-theme--foundation .gfield input::placeholder, 
.gravity-form-wrap .gform-theme--foundation .gfield textarea::placeholder, 
.gravity-form-wrap .gform-theme--foundation .gfield select::placeholder {
    color: rgb(0 0 0 / 40%);
}

.gravity-form-wrap .gform-body .gform_fields {
    grid-row-gap: 16px;
    grid-column-gap: 24px;
}

.gravity-form-wrap .gform-body .gform_fields .ginput_container_textarea textarea {
        min-block-size: 5rem;
    height: 80px;
    appearance: none;
    resize: none;
}


.gravity-form-wrap .gform-theme--foundation fieldset .gfield_label.gform-field-label {
    font-size: 16px;
    line-height: 1.5;
    font-weight: 500;
    color: var(--mm-primary-dark);
    margin-bottom: 10px;
}

.gravity-form-wrap .gform-theme--foundation fieldset .ginput_container_radio .gfield_radio {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.gravity-form-wrap .gform-theme--foundation fieldset .ginput_container_radio .gfield_radio .gchoice {
    align-items: center;
}

.gravity-form-wrap .gform-theme--foundation fieldset .ginput_container_radio .gfield_radio .gchoice input {
    width: 20px;
    height: 20px;
    padding: 5px;
    border-radius: 50%;
    border: 1.5px solid rgb(69 68 68 / 20%);
}

.gravity-form-wrap .gform-theme--foundation fieldset .ginput_container_radio .gfield_radio .gchoice input::before {
    width: 12px;
    height: 12px;
    background-color: var(--mm-primary-green);
}

.gravity-form-wrap .gform-theme--foundation fieldset .ginput_container_radio .gfield_radio .gchoice label {
    margin-left: 8px;
    font-size: 16px;
    color: var(--mm-primary-grey);
}

.gravity-form-wrap .gform-theme--foundation fieldset .ginput_container.ginput_container_checkbox .gfield_checkbox .gchoice {align-items: center;}

.gravity-form-wrap .gform-theme--foundation fieldset .ginput_container.ginput_container_checkbox .gfield_checkbox {
    flex-direction: row;
    flex-wrap: wrap;
    display: grid;
    grid-auto-flow: row;
    grid-template-columns: repeat(2, 6fr);
}

.gravity-form-wrap .gform-theme--foundation fieldset .ginput_container.ginput_container_checkbox .gfield_checkbox .gchoice input {
    padding: 5px;
    width: 20px;
    height: 20px;
    border-radius: 4px;
    border: 1px solid rgb(69 68 68 / 20%);
}

.gravity-form-wrap .gform-theme--foundation fieldset .ginput_container.ginput_container_checkbox .gfield_checkbox .gchoice input::before {
    color: var(--mm-primary-dark);
}

.gravity-form-wrap .gform-theme--foundation fieldset.subscribe-new .ginput_container.ginput_container_checkbox .gfield_checkbox {
    grid-template-columns: repeat(1,12fr);
}

.gravity-form-wrap .gform-theme--foundation fieldset.subscribe-new .ginput_container.ginput_container_checkbox .gfield_checkbox label {
    font-weight: 500;
    font-size: 16px;
    color: var(--mm-primary-dark);
}


.gravity-form-wrap .gform-theme--foundation fieldset .ginput_container.ginput_container_checkbox .gfield_checkbox .gchoice label {
    font-size: 16px;
}
.gravity-form-wrap .gform-theme--foundation fieldset.subscribe-new {
    padding-top: 8px;
}

.gravity-form-wrap .gform-theme--foundation .gform_footer {
    /* display: block; */
    width: 100%;
    text-align: center;
    flex-direction: column;
}

.gravity-form-wrap .gform-theme--foundation .gform_footer input {background: var(--mm-primary-dark) !important;font-size: 16px !important;text-transform: uppercase !important;font-weight: 500 !important;border: 1px solid var(--mm-primary-dark) !important;padding: 14px !important;border-radius: 8px !important;}

.gravity-form-wrap .gform-theme--foundation .gform_footer input:hover {background-color: var(--mm-white) !important;color: var(--mm-primary-dark) !important;}

.cl-img {
    text-align: center;
    position: relative;
}

.col-left {
    position: relative;
   padding-top: 24px;
}

.banner:before {
	background-image: url(./../miami-school/img/earth-01.png);
	width: 126px;
    height: 186px;
    bottom: 0;
    content: '';
    display: block;
    position: absolute;
    bottom: 102px;
    z-index: -1;
    background-size: cover;
}

.col-right .form-wrap:after {
	 content: '';
    display: block;
	background-image: url(./../miami-school/img/book-1.png);
	 width: 131px;
    height: 140px;
    top: 100px;
    z-index: 1;
    position: absolute;
    left: -83px;
    z-index: -1;
    background-size: cover;
}

body .gform_confirmation_message {
    font-size: var(--mm-h4);
    font-family: var(--mm-font-primary);
    text-align: center;
    color: var(--mm-white);
}

.site-footer .pen-vector {
    position: absolute;
    width: 142px;
    height: 101px;
    background-image: url(./../miami-school/img/pen.png);
    background-repeat: no-repeat;
    top: -134px;
    right: 120px;
}

.testimonial  .pin-c.container {
    position: relative;
}

.testimonial .pin-vector {
    position: absolute;
    width: 135px;
    height: 151px;
    top: -187px;
    background-image: url(./../miami-school/img/pin.png);
}

.testimonial .jar-vector {
	 background-image: url(./../miami-school/img/jaar.png);
	 width: 180px;
	 height: 243px;
	 right: 0;
	 top: 89px;
    position: absolute;
    background-position-x: right;
    background-repeat: no-repeat;
}

.let-know .let-wrap .let-wrap-inner div.col-8 {
	position: relative;
	width: 56%;
    flex: 0 0 56%;
}
.let-know  .let-wrap .let-wrap-inner div.col-8:after {
    content: '';
    display: block;
    background-image: url(./../miami-school/img/arrow-01.png);
    width: 292px;
    height: 153px;
    position: absolute;
 	right: 0;
    bottom: -25px;
    background-size: cover;
}

.site-logo .custom-logo-link {
    max-width: 186px;
    display: flex;
    align-items: center;
}

.cta-pink.cta-green .let-wrap .let-wrap-inner {
	display: flex;
	    align-items: center;
       border-color: #05979C;
    padding: 48px 32px 59px 80px;
    justify-content: space-between;
}

.cta-pink.cta-green .let-wrap {
    background-color: #AEE5E6;
}

.cta-pink.cta-green .let-wrap .col-8 h3 {
    color: var(--mm-primary-dark);
    margin-bottom: 32px;
}

.cta-pink.cta-green .let-wrap .col-8 a {
    background-color: var(--mm-primary-dark);
    border-color: var(--mm-primary-dark);
    text-transform: uppercase;
    font-weight: 500;
    padding: 12px 15px;
}

.cta-pink.cta-green .let-wrap .col-8 a:hover {
    background-color: var(--mm-primary-green);
    border-color: var(--mm-primary-green);
}

.cta-section.cta-pink.cta-green .col-8 {
       padding-bottom: 0;
    flex: 0 0 64%;
    width: 64%;
}

.cta-pink.cta-green .let-wrap .let-wrap-inner {
    display: flex;
    align-items: center;
}

.banner .col-left .banner-short-des p {
    font-size: 16px;
    font-weight: normal;
    margin: 0;
}

.banner .col-left .banner-short-des {
    padding: 16px 20px;
    background-color: var(--mm-green-200);
    border-radius: 8px;
    margin-bottom: 5px;
}

.gfield .ginput_container_phone .spf-phone.valid-msg:before, .gfield .ginput_container_phone .spf-phone.error-msg:before {
    background-repeat: no-repeat;
}

.services .container.container-mid {
    max-width: 1000px !important;
}

.brands-list-wraper {
    background-color: var(--mm-green-200);
    padding: 80px 0;
    display: block;
}

.brands-list-wraper .brands-list {
    display: grid;
    grid-template-columns: repeat(4, 2.5fr);
    grid-auto-flow: row;
    align-items: stretch;
    justify-content: center;
    grid-gap: 24px;
}

.brands-list-wraper .brands-list .brand-col a{
    text-align: center;
    background-color: var(--mm-white);
    border-radius: 8px;
    padding: 23px 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.lead-consultant {
    padding: 80px 0;
    background-color: #E1F0F2;
}

.lead-consultant .col-img figure {
    display: inline-block;
     margin: 0; 
    position: relative;
    max-width: 380px;
    max-height: 380px;
    height: 100%;
    width: 100%;
}

.lead-consultant .col-img {
    display: flex;
       align-items: center;
    justify-content: flex-end;
    padding-right: 90px;
}

.lead-consultant .col-img figure .img-bg {
    position: absolute;
    height: 100%;
    width: 100%;
    z-index: 0;
    background-color: var(--mm-green-300);
    border-radius: 50%;
    left: -30px;
    top: -30px;
}

.lead-consultant .col-img figure img {
    z-index: 1;
    position: absolute;
    border: 6px solid #fff;
    border-radius: 50%;
}

.col-ab h3 {
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: 0.08em;
    margin-bottom: 8px;
}

.col-ab h6 {
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: 0.08em;
    margin-bottom: 24px;
}

.consultant {
    background-color: #F0F6F7;
    padding: 80px 0;
}

.consultant h3 {
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: 0.08em;
    margin-bottom: 32px;
}

.cta-wrap {
    text-align: center;
}

.cta-wrap a {
    text-decoration: none;
    background-color: var(--mm-primary-pink);
    font-weight: 600;
    color: var(--mm-white) !important;
    padding: 8px 64px;
    border-radius: 4px;
    display: inline-block;
    line-height: 1.5;
}

.cta-wrap a:hover {
    background-color: var(--mm-primary-green);
}

.consultant .row .col-3 {
    background-color: var(--mm-white);
    padding: 24px;
    border-radius: 4px;
}

.consultant .row .col-3 figure {
    margin: 0;
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background-color: #DCF4F5;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 16px;
}

.consultant .row p {
    margin-bottom: 0;
    color: var(--mm-primary-dark);
    font-size: 20px;
    font-weight: 500;
    max-width: 221px;
}

.consultant .row.d-grid.gallery-columns-3 {
    grid-gap: 24px;
    margin-bottom: 32px;
}

/*Hero Banner*/

/* Hero Banner Style Start */
.hero-banner {
	position: relative;
	padding: 168px 0 48px 0;
	background: linear-gradient(180deg, var(--mm-primary-green-200) 0%, var(--mm-primary-green-300) 100%);

}

.hero-banner::before {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: url('img/Hero-section-pattern.svg');
	filter: grayscale(1);
}

.hero-banner::after {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: url('img/Illustration.png');
	background-repeat: no-repeat;
	background-position: bottom right;
	background-size: auto;
	pointer-events: none;
}



.hero-banner .hb-top-heading {
	text-align: center;
	margin-bottom: 70px;
}

.hero-banner .hb-top-heading h4 {
	color: var(--mm-white);
	font-weight: 500;
	font-family: var(--mm-font-secondary);
	margin-bottom: 0;
}

.hero-banner .hb-row {
	display: flex;
	flex-wrap: wrap;
}

.hero-banner .hb-left-side {
	width: 50%;
    padding-right: 15px;
    padding-top: 15px;

}

.hero-banner .hb-right-side {
	width: 50%;
	padding-left: 15px;

}

.hero-banner .hb-wrapper {
	position: relative;
	z-index: 9;
}

.hero-banner .hb-left-side h2 {
	color: var(--mm-white);
	font-weight: 400;
}

.hero-banner .hb-left-side h2 span {
	font-weight: 600;
}

.hero-banner .hb-left-side p {
	color: var(--mm-white);
}

.hero-banner .hb-form-wrap {
	padding: 32px;
	background: rgb(0 41 43 / 80%);
	border: 1.5px solid;
/*	border-image-source: linear-gradient(116.89deg, var(--mm-white) -10.51%, rgba(255, 255, 255, 0) 115.82%);*/
/*	border-image-slice: 1;*/
	box-shadow: 0px 20px 20px 0px #0000001A;
	backdrop-filter: blur(14px);
	-webkit-backdrop-filter: blur(14px);
	border-radius: 8px;
}

.hero-banner 
 .hb-wrap-w {
    position: relative;
}

.hero-banner .hb-wrap-w:after {
    content: '';
    content: '';
    position: absolute;
    top: -1.5px; /* Same as your border width */
    left: -1.5px;
    right: -1.5px;
    bottom: -1.5px;
    border-radius: 8px; /* Apply border-radius to the pseudo-element */
    background: linear-gradient(116.89deg, var(--mm-white) -10.51%, rgba(255, 255, 255, 0) 115.82%);
    z-index: -1; /* Position it behind the content */
    /* opacity: 0; */
}

.hero-banner .hb-form-wrap h6 {
	color: var(--mm-white);
	font-weight: 600;
	font-family: var(--mm-font-secondary);
	margin-bottom: 8px;
}

.hero-banner .hb-form-wrap ul {
	margin: 0;
	padding: 0 0 24px 0;
}

.hero-banner .hb-form-wrap ul li {
	position: relative;
	padding-left: 24px;
	color: var(--mm-white);
	list-style-type: none;
}

.hero-banner .hb-form-wrap ul li::before {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: url('img/arrow.svg');
	background-repeat: no-repeat;
	background-size: auto;
	background-position: left;
}

.hero-banner .hb-form-wrap .top_label {
	    --gf-form-gap-y: 12px !important;
    --gf-form-gap-x: 10px !important;
}

.hero-banner .hb-form-wrap .gfield_label {
	color: var(--mm-white);
	    
}

.hero-banner .hb-form-wrap .gform-field-label--type-inline {
	color: var(--mm-white);
	font-size: var(--mm-base) !important;

}

.hero-banner .hb-form-wrap .gform_footer .gform_button {
	width: 234px !important;
	font-size: 16px !important;
	background-color: var(--mm-primary-pink) !important;
	border-radius: 4px !important;
	font-weight: 600 !important;
}

.gform_wrapper  .ginput_container input:focus {
    outline: none !important;
    box-shadow: none !important;
    border: 0 !important;
}

.gform_wrapper .ginput_container input[type="text"] {
    color: #558E9E !important;
    padding: 8px 16px !important;
        font-size: var(--mm-base) !important;
}

.gform_wrapper .ginput_container input {
    color: #558E9E !important;
        font-size: var(--mm-base) !important;
}

.gform_wrapper .ginput_container input[type="checkbox"] {
		width: 20px;
		height: 20px;
		border-radius: 4px !important;
}

.gform-theme--foundation .gform_fields {
    column-gap: 10px;
    row-gap: 10px;
}

.gform_wrapper .ginput_container input[type="checkbox"]:before {
    color: #558E9E !important;
}

.gform_footer before input:hover, .gform_footer before input:focus {
    background-color: var(--mm-primary-green) !important;
}

.hero-banner .hb-form-wrap .gform_footer .gform_button:hover, .hero-banner .hb-form-wrap .gform_footer .gform_button:focus {
    background-color: var(--mm-primary-green) !important;
    outline: none !important;
    box-shadow: none !important;
    border-color: transparent !important;
}

/*Faq List*/

.faq-data .faq-list .qa .fAnswer{
	display: block;
	margin: 0;
}


.faq-data .faq-list .qa {
	margin-bottom: 0;
    border-bottom: 1px solid #E1F0F2;
    position: relative;
    list-style: none;
    padding-left: 24px;
    padding-top: 16px;
    padding-bottom: 16px;
}

.faq-data .faq-list .qa  p{
	margin: 0;
}

.faq-data .faq-list .qa:before {
    content: '';
    display: block;
    content: counters(item, ".") ". ";
    counter-increment: item;
    color: #05979C;
    font-weight: 500;
    width: 24px;
    position: absolute;
    left: 0;
    font-size: 20px;
}

.faq-data .faq-left-wrap {
	width: 54%;
}
.faq-data .faq-right-wrap {
	width: 46%;
}
.faq-data .faq-row{
	display: flex;
	align-items: center;
	gap: 1.5rem 62px;
}
.faq-data .profile {
    display: inline-block;
    position: relative;
    width: 90px;
    height: 90px;
    background-color: var(--mm-green-300);
    border-radius: 50%;
    margin: 0 auto;
}
.faq-data .profile .profile-img {
    position: absolute;
	top: -5px;
    left: 13px;
	max-width: 90px;
    max-height: 90px;
	border-radius: 50px;
    z-index: 999;
}

.faq-data .faq-profile-wrap {
	padding: 40px 32px;
	background-color: #DCF4F5;
	box-shadow: 0px 50px 71px 0px #09046B0A;
	text-align: center;
	border-radius: 5px;
}
.faq-data .faq-dec{
	margin-top: 14px;
}
.faq-data .faq-dec span {
    display: block;
	width: 100%;
    max-width: 350px;
	margin:0 auto;
	margin-bottom: 8px;
}
.faq-data .faq-dec p {
	color: var(--mm-primary-green);
	font-weight: 400;
	font-family: var(--mm-font-primary);
	text-transform: capitalize;
	margin-bottom: 0;
}
.faq-data .faq-list .qa .fQUestion{
	font-size: 20px;
	margin-bottom: 4px;
}

.brands-list-wraper .brands-list .brand-col:nth-child(2) a img {
    max-width: 165px;
}

.brands-list-wraper .brands-list .brand-col:nth-child(3) a img {
    max-width: 177px;
}



@media screen and (max-width: 1500px) {
	

	.site-footer .pen-vector {
		right: 80px;
	}

	.cta-section .container.container-mid {
	    padding: 0 40px;
	    max-width: 1120px;
	}

	.services .container.container-mid {
	    padding: 0 20px;
	    max-width: 1120px;
	}
}


@media screen and (max-width: 1366px) {
	.footer-content .footer-right {
	    flex: 0 0 60%;
	}


	.footer-content .footer-logo {
	    flex: 0 0 40%;
	}

	.site-footer .footer-content .container {
		    padding: 0 30px 0 52px;
	}

	.site-footer .pen-vector {
		right: 0;
	}

	.services:after {
		width: 85px;
		height: 111px;
		background-size: contain;
		
	}


	.services .service-shape-1 {
		background-size: contain;
	}

	.services:before {
		width: 169px;
	    height: 91px;
		background-size: contain;
		top: -24px;
	}


	.school_type .school_type-shape .top-ss {
		width: 159px;
		  height: 172px;
		top: -200px;
		  left: 30px;
		  background-size: contain;
		  background-repeat: no-repeat;
	}

	.let-know .let-wrap .let-wrap-inner div.col-8:after {
        width: 208px;
	    height: 121px;
	    position: absolute;
	    right: 109px;
	    bottom: -55px;
	    background-size: contain;
	    background-repeat: no-repeat;
	}

	.school_type .row .st-slide .school-data .st-inner p {
	    transform: translateY(-10px);
	}
	
}

@media screen and (max-width: 1200px) {

	.services .service-shape-1 {
	    width: 50px;
	}

	.services:after {
	    width: 50px;
	}

	.services:before {
	    width: 100px;
	}

	.lead-consultant .col-img {
		padding-left: 30px;
        padding-right: 60px;
	}
}

@media screen and (max-width: 1100px) {
	.let-know .let-wrap .let-wrap-inner div.col-8:after {
		width: 184px;
        height: 121px;
        right: 80px;
        bottom: -30px;
        background-size: contain;
        background-repeat: no-repeat;
	}

	.school_type .row .st-slide {
		padding-left: 40px;
	}
}


@media screen and (max-width: 1024px) {
	.footer-content .footer-logo {
	    flex: 0 0 100%;
	    margin-bottom: 20px;
	    text-align: center;
	}

	.footer-content .footer-logo a {
		margin: 0 auto;
	}

	.footer-content .footer-right {
	    flex: 0 0 100%;
	    text-align: center;
	}

	.site-footer .footer-content .container {
	    padding: 0 30px;
	}

	.site-footer .footer-content {
	    padding: 30px 0;
	}

	.footer-content .row ul {
	    justify-content: center;
	    padding-top: 5px;
	}

	:root {
		--mm-base: 16px;
		--mm-h1: 42px;
		--mm-h2: 42px;
		--mm-h3: 36px;
		--mm-h4: 28px;
		--mm-h5: 24px;
		--mm-h6: 22px;
		--mm-p: 18px;
	}

	.faq-data {
		padding: 70px 0 80px 0;
	}


	.faq-list .qa, .faq-list .qa.active {
		padding: 20px 10px 20px 60px;
	}

	.site-footer .pen-vector {
	    right: 0;
	    width: 100px;
	    height: 80px;
	    background-size: contain;
	    top: -72px;
	}

	.testimonial .testimonial-bg {
		padding: 60px 0;
	}

	.testimonial .jar-vector {
	    width: 150px;
	    height: 200px;
	    background-size: contain;
	    top: 31px;
	}

	.testimonial .pin-vector {
	    width: 100px;
	    height: 120px;
	    background-size: contain;
	    background-repeat: no-repeat;
	    top: -133px;
	}

	.testimonial-list .slick-slide .sl-col .sl-inner .tQuote {
	    height: 40px;
	    max-width: 50px;
	    background-size: contain;
	    background-repeat: no-repeat;
	}

	.testimonial-list .slick-slide {
	    padding: 0 15px;
	}

	.let-wrap .let-wrap-inner {
	    padding: 25px 0 25px 50px;
	}

	.let-wrap .let-wrap-inner .col-4 {
		padding-right: 50px;
	}

	.cta-section {
		padding-bottom: 50px;
	}

	.cta-pink .let-wrap .col-8 h4 {
		font-size: 28px;
	}

	.education-consultant .des p  {
		font-size: 21px;
	}

	.education-consultant {
		padding-bottom: 50px;
	}

	.let-know .let-wrap .let-wrap-inner {
	    padding: 25px 25px 0 25px;
	}

	.let-know .let-wrap .let-wrap-inner div.col-8 {
	    flex: 0 0 100%;
	    width: 100%;
	}

	.let-know .let-wrap .let-wrap-inner  .col-4 {
	    flex: 0 0 100%;
	    width: 100%;
	    justify-content: center;
	    padding-top: 50px;
	}

	.let-wrap .let-wrap-inner .col-8 {}

	.let-know .let-wrap .let-wrap-inner div.col-8:after {
	    right: 64px;
	    display: none;
	}

	.let-wrap .col-8 h4 {
	    font-size: 32px;
	}

	.services .row .service-col .services-col-inner .s-title {
		font-size: 32px;
		margin-bottom: 25px;
	}

	.services .row .service-col .services-col-inner {
	    padding: 40px 20px;
	}

	.services {
		padding: 70px 0;
	}


	.school_type {
	    padding: 80px 0;
	}

	.school_type .row .st-slide .school-data {
	    max-width: 300px;
	    max-height: 300px;
	}

	.banner .col-left p {
	    font-size: 26px;
	}

	.cl-img img {
	    max-width: 300px;
	}

	.banner:before {
	    width: 140px;
	    height: 230px;
	    object-fit: cover;
	    background-size: contain;
	    background-repeat: no-repeat;
	    background-position-y: bottom;
	    bottom: 180px;
	}


	.banner .row {
	    grid-template-columns: repeat(1, 12fr);
	    grid-gap: 30px;
	}

	.banner .row .col-right {
	    order: 1;
	}

	.banner .row .col-left {
	    order: 2;
	    padding-top: 0;
	}

	.banner {
	    padding: 30px 0 50px 0;
	    background-position: 100% bottom;
	}

	.banner:before {
	    bottom: 107px;
	}

	.banner .row .col-right .sub-title {
	    max-width: 100%;
	    margin-bottom: 10px;
	}

	.cta-pink.cta-green .let-wrap .let-wrap-inner {
		padding: 40px 20px 50px 61px;
	}

	.school_type .school_type-shape .top-ss {
	    width: 120px;
	    height: 130px;
	    top: -121px;
	    left: 30px;
	    background-size: contain;
	    background-repeat: no-repeat;
	}

	.school_type-shape:after {
		top: -91px;
	}

	.faq-list .qa .fQUestion span {
		top: 23px;
	}

	.banner .col-left h1 {
		padding-right: 0;
	}

	.services .row .service-col:before {
		min-height: 100%;
	}

	.cta-pink .let-wrap .col-8 h3 {
		margin-bottom: 15px;
	}

	.school_type .row .col-5 .st-des, .school_type .row .st-slide .school-data {
		top: 270px;
	}


	.services:before {
		top: 0;
	}

	.school_type-shape:before {
	    top: 60px;
	    bottom: 0;
	    width: 100px;
	    height: 150px;
	    background-size: contain;
	    background-repeat: no-repeat;
	}

	.school_type .title {
		transform: translateY(-40px);
	}

	.school_type .row .st-slide .school-data .st-inner {
		align-items: flex-start;
		padding-top: 30px;
	}

	.brands-list-wraper {
		padding: 60px 0;
	}

	.col-ab {
	    padding-left: 15px;
	}

	.lead-consultant {
	    padding: 60px 0;
	}

	.lead-consultant .col-img figure {
	    max-width: 300px;
	    max-height: 300px;
	}

	.lead-consultant .col-img figure .img-bg {
	    top: -15px;
	    left: -15px;
	}

	.consultant {
		padding: 60px 0;
	}

	.consultant .row p {
		font-size: 18px;
	}

	.services .row {
	    max-width: calc(100% - 20px);
	    margin: 0 auto;
	}

	.lead-consultant .col-img {
		padding-left: 30px;
        padding-right: 20px;
	}

	.footer-content .row ul a  {
		font-size: 18px;
	}

	.site-header .container .row .connect-us ul li a {
	    font-size: 0;
	}

	.site-header .container .row .connect-us ul {
	    grid-gap: 10px;
	}

	.site-header .container .row .connect-us ul li a {
	    grid-gap: 0;
	}
}

@media screen and (max-width: 800px) {
	.school_type .row .col-5 .st-des {
	    position: relative;
	    top: 0;
	}

	.school_type .title {
	    position: relative;
	    top: inherit !important;
	    margin-bottom: 30px;
	}


	.school_type {
		padding: 50px 0;
		background-position-y: -40px;
	}

	

	.school_type .row {
		grid-gap: 20px;
	}

	.school_type .row .st-slide .school-data {
		top: 50px;
		margin: 0 auto;
		max-width: 340px;
		max-height: 340px;
	}

	.school_type .row .st-slide {
		padding-left: 0;
	}

	.school_type .title h2 {
	    max-width: 100%;
	}

	.d-grid {
		grid-template-columns: repeat(1, 12fr);

	}

	.school_type .row .st-slide {
	    padding: 0;
	    display: flex;
	    justify-content: center;
	    flex-direction: column;
	}

	.school_type .row .st-slide .school-data {
	    top: 50px;
	    margin: 0 auto;
	}

	.services .row .service-col .services-col-inner .des {
		font-size: 20px;
	}

	.brands-list-wraper {
		padding: 60px 0;
	}

	.site-header .container .row .connect-us ul li a {
	    font-size: 0;
	    grid-gap: 0;
	}

	.site-header .container .row .connect-us ul {
	    grid-gap: 10px;
	}

	.faq-data .faq-list .qa .fQUestion {
	    font-size: 18px;
	}

	.faq-data .faq-list .qa:before {
	    font-size: 18px;
	}

}

@media screen and (max-width: 767px) {

	:root {
		--mm-base: 15px;
		--mm-h1: 38px;
		--mm-h2: 38px;
		--mm-h3: 32px;
		--mm-h4: 24px;
		--mm-h5: 22px;
		--mm-h6: 18px;
		--mm-p: 16px;
	}
	.site-header .container .row .connect-us ul li a {
	    font-size: 0;
	    text-align: center;
	    grid-gap: 0;
	}

	.site-header .container .row .connect-us ul {
	    grid-gap: 11px;
	}


	.cta-pink .let-wrap .col-8 h4 {
		font-size: 24px;
	}

	.site-header .container .row .connect-us ul li a svg {
	    width: 33px;
	    height: 34px;
	}

	.site-header {
	    padding: 15px 0;
	}

	.site-footer .footer-content {
	    padding: 38px 0 30px 0;
	}

	.site-footer .footer-content .container {
	    padding: 0 20px;
	}


	.footer-content .row ul {
	    grid-gap: 10px;
	}


	.faq-data {
		padding: 50px 0 50px 0;
	}


	.faq-list .qa .fAnswer {
	    margin-top: 10px;
	}

	.services .row .service-col .services-col-inner .des {
		font-size: 18px;
	}
	.faq-list .qa.active .fQUestion span {
	    left: 10px;
	}

	.faq-list .qa, .faq-list .qa.active {
	    padding: 15px 10px 15px 40px;
	}

	.testimonial .testimonial-bg {
		padding: 40px 0;
	}

	.testimonial .pin-vector {
		top: -75px;
		width: 77px;
        height: 78px;
	}

	.testimonial .jar-vector {
		width: 101px;
        height: 130px;
	}

	.let-wrap {
	    padding-top: 15px;
	}

	.cta-pink .let-wrap .let-wrap-inner {
	    padding: 20px;
	    flex-direction: column-reverse;
	}

	.cta-pink .let-wrap .let-wrap-inner .col-8 {
	    padding-bottom: 0;
	    width: 100%;
	    flex: 0 0 100%;
	}

	.let-wrap .let-wrap-inner div {
	    flex: 0 0 100%;
	}

	.let-wrap .let-wrap-inner .col-4 {
	    padding-bottom: 20px;
	}

	.cta-pink .let-wrap .col-8 h4 {
	    padding-top: 0;
	}

	.cta-section.cta-pink {
	    padding-bottom: 60px;
	}

	.cta-pink .let-wrap .col-8 a {
	    min-width: 100%;
	    max-width: 100%;
	    padding: 10px 13px;
	    font-size: 13px;
	}

	.education-consultant .des p  {
		font-size: 18px;
	}

	.education-consultant {
		padding-bottom: 30px;
	}

	.let-know .let-wrap .let-wrap-inner div.col-8:after {
	    display: none;
	}

	.let-wrap .col-8 h4 {
	    font-size: 28px;
	    margin-bottom: 12px;
	}

	.let-wrap .col-8 a {
	    font-size: 18px;
	}

	.let-know .let-wrap .let-wrap-inner .col-4 {
	    padding-bottom: 0;
	}

	.services .row .service-col .services-col-inner {
	    padding: 30px 20px;
	    border-radius: 15px;
	}

	.services .row {
	    grid-template-columns: repeat(1, 12fr);
	    grid-gap: 30px;
	    padding-top: 18px;
	}

	.services .row .service-col:before {
	    min-height: 100%;
	}

	.services .row .service-col {
	    border-radius: 15px;
	}

	.services .row .service-col:before {
	    border-radius: 16px;
	}

	.services .row .service-col .services-col-inner .s-title {
	    font-size: 24px;
	    margin-bottom: 15px;
	}

	.services {
		padding: 50px 0;
	}

	.school_type .row .st-slide .school-data .st-inner {
		align-items: flex-start;
		padding-top: 30px;
	}

	.banner .row .col-right .form-wrap {
	    padding: 15px 20px;
	}

	.cta-pink.cta-green .let-wrap .let-wrap-inner {
	    padding: 20px 20px 20px 20px;
	}

	.let-wrap .let-wrap-inner .col-4 {
	    flex: 0 0 100%;
	    width: 100%;
	}

	.cta-pink .let-wrap .let-wrap-inner {
		border-radius: 20px;
	}

	.school_type .school_type-shape .top-ss {
	  width: 68px;
	  height: 70px;
	  top: -70px;
	  left: 30px;
	  background-size: contain;
	  background-repeat: no-repeat;
	}

	.school_type-shape:aftert {
		top: -61px;
	}

	.cta-pink .let-wrap .let-wrap-inner .col-4 figure {
		margin-left: auto;
	}

	.col-right .form-wrap:after {
		display: none;
	}

	.faq-list .qa .fQUestion span {
		top: 16.5px;
	}


	.school_type .title {
		transform: translateY(0);
	}

	.school_type-shape:after {
        top: -26px;
        width: 40px;
        height: 60px;
        background-size: contain;
        background-repeat: no-repeat;
    }

    .school_type-shape:before {
        top: 24px;
        bottom: 0;
        width: 60px;
        height: 110px;
        background-size: contain;
        background-repeat: no-repeat;
    }

    .let-wrap .let-wrap-inner .col-4 {
	    justify-content: center;
	    padding: 0 20px;
	}

	.let-wrap .let-wrap-inner {
	    padding: 25px 20px;
	}

	.let-wrap .let-wrap-inner .col-8 {
	    order: 2;
	    text-align: center;
	    padding-top: 20px;
	}

	.brands-list-wraper {
		padding: 40px 0;
	}

	.lead-consultant .row.d-grid.gallery-columns-2 {
	    grid-template-columns: repeat(1, 12fr);
	}

	.lead-consultant .col-img figure {
	    width: 250px;
	    height: 250px;
	    margin: 0 auto;
	}

	.lead-consultant .col-img {
	    padding: 0;
	}

	.col-ab {
	    padding-left: 0;
	    padding-top: 30px;
	}

	.lead-consultant {
	    padding: 60px 0 40px 0;
	}

	.col-ab .des p:last-child {
	    margin-bottom: 0;
	}

	.consultant {
		padding: 40px 0;
	}

	.consultant .row p {
		font-size: 16x;
	}

	.consultant .row.d-grid.gallery-columns-3 {
	    grid-gap: 20px;
	    grid-template-columns: repeat(2, 6fr);
	}

	.consultant {
		padding: 40px 0;
	}

	.site-header .site-logo {
	    max-width: 50%;
	}

	.hero-banner .hb-row {
		display: block;
	}

	.hero-banner .hb-left-side {
		width: 100%;
		padding-right: 0;
	}

	.hero-banner .hb-right-side {
		width: 100%;
		padding-left: 0;
	}

	.hero-banner .hb-top-heading {
		margin-bottom: 15px;
	}

	.hero-banner {
		padding: 110px 0 48px 0;
	}

	.faq-data .faq-row {
		display: block;
	}
	.faq-data .faq-left-wrap {
		width: 100%;
	}
	.faq-data .faq-right-wrap {
		width: 100%;
	}

	.faq-data .faq-list .qa .fQUestion {
	    font-size: 16px;
	}

	.faq-data .faq-list .qa:before {
	    font-size: 16px;
	}

	.faq-data .faq-list .qa .fQUestion {
	    font-size: 18px;
	}

	.faq-data .faq-list .qa:before {
	    font-size: 18px;
	}

	.faq-data .faq-row {
	    display: flex;
	    flex-wrap: wrap;
	}

	.faq-data .faq-left-wrap {
	    order: 2;
	}

	.faq-data .faq-right-wrap {
	    margin-top: 16px;
	}

		.footer-content .row ul a  {
		font-size: 16px;
	}

	.site-logo a.brand img {
	    max-width: 200px;
	}


}


@media screen and (max-width: 567px) {


	:root {
		--mm-base: 15px;
		--mm-h1: 38px;
		--mm-h2: 34px;
		--mm-h3: 26px;
		--mm-h4: 22px;
		--mm-h5: 20px;
		--mm-h6: 16px;
		--mm-p: 16px;
	}
	.school_type .row .st-slide .school-data {
		top: 50px;
		margin: 0 auto;
		max-width: 300px;
		max-height: 300px;
	}

	.banner .row .col-left .cl-img img {
	    max-width: 240px;
	}

	.banner .col-left ul,
	.banner .col-left ol {
	    margin-bottom: 45px;
	}

	.school_type-shape:aftert {
		    width: 39px;
    height: 55px;
    top: -25px;
    right: 20px;
    background-size: contain;
    background-repeat: no-repeat;
	}

	.brands-list-wraper {
		padding: 40px 0;
	}

	.brands-list-wraper .brands-list {
		 grid-template-columns: repeat(1, 12fr);
	}

	.consultant .row.d-grid.gallery-columns-3 {
	    grid-gap: 20px;
	    grid-template-columns: repeat(1, 12fr);
	}
}


@media screen and (max-width: 375px) {
	.school_type .row .st-slide .school-data {
		max-width: 270px;
		max-height: 270px;
	}
}


/*header and faq */

