/* 1. Theme default css */
@import url("https://fonts.googleapis.com/css?family=Heebo:100,300,400,500,700,900&display=swap&subset=hebrew");
:root {
	--thm-font: 'Barlow Condensed', sans-serif;
	--heading-font: 'Satisfy', cursive;
	--paragraph-font:'Open Sans', sans-serif;
	--thm-base: #ffe300;
	--thm-base-rgb: 255, 168, 1;
	--thm-primary: #00b050;
	--thm-primary-rgb: 64, 185, 235;
	--thm-secondary: #ff7300;
	--thm-secondary-rgb: 255, 1, 67;
	--thm-black: #082740;
	--thm-black-rgb: 8, 39, 64;
	--thm-gray: #eceeef;
}
body {
  font-family: "Heebo", sans-serif;
  font-weight: normal;
  font-style: normal;
}
.img {
  max-width: 100%;
  transition: all 0.3s ease-out 0s;
}
.f-left {
  float: left;
}
.f-right {
  float: right;
}
.fix {
  overflow: hidden;
}
a,
.button {
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
a:focus,
.button:focus {
  text-decoration: none;
  outline: none;
}
a:focus,
a:hover,
.portfolio-cat a:hover,
.footer -menu li a:hover {
  color: #2b96cc;
  text-decoration: none;
}
a,
button {
  color: #1696e7;
  outline: medium none;
}
button:focus,
input:focus,
input:focus,
textarea,
textarea:focus {
  outline: 0;
}
.cta-form input:focus:-moz-placeholder {
  opacity: 0;
}
.cta-form input:focus::placeholder {
  opacity: 0;
}
.uppercase {
  text-transform: uppercase;
}
.capitalize {
  text-transform: capitalize;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Heebo", sans-serif;
  font-weight: normal;
  color: var(--thm-primary);
  margin-top: 0px;
  font-style: normal;
  font-weight: 700;
  text-transform: normal;
}
h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
  color: inherit;
}
h1 {
  font-size: 40px;
  font-weight: 500;
}
h2 {
  font-size: 35px;
}
h3 {
  font-size: 28px;
}
h4 {
  font-size: 22px;
}
h5 {
  font-size: 18px;
}
h6 {
  font-size: 16px;
}
ul {
  margin: 0px;
  padding: 0px;
}
li {
  list-style: none;
}
p {
  font-size: 16px;
  font-weight: normal;
  line-height: 27px;
  color: ##4b4e4f;
  margin-bottom: 15px;
  font-family: "Heebo", sans-serif;
  font-weight: 400;
}
hr {
  border-bottom: 1px solid #eceff8;
  border-top: 0 none;
  margin: 30px 0;
  padding: 0;
}
label {
  color: #7e7e7e;
  cursor: pointer;
  font-size: 14px;
  font-weight: 400;
}
*::-moz-selection {
  background: #d6b161;
  color: #fff;
  text-shadow: none;
}
::-moz-selection {
  background: #444;
  color: #fff;
  text-shadow: none;
}
::selection {
  background: #444;
  color: #fff;
  text-shadow: none;
}
*::-moz-placeholder {
  color: #555555;
  font-size: 14px;
  opacity: 1;
}
*::placeholder {
  color: #555555;
  font-size: 14px;
  opacity: 1;
}
.theme-overlay {
  position: relative;
}
.theme-overlay::before {
  background: #1696e7 none repeat scroll 0 0;
  content: "";
  height: 100%;
  left: 0;
  opacity: 0.6;
  position: absolute;
  top: 0;
  width: 100%;
}
.separator {
  border-top: 1px solid #f2f2f2;
}

.section-heading {
	position:relative;
  text-align: center;
  margin-bottom: 60px;
}

.section-heading h6 {
  margin-bottom: 15px;
  color: #18ab63;
  background: rgba(24, 171, 99, 0.1);
  border-radius: 3px;
  display: inline-block;
  padding: 10px 18px;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: 600;
  font-size: 0.7rem;
}

.section-heading h3 {
  font-size: 42px;
  text-align: center;
  position: relative;
  padding: 0 0 15px 0;
  margin-bottom: 20px;
}

.section-heading h3:after, .section-heading h3:before {
  content: "";
  left: 50%;
  position: absolute;
  border-radius: 100px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.section-heading h3:before {
  width: 30px;
  height: 10px;
  z-index: 5;
  bottom: 0px;
  background: #18ab63;
}

.section-heading h3:after {
  width: 100px;
  height: 10px;
  background: rgba(24, 171, 99, 0.1);
  bottom: 0;
}

.section-heading h3 span {
  color: #18ab63;
  margin-left: 10px;
}

.inner-header-title {
  margin-bottom: 25px !important;
  position: relative;
  padding-bottom: 20px;
  display: block;
}

.inner-header-title:after, .inner-header-title:before {
  content: "";
  bottom: 0;
  left: 0;
  height: 2px;
  position: absolute;
  border-radius: 5px;
}

.inner-header-title:after {
  width: 100%;
  background: rgba(0, 0, 0, 0.05);
}

.inner-header-title:before {
  width: 60px;
  z-index: 36;
  background: #18ab63;
}

.flex-box-center {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

/* button style */
.btn {
  color: #fff;
  cursor: pointer;
  display: inline-block;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1;
  margin-bottom: 0;
  padding: 20px 55px;
  text-align: center;
  touch-action: manipulation;
  transition: all 0.3s ease 0s;
  vertical-align: middle;
  white-space: nowrap;
  text-transform: capitalize;
  background: var(--thm-primary);
  border-radius: 0;
  font-family: "Heebo", sans-serif;
}
.test-space {
  padding-top: 415px;
}
.btn-border {
  background: transparent;
  border: 2px solid #fff;
  padding: 20px 47px;
}
.btn.btn-line {
  padding: 20px 56px;
}
.btn-border:hover {
  background: #fff;
  color: #ff62a3;
}
/*Buttons*/
.default-primary-btn {
  padding: 18px 30px;
  display: inline-block;
  text-transform: capitalize;
  -webkit-transition: all 0.25s linear;
  transition: all 0.25s linear;
  text-align: center;
  border-radius: 3px;
  position: relative;
  background: #18ab63;
  color: #fff;
  border: none;
  outline: none;
}

.default-primary-btn:hover {
  background: #127e49;
  color: #fff;
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
}

.primary-icon-btn {
  padding: 18px 90px 18px 30px;
  display: inline-block;
  text-transform: capitalize;
  -webkit-transition: all 0.25s linear;
  transition: all 0.25s linear;
  text-align: center;
  border-radius: 3px;
  position: relative;
  background: #18ab63;
	text-decoration:none;
  color: #fff;
  border: none;
}

.primary-icon-btn:hover {
  background: #127e49;
  color: #fff;
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
}

.primary-icon-btn i {
  top: 0;
  right: 0;
  width: 60px;
  height: 60px;
  text-align: center;
  line-height: 60px;
  display: inline-block;
  position: absolute;
  border-radius: 0 3px 3px 0;
  background: rgba(255, 255, 255, 0.2);
}

.secondary-icon-btn {
  padding: 18px 90px 18px 30px;
  display: inline-block;
  text-transform: capitalize;
  -webkit-transition: all 0.25s linear;
  transition: all 0.25s linear;
  text-align: center;
  border-radius: 3px;
  position: relative;
  background: #1B1464;
  color: #fff;
  border: none;
}

.secondary-icon-btn:hover {
  color: #fff;
  background: #100c3a;
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
}

.secondary-icon-btn i {
  top: 0;
  right: 0;
  width: 60px;
  height: 60px;
  text-align: center;
  line-height: 60px;
  display: inline-block;
  position: absolute;
  border-radius: 0 3px 3px 0;
  background: rgba(255, 255, 255, 0.2);
}
.breadcrumb>.active {
  color: #888;
}
.owl-carousel .owl-nav div {
  background: rgba(255, 255, 255, 0.8) none repeat scroll 0 0;
  height: 40px;
  left: 20px;
  line-height: 40px;
  opacity: 0;
  position: absolute;
  text-align: center;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.3s ease 0s;
  visibility: hidden;
  width: 40px;
}
.owl-carousel .owl-nav div.owl-next {
  left: auto;
  right: 20px;
}
.owl-carousel:hover .owl-nav div {
  opacity: 1;
  visibility: visible;
}
.owl-carousel .owl-nav div:hover {
  background: #2b96cc;
  color: #fff;
}
/* 2. header */
.header-area {
  padding-left: 85px;
  padding-right: 85px;
}
.header-right {
  display: flex;
  justify-content: center;
}
.header-right {
  padding-top:20px;
}
.header-icon {
  margin-right: 16px;
  font-size: 20px;
  line-height: 52px;
}
.header-cta p {
  font-size: 14px;
  margin-bottom: 9px;
  line-height: 1;
}
.header-cta h4 {
  color: #002650;
  font-size:18px;
  margin-bottom: 0px;
}
.header-icon i {
  color: var(--thm-primary);
  font-size: 30px;
}
.header-icon .fa-phone {
    transform: scaleX(-1);
}
.main-menu ul li {
  display: inline-block;
  margin: 0 12px;
  position: relative;
  z-index: 999;
}
.main-menu ul li a {
  color: #002650;
  font-weight: 700;
  font-size: 16px;
  padding:42px 0px 0;
  display: list-item;
  line-height: 1;
  position: relative;
  text-decoration: none;
}
/*.main-menu ul > li > a::before {
  background: #ff6136 none repeat scroll 0 0;
  bottom: 23px;
  content: "";
  height: 4px;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  width: 4px;
  opacity: 1;
  transition: 0.3s;
  top: 52px;
  border-radius: 5px;
  opacity: 0;
}*/
.main-menu ul>li:hover>a::before,.main-menu ul > li.active > a::before {
  opacity: 1;
}
.main-menu ul li:hover a,.main-menu ul li.active a {
  color: var(--thm-primary);
}
.header-top-btn a {
  padding: 16px 12px;
  font-size: 14px;
}
.header-top-btn {
  padding-top:20px;
}
.header-btn a {
  background: #6c5edf;
  padding: 20px 60px;
  border-radius: 30px;
  font-size: 18px;
  letter-spacing: 0;
  font-weight: 700;
  color: #fff;
}
.main-menu ul li ul.submenu {
	position: absolute;
	background: #fff;
	width: 230px;
	top: 110%;
	padding: 15px 0;
	transition: 0.3s;
	-webkit-transition: 0.3s;
	-moz-transition: 0.3s;
	-ms-transition: 0.3s;
	-o-transition: 0.3s;
	opacity: 0;
	visibility: hidden;
	box-shadow: 0 0 10px 3px rgba(0, 0, 0, 0.05);
	text-align: left;
}
.main-menu ul li:hover>ul.submenu {
  opacity: 1;
  visibility: visible;
  top: 100%;
}
.main-menu ul li ul.submenu li {
  margin: 0;
  display: block;
  margin-bottom: 0px;
}
.main-menu ul li ul.submenu li>a::before {
  background: transparent;
}
.main-menu ul li ul.submenu li:hover>a {
  color: #ff6136;
}
.main-menu ul li ul.submenu li:last-child {
  margin-bottom: 0;
}
.main-menu ul li ul.submenu li a {
	padding: 0;
	color: #90909a;
	font-weight: 500;
	font-size: 15px;
	padding: 12px 28px;
}
.main-menu ul li ul.submenu li ul.submenu {
  left: 100%;
  top: 0;
}
.header-btn a:hover {
  background: #ff63a3;
  color: #fff;
}
.sticky-bar {
	left: 0;
	margin: auto;
	position: fixed;
	top: 0;
	width: 100%;
	box-shadow: 0 0 60px 0 rgba(0, 0, 0, 0.07);
	z-index: 9999;
	-webkit-animation: 300ms ease-in-out 0s normal none 1 running fadeInDown;
	animation: 300ms ease-in-out 0s normal none 1 running fadeInDown;
	-webkit-box-shadow: 0 10px 15px rgba(25, 25, 25, 0.1);
	background: #fff;
}
.sticky-bar .header-cta h4 {
	color: #002650;
}
/*Main Banner*/
.main-banner {
	position:relative;
}
/* 3. slider */
.slider-height {
  min-height: 802px;
  background-repeat: no-repeat;
  background-size: cover;
}
.slider-area {
  position: relative;
  padding: 0 100px;
}
/*.slider-area::after {
  width: 840px;
  height: 130%;
  background: #002650;
  content: "";
  position: absolute;
  right: 0;
  top: -126px;
  z-index: -1;
}*/
.slider-img {
  margin-top: 35px;
  margin-left: -179px;
}
.slider-text.slider-content-space {
  margin-left: 178px;
  margin-top: 170px;
  margin-right: 103px;
}
.slider-text h5 {
  font-weight: 400;
  color: #fff;
  font-size: 24px;
}
.slider-text h2 {
	color: #fff;
	font-weight: 100;
	font-size: 120px;
	line-height: 1;
	margin-bottom: 34px;
	margin-left: -6px;
}
.slider-text h2>span {
  font-weight: 700;
}
.slider-btn a span::before {
  position: absolute;
  left: 19px;
  top: 29px;
  width: 23px;
  height: 2px;
  background: #fff;
  content: "";
}
.slider-btn a span::after {
  position: absolute;
  right: 19px;
  top: 29px;
  width: 23px;
  height: 2px;
  background: #fff;
  content: "";
}
a.btn.btn-border.line-btn::after {
  position: absolute;
  left: 17px;
  top: 28px;
  width: 23px;
  height: 2px;
  background: #fff;
  content: "";
}
.slider-text p {
  color: #fff;
  margin-bottom: 34px;
  margin-right: 20px;
}
.slider-btn a {
  margin-right: 25px;
  position: relative;
}
.slider-btn a:last-child {
  margin-right: 0px;
}
/*Sub Banner Start Here*/
.sub-banner-area {
  position: relative;
  padding:0 0px;
}
.sub-banner-height {
  min-height:320px;
  background-repeat: no-repeat;
  background-size: cover;
  padding-top: 130px;
}
.sub-banner-pb {
	padding-bottom:30px !important;
}

.sub-banner-area .block {
  text-align: center;
}
.sub-banner-area .block h1 {
  font-size: 2.5rem;
  color:#FFF;
  font-weight: 600;
}
.sub-banner-area .block ul li {
  color: #fff;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 16px;
}
.sub-banner-area .block ul li a {
  text-decoration:none;
  font-weight: 600;
  color: #fff;
}
.page-wrapper {
  padding: 70px 0;
}
.overly {
  position: relative;
}
.overly:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: #1d192c;
  opacity: 0.8;
}
/* section title */
.section-title {
  position: relative;
}
.section-title-content {
  margin-top: 0;
  position: absolute;
  left: 0;
  top: -47px;
  width: 100%;
  height: 100%;
}
.section-title-content.section-counter {
  top: 54px;
}
.section-pre-titles {
  margin-left: -10px;
}
.section-title .section-pre-titles h2 {
  -webkit-text-fill-color: transparent;
  font-size: 200px;
  color: #e1ecf4;
  -webkit-text-stroke-color: #e1ecf4;
  -webkit-text-stroke-width: 1px;
  -moz-text-stroke-color: #e1ecf4;
  -moz-text-stroke-width: 1px;
  -moz-text-fill-color: transparent;
  line-height: 90px;
  display: inline-block;
}
.section-pre-titles.titles-color h2 {
  -webkit-text-fill-color: transparent;
  color: #0b3564;
  -webkit-text-stroke-color: #0b3564;
  -webkit-text-stroke-width: 1px;
  -moz-text-stroke-color: #0b3564;
  -moz-text-stroke-width: 1px;
  -moz-text-fill-color: transparent;
}
.section-title span {
  color: #ff6136;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 16px;
  display: inline-block;
  z-index: 111;
  position: relative;
}
.section-title h2 {
  font-size: 80px;
  line-height: 1;
}
.bg-one {
	background:#f6f6fa;
}
/*About Us*/
.about {
  padding:70px 0;
  position: relative;
  z-index: 1;
}

.about:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.08;
  z-index: -1;
  background: url(../img/bg/about-bg-img.png);
  background-size: cover;
  background-position: center center;
}

.about-inner {
  margin-bottom: 30px;
}

.about-inner h6 {
  margin-bottom: 15px;
  color: #18ab63;
  background: rgba(24, 171, 99, 0.1);
  border-radius: 3px;
  display: inline-block;
  padding: 10px 18px;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 0.7rem;
  font-weight: 600;
}

.about-inner h4 {
  margin-bottom: 15px;
  font-size: 42px;
}

.about-inner p {
  margin-bottom: 20px;
  line-height: 32px;
	text-align: justify;
}
.about-inner p strong u{
	color: var(--thm-primary);
}

.about-inner blockquote {
  padding: 30px;
  border-radius: 3px;
  margin-bottom: 30px;
  position: relative;
  background: #fff;
  border-left: 4px solid #18ab63;
  -webkit-box-shadow: 0 23px 49px 0 rgba(59, 59, 152, 0.15);
          box-shadow: 0 23px 49px 0 rgba(59, 59, 152, 0.15);
}

.about-inner blockquote span {
  position: absolute;
  font-size: 40px;
  z-index: -6;
  opacity: 0.25;
  top: 15px;
  left: 30px;
  color: #18ab63;
}

.about-inner blockquote strong {
  color: #000;
  font-style: italic;
  font-weight: 700;
  font-family: "Poppins", sans-serif;
}

.about-inner blockquote p {
  margin-bottom: 10px;
  font-style: italic;
}

.about-img {
  position: relative;
  max-width: 100%;
  display: inline-block;
  margin-bottom: 30px;
  z-index: 6;
}

.about-img img {
  border-radius: 3px;
}

.about-inner ul {
	margin:0;
	padding:0;
}
.about-inner ul li {
	margin:0;
	padding:5px 0;
	color:#4b4e4f;
	text-align: justify;
}
.about-inner ul li::before {
    content: "\f058";
	margin-right: 10px;
	font-family: "Font Awesome 5 Pro";
	vertical-align: middle;
	display: inline-block;
	color: var(--thm-primary);
	font-weight: 400;
	font-size: 18px;
}
.about-inner ul li ul {
	margin:0 15px;
}

.about-img .video-btn {
  top: 50%;
  left: 50%;
  text-align: center;
  width: 80px;
  height: 80px;
  line-height: 80px;
  position: absolute;
  border-radius: 50%;
  font-size: 1rem;
  background: #18ab63;
  color: #fff;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.3);
          box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.3);
}

.about-img .video-btn:hover {
  background: #127e49;
  color: #fff;
  -webkit-transform: translate(-50%, -50%) scale(1.15);
          transform: translate(-50%, -50%) scale(1.15);
  -webkit-box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.3), 0 0 0 20px rgba(255, 255, 255, 0.4);
          box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.3), 0 0 0 20px rgba(255, 255, 255, 0.4);
}

.about-img .experience-badge {
  position: absolute;
  top: -20px;
  right: 20px;
  border-radius: 5px 5px;
  background: #18ab63;
  -webkit-box-shadow: 0 23px 49px 0 rgba(59, 59, 152, 0.15);
          box-shadow: 0 23px 49px 0 rgba(59, 59, 152, 0.15);
}
.pedagogy-include-box {
  width: 100%;
}
.pedagogy-include-list {
	overflow: hidden;
  	margin: 0;
  	padding: 0;
}
.pedagogy-include-list li {
  list-style: none;
  float: left;
  text-align:left;
  width: 50%; /* fallback for non-calc() browsers */
  width: calc(100% / 2);
  box-sizing: border-box;
  padding:5px 0;
}
.pedagogy-include-list li:before {
    content: "\f058";
	margin-right: 10px;
	font-family: "Font Awesome 5 Pro";
	vertical-align: middle;
	display: inline-block;
	color: var(--thm-primary);
	font-weight: 400;
	font-size: 18px;
}
.about-img .experience-badge::after {
  content: "";
  position: absolute;
  top: -30px;
  left: -28px;
  border: 30px solid;
  z-index: -6;
  border-color: transparent transparent #18ab63 transparent;
}

.about-img .experience-badge .year {
  padding: 20px;
  display: block;
  text-align: center;
  font-size: 48px;
  font-weight: bold;
  color: #fff;
}

.about-img .experience-badge .text {
  display: block;
  padding: 10px 20px;
  text-align: center;
  color: #fff;
  letter-spacing: 2px;
  font-size: 14px;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.1);
}

/* ---------------------------------------------------------------- */
/* Responsive Media Query
 * Extra Small devices (portrait phones, less than 575px)
/* ---------------------------------------------------------------- */
@media only screen and (max-width: 575.98px) {
  .about-img .experience-badge {
    display: none;
  }
}
/* ---------------------------------------------------------------- */
/* 12.Services                                                
/* ---------------------------------------------------------------- */
.services-box {
  z-index: 11;
  padding: 30px;
  text-align: left;
  position: relative;
  overflow: hidden;
  border-radius: 5px;
  margin-bottom: 30px;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  background: #fff;
  min-height:410px;
  -webkit-box-shadow: 0 23px 49px 0 rgba(59, 59, 152, 0.15);
          box-shadow: 0 23px 49px 0 rgba(59, 59, 152, 0.15);
}

.services-box .services-icon  {
  position: relative;
  display: inline-block;
  width: 80px;
  height:80px;
}
.services-box .services-body h5 {
  margin-top: 25px;
  margin-bottom: 15px;
}

.services-box .services-body p {
  margin-bottom: 30px;
}

.services-box:after, .services-box:before {
  width: 250px;
  height: 250px;
  content: "";
  top: -15px;
  right: -100%;
  z-index: -11;
  border-radius: 50%;
  position: absolute;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  background: rgba(255, 255, 255, 0.08);
}

.services-box:after {
  -webkit-transition-delay: 0;
          transition-delay: 0;
}

.services-box:hover {
  background: #033f86;
}

.services-box:hover:after {
  top: -50px;
  right: -130px;
  -webkit-transition-delay: 0.5s;
          transition-delay: 0.5s;
}

.services-box:hover:before {
  top: -30px;
  right: -150px;
}

.services-box:hover .services-body h5 {
  color: #fff;
}

.services-box:hover .services-body p {
  color: #fff;
  opacity: 0.8;
}
/* ---------------------------------------------------------------- */
/* 14.Skills                                       
/* ---------------------------------------------------------------- */
#online-classes {
  padding:60px 0;
  position: relative;
}

#online-classes .online-classes-bg {
  top: 0;
  left: 0;
  width: 50%;
  width: calc(50% - 15px);
  height: 100%;
  overflow: hidden;
  position: absolute;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.online-classes-inner-wrap {
  padding-left: 50px;
}

.online-classes-inner-wrap .online-classes-inner > h6 {
  font-style: italic;
  color:var(--thm-primary);
  margin-bottom: 10px;
  text-transform: capitalize;
}

.online-classes-inner-wrap .online-classes-inner > h6:before {
  content: "";
  width: 20px;
  height: 2px;
  vertical-align: middle;
  margin-right: 10px;
  background:var(--thm-primary);
  display: inline-block;
}

.online-classes-inner-wrap .online-classes-inner h2 {
  margin-bottom:10px;
}
.online-classes-inner-wrap .online-classes-inner h4 {
  margin-bottom:10px;
}
.online-classes-inner-wrap .online-classes-inner p {
  margin-bottom:15px;
  text-align: justify;
}
.online-classes-inner-wrap .online-classes-inner ul {
	margin:0;
	padding:0;
}
.online-classes-inner-wrap .online-classes-inner ul li {
	margin:0;
	padding:5px 0;
	color:#4b4e4f;
}
.online-classes-inner-wrap .online-classes-inner ul li::before {
    content: "\f00c";
	margin-right: 10px;
	font-family: "Font Awesome 5 Pro";
	vertical-align: middle;
	display: inline-block;
	color: var(--thm-primary);
	font-weight: 100;
}
.online-classes-inner-wrap .online-classes-inner ul li ul {
	margin:0 15px;
}

/* ---------------------------------------------------------------- */
/* Responsive Media Query (992px)
/* ---------------------------------------------------------------- */
@media only screen and (max-width: 991.98px) {
  .online-classes-inner-wrap {
    padding-left: 15px;
  }
  .online-classes-inner-wrap .online-classes-bg {
    display: none;
  }
}

/* ---------------------------------------------------------------- */
/* Responsive Media Query (less than 576px)
/* ---------------------------------------------------------------- */
@media only screen and (max-width: 575.98px) {
  .online-classes-inner-wrap .online-classes-inner h2 {
    font-size: 28px;
  }
	.online-classes-inner-wrap .online-classes-bg {
    display: none;
  }
	.online-classes-bg {
    display: none;
  }
}

.assessment-process {
	background:#f6f6fa;
	position:relative;
}
.assessment-process h2 {
	color:#18ab63;
	margin-bottom: 15px;
	font-size: 36px;
}
.assessment-process .text-block {
	padding-left: 5px;
	padding-right: 20px;
	margin-bottom: 40px;
}
.assessment-process .text-block ul {
	margin:0;
	padding:0;
}
.assessment-process .text-block ul li {
	margin:0;
	padding:5px 0;
}
.assessment-process .text-block ul li:before {
    content: "\f058";
	margin-right: 10px;
	font-family: "Font Awesome 5 Pro";
	vertical-align: middle;
	display: inline-block;
	color: var(--thm-primary);
	font-weight: 100;
}
.assessment-process .text-block p {
	text-align:justify;
}
.assessment-process .img-block {
	padding-left: 20px;
	padding-right: 5px;
	margin-bottom: 40px;
	text-align: center;
}

/*Video Section*/
.aa-video {
	position:relative;
}
.aa-video h2 {
	color:#18ab63;
	margin-bottom: 15px;
	font-size: 36px;
}
.aa-video .text-block {
	padding-left: 5px;
	padding-right: 20px;
	margin-bottom: 40px;
}
.aa-video .text-block p {
	text-align:justify;
}
.aa-video .text-block p strong{
	color:red;
	font-size:18px;
}
.aa-video .img-block {
	padding-left: 20px;
	padding-right: 5px;
	margin-bottom: 40px;
	text-align: center;
}
.video-btn {
    display: inline-block;
    text-align: center;
    color: #fff;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    border-radius: 100%;
	background-color: #00b050;
	width:80px;
	height:80px;
	line-height:80px;
}
.video-btn a {
	color: #fff;
}
/*Contact Us*/
.contact-info-box:hover {
	background:var(--thm-primary);
}
.contact-info-box:hover .contact-info-box i {
	background:#fff;
}
.contact-info-box:hover i {
    color: var(--thm-primary) !important;
    background-color: #fff !important;
} 
.contact-info-box:hover p{
    color: #fff;
}
.contact-info-box:hover p strong, .contact-info-box:hover p span{
color: #fff;
}
.contact-info-box:hover h2{
	color:#ffdb17;
}
.contact-info-box {
	background: #fff;
	padding: 30px 0;
	text-align: center;
	max-width: 310px;
	margin: 0 auto;
	min-height:360px;
}
.contact-info-box h2 {
	font-size: 24px;
text-transform: uppercase;
padding-bottom: 10px;
}
.contact-info-box i {
	height: 75px;
	width: 75px;
	color: #fff;
	background: var(--thm-primary);
	border-radius: 50%;
	line-height: 75px;
	font-size: 30px;
	margin-bottom: 25px;
	display: inline-block;
}
.contact-info-box h6 {
	line-height: 26px;
}
.contact-info-box p strong{
	color:#074b9b;
	font-size: 22px;
}
.contact-info-box p span{
	color: #df0000;
font-size: 18px;
}

/*Footer Section Start Here*/
.site-footer-home2 {
    background-color: transparent;
    background-image:linear-gradient(145deg,#011f42 0%,#033f86 100%);
    padding: 250px 0 0px 0;
    position: relative;
}
.site-footer-home2 .shape {
    z-index: 1;
}
.shape-top, .shape-top-2 {
    top: -1px;
}
.shape {
    overflow: hidden;
    position: absolute;
    left: 0;
    width: 100%;
    line-height: 0;
    direction: ltr;
    z-index: -1;
}
.shape-fill {
    fill: #fff;
    -webkit-transform-origin: center;
    -ms-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotateY(0deg);
    transform: rotateY(0deg);
}
.footer-widget h5 {
    font-size: 25px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #fff;
    display: block;
    padding-bottom: 15px;
    position: relative;
}
.footer-widget h5:before {
    left: 0;
    bottom: 0;
    opacity: 0.7;
    background-color: #fff;
    height: 2px;
    width: 40px;
    content: "";
    position: absolute;
    border-radius: 25px;
}
.footer-widget h5 strong {
	font-size: 16px;
	font-weight: 500;
	display: block;
}
.ft-menu-list li {
    margin-bottom: 15px;
    display: block;
}
.ft-menu-list a {
    font-size: 16px;
    color: #fff;
    font-weight: 400;
    opacity: 0.7;
	text-decoration: none;
}
.ft-menu-list a:hover {
    color: #fff;
    opacity: 1;
}
.ft-menu-list  li:hover a {
    color: #fff;
    padding-left: 5px;
}
.footer-widget p {
    color: #fff;
    opacity: 0.7;
    font-size: 16px;
	text-align: justify;
}
.footer-widget p .fa-phone {
    transform: scaleX(-1);
}
.footer-widget .logo {
    position: relative;
    margin-bottom: 18px;
}
.footer-widget .social-box{
	position:relative;
}

.footer-widget .social-box a{
	position:relative;
	font-size:20px;
	color:#fff;
	margin-right:20px;
	text-decoration: none;
	-webkit-transition:all 300ms ease;
	-ms-transition:all 300ms ease;
	-o-transition:all 300ms ease;
	-moz-transition:all 300ms ease;
	transition:all 300ms ease;
	opacity: 0.7;
}

.footer-widget .social-box a:hover{
	color:#00ab15;
}
.footer_url {
    margin: 0;
    padding: 0; 
}
.footer_url  li {
    display: block;
    margin-bottom: 20px;
}
.footer_url  li i {
    padding-right: 15px;
    font-size: 20px;
    color: #fff;
    opacity: 01 !important;
}
.footer_url  li a {
    font-size: 16px;
    color: #fff;
    font-weight: 400;
	opacity: 0.7;
	text-decoration: none;
}
.footer_url  li:hover a {
    color: #fff;
    padding-left: 5px;
}
.footer-widget .subscribe-inner-form {
    position: relative;
    margin-top: 30px;
}
.footer-widget .subscribe-inner-form input {
    height: 50px;
    width: 100%;
    border-radius: 50px;
    padding: 15px 55px 15px 30px;
    border: none !important;
    box-shadow: 8px 8px 25px 0px rgba(42, 67, 113, 0.15);
    -webkit-box-shadow: 8px 8px 25px 0px rgba(42, 67, 113, 0.15);
    -moz-box-shadow: 8px 8px 25px 0px rgba(42, 67, 113, 0.15);
}
.footer-widget .subscribe-inner-form .subscribe-btn-icon {
    position: absolute;
    right: 0px;
    top: 0px;
    height: 50px;
    width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}
.site-footer-home2 .footer_after {
    border-top: 1px solid #cdc3d6;
    margin-top: 60px;
}
.site-footer-home2 .footer_after p {
    color: #cdc3d6;
}
.site-footer-home2 .footer_after a {
    color: #fff;
    opacity: 1;
}
/*Footer 2 Section Start Here*/