:root {
  --purpleDark: #9b045b;
  --purpleLight: #c23981;
  --blueDark: #007f7c;
  --blueLight: #03b7b8;
  --greenDark: #32870f;
  --greenLight: #8cc63e;
  --blueBG: #00294d;
  --FontDark: #212121;
  --FontGray: #414042;
}
body {
  font-family: 'Heebo', sans-serif;
}
ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
a, a:hover {
  text-decoration: none;
  transition: .4s ease-in-out;
  -webkit-transition: .4s ease-in-out;
  -moz-transition: .4s ease-in-out;
  -ms-transition: .4s ease-in-out;
  -o-transition: .4s ease-in-out;
}

.loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  z-index: 9999999;
  display: flex;
  align-items: center;
  justify-content: center;
}
.loader img {
  max-height: 100px;
}
.overflow_hidden {
  overflow: hidden;
}
.cssload-container {
	width: 107px;
	margin: auto;
	vertical-align: middle;
}
.cssload-ex {
	text-transform: uppercase;
	font-size: 1em;
	letter-spacing: 1.5px;
	text-align: center;
	width: 88px;
	margin-top: 19px;
	font-size: 4em;
	width: 39px;
	height: 39px;
	margin-top: -17px;
	display: inline-block;
	border: 4px double var(--blueLight);
	animation: fade 3.45s infinite;
		-o-animation: fade 3.45s infinite;
		-ms-animation: fade 3.45s infinite;
		-webkit-animation: fade 3.45s infinite;
		-moz-animation: fade 3.45s infinite;
}
.cssload-ex:nth-child(1) {
	animation: spin1 3.45s infinite .5s;
		-o-animation: spin1 3.45s infinite .5s;
		-ms-animation: spin1 3.45s infinite .5s;
		-webkit-animation: spin1 3.45s infinite .5s;
		-moz-animation: spin1 3.45s infinite .5s;
	transform-origin: 50% 52%;
		-o-transform-origin: 50% 52%;
		-ms-transform-origin: 50% 52%;
		-webkit-transform-origin: 50% 52%;
		-moz-transform-origin: 50% 52%;
	margin-left: 10px;
}
.cssload-ex:nth-child(2) {
	animation: spin2 3.45s infinite .5s;
		-o-animation: spin2 3.45s infinite .5s;
		-ms-animation: spin2 3.45s infinite .5s;
		-webkit-animation: spin2 3.45s infinite .5s;
		-moz-animation: spin2 3.45s infinite .5s;
	transform-origin: 50% 52%;
		-o-transform-origin: 50% 52%;
		-ms-transform-origin: 50% 52%;
		-webkit-transform-origin: 50% 52%;
		-moz-transform-origin: 50% 52%;
	margin-left: -19px;
}
.cssload-ex:nth-child(3) {
	animation: spin2 3.45s infinite .5s;
		-o-animation: spin2 3.45s infinite .5s;
		-ms-animation: spin2 3.45s infinite .5s;
		-webkit-animation: spin2 3.45s infinite .5s;
		-moz-animation: spin2 3.45s infinite .5s;
	transform-origin: 50% 52%;
		-o-transform-origin: 50% 52%;
		-ms-transform-origin: 50% 52%;
		-webkit-transform-origin: 50% 52%;
		-moz-transform-origin: 50% 52%;
	margin-left: 10px;
}
.cssload-ex:nth-child(4) {
	margin-left: -1px;
	animation: spin1 3.45s infinite .5s;
		-o-animation: spin1 3.45s infinite .5s;
		-ms-animation: spin1 3.45s infinite .5s;
		-webkit-animation: spin1 3.45s infinite .5s;
		-moz-animation: spin1 3.45s infinite .5s;
	transform-origin: 50% 52%;
		-o-transform-origin: 50% 52%;
		-ms-transform-origin: 50% 52%;
		-webkit-transform-origin: 50% 52%;
		-moz-transform-origin: 50% 52%;
	margin-left: -19px;
}
@keyframes spin1 {
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(360deg);
	}
}
@-o-keyframes spin1 {
	0% {
		-o-transform: rotate(0deg);
	}
	100% {
		-o-transform: rotate(360deg);
	}
}
@-ms-keyframes spin1 {
	0% {
		-ms-transform: rotate(0deg);
	}
	100% {
		-ms-transform: rotate(360deg);
	}
}
@-webkit-keyframes spin1 {
	0% {
		-webkit-transform: rotate(0deg);
	}
	100% {
		-webkit-transform: rotate(360deg);
	}
}
@-moz-keyframes spin1 {
	0% {
		-moz-transform: rotate(0deg);
	}
	100% {
		-moz-transform: rotate(360deg);
	}
}
@keyframes spin2 {
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(-360deg);
	}
}
@-o-keyframes spin2 {
	0% {
		-o-transform: rotate(0deg);
	}
	100% {
		-o-transform: rotate(-360deg);
	}
}
@-ms-keyframes spin2 {
	0% {
		-ms-transform: rotate(0deg);
	}
	100% {
		-ms-transform: rotate(-360deg);
	}
}
@-webkit-keyframes spin2 {
	0% {
		-webkit-transform: rotate(0deg);
	}
	100% {
		-webkit-transform: rotate(-360deg);
	}
}
@-moz-keyframes spin2 {
	0% {
		-moz-transform: rotate(0deg);
	}
	100% {
		-moz-transform: rotate(-360deg);
	}
}
@keyframes fade {
	50% {
		opacity: 0.5;
	}
	100% {
		opacity: 1;
	}
}
@-o-keyframes fade {
	50% {
		opacity: 0.5;
	}
	100% {
		opacity: 1;
	}
}
@-ms-keyframes fade {
	50% {
		opacity: 0.5;
	}
	100% {
		opacity: 1;
	}
}
@-webkit-keyframes fade {
	50% {
		opacity: 0.5;
	}
	100% {
		opacity: 1;
	}
}
@-moz-keyframes fade {
	50% {
		opacity: 0.5;
	}
	100% {
		opacity: 1;
	}
}

/* START => Header */
header .top-head {
  background-color: var(--blueBG);
  padding: .8rem 0;
}
header .top-head > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
header .top-head .logo a {
  width: 220px;
  display: block;
}
.logo img {
	max-width: 100%;
	height: auto;
	max-height: 60px;
}
.links-reg_log_langs {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.links-reg_log_langs a {
  color: #fff;
  /*width: calc(100% - 30px);*/
}
a.langs {
  width: 40px;
  display: block;
}
a.langs img {
  max-width: 100%;
}
header .top-head .right-top-head .tel-mail a {
  color: #fff;
}
header .top-head .right-top-head .tel-mail a:first-child {
  margin-right: 2rem;
}
header .top-head .right-top-head .tel-mail a i {
  color: var(--greenLight);
}
header .sub-head > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
ul.menu {
  display: flex;
}
ul.menu .li_item{
  text-align: center;
  }
ul.menu > li > a {
	display: inline-block;
	padding: .2rem .5rem;
	color: #fff;
	white-space: nowrap;
  position: relative;
}
ul.menu > li:not(:last-child) > a:before {
	content: "";
	position: absolute;
	width: 1px;
	height: 15px;
	background: #1a619f;
	left: -1px;
	top: 10px;
}
ul.menu > li > a  span{
	display: inline-block;
	color: #03b7b8;
}
.links-reg_log_langs a:hover,
ul.menu > li> a:hover,
ul.menu > li> a.active {
  color: var(--greenLight);
}

.head-nav-mobile,
.menu-mobile {
    display: none;
}

.dropdown-toggle::after {
  content: "\f078";
  border: 0;
  font-family:"Font Awesome 5 Free";
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  vertical-align: middle;
  line-height: 1;
  font-weight: 900;
  transition: 0.4s;
  -webkit-transition: 0.4s;
  -moz-transition: 0.4s;
  -ms-transition: 0.4s;
  -o-transition: 0.4s;
}
.dropdown-toggle.show::after {
  transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
}
.dropdown-menu {
  border-radius: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
  min-width: 15rem;
  border-top: 1px solid var(--blueDark);
  transition: 0.3s;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
}
.dropdown-menu li a {
  display: block;
  padding: .3rem .5rem;
  color: var(--FontDark);
}
.dropdown-menu li a:hover {
  color: var(--blueDark);
}
.link-add-school a.btn-add-school {
	display: inline-block;
	padding: 0.6rem;
	background-color: var(--greenDark);
	color: #fff;
	font-size: 12px;
	border-radius: 5px;
	white-space: nowrap;
}
.links-reg_log_langs a {
  display: inline-block;
	padding: 0.6rem;
	background-color: #0b406f;
	color: #fff;
	font-size: 12px;
	border-radius: 5px;
	white-space: nowrap;
}
.logo-mobile,
.chng-langs,
.reg-mobile,
.mobile-styling .logo,
.toggle-navmenu {
  display: none;
}
/* START => Header */

/* START => Home Sliders */
.sec-slider {
  position: relative;
}
.home-slider,
.home-slider .owl-stage-outer,
.home-slider .owl-stage,
.home-slider .owl-item,
.home-slider .item {
  height: 500px;
}
.home-slider .item {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}
.home-slider .item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
}
.home-slider .item .img-slider {
  height: 100%;
  width: 100%;
}
.home-slider .item .img-slider img {
  width: 100%;
  height: 100%;
  object-fit: fill;
}
.home-slider.owl-theme .owl-nav {
  position: absolute;
  left: 50%;
  bottom: 0;
  color: #fff;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
}
.home-slider.owl-theme .owl-nav>button {
  font-size: 16px;
  background-color:var(--greenLight);
  color: #fff;
  padding: .4rem 1rem !important;
}
.home-slider.owl-theme .owl-nav>button:focus,
.home-slider.owl-theme .owl-nav>button:hover {
  border: 0;
  outline: 0;
  background-color: var(--greenDark);
  color: #fff;
}

.nav-pills {
  margin: 0;
  border: 0;
}
.nav-pills li {
  margin-right: 5px;
}
.nav-pills .nav-link {
  outline: none;
  border: 0;
  border-radius: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
  padding: 1rem;
  background-color: rgba(0, 0, 0, 0.7);
  color: #fff;
  text-transform: capitalize;
  font-weight: 600;
}
.nav-pills .nav-link.active, .nav-pills .show>.nav-link {
  background-color: rgb(0, 0, 0);
  color: var(--blueLight);
}

.search-form {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 80%;
  z-index: 1;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
}
.search-form .title-banner strong {
  color: #fff;
  font-weight: 300;
}
.search-form .title-banner strong.h1 {
  font-size: 60px;
}
.search-form .title-banner strong.h2 {
  font-size: 40px;
}

.search-form .forms-search {
  background-color: rgba(0, 0, 0, 0.7);
  padding: 2rem;
  border-radius: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
}
.search-form .forms-search form.simple-search {
  /* display: flex; */
}
.search-form .forms-search form {
  /* display: flex; */
  transition: 0.4s;
  -webkit-transition: 0.4s;
  -moz-transition: 0.4s;
  -ms-transition: 0.4s;
  -o-transition: 0.4s;
}
.selectric {
  outline: none;
  border: 0;
  padding: .6rem 2rem;
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  border: 1px solid #ddd;
  background-clip: padding-box;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: .25rem;
  transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
  -webkit-transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
  -moz-transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
  -ms-transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
  -o-transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}
.selectric .button {
  height: 100%;
}
.selectric .button::after {
  border: 6px solid transparent;
  border-top-color: #bbb;
}
.selectric .label {
  font-size: 1rem;
  color: #212529;
}
.search-form .forms-search .form-control {
  background-color: #fff;
  outline: none;
  border: 0;
  padding: 1rem 2rem;
}
.search-form .forms-search .advanced-search .form-control:first-child {
  margin-right: .5rem;
}
.search-form .forms-search button {
  background-color: var(--greenDark);
  color: #fff;
  border: 0;
  outline: none;
  margin-left: 1rem;
  padding: 1rem 2.5rem;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  transition: 0.4s;
  -webkit-transition: 0.4s;
  -moz-transition: 0.4s;
  -ms-transition: 0.4s;
  -o-transition: 0.4s;
}
.search-form .forms-search button:hover {
  background-color: var(--greenLight);
}
.search-form .forms-search .links-search .btn-advsearch,
.search-form .forms-search .links-search a {
  color: var(--greenLight);
  cursor: pointer;
  font-weight: bold;
}
.search-form .forms-search .links-search .btn-advsearch:hover,
.search-form .forms-search .links-search a:hover {
  color: var(--greenDark);
}
.search-form .forms-search form.advanced-search {
  display: none;
}

.form-map {
  background-image: url(../imgs/1.jpg);
  position: relative;
  z-index: 1;
}
.form-map::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, .6);
  z-index: -1;
}

.page-schools-maps {
  line-height: 0;
}
.page-schools-maps iframe {
  width: 100% !important;
  height: 100vh !important;
}

.home-slider.owl-theme .owl-nav.disabled+.owl-dots {
  margin: auto;
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translate(-50%, -50%);
}
.home-slider.owl-theme .owl-nav.disabled+.owl-dots .owl-dot {
  outline: none;
}
.home-slider.owl-theme .owl-nav.disabled+.owl-dots .owl-dot span {
  width: 15px;
  height: 15px;
}
.home-slider.owl-theme .owl-nav.disabled+.owl-dots .owl-dot.active span {
  background-color: var(--purpleDark);
}
/* //END => Home Sliders */

/* START => Categories */
.item-catg {
  text-align: center;
}
.item-catg .img-catg {
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin: auto;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}
.item-catg .img-catg img {
  display: block;
  text-align: center;
  max-width: 100%;
  max-height: 100%;
}
/* .item-catg .img-catg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-size: 100% 100%;
}
.sec-catgs .row > div:nth-child(1) > .item-catg .img-catg::before {
  background-image: url(../imgs/icon/1-1.png);
}
.sec-catgs .row > div:nth-child(2) > .item-catg .img-catg::before {
  background-image: url(../imgs/icon/2-1.png);
}
.sec-catgs .row > div:nth-child(3) > .item-catg .img-catg::before {
  background-image: url(../imgs/icon/3-1.png);
}
.sec-catgs .row > div:nth-child(4) > .item-catg .img-catg::before {
  background-image: url(../imgs/icon/4-1.png);
} */
.item-catg .title-catg {
  color: var(--FontDark);
  display: block;
  margin: auto;
  margin-bottom: 1rem;
  font-size: 1.2rem;
  font-weight: 600;
}
.item-catg .title-catg:hover {
  color: var(--blueDark);
}
.item-catg .desc-catg {
  color: var(--FontGray);
  font-size: 14px;
}
.btn-searchnow {
  display: inline-block;
  text-align: center;
  background-color: #0054a0;
  color: #fff;
  padding: .6rem 1rem;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
}
.btn-searchnow:hover {
  color: #fff;
  background-color: var(--blueBG);
}
/* //END => Categories */

/* START => Schools */
.sec-title {
  margin-bottom: 1rem;
}
.sec-title .h3 {
  color: var(--FontDark);
  font-weight: 400;
}
.sec-title a {
  color: var(--FontDark);
  font-weight: 400;
  background-color: #dadada;
  padding: .4rem 1rem;
  border-radius: 6px;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  -ms-border-radius: 6px;
  -o-border-radius: 6px;
}
.sec-title a:hover {
  background-color: var(--blueDark);
  color: #fff;
}
.section-schools {
  background-color: #eeeded;
}
.swiper-container .btns-arrows-schools {
  opacity: 0;
}
.swiper-container:hover .btns-arrows-schools {
  opacity: 1;
}
.btns-arrows-schools .swiper-button-next:after,
.btns-arrows-schools .swiper-button-prev:after {
  color: var(--FontDark);
}

.btns-arrows-item .swiper-button-next:after,
.btns-arrows-item .swiper-button-prev:after {
  color: #fff;
  font-size: 1.5rem;
}

.item-school {
  background-color: #fff;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  overflow: hidden;
  border-bottom: 2px solid #0054a0;
  position: relative;
}
.item-school .img-school {
  height: 178px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.item-school .img-school img {
  /*max-height: 100%;*/
  width: 100%;
}
.item-school .top-info {
  position: absolute;
  top: 20px;
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  z-index: 1;
}
.item-school .top-info span {
  box-shadow: 0 0 10px #ddd;
  padding: 0.2rem .6rem;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  font-size: 14px;
}
.item-school .top-info span.city {
  background-color: #ffffff;
  color: var(--FontDark);
}
.item-school .top-info span.new {
  background-color: #0073db;
  color: #fff;
}
.item-school .info-item-school {
  color: var(--FontDark);
  padding: 1rem .5rem;
  padding-bottom: 0;
  height: 150px;
  overflow: hidden;
}
.item-school .info-item-school > span {
  display: block;
  margin-bottom: 1rem;
  color: var(--greenDark);
}
.item-school .info-item-school > a {
  color: var(--FontDark);
  font-size: 1.1rem;
  font-weight: 600;
  display: -webkit-box !important;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}
.item-school .info-item-school > a:hover {
  color: var(--blueDark);
}
.item-school .info-item-school > p {
  font-size: 13px;
  margin-bottom: 0;
  color: var(--FontGray);
  display: -webkit-box !important;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.item-school .info-item-school > i {
  display: block;
  font-size: 13px;
  color: var(--FontGray);
}
.item-school .rating {
  margin: .5rem auto;
}
.rating i {
  color: #ffc200;
}
.footer-details {
  border-top: 1px solid #acb9a6;
  display: flex;
}
.footer-details > div,
.footer-details > a {
  border-right: 1px solid #acb9a6;
  color: var(--FontDark);
  padding: 1rem;
  display: inline-block;
}
.footer-details > div > a {
  color: var(--FontDark);
}
.footer-details > div > a:hover,
.footer-details > a:hover {
  color: var(--greenDark);
}
.footer-details > a:first-child {
  width: 50%;
}
.footer-details > div:nth-child(2) {
  width: 25%;
  text-align: center;
}
.footer-details > a:last-child {
  border-right: 0;
  width: 25%;
  text-align: center;
}
/* //END => Schools */

/* START => Featured Schools */
.slides-featured-schools .item-school .img-school {
  height: 240px;
}
/* //END => Featured Schools */

/* START => Help */
.bg-help {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}
.right-help {
  background-color: #0054a0;
  color: #fff;
  padding: 3rem 4rem;
}
.right-help strong.h3 {
  font-weight: 400;
}
.right-help > p {
  font-weight: 300;
  font-size: 14px;
}
.counter {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 80%;
  margin: 1.5rem 0;
}
.counter > div span.h1 {
  font-weight: 300;
  margin-bottom: 0;
}
.counter > div span.name {
  font-size: 13px;
  font-weight: 300;
}
.btn-getstarted {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.5rem 1rem;
  color: #fff;
  background-color: var(--greenDark);
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}
.btn-getstarted:hover {
  background-color: var(--greenLight);
  color: #fff;
}
/* START => Help */

/* START => Latest Schools News */
.section-schools-news {
  background-color: #eeeded;
  padding: 1.5rem 0;
}
.item-news-schools {
  padding: 1rem;
  background-color: #fff;
  border-bottom: 2px solid #0073db;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}
.item-news-schools > span {
  color: var(--greenDark);
  display: block;
  margin-bottom: 1rem;
  text-transform: uppercase;
}
.item-news-schools a {
  display: block;
  font-size: 1.4rem;
  color: var(--FontDark);
  margin-bottom: .2rem;
}
.item-news-schools a:hover {
  color: var(--blueDark);
}
.item-news-schools .date-name {
  margin-bottom: .8rem;
}
.item-news-schools .date-name > span {
  font-size: 14px;
}
.item-news-schools .date-name span.date {
  color: #666;
}
.item-news-schools .date-name span.name {
  color: #000;
}
.item-news-schools p.short-desc {
  font-size: 14px;
  color: var(--FontGray);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
/* START => Latest Schools News */

/* START => Clients Say */
.section-clients-say {
  position: relative;
}
.gallery-top .img-gallery {
  width: 100%;
  height: 260px;
}
.gallery-top .img-gallery img {
  max-height: 100%;
  min-width: 100%;
  object-fit: contain;
}

.txt-client {
  padding: 1rem 2rem;
}

.thums-imgs {
  position: absolute;
  bottom: 70px;
  right: 0;
  width: 62%;
  z-index: 5;
}

.gallery-thumbs .swiper-button-next:after,
.gallery-thumbs .swiper-button-prev:after {
  color: #000;
  font-size: 1.5rem;
}

.gallery-thumbs .swiper-slide {
  display: flex;
  align-items: center;
  opacity: .5;
}
.gallery-thumbs .swiper-slide-thumb-active {
  opacity: 1;
}
.gallery-thumbs .img-thum {
  width: 70px;
  /* height: 100px; */
}
.gallery-thumbs .img-thum img {
  max-height: 100%;
  min-width: 100%;
  border-radius: 50%;
  box-shadow: 0 0 10px rgb(0, 0, 0, .2);
}
.gallery-thumbs .name-thum {
  padding: 0 .5rem;
}
.gallery-thumbs .name-thum strong {
  font-size: 13px;
  display: block;
}
.gallery-thumbs .name-thum span {
  font-size: 13px;
}
/* //END => Clients Say */

/* START => Views Countries*/
.sec-views-countries {
  position: relative;
  background-size: cover;
  background-attachment: fixed;
  background-repeat: no-repeat;
  z-index: 1;
}
.sec-views-countries::before {
  /* content: ""; */
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* background-color: rgba(255, 255, 255, 0.7); */
  z-index: -1;
}
.sec-views-countries .row > div:nth-child(1) {
  background-color: rgba(0, 127, 125, 0.8);
  padding: 3rem 1rem;
}
.sec-views-countries .row > div:nth-child(2) {
  background-color: rgba(3, 184, 184, 0.8);
  padding: 3rem 1rem;
}
.item-views {
  /* display: flex; */
  /* align-items: center; */
  /* justify-content: center; */
  color: #fff;
  text-align: center;
}
.item-views .icon {
  width: 90px;
}
.item-views .icon img {
  max-width: 100%;
}
.item-views .info {
  padding: 0 2rem;
}
.item-views .info p.h1 {
  font-weight: bold;
  font-size: 3.5rem;
  margin: 0;
}
.item-views .name {
  font-size: 2rem;
  display: block;
  font-weight: 500;
  margin: auto 1rem;
  text-transform: capitalize;
  letter-spacing: 1px;
}
/* //END => Views Countries */

/* Start Footer */
footer {
  position: relative;
  background-color: var(--blueBG);
  width: 100%;
  padding-top: 2rem;
}

footer .footer-wedget h5 {
  font-weight: 600;
  position: relative;
}
footer .footer-wedget h5::after {
	content: "";
	right: 0;
	top: 35px;
	position: absolute;
	border-bottom: 4px solid #32870f;
	width: 45px;
}
footer .footer-wedget h5,
footer .footer-wedget strong,
footer .footer-wedget p {
  color: #fff;
}
footer .footer-wedget .icon-calls p {
    display: flex;
}
footer .footer-wedget li {
border-bottom: 1px dashed #216198;
padding-right: 10px;
padding-left: 10px;
transition: all 0.1s ease-in-out;
-moz-transition: all 0.1s ease-in-out;
-webkit-transition: all 0.1s ease-in-out;
-ms-transition: all 0.1s ease-in-out;
-o-transition: all 0.1s ease-in-out;
}
footer .footer-wedget li:hover {
	border-bottom: 1px dashed #3a8ed7;
	background: rgba(0, 0, 0, 0.1);
  padding-right: 15px;
  padding-left: 5px;
}
footer .footer-wedget a {
  color: #FFF;
  margin-bottom: 5px;
  display: block;
  font-weight: 300;
}
footer .footer-wedget a:hover {
  color: var(--greenDark);
}
footer .footer-wedget span {
    display: inline-block;
}

footer .subscribe-footer .h5 {
  font-weight: 400;
  margin-bottom: 2rem;
}
footer .subscribe-footer form {
  position: relative;
}
footer .subscribe-footer form input {
  width: 100%;
  padding: 10px 1rem;
  background-color: #fff;
  border: 0;
  outline: unset;
  color: #000;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}
footer .subscribe-footer form input::placeholder {
  color: #888;
}
footer .subscribe-footer form button {
  background-color: #0073db;
  -webkit-appearance: none;
  border: 0;
  outline: unset;
  color: #FFF;
  padding: 5px 10px;
  transition: 0.3s;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  margin-top: 1rem;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}
footer .subscribe-footer form button:hover {
  background-color: var(--greenDark);
}

footer .footer-wedget .social-links {
  margin-bottom: 2rem;
}
footer .footer-wedget .social-links a {
  margin: auto .2rem;
  color: #fff;
  font-size: 13px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  width: 35px;
  height: 35px;
  line-height: 35px;
  text-align: center;
  border: 1px solid #ddd;
}
footer .footer-wedget .social-links a:hover {
  background-color: #ddd;
  color: var(--blueBG);
}

footer .copyrights {
  background-color: #05243f;
  padding: 1rem 0;
}
footer .copyrights ul li {
  display: inline-block;
}
footer .copyrights ul li a {
  padding: 0 10px;
  color: #FFF;
}
footer .copyrights p {
  margin: auto;
  color: #FFF;
}
/* //END => Footer */

/*************************************************/
/*************************************************/
/*************************************************/
/*************************************************/
/*************************************************/
/*************************************************/

/* START => b-crumb */
.b-crumb {
  background-color: #eeeded;
  padding: 1rem 0;
}
.b-crumb li {
  display: inline-block;
}
.b-crumb li span {
  margin: auto .5rem;
  color: #000;
}
.b-crumb li a {
  color: var(--blueBG);
  font-weight: bold;
}
.b-crumb li a:hover {
  color: var(--blueDark);
}
/* START => b-crumb */

/* START => Page Schools */
.sidebar {
  background-color: transparent;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  border-radius: 10px;
  overflow: hidden;
  font-family: 'Barlow', sans-serif !important;
}
.title-filter {
  /* border-radius: 10px 10px 0 0; */
  text-align: left;
}
.title-filter.title-fixed-mobile {
  display: none;
}
.title-filter strong {
  padding: .2rem;
  color: #333;
  font-size: 1.2rem;
}
.sidebar article {
  padding: 1rem 0;
}
.sidebar article h4 {
  font-size: 1.1rem;
  padding: 0 .5rem;
  padding-bottom: .5rem;
  margin-bottom: .5rem;
  color: #333;
  border-bottom: 1px solid #ddd;
}
.sidebar .title-filter h4 {
  font-weight: 600;
  margin-bottom: 0;
  padding: .5rem;
  background-color: var(--FontDark);
  color: #333;
  text-align: center;
  font-size: 1rem;
}
.form-check-label {
  color: #666;
  margin-left: .4rem;
  width: 100%;
}
.form-check-label span {
  position: absolute;
  right: 0;
  font-size: 12px;
}
input[type="submit"].btn-filter {
  all: unset;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  background-color: #0073db;
  border: 1px solid #0073db;
  color: #fff;
  padding: 1rem 0;
  display: block;
  width: 70%;
  margin: auto;
  text-align: center;
  font-weight: 600;
  font-size: 1.2rem;
  letter-spacing: 1px;
  border-radius: 10px;
  transition: .5s;
  cursor: pointer;
}
input[type="submit"].btn-filter:hover {
  background-color: var(--blueBG);
  border: 1px solid var(--blueBG);
  box-shadow: 0 2px 10px #ccc;
  transform: translateY(-5px);
}
.scroll-y {
  max-height: 300px;
  overflow: hidden;
  overflow-y: scroll;
}
.scroll-y::-webkit-scrollbar {
  width: 3px;
}
.scroll-y::-webkit-scrollbar-track {
  border-radius: 10px;
}
.scroll-y::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background: var(--blueDark);
}
.scroll-y::-webkit-scrollbar-thumb:window-inactive {
  background: var(--FontDark);
}

.starrating>input {
  display: none;
}
/* Remove radio buttons */
.starrating>label:before {
  content: "\f005";
  /* Star */
  margin: 2px 5px;
  font-size: 1.5em;
  font-family: "Font Awesome 5 Free";
  display: inline-block;
}
.starrating>label {
  color: #222222;
  /* Start color when not clicked */
}
.starrating>input:checked~label {
  color: #ffca08;
}
/* Set yellow color when star checked */
.starrating>input:hover~label {
  color: #ffca08;
}
/* Set yellow color when star hover */
.starrating label {
  display: block;
}

.range-slider {
  width: 100%;
  margin: auto;
  text-align: center;
  position: relative;
  margin-top: 30px;
}
.range-slider>div {
  overflow: hidden;
  text-align: center;
  margin-bottom: 0px;
}
.range-slider>div span {
  padding: 5px;
  margin-top: 10px;
}
.range-slider>div span label {
  font-weight: normal;
}
.range-slider>div input {
  font-size: 16px;
  background-color: transparent;
  color: #333;
  border: 1px solid #333;
  border-radius: 2px;
  outline: 0;
  padding: 6px 5px;
}
.range-slider svg,
.range-slider input[type=range] {
  position: absolute;
  left: 0;
  top: -12px;
}
.range-slider input[type=number] {
  text-align: center;
  /* font-size: 1.6em; */
}
.range-slider input[type=number]::-webkit-outer-spin-button,
.range-slider input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
}
.range-slider input[type=number]:invalid,
.range-slider input[type=number]:out-of-range {
  border: 2px solid #F00;
  color: #F00;
}
.range-slider input[type=number]:focus {
  background-color: var(--secondColor);
}
.range-slider input[type=range] {
  -webkit-appearance: none;
  width: 100%;
}
.range-slider input[type=range]:focus {
  outline: none;
  background: var(--blueLight);
}
.range-slider input[type=range]:focus::-webkit-slider-runnable-track {
  background: var(--blueLight);
}
.range-slider input[type=range]:focus::-ms-fill-lower {
  background: var(--blueLight);
}
.range-slider input[type=range]:focus::-ms-fill-upper {
  background: var(--blueLight);
}
.range-slider input[type=range]::-webkit-slider-runnable-track {
  width: 100%;
  height: 5px;
  cursor: pointer;
  animate: 0.2s;
  background: #000;
  border-radius: 0px;
  -webkit-box-shadow: none;
  box-shadow: none;
  border: 0;
}
.range-slider input[type=range]::-webkit-slider-thumb {
  z-index: 2;
  position: relative;
  -webkit-box-shadow: 0px 0px 0px var(--blueLight);
  box-shadow: 0px 0px 0px var(--blueLight);
  border: 3px solid var(--blueLight);
  height: 25px;
  width: 25px;
  border-radius: 25px;
  background: var(--FontDark);
  cursor: pointer;
  -webkit-appearance: none;
  margin-top: -10px;
}
.range-slider input[type=range]::-moz-range-track {
  width: 100%;
  height: 5px;
  cursor: pointer;
  animate: 0.2s;
  background: var(--blueDark);
  border-radius: 1px;
  box-shadow: none;
  border: 0;
}
.range-slider input[type=range]::-moz-range-thumb {
  z-index: 2;
  position: relative;
  box-shadow: 0px 0px 0px var(--blueDark);
  border: 1px solid var(--blueDark);
  height: 18px;
  width: 18px;
  border-radius: 25px;
  background: var(--blueDark);
  cursor: pointer;
}
.range-slider input[type=range]::-ms-track {
  width: 100%;
  height: 5px;
  cursor: pointer;
  background: transparent;
  border-color: transparent;
  color: transparent;
}
.range-slider input[type=range]::-ms-fill-lower,
.range-slider input[type=range]::-ms-fill-upper {
  background: var(--blueDark);
  border-radius: 1px;
  box-shadow: none;
  border: 0;
}
.range-slider input[type=range]::-ms-thumb {
  z-index: 2;
  position: relative;
  box-shadow: 0px 0px 0px #000;
  border: 1px solid var(--blueDark);
  height: 18px;
  width: 18px;
  border-radius: 25px;
  background: var(--blueDark);
  cursor: pointer;
}

.btn-close-filter,
.btn-filter-mobile {
  display: none;
}

.paginations li {
  margin: auto 5px;
  font-family: 'Roboto', sans-serif;
}
.paginations li a {
  background-color: var(--mainColor);
  border: 1px solid #e3e5ee;
  color: #333;
  padding: 8px 15px;
  display: block;
  border-radius: 4px;
}
.paginations li a.active,
.paginations li a:hover,
.paginations li a:focus {
  background-color: var(--blueDark);
  color: #fff;
}
.paginations li.disabled a {
  cursor: no-drop;
  pointer-events: none;
}

.aside-filter li {
  margin-bottom: 8px;
}
.aside-filter li strong {
  display: block;
  background-color: var(--mainColor);
  padding: .2rem .5rem;
  color: #eee;
  font-size: 13px;
  margin: auto;
  cursor: pointer;
  border-radius: 2px;
  transition: .5s;
}
.aside-filter li strong:hover {
  background-color: var(--mainColor);
  border-color: var(--mainColor);
  color: #FFF;
}
.aside-filter li strong i {
  float: right;
  position: relative;
  top: 4px;
}
.aside-filter li .desc, .aside-filter li .desc2 {
  padding: 10px;
  display: none;
}
.fa-plus.active_icon:before {
  content: "\f068";
}
.aside-filter li .btn_show_acc.active {
  background-color: var(--mainColor);
  color: #333;
}

.aside-filter .form-check {
  display: flex;
  align-items: center;
  margin-bottom: .2rem;
  position: relative;
}
.aside-filter .form-check * {
  cursor: pointer;
}
.form-check .form-check-input {
  margin-top: 0;
  width: 1.2em;
  height: 1.2em;
  background-color: #ddd;
  outline: none;
}
.form-check .form-check-input:checked {
  background-color: var(--blueBG);
  border-color: var(--blueDark);
  outline: none;
}
.form-check .form-check-input:focus {
  border-color: var(--blueDark);
  box-shadow: 0 0 10px rgba(209, 209, 209, 0.4);
  outline: none;
}

.sizes > div {
  margin: .5rem auto;
}
.btn.sizeing-num {
  padding: .2rem .5rem;
  font-size: .9rem;
  border-radius: 0;
}
.btn.sizeing-num {
  color: #fff;
  border-color: var(--secondColor);
}
.btn.sizeing-num {
  padding: .2rem .5rem;
  font-size: .9rem;
  border-radius: 0;
  outline: none;
}
.btn-outline-primary:hover,
.btn-check:active+.btn-outline-primary.btn.sizeing-num,
.btn-check:checked+.btn-outline-primary.btn.sizeing-num,
.btn-outline-primary.btn.sizeing-num.active,
.btn-outline-primary.btn.sizeing-num.dropdown-toggle.show,
.btn-outline-primary.btn.sizeing-num:active {
  color: #fff;
  background-color: var(--secondColor);
  border-color: var(--secondColor);
  outline: none;
}
.btn-check:focus+.btn-outline-primary,
.btn-outline-primary:focus,
.btn-check:active+.btn-outline-primary:focus,
.btn-check:checked+.btn-outline-primary:focus,
.btn-outline-primary.active:focus,
.btn-outline-primary.dropdown-toggle.show:focus,
.btn-outline-primary:active:focus {
  box-shadow: 0 0 0 0.25rem rgba(209, 209, 209, 0.4);
  outline: none;
}

.btn-hide-filter,
.title-btn-filter-mobile {
  display: none;
}
/* START => Page Schools */

/* START => Page Schools Details */
.img-school-gallery .gallery-top2 .swiper-slide > a {
  height: 370px;
  display: block;
  display: flex;
  align-items: center;
  justify-content: center;
}
.img-school-gallery .gallery-thumbs2 .swiper-slide .thumb {
  height: 100px;
}

.school-info ul.school_inf li {
  line-height: 2;
  font-weight: 500;
}
.contact-info li i {
  margin-right: .2rem;
  display: inline-block;
}

.school-accreditation .logos_accred {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}
.school-accreditation .img-l {
  width: 20%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto .5rem;
}

/* .call-actions {
  display: flex;
  flex-wrap: wrap;
  padding: 0 2rem;
}
.call-actions > a:not(.chart-bars) {
  width: calc(50% - 10px);
  background-color: var(--blueDark);
  color: #fff;
  font-size: 14px;
  margin: .5rem 5px;
  height: 60px;
  line-height: 60px;
  overflow: hidden;
  border-radius: 6px;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  -ms-border-radius: 6px;
  -o-border-radius: 6px;
  position: relative;
}
.call-actions > a:not(.chart-bars) i {
  font-size: 1.3rem;
  background-color: var(--blueLight);
  height: 100%;
  width: 50px;
  line-height: 2.5;
  text-align: center;
  display: inline-block;
}
.call-actions > a .nums {
  position: absolute;
  right: 0;
  width: 50px;
  text-align: center;
  background-color: var(--greenLight);
} */


.map-school {
  width: 100%;
  height: 400px;
  padding: .5rem 1rem;
}

.call-actions {
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
}
.call-actions > li {
  width: 66px;
  height: 66px;
  box-shadow: inset 0 2px 0px #ccc, 0 1px 2px #fff;
  -webkit-box-shadow: inset 0 2px 0px #ccc, 0 1px 2px #fff;
  -moz-box-shadow: inset 0 2px 0px #ccc, 0 1px 2px #fff;
  position: relative;
  display: inline-block;
  text-align: center;
  border: 1px solid #dfdfdf;
  background: #e9e9e9;
  background: -moz-linear-gradient(top, #e9e9e9 0%, #eaeaea 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#e9e9e9), color-stop(100%,#eaeaea));
  background: -webkit-linear-gradient(top, #e9e9e9 0%,#eaeaea 100%);
  background: -o-linear-gradient(top, #e9e9e9 0%,#eaeaea 100%);
  background: -ms-linear-gradient(top, #e9e9e9 0%,#eaeaea 100%);
  background: linear-gradient(top, #e9e9e9 0%,#eaeaea 100%);
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}
.call-actions > li > a {
  top: 7px;
  left: 7px;
  width: 50px;
  height: 50px;
  line-height: 54px;
  box-shadow: 0 2px 3px #b5b5b5, 0px 1px 0 #fff inset;
  -webkit-box-shadow: 0 2px 3px #b5b5b5, 0px 1px 0 #fff inset;
  -moz-box-shadow: 0 2px 3px #b5b5b5, 0px 1px 0 #fff inset;
  position: absolute;
  background: #fafafa;
  background: -moz-linear-gradient(top, #fafafa 0%, #dfdfdf 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#fafafa), color-stop(100%,#dfdfdf));
  background: -webkit-linear-gradient(top, #fafafa 0%,#dfdfdf 100%);
  background: -o-linear-gradient(top, #fafafa 0%,#dfdfdf 100%);
  background: -ms-linear-gradient(top, #fafafa 0%,#dfdfdf 100%);
  background: linear-gradient(top, #fafafa 0%,#dfdfdf 100%);
  border: 1px solid #DFDFDF;
  transition: all 0.1s ease-in-out;
  -moz-transition: all 0.1s ease-in-out;
  -webkit-transition: all 0.1s ease-in-out;
  -ms-transition: all 0.1s ease-in-out;
  -o-transition: all 0.1s ease-in-out;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  color: var(--FontDark);
  font-size: 1.5rem;
}
.call-actions li a .green {
  color: var(--greenDark);
  font-weight: bold;
}
.call-actions > li > a:hover {
  background: #e6e6e6;
  background: -moz-linear-gradient(top, #f9f9f9 0%, #e6e6e6 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#f9f9f9), color-stop(100%,#e6e6e6));
  background: -webkit-linear-gradient(top, #f9f9f9 0%,#e6e6e6 100%);
  background: -o-linear-gradient(top, #f9f9f9 0%,#e6e6e6 100%);
  background: -ms-linear-gradient(top, #f9f9f9 0%,#e6e6e6 100%);
  background: linear-gradient(top, #f9f9f9 0%,#e6e6e6 100%);
}
.call-actions > li > a:active {
  box-shadow: 0 2px 2px #efefef, 0 0px 3px 0px #cdcdcd inset;
  -moz-box-shadow: 0 2px 2px #efefef, 0 0px 2px 0px #cdcdcd inset;
  background: #e6e6e6;
  background: -moz-linear-gradient(top, #f9f9f9 0%, #e6e6e6 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#f9f9f9), color-stop(100%,#e6e6e6));
  background: -webkit-linear-gradient(top, #f9f9f9 0%,#e6e6e6 100%);
  background: -o-linear-gradient(top, #f9f9f9 0%,#e6e6e6 100%);
  background: -ms-linear-gradient(top, #f9f9f9 0%,#e6e6e6 100%);
  background: linear-gradient(top, #f9f9f9 0%,#e6e6e6 100%);
  transform: translate(0px,1px);
  -webkit-transform: translate(0px,1px);
  -moz-transform: translate(0px,1px);
  -ms-transform: translate(0px,1px);
  -o-transform: translate(0px,1px);
}

.call-actions > li > a > span.tip {
  position: absolute;
  left: 50%;
  z-index: 1024;
  display: block;
  margin: 0;
  line-height: 1.5;
  font-size: .875rem;
  opacity: 0;
  max-width: 200px;
  min-width: 100px;
  padding: .25rem .5rem;
  color: #fff;
  text-align: center;
  background-color: #000;
  border-radius: .25rem;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
}
.call-actions > li > a:hover > span.tip {
  opacity: 0.9;
}
.call-actions > li > a > span.tip::before {
  position: absolute;
  top: -.4rem;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  content: "";
  border-color: transparent;
  border-style: solid;
  border-width: 0 .4rem .4rem;
  border-bottom-color: #000;
}

.call-actions > li > a > span.nums {
  position: absolute;
  top: -10px;
  right: -10px;
  font-size: 11px;
  padding: 3px 5px;
  line-height: 12px;
  color: #fff;
  background: #ba6d6d;
  background: -moz-linear-gradient(top, #ba6d6d 0%, #934848 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ba6d6d), color-stop(100%,#934848));
  background: -webkit-linear-gradient(top, #ba6d6d 0%,#934848 100%);
  border-radius: 2px;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  -ms-border-radius: 2px;
  -o-border-radius: 2px;
}

#modal-form-inquery {
  text-align: left;
}
#modal-form-inquery form label {
  margin-bottom: 5px;
}
#modal-form-inquery form textarea.form-control {
  max-height: 120px;
}

.school-progress {
  box-shadow: 0 2px 3px #b5b5b5, 0px 1px 0 #fff inset;
  background: #fafafa;
  border: 1px solid #DFDFDF;
  padding: 1rem;
}
a.chart-bars {
  text-align: center;
  display: block;
  width: 100%;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--blueDark);
  cursor: auto;
}
.chart-bars-block {
  font-size: 1rem;
  margin-top: 1rem;
  color: #000 !important;
  background-color: #ddd;
  overflow: hidden;
  border-radius: 0px;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  -ms-border-radius: 0px;
  -o-border-radius: 0px;
}
.chart-bars-block>div {
  padding: 3px 16px;
  color: #fff !important;
  background-color: var(--greenDark)
}

.accordion-button:not(.collapsed) {
  color: #fff;
  background-color: var(--blueDark);
}
.accordion-collapse.show {
  border: solid rgb(0 127 124);
  border-width: 0 1px;
}

.school-details .accordion-item {
  margin-bottom: .5rem;
  border-bottom: 1px solid rgba(0,0,0,.125);
}
.school-details .accordion-item .accordion-body {
  background-color: #f9f9f9;
}

.item-tuition-fees strong {
  background-color: rgba(101, 255, 109, 0.3);
  border: 1px solid rgba(101, 255, 109, 0.8);
  padding: .5rem 1rem;
  display: block;
  text-align: center;
  color: #333;
  margin-bottom: 1rem;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}
.communicating-supervisors .titles {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
}
.communicating-supervisors .titles strong {
  background-color: rgba(101, 255, 109, 0.3);
  border: 1px solid rgba(101, 255, 109, 0.8);
  padding: .5rem 2rem;
  color: #333;
  margin-bottom: 1rem;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}

.item-Jobs-available-school {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  padding: 1rem;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}
.head__Job {
  border-bottom: 1px solid #ccc;
  padding: 1rem 0;
}
.footer__Job span {
  padding: 1rem;
  background-color: #f9f9f9;
  border: 1px solid #ddd;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}

.items__notifications {
  box-shadow: 0 0 10px #ddd;
  margin-bottom: 1rem;
  border-radius: 5px;
  transition: .5s;
}
.items__notifications:hover {
  box-shadow: 0 0 20px #bbb;
}
.items__notifications strong {
  display: inline-block;
  color: #fff;
  margin: 0;
  background-color: var(--greenLight);
  padding: .5rem 1rem;
}
.items__notifications p {
  color: #666;
  font-weight: bold;
  margin: 0;
  padding: 1rem;
}

.accordion-button::after {
  background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iaXNvLTg4NTktMSI/Pg0KPCEtLSBHZW5lcmF0b3I6IEFkb2JlIElsbHVzdHJhdG9yIDE5LjAuMCwgU1ZHIEV4cG9ydCBQbHVnLUluIC4gU1ZHIFZlcnNpb246IDYuMDAgQnVpbGQgMCkgIC0tPg0KPHN2ZyB2ZXJzaW9uPSIxLjEiIGlkPSJDYXBhXzEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHg9IjBweCIgeT0iMHB4Ig0KCSB2aWV3Qm94PSIwIDAgMjQwLjgzNSAyNDAuODM1IiBzdHlsZT0iZW5hYmxlLWJhY2tncm91bmQ6bmV3IDAgMCAyNDAuODM1IDI0MC44MzU7IiB4bWw6c3BhY2U9InByZXNlcnZlIj4NCjxnPg0KCTxwYXRoIGlkPSJFeHBhbmRfTGVzcyIgZD0iTTEyOS4wMDcsNTcuODE5Yy00LjY4LTQuNjgtMTIuNDk5LTQuNjgtMTcuMTkxLDBMMy41NTUsMTY1LjgwM2MtNC43NCw0Ljc0LTQuNzQsMTIuNDI3LDAsMTcuMTU1DQoJCWM0Ljc0LDQuNzQsMTIuNDM5LDQuNzQsMTcuMTc5LDBsOTkuNjgzLTk5LjQwNmw5OS42NzEsOTkuNDE4YzQuNzUyLDQuNzQsMTIuNDM5LDQuNzQsMTcuMTkxLDBjNC43NC00Ljc0LDQuNzQtMTIuNDI3LDAtMTcuMTU1DQoJCUwxMjkuMDA3LDU3LjgxOXoiLz4NCgk8Zz4NCgk8L2c+DQoJPGc+DQoJPC9nPg0KCTxnPg0KCTwvZz4NCgk8Zz4NCgk8L2c+DQoJPGc+DQoJPC9nPg0KCTxnPg0KCTwvZz4NCjwvZz4NCjxnPg0KPC9nPg0KPGc+DQo8L2c+DQo8Zz4NCjwvZz4NCjxnPg0KPC9nPg0KPGc+DQo8L2c+DQo8Zz4NCjwvZz4NCjxnPg0KPC9nPg0KPGc+DQo8L2c+DQo8Zz4NCjwvZz4NCjxnPg0KPC9nPg0KPGc+DQo8L2c+DQo8Zz4NCjwvZz4NCjxnPg0KPC9nPg0KPGc+DQo8L2c+DQo8Zz4NCjwvZz4NCjwvc3ZnPg0K);
}
.accordion-button:not(.collapsed)::after {
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZlcnNpb249IjEuMSIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHhtbG5zOnN2Z2pzPSJodHRwOi8vc3ZnanMuY29tL3N2Z2pzIiB3aWR0aD0iNTEyIiBoZWlnaHQ9IjUxMiIgeD0iMCIgeT0iMCIgdmlld0JveD0iMCAwIDI0MC44MzUgMjQwLjgzNSIgc3R5bGU9ImVuYWJsZS1iYWNrZ3JvdW5kOm5ldyAwIDAgNTEyIDUxMiIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSIgY2xhc3M9IiI+PGc+CjxnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+Cgk8cGF0aCBpZD0iRXhwYW5kX0xlc3MiIGQ9Ik0xMjkuMDA3LDU3LjgxOWMtNC42OC00LjY4LTEyLjQ5OS00LjY4LTE3LjE5MSwwTDMuNTU1LDE2NS44MDNjLTQuNzQsNC43NC00Ljc0LDEyLjQyNywwLDE3LjE1NSAgIGM0Ljc0LDQuNzQsMTIuNDM5LDQuNzQsMTcuMTc5LDBsOTkuNjgzLTk5LjQwNmw5OS42NzEsOTkuNDE4YzQuNzUyLDQuNzQsMTIuNDM5LDQuNzQsMTcuMTkxLDBjNC43NC00Ljc0LDQuNzQtMTIuNDI3LDAtMTcuMTU1ICAgTDEyOS4wMDcsNTcuODE5eiIgZmlsbD0iI2ZmZmZmZiIgZGF0YS1vcmlnaW5hbD0iIzAwMDAwMCIgc3R5bGU9IiIgY2xhc3M9IiI+PC9wYXRoPgoJPGc+Cgk8L2c+Cgk8Zz4KCTwvZz4KCTxnPgoJPC9nPgoJPGc+Cgk8L2c+Cgk8Zz4KCTwvZz4KCTxnPgoJPC9nPgo8L2c+CjxnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+CjwvZz4KPGcgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPC9nPgo8ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPgo8L2c+CjxnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+CjwvZz4KPGcgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPC9nPgo8ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPgo8L2c+CjxnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+CjwvZz4KPGcgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPC9nPgo8ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPgo8L2c+CjxnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+CjwvZz4KPGcgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPC9nPgo8ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPgo8L2c+CjxnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+CjwvZz4KPGcgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPC9nPgo8ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPgo8L2c+CjwvZz48L3N2Zz4=);
}

.latest_news_this {
  background-color: #eeeded;
}

.values-school {
  width: 90%;
  margin: auto;
  border: 1px solid #ddd;
  box-shadow: 0 0 10px #ddd;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}
.values-school > li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #ddd;
  background-color: #fff;
  padding: .5rem 1rem;
  transition: 0.4s;
  -webkit-transition: 0.4s;
  -moz-transition: 0.4s;
  -ms-transition: 0.4s;
  -o-transition: 0.4s;
}
.values-school > li:hover {
  background-color: #f9f9f9;
  transform: scale(1.01);
  -webkit-transform: scale(1.01);
  -moz-transform: scale(1.01);
  -ms-transform: scale(1.01);
  -o-transform: scale(1.01);
}
.values-school > li .starrating>label:before {
  content: "\f005";
  margin: 2px 5px;
  font-size: 1.2em;
  font-family: "Font Awesome 5 Free";
  display: inline-block;
}
.form-add-values {
  padding: 2rem;
}
.form-add-values label {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  font-weight: 500;
}
.form-add-values textarea {
  height: 150px;
}
.btn-addcomment {
  text-align: center;
  display: block;
  margin: auto;
  margin-top: 1rem;
  outline: none;
  border: 0;
  background-color: var(--greenLight);
  color: #fff;
  padding: 1rem 2rem;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  transition: 0.4s;
  -webkit-transition: 0.4s;
  -moz-transition: 0.4s;
  -ms-transition: 0.4s;
  -o-transition: 0.4s;
}
.btn-addcomment:hover {
  background-color: var(--greenDark);
  color: #fff;
}

.comments-prents .items__comment {
  box-shadow: 0 0 10px #ddd;
  padding: 10px;
  margin-bottom: 1rem;
  border-radius: 5px;
  transition: .5s;
}
.comments-prents .items__comment:hover {
  box-shadow: 0 0 20px #bbb;
}
.comments-prents .items__comment .img__comment img {
  border-radius: 50%;
  width: 80px;
  height: 80px;
  display: block;
  margin: auto;
}
.comments-prents .items__comment .info__comment {
  /* margin-top: 1rem; */
  padding: 0 1rem;
}
.comments-prents .items__comment .info__comment > p {
  color: #666;
}
.comments-prents .items__comment .info__comment .user__name > p {
  color: #666;
  font-weight: bold;
}
.comments-prents .items__comment .info__comment span.date {
  color: #666;
  font-weight: bold;
}

.item-achievements {
  box-shadow: 0 0 10px #ddd;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  overflow: hidden;
}
.item-achievements .short-info {
  padding: 0.5rem;
}
.item-achievements .title {
  margin: .5rem auto;
  display: block;
  color: var(--FontDark);
  font-size: 1.1rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.item-achievements .title:hover {
  color: var(--blueDark);
}
.item-achievements .date {
  color: var(--FontGray);
  margin-bottom: .5rem;
}
.item-achievements p {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
/* //END => Page Schools Details */

/* START => News */
.page-news {
  background-color: #f9f9f9;
}
.page-news .item-news-schools {
  border: 1px solid #ddd;
  border-bottom: 2px solid #0073db;
}

/**********************************************************/
/**********************************************************/
.img-blog-single img {
  width: 100%;
}
blockquote {
  padding: 40px 50px;
  background: #fff8e8;
  padding-left: 109px;
  margin: 28px 0;
  color: #000;
  font-family: 'Montserrat', sans-serif;
  position: relative;
}
blockquote::before {
  content: "\f10d";
  left: 50px;
  top: 38px;
  position: absolute;
  color: var(--blueLight);
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 45px;
}
/* START => News */

/* START => About US */
.sec-about {
  overflow: hidden;
}
.sec-about .img-about {
  position: relative;
  overflow: hidden;
  height: 300px;
  padding: .5rem;
}
.sec-about .img-about::after,
.sec-about .img-about::before {
  content: "";
  position: absolute;
  top: 2px;
  left: 4px;
  background-color: var(--main);
  z-index: -1;
}
.sec-about .img-about::after {
  width: 2px;
  height: 50%;
}
.sec-about .img-about::before {
  width: 50%;
  height: 2px;
}
.sec-about .img-about img {
  width: 100%;
  height: 100%;
  transition: 10s ease;
}
.sec-about .img-about::after img,
.sec-about .img-about::before img {
  content: "";
  position: absolute;
  bottom: 2px;
  right: 4px;
  background-color: var(--main);
  z-index: -1;
}
.sec-about .img-about::after img {
  width: 2px;
  height: 50%;
}
.sec-about .img-about::before img {
  width: 50%;
  height: 2px;
}

.block-vision.block-mission strong,
.sec-about .txt-about h1 {
  color: var(--main);
  font-weight: 300;
  position: relative;
  padding-bottom: 1rem;
  margin-bottom: 1rem;
}
.sec-about .txt-about h1::after {
  content: "";
  background-color: var(--main);
  width: 20%;
  height: 5px;
  border-radius: 30px;
  position: absolute;
  bottom: 0;
  left: 0;
}
.sec-about .txt-about h3 {
  color: #666;
}
.sec-about .txt-about p.lead__txt {
  color: #666;
  font-weight: 400 !important;
}

.sec-about .txt-about strong {
  margin-bottom: 1rem;
}
.sec-about li.lead__txt {
  font-size: 1.1rem !important;
  padding: .3rem 0;
}


.clients-block .img-client {
  width: 12.5%;
  flex: 0 0 12.5%;
  height: 100px;
  margin: 1.5rem auto;
  padding: 0 1rem;
  border: 1px solid #f8f8f8;
}
.clients-block .img-client img {
  object-fit: contain;
  height: 100%;
  /* width: 100%; */
  display: block;
  margin: auto;
}

.btn-menu {
  all: unset;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  background-color: var(--black);
  color: #fff;
  text-align: center;
  font-size: 1.2rem;
  transition: 0.2s;
  margin: auto;
  display: inline-block;
  padding: 1rem 2rem;
  border-radius: 30px;
  cursor: pointer;
}
.btn-menu:hover {
  color: #fff;
  background-color: var(--main);
}
/* //END => About US */

/* START => Page Contact Us */
.page-contact .box-contact {
  max-width: 100%;
}
.page-contact .box-contact {
  margin: auto;
  background-color: #fff;
  padding: 30px 50px 50px 50px;
  box-shadow: 0 5px 10px rgba(0, 0, 0, .3);
}
.page-contact .box-contact .form-control {
  height: auto;
  padding: .6rem;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
}
.page-contact .box-contact textarea {
  height: 120px;
  resize: none;
}
.inf-contact h3 {
  font-weight: bold;
  letter-spacing: 2px;
  color: var(--blueDark);
}
.inf-contact p {
  margin-bottom: 20px;
}
.inf-contact p a {
  color: #666;
  display: block;
}
.inf-contact p a:hover {
  color: var(--purpleDark);
}
.inf-contact p a i {
  width: 30px;
  color: var(--orangColor);
}
.social-contacts {
  margin-top: 40px;
}
.social-contacts li {
  display: inline-block;
  margin: auto .2rem;
}
.social-contacts li i {
  color: #FFF;
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  border-radius: 50%;
  transition: .4s;
}
.social-contacts li i:hover {
  transform: scale(1.1);
}
.social-contacts li .fa-facebook-f {
  background-color: #3b5998
}
.social-contacts li .fa-twitter {
  background-color: #55acee
}
.social-contacts li .fa-google-plus-g {
  background-color: #dd4b39
}
.social-contacts li .fa-instagram {
  background-color: #e95950
}
.social-contacts li .fa-whatsapp {
  background-color: #4dc247
}
.social-contacts li .fa-linkedin-in {
  background-color: #007bb5
}
.social-contacts li .fa-youtube {
  background-color: #e95950
}
/* //END => Page Contact Us */

/* START => Page Register & Login */
.form-register {
  padding: 2rem 3rem;
  width: 70%;
  margin: auto;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}
.form-register .title {
  text-align: center;
}
.form-register .form-title strong {
  color: #444;
  font-weight: 600;
}
.form-register .form-label {
  text-transform: capitalize;
}
.form-register .form-control {
  padding: .8rem 1rem;
  height: auto;
  font-size: 15px;
}
.form-register .btn-register {
  padding: .8rem 3.5rem;
  border: 0;
  outline: none;
  background-color: var(--blueDark);
  color: #fff;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
  transition: 0.4s;
  -webkit-transition: 0.4s;
  -moz-transition: 0.4s;
  -ms-transition: 0.4s;
  -o-transition: 0.4s;
}
.form-register .btn-register:hover {
  background-color: var(--blueLight);
}

.chk-accept a {
  color: var(--greenLight);
  text-decoration: underline;
}

.link-login-reg a {
  color: #444;
  display: block;
}
.link-login-reg a.link-forget {
  color: var(--greenDark);
  margin-bottom: 1rem;
}
.link-login-reg a:hover {
  color: var(--blueDark);
}
/* //END => Page Register & Login */

/* START => Add School */
.page-addschool .form-register {
  width: 80%;
}
/* START => Add School */

/* START Page => Profile */
.box-profile {
  padding: 0 2rem;
}
.title-box-profile strong {
  color: #333;
}
.title-box-profile span {
  color: #333;
}

.sidebar-profile {
  /* background-color: var(--mainColor); */
  border-right: 1px solid #333;
}
.sidebar-profile strong {
  color: #333;
  font-weight: bold;
}

.sidebar-profile ul li a {
  padding: .8rem .5rem;
  display: block;
  color: #333;
  font-size: 1rem;
  position: relative;
  overflow: hidden;
}
.sidebar-profile ul li a i {
  width: 40px;
  text-align: center;
}
.sidebar-profile ul li a.active,
.sidebar-profile ul li a:hover {
  color: var(--blueDark);
}

.profile-details form label {
  color: #333;
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: .5rem;
}
.profile-details form .form-control {
  padding: .8rem 1rem;
  outline: none;
}
.profile-details form .form-control:focus {
  box-shadow: 0 5px 10px #ddd;
}

.table td, .table th {
  vertical-align: middle;
}
.profile-details .table a.title {
  color: var(--FontGray);
  font-weight: 400;
}
.profile-details .table a.title:hover {
  color: var(--blueLight);
}

.btn-toggle-menu {
  display: none;
}

.schools-follow .item {
  box-shadow: 0 3px 10px #ddd;
  padding: 1rem;
  display: flex;
  align-items: center;
  margin-bottom: 1.2rem;
  transition: 0.4s;
  -webkit-transition: 0.4s;
  -moz-transition: 0.4s;
  -ms-transition: 0.4s;
  -o-transition: 0.4s;
  color: var(--FontGray);
}
.schools-follow .item:hover {
  transform: scale(1.01);
  -webkit-transform: scale(1.01);
  -moz-transform: scale(1.01);
  -ms-transform: scale(1.01);
  -o-transform: scale(1.01);
  box-shadow: 0 3px 10px #ccc;
  color: var(--blueLight);
}
.schools-follow .item .img {
  height: 50px;
  width: 100px;
  text-align: center;;
}
.schools-follow .item .img img {
  max-height: 100%;
}
.schools-follow .title strong {
  display: block;
  padding: 0 1rem;
  font-size: 1rem;
}

.delete_item {
  cursor: pointer;
  color: #333;
  padding: 4px;
  border-radius: 2px;
  opacity: .5;
}
.delete_item:hover {
  color: #f00;
  opacity: 1;
}
/* //END Page => Profile */






.aside-filter a.btn-success {
    padding: .5rem 1rem;
    display: block;
    width: 150px;
    text-align: center;
    font-size: 1rem;
    font-weight: bold;
    margin: 1rem auto;
    border-radius: 10px;
    background-color: #1f4d80;
}
.aside-filter a.btn-success:hover {
    background-color: #0a58ca;
    color: #fff;
}


/* START => */
/* START => */



.togglesharebtns .submenu {
  list-style-type: none;
  padding: 0;
  margin: 0;
  z-index: 99;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 70%;
}
.togglesharebtns .submenu li {
  transition: all ease-in-out 0.5s;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  opacity: 0;
}

.togglesharebtns:hover.bottom .submenu li:nth-child(1) {
  opacity: 1;
  top: 50px;
  transform: rotate(0deg);
  transition-delay: 0.08s;
}
.togglesharebtns:hover.bottom .submenu li:nth-child(2) {
  opacity: 1;
  top: 100px;
  transform: rotate(0deg);
  transition-delay: 0.16s;
}
.togglesharebtns:hover.bottom .submenu li:nth-child(3) {
  opacity: 1;
  top: 150px;
  transform: rotate(0deg);
  transition-delay: 0.24s;
}

.togglesharebtns .submenu li a {
  color: #212121;
}

.togglesharebtns .submenu li a:hover i {
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
}

.togglesharebtns .submenu li a i {
  height: 50px;
  width: 50px;
  text-align: center;
  line-height: 50px;
  background-color: #fff;
  color: #fff;
  border-radius: 2px;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  -ms-border-radius: 2px;
  -o-border-radius: 2px;
}

.togglesharebtns .submenu li a:hover i {
  color: #fff;
}
.togglesharebtns .submenu li a.facebook i {
  background-color: #3b5999;
}
.togglesharebtns .submenu li a.twitter i {
  background-color: #55acee;
}
.togglesharebtns .submenu li a.googlePlus i {
  background-color: #dd4b39;
}
.togglesharebtns .submenu li a.instagram i {
  background-color: #e4405f;
}
.togglesharebtns .submenu li a.linkedin i {
  background-color: #007bb5
}
.togglesharebtns .submenu li:nth-child(1) {
  transform: rotateX(45deg);
}
.togglesharebtns .submenu li:nth-child(2) {
  transform: rotateX(90deg);
}
.togglesharebtns .submenu li:nth-child(3) {
  transform: rotateX(135deg);
}
.togglesharebtns .submenu li:nth-child(4) {
  transform: rotateX(180deg);
}


.togglesharebtns-items {
  position: relative;
}

.togglesharebtns.togglesharebtns-items:hover.bottom .submenu li:nth-child(1) {
  top: -50px;
}
.togglesharebtns.togglesharebtns-items:hover.bottom .submenu li:nth-child(2) {
  top: -100px;
}
.togglesharebtns.togglesharebtns-items:hover.bottom .submenu li:nth-child(3) {
  top: -150px;
}


/*
  ==============================
            Menu Hover
  ==============================
*/
nav ul.menu > li.li_item {
  position: relative;
}
nav ul.menu > li.li_item .dropdown-toggle::after {
  content: "\f107";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  border: 0;
  vertical-align: middle;
  transition: 0.3s;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
}
nav ul.menu > li.li_item .dropdown-toggle:hover::after {
  transform: rotate(-90deg);
  -webkit-transform: rotate(-90deg);
  -moz-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  -o-transform: rotate(-90deg);
}
nav ul.menu > li.li_item .dropdown-menu {
  -webkit-box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.05);
          box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.05);
  background: #0d1028;
  position: absolute;
  top: 30px;
  left: 0;
  width: 250px;
  z-index: 99;
  display: block;
  padding-left: 5px;
  padding-right: 5px;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
nav ul.menu > li.li_item .dropdown-menu li {
  position: relative;
  padding: 0;
}
nav ul.menu > li.li_item .dropdown-menu li a {
  font-size: 14px;
  font-weight: 400;
  text-transform: capitalize;
  padding: 9px 6px;
  margin: 0;
  display: block;
  color: #ffffff;
}
nav ul.menu > li.li_item .dropdown-menu li .dropdown-menu {
  position: absolute;
  left: -100%;
  top: 0;
  opacity: 0 !important;
  visibility: hidden !important;
}
nav ul.menu > li.li_item .dropdown-menu li:hover .dropdown-menu {
  opacity: 1 !important;
  visibility: visible !important;
  top: -20px !important;
}
nav ul.menu > li.li_item .dropdown-menu li .dropdown-menu li .dropdown-menu {
  position: absolute;
  left: -100%;
  top: 0;
  opacity: 0 !important;
  visibility: hidden !important;
}
nav ul.menu > li.li_item .dropdown-menu li:hover .dropdown-menu li:hover .dropdown-menu {
  opacity: 1 !important;
  visibility: visible !important;
  top: -20px !important;
}
nav ul.menu > li.li_item .dropdown-menu li .dropdown-menu li a {
  color: #ffffff;
  text-transform: capitalize;
}
nav ul.menu > li.li_item:hover ul {
  opacity: 1;
  visibility: visible;
  top: 100%;
}
nav ul.menu > li.li_item:last-child .dropdown-menu {
  left: auto;
  right: 0;
}
nav ul.menu > li.li_item .dropdown-menu {
  background: #ffffff;
  padding-left: 10px;
  padding-right: 10px;
}
nav ul.menu > li.li_item .dropdown-menu li {
  border-bottom: 1px solid #0b032026;
  position: relative;
  -webkit-transition: 0.5s all ease;
  transition: 0.5s all ease;
}
nav ul.menu > li.li_item .dropdown-menu li:hover:before {
  opacity: 1;
}
nav ul.menu > li.li_item .dropdown-menu li:before {
  position: absolute;
  /* content: ''; */
  width: 15px;
  height: 1px;
  left: 0;
  top: 20px;
  background-color: #ffbe00;
  opacity: 0;
  -webkit-transition: 0.5s all ease;
  transition: 0.5s all ease;
}
nav ul.menu > li.li_item .dropdown-menu li:last-child {
  border-bottom: 0;
}
nav ul.menu > li.li_item .dropdown-menu li a {
  color: #0b0320;
}
nav ul.menu > li.li_item .dropdown-menu li a:hover,
nav ul.menu > li.li_item .dropdown-menu li a:focus,
nav ul.menu > li.li_item .dropdown-menu li a.active {
  color: var(--blueDark);
}
nav ul.menu > li.li_item .dropdown-toggle::after {
  /* display: none; */
}

@media (max-width: 991px) {
  nav ul.menu > li.li_item .dropdown-menu {
    position: static;
    display: none;
  }
  nav ul.menu > li.li_item:hover ul {
    opacity: 0;
    visibility: hidden;
    top: 100%;
    display: none;
  }
}


/* START => Our Online Services (Prices Packages) */
.sec-title {}
.sec-title strong {
  color: #333;
}
.sec-title p {
  color: #333;
}

.item-price {
  height: 100%;
  position: relative;
  padding-bottom: 4rem;
}
.item-price .head-pt {
  text-align: center;
  color: #fff;
  position: relative;
  padding: 2rem 5px;
  background-color: #333;
}
.item-price {
  border: 1px solid var(--blueLight);
  border-bottom: 8px solid var(--blueLight);
}
.item-price .head-pt strong.title {}
.item-price .head-pt .head-pt .price {
  display: block;
}
.item-price .head-pt .price span {
  margin-right: 1rem;
}
.item-price .head-pt .price strong {
  font-size: 2rem;
  display: inline-block;
}
.item-price .head-pt .price strong sup {
  font-weight: normal;
  display: inline-block;
}
.item-price .body-pt {
  padding: 1rem;
}
.item-price .body-pt ul {}
.item-price .body-pt ul li {
  position: relative;
  color: #515151;
  font-size: 13px;
  display: block;
  padding: .7rem 0;
  padding-left: 1.3rem;
  border-bottom: 1px dashed #ccc;
}
.item-price .body-pt ul li::before {
  content: "\f00c";
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: #515151;
  position: absolute;
  left: 0;
}
.item-price .footer-pt {
  text-align: center;
  position: absolute;
  bottom: 10px;
  left: 50%;
  width: 100%;
  transform: translateX(-50%);
  /* background-color: #333; */
}
.item-price .footer-pt a {
  display: inline-block;
  padding: .8rem 5rem;
  background-color: transparent;
  border: 1px solid var(--greenDark);
  color: var(--greenDark);
}
.item-price .footer-pt a:hover {
  background-color: var(--greenDark);
  color: #fff;
}

.pricing-table [class*="col-"]:nth-child(1) .item-price .head-pt {
  background-color: var(--blueLight);
}
.pricing-table [class*="col-"]:nth-child(2) .item-price .head-pt {
  background-color: var(--greenDark);
}
.pricing-table [class*="col-"]:nth-child(3) .item-price .head-pt {
  background-color: var(--blueBG);
}
.pricing-table [class*="col-"]:nth-child(4) .item-price .head-pt {
  background-color: var(--purpleDark);
}

/* START => Our Online Services (Prices Packages) */





/***************************************************************************/
/***************************************************************************/
/***************************************************************************/
/***************************************************************************/
/***************************************************************************/
/***************************************************************************/
/***************************************************************************/
/***************************************************************************/


.item-school-city {
  display: block;
  height: 350px;
  position: relative;
}
.item-school-city .img-wrapper {
  height: 100%;
}
.item-school-city .img-wrapper img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.item-school-city .city-schools-nums {
  position: absolute;
  top: 10px;
  right: 10px;
  background-color: var(--purpleDark);
  color: #fff;
  padding: 0.3rem 1rem;
  border-radius: 30px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -ms-border-radius: 30px;
  -o-border-radius: 30px;
}
.item-school-city .titles {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 1rem;
  z-index: 9;
  transition: .5s;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  -ms-transition: .5s;
  -o-transition: .5s;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-direction: column;
}
.item-school-city:hover .titles {
  /* height: 50%; */
  padding-bottom: 5rem;
}
.item-school-city .titles::before {
  content: "";
  height: 200px;
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
  background: rgb(0,0,0);
  background: linear-gradient(0deg, rgba(0,0,0,0.8015581232492998) 28%, rgba(255,255,255,0) 100%);
  transition: .5s;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  -ms-transition: .5s;
  -o-transition: .5s;
}
.item-school-city:hover .titles::before {
  height: 100%;
}
.item-school-city .titles .title-city {
  margin-bottom: 1rem;
  display: block;
  color: #fff;
  font-size: 1.2rem;
}
.item-school-city .titles .btn-seeall {
  color: #fff;
}
.slides-schools-city .swiper-button-next:after,
.slides-schools-city .swiper-button-prev:after {
  color: #fff;
}


.text_feees {
    font-size: 13px;
    color: #007f7c;
    font-weight: 600;
}

.btn_packages {
    display: inline-block;
    padding: 0.5rem 1rem;
    background-color: #00294d;
    color: #fff;
    border-radius: 10px;
    font-size: 14px;
}
.btn_packages:hover {
    background-color: #007f7c;
    color: #fff;
}


.item-school .info-item-school {
    height: 190px;
    position: relative;
}
.decom_school,

.reg_school {
    display: block;
    margin: 0.5rem auto;
    text-align: center;
    background-color: #00294d;
    color: #fff;
    padding: 0.3rem 0.3rem;
    border-radius: 4px;
    width: auto;
    min-width: 110px;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    font-size: 14px;
    white-space: nowrap;
}
.decom_school,
.reg_school:hover {
    background-color: var(--greenLight);
    color: #fff;
}

.btn_packages {
    font-size: 16px;
    margin: auto 2rem;
}



.inf-contact p a i {
  display: inline-block;
}


.bg-pages {
  position: relative;
  z-index: 1;
  padding: 3rem 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
}
.bg-pages::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 41, 77, 0.8);
  z-index: -1;
}
.bg-pages h1 {
  color: #fff;
  font-weight: 700;
}
.bg-pages p {
  color: #fff;
  margin-bottom: 0;
  font-size: 1.2rem;
  font-weight: 300;
}


.lines-1,
.lines-2,
.lines-3,
.lines-4,
.lines-5,
.lines-6,
.lines-7,
.lines-8,
.lines-9,
.lines-10,
.lines-11,
.lines-12,
.lines-13,
.lines-14,
.lines-15 {
  display: -webkit-box !important;
  overflow: hidden;
  -webkit-box-orient: vertical;
}
.lines-1 {
  -webkit-line-clamp: 1;
}
.lines-2 {
  -webkit-line-clamp: 2;
}
.lines-3 {
  -webkit-line-clamp: 3;
}
.lines-4 {
  -webkit-line-clamp: 4;
}
.lines-5 {
  -webkit-line-clamp: 5;
}
.lines-6 {
  -webkit-line-clamp: 6;
}
.lines-7 {
  -webkit-line-clamp: 7;
}
.lines-8 {
  -webkit-line-clamp: 8;
}
.lines-9 {
  -webkit-line-clamp: 9;
}
.lines-10 {
  -webkit-line-clamp: 10;
}
.lines-11 {
  -webkit-line-clamp: 11;
}
.lines-12 {
  -webkit-line-clamp: 12;
}
.lines-13 {
  -webkit-line-clamp: 13;
}
.lines-14 {
  -webkit-line-clamp: 14;
}
.lines-15 {
  -webkit-line-clamp: 15;
}

.search-form .title-banner h1 {
	color: #fff;
	text-shadow: 0 0 1px #000;
	font-weight: bolder;
}
.search-form .title-banner strong {
	color: #02b6b7;
	font-weight: 700;
	font-size: 31px;
	text-shadow: 0 0 2px #000;
	margin-top: 30px;
}




/* ******************************************************************** */

.accordion-body .item-news-schools .img_blog {
    width: 100%;
    height: 200px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
.accordion-body .item-news-schools .img_blog img {
    height: 100%;
}
.accordion-body .item-news-schools .infos {
    padding: .5rem .1rem;
}
