* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	list-style: none;
	text-decoration: none !important;
	font-family: "Sarabun", sans-serif;
}

html {
	scroll-behavior: smooth;
}

body {
	background-color: #fff;
	color: #000;
	font-family: "Sarabun", sans-serif;
}

ul {
	padding: 0;
	margin: 0;
}

p {
	padding: 0;
	margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	margin: 0;
	padding: 0;
}

.container {
	max-width: 1446px;
	margin: 0 auto;
}

/* Header Part Start */

.logo-bg {
	background-color: #1A3379;
	padding: 16px 0 19px 0;
	background: #040812;
	background: linear-gradient(90deg, rgba(4, 8, 18, 1) 0%, rgba(26, 51, 121, 1) 100%);
}

.book-btn {
	text-align: end;
	display: flex;
	justify-content: right;
}

.book-btn .consul {
	background-color: #fff;
	width: 250px;
	height: 60px;
	border-radius: 6px;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	font-size: 20px;
	font-weight: 600;
	color: #162B65;
}

.book-btn .talk {
	background-color: #34AF0B;
	width: 250px;
	height: 60px;
	border-radius: 6px;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	font-size: 20px;
	font-weight: 600;
	color: #fff;
	margin-left: 20px;
}

.book-btn .talk img {
	margin-right: 10px;
}

/* Menu Part Start */

.menu-bg {
	background-color: #0B34A1;
}

nav {
	display: flex;
	position: relative;
	justify-content: end;
	padding-top: 20px;
	padding-bottom: 22px;
}

nav>ul {
	display: flex;
	margin-bottom: 0;
	padding-left: 0;
	justify-content: space-between;
	width: 100%;
}

/* nav>ul>li {
    padding: 0 15px;
} */

nav>ul>li>a {
	padding: 20px 0;
	color: #fff;
	font-size: 18px;
	transition: 0.3s ease all;
	font-weight: 400;
}

nav>ul>li>a:hover {
	color: #34AF0B;
}

.pro-1 {
	position: relative;
}

.pro-2 {
	position: absolute;
	width: 300px;
	box-shadow: 0px 0px 5px 0px #ddd;
	z-index: 9999;
	background-color: #34AF0B;
	padding: 0px;
	left: 0;
	transition: 0.3s all ease-in-out;
	display: block;
	opacity: 0;
	visibility: hidden;
	transform: translateY(20px);
	top: 49px;
}

.pro-2>li {
	border-bottom: 1px solid #9d9dbd;
}

.pro-2>li>a {
	color: #fff;
	padding: 9px 15px 7px;
	font-size: 17px;
	font-weight: 500;
	text-transform: capitalize;
	margin: 0;
	display: block;
	transition: all 0.3s ease-in-out;
}

.pro-2>li>a:hover {
	padding-left: 20px;
	color: #fff;
	/* background-color: #15465F; */
}

.pro-2>li:last-child {
	border-bottom: none;
}

.pro-1:hover .pro-2 {
	visibility: visible;
	opacity: 1;
	transform: translateX(0px);
}

.pwon a {
	color: #f79646 !important;
	font-size: 17px;
}

.pro-1>a>i {
	transition: 0.3s ease-in-out;
	font-size: 16px;
}

.pro-1>a:hover>i {
	transform: rotate(180deg);
}

.hamburger-menu {
	display: flex;
	justify-content: flex-end;
	align-items: center;
	padding-right: 22px;
	display: none;
}

.hamburger {
	display: flex;
	flex-direction: column;
	align-items: end;
	gap: 5px;
	position: relative;
	z-index: 9;
	cursor: pointer;
	height: 100%;
	justify-content: center;
	width: 30px;
}

.bar {
	width: 30px;
	height: 2px;
	position: relative;
	background-color: #fff;
	transition: 0.3s;
}

.bar:nth-child(2) {
	width: 15px;
}

.header-contact .bar:nth-child(2) {
	transform: translateX(-40px);
	visibility: hidden;
	overflow: hidden;
	opacity: 0;
	transition: 0.8s;
	background-color: #fff;
}

.header-contact .bar:nth-child(1) {
	transform: rotate(135deg);
	top: 8px;
	position: relative;
	background-color: #fff;
}

.header-contact .bar:nth-child(3) {
	transform: rotate(225deg);
	top: -6px;
	background-color: #fff;
	position: relative;
}

/* Banner */

.banner-bg {
	/* background-image: url(assets/images/banner-bg.png);
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover; */
	background: #ffffff;
	background: linear-gradient(0deg, rgba(255, 255, 255, 1) 0%, rgba(246, 246, 246, 1) 100%);
	position: relative;
}

.banner-bg::before {
	position: absolute;
	content: "";
	width: 100%;
	height: 100%;
	background-image: url(assets/images/banner-bg.png);
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;

}

.banner-info {
	position: relative;
}

.banner-info h1 {
	font-family: "Sansation", sans-serif;
	color: #162B65;
	font-weight: 700;
	font-size: 45px;
	line-height: 60px;
	margin-bottom: 20px;
}

.banner-info p {
	font-family: "Sansation", sans-serif;
	color: #000;
	font-weight: 700;
	font-size: 22px;
	line-height: 44px;
	margin-bottom: 30px;
}

.rate {
	font-size: 20px;
	font-weight: 700;
	margin-bottom: 11px;
	font-family: "Sansation", sans-serif;
}

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

.rate img {
	margin-right: 7px;
}

.book-free .consuls {
	background-color: #10318B;
	width: 300px;
	height: 60px;
	border-radius: 6px;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	font-size: 20px;
	font-weight: 600;
	color: #fff;
}

.book-free .prog {
	background-color: #fff;
	width: 250px;
	height: 60px;
	border-radius: 6px;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	font-size: 20px;
	font-weight: 600;
	color: #10318B;
	border: 1px solid #10318B;
	margin-left: 15px;
}

.book-free {
	margin-top: 30px;
}

.if-you {
	color: #162B65;
	text-align: center;
	height: 70px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: bold;
	font-size: 24px;
	background: #ffffff;
	background: radial-gradient(circle, rgba(255, 255, 255, 1) 0%, rgba(241, 241, 241, 1) 100%);
	font-family: "Sansation", sans-serif;
}

.how-work {
	background: #F8F8F8;
	background: linear-gradient(0deg, rgba(248, 248, 248, 1) 0%, rgba(255, 255, 255, 1) 100%);
	padding: 50px 0;
}

.how-work h2 {
	color: #162B65;
	font-size: 36px;
	font-weight: 800;
	text-align: center;
}

.how-work p {
	color: #000;
	font-size: 21px;
	font-weight: 600;
	text-align: center;
	padding-top: 12px;
	margin-bottom: 0;
}

.process {
	padding: 40px 0 0 0;
	/* background: #f9f9f9; */
	width: 1170px;
	margin: 0 auto;
}

.process .containers {
	display: flex;
	justify-content: space-between;
	align-items: center;
	text-align: center;
	gap: 20px;
}

.step {
	flex: 1;
	position: relative;
}

.step img {
	width: 60px;
	margin-bottom: 10px;
}

.step h3 {
	font-size: 18px;
	font-weight: 600;
	color: #000;
	line-height: 1.3;
	margin-bottom: 0;
}

/* line between items */
.step:not(:last-child)::after {
	content: "";
	position: absolute;
	top: 30%;
	right: -10%;
	width: 80%;
	height: 2px;
	display: none;
	/* background: #ccc; */
}

.contry {
	max-width: 1020px;
	width: 100%;
	margin: 0 auto;
	padding: 0 15px;
}

.contry ul {
	padding-left: 0;
	margin-bottom: 0;
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 15px;
}

.contry ul li {
	list-style: none;
	margin-bottom: 0;
	font-size: 24px;
	font-weight: bold;
	font-family: "Sansation", sans-serif;
	display: flex;
	align-items: center;
	gap: 10px;
}

.contry ul li img {
	max-width: 30px;
	height: auto;
}

.student {
	padding: 40px 0 50px 0;
}

.student h2 {	text-align: center;	font-size: 36px;	font-weight: 800;	margin-bottom: 35px;	font-family: "Sansation", sans-serif; color: #162B65}

.client-slider {
	width: 1020px;
	margin: 0 auto;
}

.cli-time {
	background-color: #fff;
	border: 1px solid #DCDCDC;
	display: flex;
	justify-content: center;
	align-items: center;
	height: 120px;
	border-radius: 8px;
	box-shadow: rgb(33 35 38 / 17%) 0px 10px 10px -5px;
	margin: 15px 10px;
}

.small-slid {
	padding-bottom: 50px;
}

.small-slid .slick-prev {
	width: 34px;
	height: 34px;
	font-size: 0;
	background-color: #0B34A1;
	border: none;
	border-radius: 50%;
	background-image: url(assets/images/play.png);
	background-repeat: no-repeat;
	background-position: center;
	background-size: 30%;
	position: absolute;
	top: 41%;
	left: -5%;
}

.small-slid .slick-next {
	width: 34px;
	height: 34px;
	font-size: 0;
	background-color: #0B34A1;
	border: none;
	border-radius: 50%;
	background-image: url(assets/images/play-1.png);
	background-repeat: no-repeat;
	background-position: center;
	background-size: 29%;
	position: absolute;
	right: -5%;
	bottom: 35%;
}

.about-med {
	padding: 70px 0 90px 0;
	background-color: #FCFCFC;
	background-image: url(assets/images/cap-bg.svg);
	background-repeat: no-repeat;
	background-position: center right;
}

.about-info h2 {
	color: #162B65;
	font-weight: bold;
	font-size: 35px;
	line-height: 40px;
	padding-bottom: 10px;
	font-family: "Sansation", sans-serif;
}

.about-info p {
	color: #000;
	font-size: 22px;
	line-height: 41px;
	padding-bottom: 30px;
	margin-bottom: 0;
	font-family: "Sansation", sans-serif;
}

.book-free .with-me {
	background-color: #070E20;
	width: 300px;
	height: 60px;
	border-radius: 6px;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	font-size: 21px;
	font-weight: 600;
	color: #fff;
}

.enquiry-time {
	background-color: #193175;
	padding: 50px 0;
	background-image: url(assets/images/enq-bg.jpg);
	background-repeat: no-repeat;
	background-position: top center;
	position: relative;
	background-size: cover;
}

.enquiry-time::before {
	position: absolute;
	content: "";
	width: 100%;
	height: 100%;
	background-color: #193175;
	top: 0;
	left: 0;
	opacity: 0.9;
}

.about-me h2 {
	font-size: 35px;
	font-weight: 700;
	line-height: 50px;
	color: #fff;
	text-align: center;
	font-family: "Sansation", sans-serif;
	position: relative;
}
.about-me p{
	color: #fff;
	font-size: 18px;
	line-height: 1.6;
	text-align: center;
	padding-top: 15px;
}

.book-consul {
	text-align: center;
	position: relative;
}

.book-consul .with-me {
	background-color: #fff;
	color: #193175;
}

.why-choose {
	padding: 60px 0;
	/* background-image: url(assets/images/cap-bg.svg);
	background-repeat: no-repeat; */
	position: relative;
}

.why-choose .container {
	max-width: 1210px !important;
}

.why-choose::before {
	position: absolute;
	content: "";
	background-image: url(assets/images/cap-bg-2.svg);
	width: 30%;
	height: 92%;
	background-repeat: no-repeat;
	background-size: 83%;
	top: 5%;
	left: 1.5%;
}

.why-choose h2 {
	text-align: center;
	font-size: 36px;
	font-weight: 900;
	margin-bottom: 12px;
	position: relative;
	color: #162B65;
}

.why-choose p {
	text-align: center;
	color: #000;
	font-size: 22px;
	line-height: 41px;
	margin-bottom: 35px;
	position: relative;
}

.why-box {
	flex-direction: column;
	background-color: #fff;
	border: 1px solid #DCDCDC;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 8px;
	box-shadow: rgba(33, 35, 38, 0.151) 0px 10px 10px -10px;
	height: 208px;
	position: relative;
}

.why-box h3 {
	margin-bottom: 0;
	font-size: 22px;
	font-weight: 500;
	margin-top: 20px;
}

.progrma {
	padding: 50px 0;
	background: #0C46E0;
	background: linear-gradient(rgba(12, 70, 224, 1) 0%, rgba(37, 68, 159, 1) 100%) !important;
	position: relative;
}

.progrma::before {
	position: absolute;
	content: "";
	background-image: url(assets/images/dot-2.png);
	background-repeat: no-repeat;
	top: 0;
	left: -1%;
	width: 100%;
	height: 100%;
}

.progrma::after {
	position: absolute;
	content: "";
	background-image: url(assets/images/dot-1.png);
	background-repeat: no-repeat;
	bottom: 0;
	right: 0;
	width: 450px;
	height: 300px;
}

.progrma .container {
	max-width: 1210px !important;
}

.progrma h2 {
	color: #fff;
	text-align: center;
	font-size: 36px;
	font-weight: 900;
	margin-bottom: 12px;
}

.progrma p {
	text-align: center;
	color: #fff;
	font-size: 22px;
	line-height: 41px;
	margin-bottom: 35px;
}

.pro-box {
	background-color: #fff;
	border-radius: 10px;
	border: 1px solid #dcdcdc;
	text-align: center;
	padding: 20px 20px 80px;
	height: 100%;
	position: relative;
	z-index: 9;
}

.pro-box ul {
	padding-left: 0;
}

.pro-box ul li {
	background-image: url(assets/images/check.svg);
	background-repeat: no-repeat;
	background-position: left center;
	text-align: left;
	padding-left: 28px;
	font-size: 16px;
	font-weight: 700;
	margin-bottom: 11px;
	background-size: 8.5%;
	font-family: "Sansation", sans-serif;
}

.pro-box h3 {
	margin-bottom: 23px;
	font-size: 24px;
	font-weight: bold;
	margin-top: 20px;
}

.new-mmi {
	text-align: left;
	font-size: 16px;
}

.new-mmi img {
	width: 20px;
	height: auto;
}

.pro-box a {
	margin-top: 35px;
	background-color: #2145AB;
	border-radius: 9px;
	display: block;
	color: #fff;
	height: 60px;
	font-size: 18px;
	font-weight: 600;
	display: flex;
	justify-content: center;
	align-items: center;
	position: absolute;
	bottom: 10px;
	left: 20px;
	right: 20px;
}

.our-success {
	padding: 60px 0;
}

.succes-story h2 {
	color: #2145AB;
	font-size: 36px;
	font-weight: 900;
	margin-bottom: 8px;
}

.succes-story p {
	color: #000;
	font-size: 22px;
	line-height: 41px;
	margin-bottom: 15px;
}

.counter-time {
	text-align: center;
	display: inline-block;
}

.counter-time h3 {
	font-size: 35px;
	color: #000;
	font-weight: 600;
	margin-bottom: 0;
}

.counter-time p {
	color: #000;
	font-size: 18px;
	line-height: 28px;
	margin-bottom: 15px;
	font-weight: 500;
}

.testimonial {
	background-color: #F3F6FF;
	border-radius: 35px 5px 35px 5px;
	/* box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px; */
	padding: 30px 50px;
}

.star-time {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.star-time ul {
	padding-left: 0;
	display: flex;
	gap: 5px;
	margin-bottom: 0;
}

.star-time ul li {
	display: flex;
}

.star-time ul li i {
	color: #E26600;
}

.testimonial p {
	font-size: 20px;
	font-style: italic;
	color: #333333;
	line-height: 30px;
	padding-top: 15px;
}

.name {
	color: #1F45B0;
	font-size: 21px;
	font-weight: 600;
}

.invert-coma img {
	width: 85%;
}

.middle-east {
	padding: 60px 0 80px 0;
	background-color: #FCFCFC;
	background-image: url(assets/images/cap-bg.svg);
	background-repeat: no-repeat;
	background-position: center right;
}

.middle-info h2 {
	color: #162B65;
	font-weight: bold;
	font-size: 35px;
	line-height: 40px;
	font-family: "Sansation", sans-serif;
}

.middle-info p {
	color: #000;
	font-size: 22px;
	line-height: 41px;
	padding-bottom: 35px;
	margin-bottom: 0;
	font-family: "Sansation", sans-serif;
}

.middle-info ul {
	padding-left: 0;
}

.middle-info ul li {
	background-image: url(assets/images/check.svg);
	background-repeat: no-repeat;
	background-position: left center;
	text-align: left;
	padding-left: 35px;
	font-size: 20px;
	font-weight: 700;
	margin-bottom: 15px;
	font-family: "Sansation", sans-serif;
}

.book-middle {
	margin-top: 35px;
}

.book-middle .with-me {
	background-color: #070E20;
	width: 370px;
	height: 60px;
	border-radius: 6px;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	font-size: 20px;
	font-weight: 600;
	color: #fff;
}

.clear {
	padding: 50px 0 50px 0;
	background-color: #F9F6EF;
}

.clear .container {
	max-width: 1210px !important;
}

.clear h2 {
	color: #162B65;
	text-align: center;
	font-size: 36px;
	font-weight: 900;
	margin-bottom: 12px;
}

.clear p {
	text-align: center;
	color: #000;
	font-size: 22px;
	line-height: 41px;
	margin-bottom: 35px;
}

.clear-box {
	background-color: #fff;
	border: 2px solid #6CAC94;
	border-radius: 10px;
	text-align: center;
	padding: 10px 30px 30px 30px;
}

.clear-box h3 {
    font-size: 30px;
    font-weight: 700;
    padding-top: 15px;
    padding-bottom: 19px;
}

.clear-box ul li {
	background-image: url(assets/images/check.svg);
	background-repeat: no-repeat;
	background-position: 0 8px;
	text-align: left;
	padding-left: 35px;
	font-size: 20px;
	font-weight: 700;
	margin-bottom: 90px;
}

.clear-box p {
	font-size: 20px;
	font-weight: 600;
	margin-bottom: 0;
	line-height: 10px;
}

.clear-box h4 {
	color: #6EBA9C;
	font-size: 50px;
	font-weight: 900;
	margin-bottom: 0;
}

.clear-box h4 span {
	color: #000;
	font-size: 20px;
}

.clear-middle {
	border: 2px solid #E76D58;
}

.euro-2 {
	color: #E76D58 !important;
}

.fre-price {
	text-align: center;
	margin-top: 45px;
}

.fre-price .consuls {
	background-color: #2145AB;
	width: 272px;
	border-radius: 9px;
	font-size: 18px;
	font-weight: 500;
}

/* Footer */

.girl-img {
	background-image: url(assets/images/girl.png);
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
	height: 100%;
	padding: 41px;
	position: absolute;
	top: -115%;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.girl-img::before {
	position: absolute;
	content: "";
	background-image: url(assets/images/round-1.png);
	background-repeat: no-repeat;
	width: 16%;
	height: 60%;
	top: 77%;
	left: 47.5%;
	transform: translate(-50%, -50%);
}

.girl-img::after {
	position: absolute;
	content: "";
	background-image: url(assets/images/round-2.png);
	background-repeat: no-repeat;
	width: 13%;
	height: 47%;
	top: 45%;
	left: 60%;
	transform: translate(-50%, -50%);
}

.girl-img h2 {
	font-size: 50px;
	color: #000;
	padding-left: 50px;
	font-family: "Sansation", sans-serif;
	font-weight: 600;
}

.girl-img h2 span {
	color: #2145AB;
	font-family: "Sansation", sans-serif;
}

.last-book .consuls {
	width: 270px;
	margin-left: 50px;
}

.custom-footer {
	background: #2245AB;
	padding: 180px 0 30px 0;
	color: #fff;

}

.custom-footer .container {
	max-width: 1210px !important;
	position: relative;
}

/* Titles */
.footer-title {
	font-size: 26px;
	font-weight: 800;
	margin-bottom: 20px;
}

/* Two column list (Links section) */
.footer-list {
	display: flex;
	gap: 70px;
}

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

.footer-brand img {
	width: 225px;
}

.footer-list li {
	margin-bottom: 8px;
}

/* Single list */
.single-list {
	list-style: none;
	padding: 0;
}

.single-list li {
	margin-bottom: 8px;
}

/* Links */
.custom-footer a {
	color: #fff;
	text-decoration: none;
	font-size: 16px;
	transition: 0.3s;
}

.third-column {
	padding-left: 50px;
}

/* .custom-footer a:hover {
    opacity: 0.7;
} */

/* Contact */
.contact-box p {
	font-size: 16px;
	margin-bottom: 15px;
	line-height: 1.5;
}

.contact-box span {
	margin-right: 8px;
}

.contact-box a {
	padding-left: 30px;
}

/* Brand */


/* Social Icons */
.social-icons {
	margin-top: 70px;
}

.social-icons a {
	width: 36px;
	height: 36px;
	background: #fff;
	color: #2f4ea2;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	margin-left: 8px;
	font-size: 14px;
	transition: 0.3s;
}

.social-icons a:hover {
	background: #34AF0B;
	color: #fff;
}

/* Responsive */
/* @media (max-width: 991px) {
	.footer-list {
		flex-direction: column;
		gap: 0;
	}

	.social-icons {
		margin-top: 20px;
	}
} */

.copy {
	text-align: center;
	border-top: 1px solid #265cb29d;
	padding-top: 25px;
	margin-top: 25px !important;
}




/* Media Query Start */

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

	nav>ul {
		justify-content: space-around;
	}

	.logo {
		padding-left: 15px;
	}

	.book-btn {
		padding-right: 15px;
	}

	.banner-info {
		padding-left: 20px;
	}

}

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

	nav>ul>li>a {
		font-size: 17px;
	}

}

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

	
	/* *************** */

	.book-btn .consul {
		width: 220px;
		font-size: 18px;
	}

	.book-btn .talk {
		width: 200px;
		font-size: 18px;
	}

	.book-btn .talk img {
		width: 17px;
	}

	.process {
		width: 100%;
	}

	.contry {
		width: 100%;
	}

	.client-slider {
		width: 100%;
	}

	.banner-info h1 br {
		display: none;
	}

	.banner-info h1 {
		font-size: 34px;
		line-height: 46px;
		margin-bottom: 10px;
	}

	.banner-info p br {
		display: none;
	}

	.banner-info p {
		font-size: 19px;
		line-height: 32px;
		margin-bottom: 20px;
	}

	.rate {
		font-size: 17px;
		margin-bottom: 9px;
	}

	.book-free .consuls {
		width: 240px;
		height: 50px;
		font-size: 19px;
	}

	.book-free .prog {
		width: 190px;
		height: 50px;
		font-size: 19px;
	}

	.small-slid .slick-next {
		display: none !important;
	}

	.small-slid .slick-prev {
		display: none !important;
	}

	.book-free {
		margin-top: 20px;
	}

	.if-you {
		font-size: 22px;
	}

	.how-work p {
		padding-top: 0;
	}

	.how-work h2 {
		font-size: 34px;
	}

	.how-work p {
		font-size: 20px;
	}

	.student .container {
		max-width: 960px !important;
	}

	.small-slid .container {
		max-width: 960px !important;
	}

	.about-med .container {
		max-width: 960px !important;
	}

	.about-info h2 {
		padding-bottom: 0;
	}

	.about-med {
		padding: 50px 0;
	}

	.about-info p {
		font-size: 20px;
		line-height: 35px;
		padding-bottom: 15px;
	}

	.about-info p br {
		display: none;
	}

	.book-free .with-me {
		width: 250px;
		font-size: 20px;
		height: 55px;
	}

	.about-me h2 {
		font-size: 32px;
		line-height: 46px;
	}

	.why-choose .container {
		max-width: 960px !important;
	}

	.why-box h3 {
		font-size: 20px;
	}

	.why-choose {
		padding: 50px 0;
	}

	.why-choose h2 {
		font-size: 32px;
		margin-bottom: 7px;
	}

	.why-choose p {
		font-size: 21px;
	}

	.pro-box {
		padding: 20px 15px 80px;
	}

	.pro-box ul li {
		background-size: 9.5%;
	}

	.pro-box a {
		height: 50px;
		left: 15px;
		right: 15px;
		bottom: 15px;
	}

	.pro-box h3 {
		font-size: 21px;
		font-weight: 600;
	}

	.pro-box img {
		width: 105px;
	}

	.progrma::before {
		display: none;
	}

	.middle-east .container {
		max-width: 960px !important;
	}

	.middle-info p {
		font-size: 20px;
		line-height: 35px;
		padding-bottom: 15px;
	}

	.middle-info ul li {
		font-size: 17px;
	}

	.explo {
		width: 325px !important;
		font-size: 19px !important;
	}

	.our-success .container {
		max-width: 960px !important;
	}

	.our-success {
		padding: 50px 0;
	}

	.succes-story h2 {
		text-align: center;
	}

	.succes-story p {
		text-align: center;
	}

	.counter-time {
		display: block;
	}

	.testimonial {
		margin-top: 25px;
	}

	.clear-box h3 {
		font-size: 26px;
	}

	.girl-img::after {
		width: 16%;
		height: 44%;
		background-size: 75%;
	}

	.girl-img::before {
		width: 20%;
		height: 44%;
		background-size: 87%;
		left: 50.5%;
	}

	.girl-img {
		background-size: 95%;
		top: -105%;
	}

	.girl-img h2 {
		font-size: 42px;
	}

	.clear {
		padding-bottom: 200px;
	}

	.social-icons a {
		margin-left: 5px;
		width: 34px;
		height: 34px;
	}

	.third-column {
		padding-left: 10px;
	}

	.footer-list {
		gap: 30px;
	}

	.custom-footer {
		padding-bottom: 20px;
	}

	.copy {
		margin-top: 20px !important;
	}

}

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

	.book-btn .consul {
		width: auto;
		height: auto;
		padding: 12px 12px 12px 12px;
		font-size: 17px;
	}

	.book-btn .talk {
		width: auto;
		height: auto;
		padding: 12px 12px 12px 12px;
		font-size: 17px;
		margin-left: 10px;
	}

	.hamburger-menu {
		padding: 25px 22px 25px 0;
	}

	.banner-bg .container {
		max-width: 720px !important;
	}

	.banner-info {
		padding-left: 0;
		padding-top: 25px;
	}

	.banner-info p br {
		display: none;
	}

	.banner-info h1 {
		font-size: 30px;
		line-height: 40px;
	}

	.banner-info p {
		font-size: 18px;
	}

	.banner-img {
		padding-top: 25px;
	}

	.banner-img img {
		width: 70%;
	}

	.if-you {
		font-size: 20px;
		height: 60px;
	}

	.how-work {
		padding: 35px 0;
	}

	.how-work h2 {
		font-size: 30px;
	}

	.how-work p {
		font-size: 18px;
	}

	.student .container {
		max-width: 720px !important;
	}

	.student {
		padding-top: 35px;
		padding-bottom: 30px;
	}

	.student h2 {
		font-size: 30px;
		margin-bottom: 25px;
	}

	.contry ul{
		justify-content: center;
	}
	.contry ul li {
		font-size: 20px;
	}

	.contry ul li {
		font-size: 20px;
	}

	.small-slid .container {
		max-width: 720px !important;
	}

	.small-slid {
		padding-bottom: 35px;
	}

	.about-med .container {
		max-width: 720px !important;
	}

	.palat {
		flex-direction: column-reverse;
	}

	.about-med {
		padding-top: 35px;
	}

	.smile {
		padding-top: 30px;
		text-align: center;
	}

	.enquiry-time {
		padding: 35px 0;
	}

	.about-me h2 {
		font-size: 28px;
		line-height: 42px;
	}

	.why-choose .container {
		max-width: 720px !important;
	}

	.why-choose {
		padding: 35px 0;
	}

	.why-choose h2 {
		font-size: 30px;
	}

	.why-choose p {
		font-size: 19px;
		margin-bottom: 25px;
	}

	.progrma .container {
		max-width: 720px !important;
	}

	.progrma {
		padding: 35px 0;
	}

	.progrma h2 {
		font-size: 32px;
		margin-bottom: 8px;
	}

	.progrma p {
		margin-bottom: 25px;
	}

	.pro-box h3 br {
		display: none;
	}

	.pro-box ul li {
		background-size: 8%;
		padding-left: 32px;
	}

	.middle-east {
		padding: 40px 0;
	}

	.middle-east .container {
		max-width: 720px !important;
	}

	.explo {
		width: 300px !important;
		font-size: 17px !important;
	}

	.our-success {
		padding: 35px 0;
	}

	.clear {
		padding-top: 35px;
	}

	.clear h2 {
		margin-bottom: 5px;
		font-size: 35px;
	}

	.clear p {
		font-size: 20px;
	}

	.girl-img::after {
		display: none;
	}

	.girl-img::before {
		display: none;
	}

	.girl-img {
		background-size: 96%;
		top: -48%;
		height: auto;
	}

	.girl-img h2 {
		font-size: 32px;
		padding-left: 35px;
	}

	.book-free .consuls {
		width: 220px;
		height: 50px;
		font-size: 17px;
	}

	.last-book .consuls {
		margin-left: 35px;
	}

	.clear {
		padding-bottom: 100px;
	}
	.custom-footer .container{
		max-width: 720px !important;
	}
	.footer-list{
        gap: 50px;
    }
	.third-column {
        padding-left: 0px;
		margin-top: 25px;
    }
	.footer-brand{
		margin-top: 25px;
	}
	.fre-price{
		margin-top: 30px;
	}
	.book-free .with-me {
        width: 220px;
        font-size: 17px;
        height: 50px;
    }
	.progrma::after{
		display: none;
	}
	.last-book{
		margin-top: 10px;
	}
	.custom-footer{
		padding-top: 160px;
	}
	.process .containers {
        flex-wrap: wrap;
        gap: 28px;
    }
	.step {
        flex: 0 0 48%;
        max-width: 48%;
    }
	.step:not(:last-child)::after {
        display: none;
    }
	.step h3 br{
		display: none;
	}

}

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

	.book-btn .talk {
		display: none;
	}
	.book-btn .consul {
        padding: 9px 10px 9px 10px;
        font-size: 16px;
    }
	.banner-img img {
        width: 75%;
    }
	.banner-info h1{
		text-align: center;
	}
	.book-free{
		text-align: center;
	}
	.banner-info p{
		text-align: center;
	}
	.if-you{
        font-size: 18px;
        height: 50px;
    }
	.how-work {
        padding: 30px 0;
    }
	.how-work h2 {
        font-size: 26px;
    }
	.how-work p {
        font-size: 17px;
    }
	.step{
		flex: 0 0 46%;
	}
	.student{
		padding-top: 30px;
	}
	.student h2{
		font-size: 26px;
	}
	.about-me h2 br{
		display: none;
	}
	.about-me h2 {
        font-size: 26px;
        line-height: 36px;
    }
	.pro-box ul li{
		background-size: 6.5%;
	}
	.middle-info h2{
		font-size: 30px;
		text-align: center;
	}
	.clear {
        padding-bottom: 50px;
    }
	.clear h2{
		font-size: 30px;
	}
	.clear p{
		font-size: 30px;
	}
	.clear-box ul li br{
		display: none;
	}
	.clear p{
		font-size: 22px;
		line-height: 32px;
	}
	.clear-box ul li{
		margin-bottom: 25px;
	}
	.girl-img{
		top: -32%;
	}
	.custom-footer{
		padding-top: 130px;
	}
	.social-icons {
    	margin-top: 30px;
	}
	.footer-list {
        gap: 40px;
    }
	.contry ul{
		flex-wrap: wrap;
	}
	.contry ul {
		gap: 12px;
		justify-content: center;
	}

	.contry ul li {
		font-size: 16px;
		gap: 6px;
	}
		.girl-img{
		position: relative;

		background-color: #e8e9ee;
		margin-bottom: 20px;
		padding: 25px;
	}
		.custom-footer{
		padding-top: 0;
	}
		.girl-img h2{
		padding-left: 0;
		text-align: center;
		margin-bottom: 0;
	}
	.book-free .consuls{
		margin-left: 0;
	}
	.testimonial p br{
		display: none;
	}
	.book-free .prog{
		margin-top: 10px;
		margin-left: 0;
	}

}

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

	.book-btn{
		display: none;
	}
	.logo{
		text-align: center;
	}
	.banner-info h1 {
        font-size: 24px;
        line-height: 34px;
    }
	.banner-info p {
        font-size: 17px;
		font-weight: 500;
    }
	.banner-img img {
        width: 90%;
    }
	.book-free .consuls{
		width: 210px;
		margin-left: 0;
	}
	.book-free .prog{
		width: 180px;
		height: 50px;
		font-size: 17px;
	}
	.book-free {
        margin-top: 20px;
    }
	.if-you {
        font-size: 16px;
        height: 45px;
    }
	.process .containers{
		flex-wrap: wrap;
		gap: 20px;
		flex-direction: column;
	}
    .step {
		max-width: 100%;
    }

    .step img {
        width: 50px;
    }

    .step h3 {
        font-size: 16px;
    }
	.how-work h2{
        font-size: 24px;
    }
	.contry ul{
		gap: 17px;
	}
	.student h2 {
        font-size: 24px;
    }
	.about-info h2{
		font-size: 24px;
	}
	.about-info p{
		font-size: 17px;
		line-height: 32px;
	}
	.rate{
		font-size: 16px;
	}
	.about-me h2{
		font-size: 24px;
	}
	.why-choose h2 {
        font-size: 24px;
    }
	.why-choose p{
		font-size: 17px;
		line-height: 26px;
	}
	.why-box img{
		width: 110px;
	}
	.why-box h3 {
        font-size: 18px;
    }
	.progrma h2{
		font-size: 24px;

	}
	.progrma p{
		font-size: 18px;
		line-height: 26px;
	}
	.pro-box img {
        width: 90px;
    }
	.middle-east {
        padding: 35px 0;
    }
	.middle-info h2{
		font-size: 24px;
	}
	.middle-info p{
		font-size: 18px;
		line-height: 26px;
		text-align: center;
	}
	.pro-box h3{
		margin-bottom: 20px;
	}
	.pro-box ul li{
		font-size: 17px;
	}
	.pro-box{
		padding-bottom: 70px;
	}
	.pro-box a{
		font-size: 17px;
	}
	.succes-story h2{
		font-size: 26px;
	}
	.succes-story p{
		font-size: 18px;
		line-height: 26px;
	}



	.clear{
		padding-bottom: 60px;
	}
	.footer-list{
		display: block;
	}
	.footer-title{
		margin-top: 10px;
		margin-bottom: 15px;
	}

	.third-column{
		margin-top: 10px;
	}
	.clear h2 {
        font-size: 24px;
    }
	.clear p{
        font-size: 18px;
        line-height: 26px;
    }
	.testimonial{
		padding: 25px 30px;
	}
	.testimonial p br{
		display: none;
	}
	.testimonial p{
		font-size: 18px;
		line-height: 1.6;
	}
	.name{
		font-size: 19px;
	}
	.invert-coma img {
    	width: 65%;
	}
	.clear-box{
		padding-bottom: 15px;
	}
	.clear-box h3{
		padding-top: 10px;
		padding-bottom: 0;
		font-size: 24px;
	}
	.clear-box ul li{
        margin-bottom: 15px;
		font-size: 18px;
		background-size: 6%;
    }
	.clear-box h4{
		font-size: 42px;
	}

}

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

	.banner-info h1 {
        font-size: 21px;
        line-height: 30px;
    }
	.banner-info p{
		line-height: 28px;
	}
	.book-free .consuls{
		font-size: 16px;
		width: 200px;
		height: 45px;
	}
	.book-free .prog{
		height: 45px;
		font-size: 16px;
		margin-left: 0;
		margin-top: 10px;
	}
	.banner-img img {
        width: 97%;
    }
	.if-you{
		height: 60px;
		padding: 0 10px 0 10px;
	}
	.how-work h2 {
        font-size: 22px;
    }
	.student h2 {
        font-size: 21px;
    }
	.small-slid {
        padding-bottom: 25px;
    }
	.about-info h2 {
        font-size: 22px;
    }
	.enquiry-time {
        padding: 30px 0;
    }
	.about-me h2 {
        font-size: 22px;
		line-height: 32px;
    }
	.cli-time{
		margin: 10px 30px;
	}
	.why-box img {
        width: 90px;
    }
	.why-box{
		height: 170px;
	}
	.why-box h3 {
        font-size: 17px;
    }
	.logo img{
		width: 60%;
	}
	.about-med {
        padding-top: 25px;
    }
	.girl-img h2{
		font-size: 28px;
	}

}






/********AP***** */


.included-section {    padding: 80px 0;    background: #f8f9fb; background-image: url(assets/images/cap-bg.svg);
    background-repeat: no-repeat; background-position: 0px 50px}

.section-header h2 {    font-size: 36px;    font-weight: 700;    margin-bottom: 60px;     color: #162B65;}/* GRID */
.included-grid {    display: grid;    grid-template-columns: repeat(3, 1fr);    gap: 30px;}
/* CARD */
.included-card {    background: #fff;    padding: 30px;    border-radius: 16px;    box-shadow: 0 10px 30px rgba(0,0,0,0.05);    transition: all 0.3s ease;    position: relative; overflow: hidden; height: 100%;}
.included-card:hover {    transform: translateY(-8px);    box-shadow: 0 20px 40px rgba(0,0,0,0.08);}
/* ICON */
.included-card .card-icon {margin: -30px -30px 0px -30px;}
.included-card .card-icon img {    width: 100%;    height: auto;    margin-bottom: 20px; }
/* CONTENT */
.card-content {    font-size: 15px;    color: #555;    line-height: 1.6;}
/* LINK */
.card-link a {    display: inline-block;    margin-top: 15px;    font-weight: 600;    color: #0073e6;    text-decoration: none;}
.card-link a:hover {    text-decoration: underline;}

.included-section  .card-content  ul { margin:0px; padding:0px; }
.included-section  .card-content  ul  li {    font-size: 18px;    font-weight: 700 !important;    margin-bottom: 11px;    background: url(assets/images/check.svg) no-repeat 0px 7px;    background-size: 19px;    padding-left: 34px;     font-family: "Sansation", sans-serif;}

.included-section  h3 {    font-weight: 700;    margin: 0 0 25px; padding-bottom: 25px; color: #162B65; position: relative;}
.included-section  h3::after { content:''; width:35px; height:3px; background: #162B65;  position: absolute; bottom: 0px; left: 0px; border-radius: 15px;} 

.included-section .row { justify-content:center; row-gap:30px; }

@media (max-width: 992px) {    .included-grid {        grid-template-columns: repeat(2, 1fr);    }}

@media (max-width: 576px) {
    .included-grid {        grid-template-columns: 1fr;    }
    .section-header h2 {        font-size: 28px;    }




}


.who-this-is-for { padding:70px 0 }
.who-this-is-for h2 {   font-size: 36px;    font-weight: 700;    margin-bottom: 60px;    color: #162B65;}
.who-this-is-for .img_blk { width:100%; display:block; padding-right:50px; } 
.who-this-is-for h2 { text-align:center; }
.who-this-is-for .img_blk img { width:100%; border-radius:20px; }

.who-this-is-for  ul { margin:0px; padding:0px; }
.who-this-is-for  ul  li {    font-size: 18px;    font-weight: 700 !important;    margin-bottom: 11px;    background: url(assets/images/check.svg) no-repeat 0px 7px;    background-size: 19px;    padding-left: 34px;     font-family: "Sansation", sans-serif;}

.who-this-is-for  h3 {    font-weight: 700;    margin: 0 0 25px; padding-bottom: 25px; color: #162B65; position: relative;}
.who-this-is-for  h3::after { content:''; width:35px; height:3px; background: #162B65;  position: absolute; bottom: 0px; left: 0px; border-radius: 15px;} 

section.success_main {    background: #193175;    padding: 50px 0;}
section.success_main h2 {    font-size: 50px;    color: #fff;    font-weight: 700;    text-align: center; padding: 0px; margin: 0px;}
section.success_main h2 span {    display: block;    text-transform: uppercase;    font-size: 70px; }
section.success_main  p { font-size:18px; color:#fff; line-height:35px;  margin: 0px; padding: 0px;}
section.success_main .row {    align-items: center;}
section.success_main_bt {    text-align: center;    background: #f1f5ff; padding: 60px 0}
section.success_main_bt .container { max-width:1000px !important; }
section.success_main_bt p { font-size:18px; font-weight:700; text-align:center; }


section.banner-bg.inner-banner {    background: url(assets/images/Inner-banner.jpg) no-repeat; background-position: top center; background-size: cover;    padding: 50px 0; height: 500px; display: flex; align-items: center;}

section.banner-bg.inner-banner .container {    max-width: 982px !important;    text-align: center;}
section.banner-bg.inner-banner span.subtitle {    display: inline-block;    text-transform: uppercase;    background: #edf1ff;    padding: 6px 15px;    margin: 0 0 20px;    color: #10318b;    font-weight: 700;    border: #c7d6ff solid 2px;    border-radius: 45px;}

.who_row_sec .row:nth-child(2n) {    flex-direction: row-reverse;}
.who_row_sec .row + .row { margin-top:50px; }


body.page footer.custom-footer {    margin-top: 0px;} 

section.last-sec {
    padding-bottom: 250px !important;
}


.success_main_bt  h3 {    font-size: 32px;    font-weight: 700;    margin-bottom: 20px;    color: #162B65;}
.success_main ul { margin:20px 0px 0px; padding:0px;   display: grid;    grid-template-columns: repeat(3, 1fr);   }
.success_main ul li {    color: #fff;    padding: 4px 0;    background: url(assets/images/w-check.svg) no-repeat 0px 7px;    background-size: 18px;    background-position: center left;    padding-left: 28px;}
.jf-btn {    background-color: #10318B;     height: 60px;    border-radius: 6px;    display: inline-flex;    justify-content: center;    align-items: center;    font-size: 20px;    font-weight: 600;    color: #fff; padding: 0 25px; margin-top: 20px;}


nav>ul {    display: flex;    margin-bottom: 0;    padding-left: 0;    justify-content: center;    width: 100%;    column-gap: 46px;}
nav>ul>li>a { position:relative; }
nav>ul>li>a:hover {
    color: #fff;
}
nav>ul>li>a::after { content:''; position:absolute; bottom:15px; width:0; height:1px; background:#fff; left: 0px;
  -webkit-transition: all 0.3s ease;                  
    -moz-transition: all 0.3s ease;                 
    -o-transition: all 0.3s ease;   
    -ms-transition: all 0.3s ease;          
    transition: all 0.3s ease;
}


nav>ul>li:hover>a::after { width:100%; }
nav>ul>li.current_page_item>a::after { width:100%; }

.inner-banner h1 { margin-bottom:12px; padding:0px; }
.banner-info p { line-height:1.7; }



.cf7-row {    display: flex;    flex-wrap: wrap;    gap: 15px;}
.cf7-col {    width: 48%;}
.cf7-col.full {    width: 100%;}
.cf7-col label {    display: block;    font-weight: 600;    margin-bottom: 5px;}
.cf7-col input,.cf7-col select,.cf7-col textarea {    width: 100%;    padding: 12px;    border: 1px solid #ddd;    border-radius: 8px;    font-size: 14px;}
.cf7-col textarea {    height: 120px;}
.cf7-col input:focus,.cf7-col select:focus,.cf7-col textarea:focus {    border-color: #0073ff;    outline: none;}
.cf7-col input[type="submit"] {    background: #10318b;    color: #fff;    border: none;    cursor: pointer;    padding: 14px;    font-size: 16px;    border-radius: 8px;    transition: 0.3s;}
.cf7-col input[type="submit"]:hover {    background: #0056cc;}
/* Mobile Responsive */
@media (max-width: 768px) {    
	.cf7-col {        width: 100%;    }
}


.contact-us-sec .form_contact_us {    max-width: 800px;    margin: -140px auto 0;    background: #f7f7f7;    padding: 40px;    border-radius: 20px;    border: #ccc solid 1px;    box-shadow: 1px 1px 15px rgba(0,0,0,0.1);}
.contact-us-sec .form_contact_us  br { display:none; }
.contact-us-sec .wpcf7-form-control-wrap { display:block; margin-top:10px; }
.contact-us-sec span.wpcf7-spinner {    position: absolute;}


.page-template-contact-us section.banner-bg.inner-banner {height: 390px;    display: flex;    align-items: flex-start;}

.pricing-sec { padding:60px 0 }
.pricing-sec .container { max-width:1210px !important; }
.pricing-sec .price_dv {    border: #6CAC94 solid 1px;    height: 100%;    border-radius: 10px;    padding: 20px;}
.pricing-sec  ul { margin:0px; padding:0px; }
.pricing-sec .price_dv {    border: #C6D8FA solid 1px;    height: 100%;    border-radius: 10px;    padding: 20px;    background: #F2F6FE;}


.pricing-sec .p-box {    background: #fff;    padding:0 20px;    border-radius: 5px;    border: #6cac9438 solid 1px;    margin: 20px 0;}
.p-box ul li{ padding:8px 0; font-size:18px;  }
.p-box ul li {    padding: 8px 0;    font-size: 18px;    display: flex;    justify-content: space-between; font-weight: 600;}
.p-box ul li + li { border-top:#6cac9438 solid 1px; }

.p-box ul li span {    font-size: 20px;    font-weight: 700;    color: #3076FB;}
.list-box ul li {    background-image: url(assets/images/green-check.svg);    background-repeat: no-repeat;    background-position: 0 7px;    background-size: 18px;    text-align: left;    padding-left: 30px;    font-size: 16px;    font-weight: 700;    margin-bottom: 10px;}
.pricing-sec  .c-heading {    text-align: center;}
.pricing-sec .c-heading h3 {    font-size: 22px;    font-weight: 700;    height: 54px;    display: flex;    align-items: center;    justify-content: center;}

.pricing-sec span.pbc_blk {    background: #f3fffd;    display: block;    text-align: center;    padding: 10px 0 12px;    margin: 20px 0 21px;    color: #214638;    font-size: 16px;    border: #abc8c2 solid 1px;    border-radius: 5px;    font-weight: 700;}
.pricing-sec .list-box h3 {    font-size: 20px;    font-weight: 700;    margin: 0 0 15px;}
.pricing-sec  a.bfc_btn {    background: #54A57A;    display: block;    color: #fff;    text-align: center;    padding: 10px 0 13px;    font-size: 18px;    margin: 32px 0 0;    border-radius: 6px; font-weight: 700;}

.pricing-sec .box-1 a.bfc_btn {    background: #3076FB; }

.pricing-sec .box-2 .price_dv {    border-color: #D2E3D5;    background: #F8FCF9;}
.pricing-sec .box-2 .p-box ul li span {     color: #5CA77C; }

.pricing-sec .box-3 .price_dv {    border-color: #CCCCF0;    background: #F8F7FE;}
.pricing-sec .box-3 .p-box ul li span {     color: #5CA77C; }
.pricing-sec .box-3 a.bfc_btn {    background: #7667D2; }
.pricing-sec .box-3 .list-box {    margin: 28px 0 0;}

.pricing-sec  span.icon_blk {    display: block;    width: 80px;    margin: -65px auto 17px;    background: #3076fb;    border-radius: 100%;    height: 80px;    padding: 13px;}

.pricing-sec .box-2  span.icon_blk  {background: #54A57A; }
.pricing-sec .box-3  span.icon_blk  {background: #7667D2; }

.pricing-sec .box-1 .list-box ul li {    background-image: url(assets/images/b-check.svg);}
.pricing-sec .box-3 .list-box ul li {    background-image: url(assets/images/r-check.svg);}



.pricing-sec .price_dv {    position: relative;    padding-bottom: 82px;} 
.pricing-sec  a.bfc_btn {    position: absolute;    bottom: 10px;    left: 20px;    right: 20px;}




.pricing-sec .container {    margin-top: -168px;    position: relative;    z-index: 1;}
.page-template-Pricing section.banner-bg.inner-banner {    height: auto;    display: flex;    align-items: flex-start; padding-bottom: 160px;}
.pricing-sec  span.icon_blk img {    width: 100%;}


.pricing-sec-bt { padding-top:0px; }
.pricing-sec-bt .container { margin:0px auto; }
.pricing-sec-bt  .c-heading {    display: flex;    justify-content: left;    text-align: left;    align-items: center;    flex-wrap: wrap; margin:0;}
.pricing-sec-bt  .c-heading h3 { margin:0px; padding:0px; }
.pricing-sec-bt  span.icon_blk { margin:0px; }
.pricing-sec-bt .p-box {    max-width: 430px;}
.pricing-sec-bt .price_dv { padding:30px 40px; }

.pricing-sec-bt .list-box {    height: 100%;    padding-left: 70px;    border-left: #ebd5d1 solid 1px;}
.pricing-sec-bt .list-box h3 {    color: #F27B25;}
.pricing-sec-bt .list-box ul li {    background-image: url(assets/images/org-check.svg);}
.pricing-sec-bt  span.icon_blk {    margin: 0 7px 0 0;    width: 71px;}	
.pricing-sec-bt .box-2 .price_dv {background-image: url(assets/images/cap-bg.svg); background-repeat:no-repeat; background-size:150px; background-position:95% center; }




.pricing-sec-bt .box-2  span.icon_blk {    background: #F27B25;    width: 80px;    height: 80px;}

.pricing-sec-bt .box-2 .p-box ul li span {
    color: #F27B25;
}



.pro-2 { border-radius:5px; }


.included-section .slider-item .included-card {
    margin: 15px 15px 36px;
    min-height: 577px;
}

 .show-toggle { display:none; }
.slider-active .show-toggle { display:block; }

a.show-toggle {
    color: #666;
    text-transform: uppercase;
    position: relative;
    top: 12px;
    font-weight: 600;
}




.slick-dots {   display: flex !important;    justify-content: center;    align-items: center;    gap: 10px;    margin-top: 20px;    padding: 0;}
.slick-dots li {    list-style: none;}
.slick-dots li button {    width: 12px;    height: 12px;    border-radius: 50%;    background: #ccc;    border: none;    font-size: 0; /* hide number */    cursor: pointer;    transition: all 0.3s ease;}
.slick-dots li.slick-active button {    background: #193175; /* your brand color */    width: 28px;    border-radius: 20px;}











/* Videos */
.videos-sec {  padding: 60px 0 60px;}
.videos-sec h2 { text-align:center; font-size:36px; font-weight:700; margin:0px 0px 35px; padding:0px;     color: #162B65;}
.videos-sec .container { max-width:1210px !important; }
.videos-sec .video-grid {  display: grid;  grid-template-columns: repeat(3, 1fr);  gap: 20px;}
.videos-sec .card {  background: #fff;  padding: 15px;  border-radius: 10px;  box-shadow: 0 4px 15px rgba(0,0,0,0.05);}
.videos-sec .thumb {  height: 196px;  background: #ddd;  border-radius: 8px;  margin-bottom: 10px; margin: 0 0 24px; overflow: hidden; background-size: cover; background-position: center;}
.videos-sec  h4 {    font-size: 18px;    font-weight: 700;    color: #162B65;}

.videos-sec .thumb img {    width: 100%;    height: 100%;    object-fit: cover;}
.videos-sec  a.popup-youtube {    display: block;    width: 100%;    height: 100%; background: url(assets/images/play-btn.svg) no-repeat center center; background-size: 50px;}

/* Testimonials */
.testimonials-sec {  padding: 0px 0px 100px;}
.testimonials-sec h2 { text-align:center; font-size:36px; font-weight:700; margin:0px 0px 35px; padding:0px;     color: #162B65;}
.testimonials-sec .container { max-width:1210px !important; }
.testimonials-sec .testimonial-grid {  display: grid;  grid-template-columns: repeat(2, 1fr);  gap: 20px;}
.testimonials-sec .testimonial-box {    background: #fff url(assets/images/quote.svg) no-repeat 30px 23px;    padding: 60px 30px 30px;    border-radius: 10px;    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);    border: #eeeeee solid 1px;    background-size: 24px;}

.testimonials-sec .testimonial-box span {  display: block;  margin-top: 10px;  color: #2d6cdf;}
.testimonials-sec .testimonial-box p {    font-size: 18px;}

/* CTA */
.testimonials-sec .cta {  margin: 40px;  padding: 30px;  background: #e6efff;  border-radius: 12px;  display: flex;  justify-content: space-between;  align-items: center;}

.testimonials-sec .testimonial-box span.name-blod {    font-weight: 700;    color: #162b65;}


.real-gallery { background:#f2f2f2; padding:60px 0 }
.real-gallery h2 { text-align:center; font-size:36px; font-weight:700; margin:0px 0px 35px; padding:0px;     color: #162B65;}
.real-gallery  .container { max-width:1210px !important; }
 
.real-gallery .img_blk {    display: block;    margin: 15px;    box-shadow: 0px 0px 15px rgba(0,0,0,0.1);}
.real-gallery .img_blk img {    width: 100%;    border-radius: 10px;}


section.who-this-is-for .row {    align-items: center;}


ul.pro-2 {    background: #193073;    width: 220px;}
section.contact-us-sec .container {    position: relative;}



/* Responsive */
@media (max-width: 1024px) {
  .video-grid {    grid-template-columns: repeat(2, 1fr);  }
    .testimonial-grid {    grid-template-columns: repeat(2, 1fr);  }
}

@media (max-width: 1540px) {
 
nav>ul {    column-gap: 30px;}

section.who-this-is-for .container, .included-section .container{    max-width: 1210px;}


}

.about-info ul { margin:0px; padding:0px;    columns: 2;
    -webkit-columns: 2;
    -moz-columns: 2;
    gap: 30px;	}
.about-info ul li {    background-image: url(assets/images/check.svg);    background-repeat: no-repeat;    background-position: left center;    text-align: left;    padding-left: 35px;    font-size: 20px;    font-weight: 700;    margin-bottom: 15px;    font-family: "Sansation", sans-serif;}



.contry .c-block{    list-style: none;    margin-bottom: 0;    font-size: 24px;    font-weight: bold;    font-family: "Sansation", sans-serif;    display: flex;    align-items: center;    gap: 10px;}

.student .dub-bx {    display: flex;    justify-content: center;    margin: 0;}

.student .item + .item   .dub-bx { position:relative; }
@media(min-width:768px) {
.student .item + .item   .dub-bx::after {    background: url(assets/images/dots.svg) no-repeat left center;    position: absolute;    content: '';    width: 10px;    height: 10px;    left: -9px;    top: 13px;}
}

section.middle-east .smile img {    width: 100%;}  
section.middle-east .row {    align-items: center;}

section.middle-east .container, .our-success .container{     max-width: 1210px !important;  }
.middle-info p { font-size:18px; }
.testimonial p {    font-size: 18px;    font-style: italic;    color: #333332;    line-height: 28px;    padding-top: 15px;    margin: 0 0 19px;}
.succes-story .row.gy-4.justify-content-center {    max-width: 519px;}



@media (max-width: 1024px) {
	header#header {
    display: none;
}

}

@media (max-width: 767px) {
.banner-info h1 {        font-size: 26px;        line-height: 35px;    }
.banner-info h1 {        font-size: 26px;        line-height: 35px; text-align:left;    }
.banner-info p { text-align:left; }
.book-free a {    width: 100% !important;}
.banner-info {        padding: 0px 20px 20px;    }

section.banner-bg .row.align-items-center {    flex-direction: column-reverse;}
.banner-img { margin-bottom:20px; }
.banner-img {        border-bottom:#dddddd solid 3px;        margin: 0 -12px 20px;        padding: 0 16px;    }
.if-you {    padding: 15px 32px !important;    height: auto;}
.how-work h2 {        font-size: 28px;        padding: 0 0 9px;    }
.how-work p {        font-size: 18px;    }
.process {        width: 100%;        padding: 0 19px;    }
.process {        width: 100%;        padding: 0 19px;        margin-top: 31px;    }
.process .containers {    flex-direction: initial; display: flex;}
.process  .col-lg-3.col-md-6 {    width: 45%;}
.step h3 {        font-size: 16px;        max-width: 125px;        margin: auto;    }

.smile {    width: 100%;}
.smile img { width:100%; }

.contry .c-block { font-size:18px; }
.student h2 {        font-size: 24px;    }
.cli-time {        margin: 0 8px;        padding: 26px;        height: 85px;    }
.client-slider {    padding: 0 15px;}
.about-info ul {    margin: 0px;    padding: 0px;    columns: 1;    -webkit-columns: 1;    -moz-columns: 2;    gap: 0;}
.about-info ul li {font-size: 16px;}
section.about-med {    padding: 17px 15px 40px;    background-color: #f9f9f9;}
.enquiry-time {        padding: 30px 20px;    }
.why-choose {        padding: 35px 20px;    }
	.progrma {        padding: 35px 15px;    }
	.why-choose h2 {        font-size: 28px;    }
	.progrma h2 {        font-size: 28px;    }
	.middle-info h2 {        font-size: 28px;        text-align: left;    }
	.middle-info p {    font-size: 16px;    text-align: left;}
.middle-east {        padding: 35px 17px;    }
    .our-success {        padding: 35px 20px;        background: #f9f9f9;    }
    .testimonial p {    font-size: 16px;     font-size: 16px;}
    .testimonial {    padding: 25px 30px;    border: #0000000d solid 2px;}
	section.last-sec {    padding: 40px 20px !important;}
	.clear-box ul li {        margin-bottom: 15px;        font-size: 16px;        background-size: 9%;        margin-top: 17px;    }
	.girl-img {        position: relative;        background-color: #e8e9ee;        padding: 25px;        margin: -22px 20px 20px;        width: calc(100% - 40px);        border-radius: 10px;    }
	.girl-img h2 {        font-size: 22px;        text-align: left;    }
	.girl-img {    background-size: 629px;    background-position: calc(50% - 78px) bottom;}

	.custom-footer .col-md-6 {    padding: 0 26px;}


	.inner-banner .banner-info {             text-align: left;    }

	.who-this-is-for h2 {    font-size: 28px;}
	.who-this-is-for {    padding: 40px 0;}
	.who-this-is-for h2 {    margin: 0 0 20px;}
	.who-this-is-for .img_blk {    width: 100%;    display: block;    padding-right: 0;    margin: 0px 0 30px;}
	.who-this-is-for {    padding: 40px 15px;}
	.who-this-is-for h2 {        font-size: 26px;    }
	.who-this-is-for ul li { font-size:16px; }
	.who-this-is-for ul li {        font-size: 16px;        background-size: 18px;    }
	.included-section {     padding: 40px 0; }

	.included-section .section-header h2 {        font-size: 28px;        MARGIN: 0 0 29px;    }
	.included-section .slider-item .included-card { height:auto; }
	section.success_main h2 {    font-size: 30px;}
	section.success_main h2 span {     font-size: 40px;}
	.padd_blk {    text-align: center;    margin: 12px 0 0;}
	section.success_main {     padding: 40px 15px;}

	section.success_main p {    font-size: 16px;    color: #fff;    line-height: 27px;} 
	.included-section .slider-item .included-card { min-height:auto }
	.included-section .card-content ul li {    font-size: 16px;     margin-bottom: 4px;}
	.included-section .slider-item .included-card { margin-bottom:20px; }
	.success_main_bt h3 { font-size:28px; }
	section.last-sec {        padding-bottom: 80px !important;    }

	.testimonials-sec .testimonial-grid {    display: grid;    grid-template-columns: repeat(1, 1fr);    gap: 20px;}
	section.testimonials-sec {    padding: 0 15px;}

	section.testimonials-sec {        padding: 41px 15px;        background: #f7f7f7;    }
	.testimonials-sec h2, .real-gallery h2, .videos-sec h2 { font-size:28px; }
	.videos-sec .video-grid {    display: grid;    grid-template-columns: repeat(1, 1fr);    gap: 20px;}
	.videos-sec {    padding: 40px 15px;}
	.page-template-review section.banner-bg.inner-banner { height:auto; }
	.pricing-sec .box-2 .price_dv { margin-top:60px; }
	.pricing-pack .box-3 {    margin-top: 120px;}

	.pricing-sec.pricing-sec-bt.last-sec {    padding: 0 15px !important;    margin-bottom: 60px !important; ;}
	.pricing-sec-bt .price_dv {    padding: 20px; height: auto; margin-top: 0px !important;}
	.pricing-sec-bt .list-box {    height: 100%;    padding-left: 0;    border-left: none;}
	section.pricing-sec.pricing-sec-top {    padding: 40px 15px 23px 15px;}
	.contact-us-sec .form_contact_us { padding:20px; }
	.success_main ul {      grid-template-columns: repeat(1, 1fr);    text-align: left;}

	section.included-section {    padding: 40px 15px;}
	section.success_main h2 { text-align:left; }
	section.success_main p { text-align:left; }
	.jf-btn { height:auto; padding:10px 15px; line-height:1.2 }
	section.success_main_bt p {    font-weight: 400;}

	section.clear.clear-price-sec {
    padding: 40px 15px;
}


}




.mobile_header {    position: fixed;    width: 100%;    top: 0;    height: 75px; padding: 0 15px; z-index: 1000; background: #fff; box-shadow: 1px 1px 15px rgba(0, 0, 0, 0.2); background: linear-gradient(90deg, rgba(4, 8, 18, 1) 0%, rgba(26, 51, 121, 1) 100%); }


  .mobile_header .nav-icon {cursor: pointer;}
  .mobile_header .nav-icon:after, .nav-icon:before, .nav-icon div { background-color: #fff;  border-radius: 3px;  content: '';  display: block;  height: 5px;  margin: 7px 0;  transition: all .2s ease-in-out;}
  .mobile_header .nav-icon.active:before {  transform: translateY(12px) rotate(135deg);}
  .mobile_header .nav-icon.active:after {  transform: translateY(-12px) rotate(-135deg);}
  .mobile_header .nav-icon.active div {  transform: scale(0);}
  .mobile_header .nav-icon {    margin: 0;    width: 40px;    position: absolute;    right: 20px;    top: 15px;}

  .mobile_navigation {  background: #13265b;  position: fixed;  width: 100%;  top: 74px;  max-height: calc(100% - 59px);  left: 0;  padding: 0px 0px;  display: none;  z-index: 1000;  overflow: auto;}
  .mobile_navigation ul.nav{ margin: 0px; padding: 0px; }
  .mobile_navigation ul.nav li { list-style: none; width: 100%; margin-bottom: 0px; padding-bottom: 0px; position: relative; }
  .mobile_navigation ul.nav li a{ color: #fff; padding: 12px 25px; display: block; text-decoration: none !important; }
  .mobile_navigation ul.nav > li + li { border-top:rgba(255, 255, 255,0.1) solid 1px ; }
  .mobile_navigation ul.nav ul { display: none; margin: 0px; padding: 0px; }
  .mobile_navigation ul.nav li a:hover {    background: #183890;}
  .submenu-caret {  position: absolute;  width: 50px;  height: 48px;  right: 0;  top: 0;  background: #0000001c;  cursor: pointer; text-align: center;}
  .submenu-caret i {    color: #fff;    position: relative;    top: 13px;      line-height: 1;}
  em.submenu-caret.toggled i {    transform: rotate(180deg);    top: 13px;}
  .mobile_navigation ul.nav ul li a{ padding: 5px 25px 5px 35px; 


  }  

@media (min-width: 1025px) {
.mobile_header { display:none; }
}
@media (max-width: 1024px) {
html {    padding-top: 80px;}
.mobile_header .logo {    width: 178px;    padding: 0;    text-align: left;}
.logo img {         width: 100% !important;     }
.mobile_header .logo {    margin-top: 8px;}
}


[data-aos] {
  opacity: 0;
  transition-property: transform, opacity;
}

.aos-animate {
  opacity: 1;
}



#obligationModal {    max-width: 450px;    padding: 25px 40px 0;    border-radius: 10px;    background: #10318b; display: none;}
.popup-dv h2 {    color: #fff;    font-weight: 700;    margin: 0 0 14px;}

.popup-dv  input.wpcf7-submit {    background: #030101;    color: #fff;    font-weight: 700;    text-transform: uppercase;}
.fancybox-button svg {    color: #fff;}


.mobile-footer {    position: fixed;    bottom: 0;    left: 0;    right: 0;    background: #f2f2f2;    padding: 15px;    z-index: 10000;     border-top: #dddddd solid 1px;}
.mobile-footer .book-btn {    text-align: end;    display: flex;    justify-content: space-between;}


.mobile-footer .book-btn {        padding-right: 0;    }
.mobile-footer .book-btn a{ width:50%; text-align:center; align-items:center;  display: flex ;     font-size: 14px;}

.mobile-footer .book-btn a.consul {
    background: linear-gradient(90deg, rgba(4, 8, 18, 1) 0%, rgba(26, 51, 121, 1) 100%);
    color: #fff;
}
@media(min-width:1023px) {
.mobile-footer { display:none; }

}

@media(max-width:1023px) {
body {    padding-bottom: 75px;}
}


/************************************************************/



.parent-story-section{    padding:100px 20px;    overflow:hidden;    position:relative;     background: #f2f2f2;}
.parent-story-section .container{    max-width:1280px;    margin:auto;}
.parent-story-section .section-title{    text-align:center;    margin-bottom:60px;}
.parent-story-section .section-title span{    display:inline-block;    font-size:18px;    font-weight:600;    color:#2563eb;    margin-bottom:18px;    position:relative;}
.parent-story-section .section-title span::after{    content:'';    width:70px;    height:2px;    background:#2563eb;    position:absolute;    left:50%;    transform:translateX(-50%);    bottom:-10px;}
.parent-story-section .section-title h2{    font-size:35px;    line-height:1.1;    font-weight:800;    max-width:800px; line-height: 1.4;    margin:auto;    margin-bottom:25px;    color:#162B65;}
.parent-story-section .section-title p {    max-width: 1024px;    margin: auto;    font-size: 22px;    line-height: 1.8;    color: #000;}
.parent-story-section .testimonial-grid{    display:grid;    grid-template-columns:repeat(3,1fr);    gap:30px;}
.parent-story-section .testimonial-card{    background:#fff;    border-radius:24px;    overflow:hidden;    box-shadow:0 10px 35px rgba(0,0,0,0.06);    transition:0.4s ease;}
.parent-story-section .testimonial-card:hover{    transform:translateY(-8px);}
.parent-story-section .video-thumb{    position:relative;    height:320px;    overflow:hidden;}
.parent-story-section .video-thumb img{    width:100%;    height:100%;    object-fit:cover;    display:block;}
.parent-story-section .play-btn{    position:absolute;    top:50%;    left:50%;    transform:translate(-50%,-50%);    width:90px;    height:90px;    background:#fff;    border-radius:50%;    display:flex;    align-items:center;    justify-content:center;    cursor:pointer;    transition:0.3s;}
.parent-story-section .play-btn:hover{    transform:translate(-50%,-50%) scale(1.08);}
.parent-story-section .play-btn::before{    content:'';    border-style:solid;    border-width:14px 0 14px 22px;    border-color:transparent transparent transparent #1d4ed8;    margin-left:5px;}
.parent-story-section .video-time{    position:absolute;    right:20px;    bottom:20px;    background:rgba(0,0,0,0.75);    color:#fff;    font-size:18px;    padding:8px 12px;    border-radius:10px;}
.parent-story-section .card-content{    padding:35px;}
.parent-story-section .quote-icon {    font-size: 65px;    color: #3b82f6;    margin-bottom: 0;    line-height: 1;    height: 47px;}
.parent-story-section .card-content p {   font-size: 18px;    line-height: 1.6;    color: #202b46;    margin-bottom: 30px;}
.parent-story-section .author{    display:flex;    align-items:center;    gap:14px;    font-size:18px;    color:#2563eb;    font-weight:500;}
.parent-story-section .author-icon {    width: 35px;    height: 35px;    border-radius: 50%;    background: #eef4ff;    display: flex;    align-items: center;    justify-content: center;    font-size: 16px;}
.parent-story-section .cta-btn-wrap{    text-align:center;    margin-top:60px;}
.parent-story-section .cta-btn{    display:inline-flex;    align-items:center;    gap:14px;    background:#1d4ed8;    color:#fff;    text-decoration:none;    padding:22px 38px;    border-radius:18px;    font-size:22px;    font-weight:600;    transition:0.3s;}
.parent-story-section .cta-btn:hover{    background:#143fb7;    transform:translateY(-3px);}
.parent-story-section .cta-btn span{    width:34px;    height:34px;    border:2px solid #fff;    border-radius:50%;    display:flex;    align-items:center;    justify-content:center;    font-size:14px;}
/* ================= Responsive ================= */

@media(max-width:1200px){

    .parent-story-section .section-title h2{        font-size:52px;    }
    .parent-story-section .card-content p{        font-size:22px;    }
}

@media(max-width:991px){

    .parent-story-section .testimonial-grid{        grid-template-columns:1fr;    }
	.parent-story-section .section-title h2{        font-size:42px;    }
    .parent-story-section .section-title p{        font-size:18px;    }
}

@media(max-width:767px){

    .parent-story-section{        padding:70px 15px;    }
    .parent-story-section .section-title{        margin-bottom:40px;    }
    .parent-story-section .section-title span{        font-size:15px;    }
    .parent-story-section .section-title h2{        font-size:32px;    }
    .parent-story-section .section-title p{        font-size:16px;        line-height:1.7;    }
    .parent-story-section .video-thumb{        height:240px;    }
    .parent-story-section .play-btn{        width:70px;        height:70px;    }
	.parent-story-section .play-btn::before{        border-width:11px 0 11px 18px;    }
    .parent-story-section .card-content{        padding:25px;    }
    .parent-story-section .quote-icon{        font-size:48px;    }
    .parent-story-section .card-content p{        font-size:18px;    }
    .parent-story-section .author{        font-size:17px;    }
    .parent-story-section .author-icon{        width:42px;        height:42px;        font-size:18px;    }
    .parent-story-section .cta-btn{        width:100%;        justify-content:center;        font-size:18px;        padding:18px 24px;    }

}


.parent-story-section .cta-btn {    height: 60px;    padding: 0 22px;    border-radius: 5px;    font-size: 18px;}


.clear-box .list-p {    padding: 3px 0;    font-size: 18px;    display: flex;    justify-content: space-between;    font-weight: 600;}
.clear-box .p-box span {    color: #6EBA9C;}
.clear .row .col-lg-4:nth-child(3)  .clear-box ul li { margin-bottom:0px; }

.clear .p-box {    padding: 12px 0;}

.fp-box .last-price{ display:none; }
.clear .row .col-lg-4:nth-child(3)  .fp-box .last-price{ display:block; } 
.clear .row .col-lg-4:nth-child(3) .fp-box  .fm-b { display:none; }




.error-404-page {    min-height: 80vh;    display: flex;    align-items: center;    justify-content: center;    padding: 80px 20px;    background: #f8f9fa;    text-align: center;}
.error-content {    max-width: 700px;    margin: 0 auto;}
.error-content h1 {    font-size: 180px;    line-height: 1;    margin: 0;    font-weight: 700;    color: #0d6efd;}

.error-content h2 {
    font-size: 38px;
    margin: 20px 0;
    color: #222;
}

.error-content p {
    font-size: 18px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 30px;
}

.home-btn {
    display: inline-block;
    padding: 14px 35px;
    background: #0d6efd;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    transition: 0.3s;
}

.home-btn:hover {
    background: #084298;
    color: #fff;
}

/* Tablet */
@media (max-width: 991px) {
    .error-content h1 {
        font-size: 120px;
    }

    .error-content h2 {
        font-size: 30px;
    }

    .error-content p {
        font-size: 16px;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .error-404-page {
        padding: 60px 15px;
    }

    .error-content h1 {
        font-size: 90px;
    }

    .error-content h2 {
        font-size: 24px;
    }

    .error-content p {
        font-size: 15px;
    }

    .home-btn {
        padding: 12px 28px;
        font-size: 14px;
    }
}