
 :root
 {
    --primary-color: #750525;  
    --secondary-color: #a4842a;
 }

/* ===== Scrollbar CSS ===== */
/* Firefox */
* {
  scrollbar-width: thin;
  scrollbar-color: #750525 #ffffff;

}

/* Chrome, Edge, and Safari */
*::-webkit-scrollbar {
  width: 9px;
}

*::-webkit-scrollbar-track {
  background: #ffffff;
}

*::-webkit-scrollbar-thumb {
  background-color: #750525;
  border-radius: 5px;
  border: 0px solid #ffffff;
}

.d-flex {
  display: flex;
}

.flex-wrap {
  flex-wrap: wrap;
}

.flex-column {
  flex-direction: column;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}

/* ================================================== */
/* 01. General Style */
/* ================================================== */
@import url("https://fonts.googleapis.com/css?family=Roboto:300,400,500,700");

body {
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  color: #333;
  line-height: 26px;
}

/*---Typography---*/

h1,
h2,
h3,
h4,
h5,
h6 {
  padding: 0px;
  margin: 0px;

  color: #24353b;
}

h1 {
  font-size: 46px;
}

h2 {
  font-size: 36px;
}

h3 {
  font-size: 30px;
}

h4 {
  font-size: 24px;
}

h5 {
  font-size: 18px;
}

h6 {
  font-size: 14px;
}

p {
  padding: 0px;
  margin: 0px;
}

ol,
ul {
  margin-bottom: 0px;
}

a {
  text-decoration: none !important;
  outline: none;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  -webkit-transition: all 0.3s ease 0s;
  -ms-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

label {
  font-weight: normal;
}

::-webkit-input-placeholder {
  opacity: 1;
  color:black !important;
  
}

:-moz-placeholder {
  /* Firefox 18- */
  opacity: 1;
  text-transform: uppercase;
}

::-moz-placeholder {
  /* Firefox 19+ */
  opacity: 1;
  text-transform: uppercase;
}

:-ms-input-placeholder {
  opacity: 1;
  text-transform: uppercase;
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
}

video
{
    max-width: 100% !important;
}
/*-----------------------
    Page Loader
  -----------------------*/
#loading {
  width: 100%;
  height: 100%;
  position: fixed;
  z-index: 99999;
  background: #fff;
}

/*#loading .element {*/
/*  position: absolute;*/
/*  margin: 0 auto;*/
/*  left: 0px;*/
/*  right: 0px;*/
/*  top: 50%;*/
/*}*/

/*.sk-folding-cube {*/
/*  margin: 20px auto;*/
/*  width: 40px;*/
/*  height: 40px;*/
/*  position: relative;*/
/*  -webkit-transform: rotateZ(45deg);*/
/*  transform: rotateZ(45deg);*/
/*}*/

#loading {
  width: 100%;
  height: 100%;
  position: fixed;
  z-index: 99999;
  background: #fff;
}

#loading .element {
  position: absolute;
  margin: auto;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.sk-folding-cube .sk-cube {
  float: left;
  width: 50%;
  height: 50%;
  position: relative;
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}

.sk-folding-cube .sk-cube:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--primary-color);
  -webkit-animation: sk-foldCubeAngle 2.4s infinite linear both;
  animation: sk-foldCubeAngle 2.4s infinite linear both;
  -webkit-transform-origin: 100% 100%;
  -ms-transform-origin: 100% 100%;
  transform-origin: 100% 100%;
}

.sk-folding-cube .sk-cube2 {
  -webkit-transform: scale(1.1) rotateZ(90deg);
  transform: scale(1.1) rotateZ(90deg);
}

.sk-folding-cube .sk-cube3 {
  -webkit-transform: scale(1.1) rotateZ(180deg);
  transform: scale(1.1) rotateZ(180deg);
}

.sk-folding-cube .sk-cube4 {
  -webkit-transform: scale(1.1) rotateZ(270deg);
  transform: scale(1.1) rotateZ(270deg);
}

.sk-folding-cube .sk-cube2:before {
  -webkit-animation-delay: 0.3s;
  animation-delay: 0.3s;
}

.sk-folding-cube .sk-cube3:before {
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
}

.sk-folding-cube .sk-cube4:before {
  -webkit-animation-delay: 0.9s;
  animation-delay: 0.9s;
}

@-webkit-keyframes sk-foldCubeAngle {
  0%,
  10% {
    -webkit-transform: perspective(140px) rotateX(-180deg);
    transform: perspective(140px) rotateX(-180deg);
    opacity: 0;
  }

  25%,
  75% {
    -webkit-transform: perspective(140px) rotateX(0deg);
    transform: perspective(140px) rotateX(0deg);
    opacity: 1;
  }

  90%,
  100% {
    -webkit-transform: perspective(140px) rotateY(180deg);
    transform: perspective(140px) rotateY(180deg);
    opacity: 0;
  }
}

@keyframes sk-foldCubeAngle {
  0%,
  10% {
    -webkit-transform: perspective(140px) rotateX(-180deg);
    transform: perspective(140px) rotateX(-180deg);
    opacity: 0;
  }

  25%,
  75% {
    -webkit-transform: perspective(140px) rotateX(0deg);
    transform: perspective(140px) rotateX(0deg);
    opacity: 1;
  }

  90%,
  100% {
    -webkit-transform: perspective(140px) rotateY(180deg);
    transform: perspective(140px) rotateY(180deg);
    opacity: 0;
  }
}

/* ================================================== */
/* 02. header	*/
/* ================================================== */
.header-top {
  display: block;
  background: #750525;
}

.header-top ul.follow-us {
  display: block;
  padding-block: 2px;
  float: left;
}

.header-top ul.follow-us li {
  display: inline-block;
  padding-right: 20px;
  font-size: 18px;
}

.header-top ul.follow-us li a {
  color: #fff;
  font-size: 14px;
}

.header-top ul.follow-us li a:hover {
  color: #fff;
}

.header-top .right-block {
  display: block;
  float: right;
}

.header-top ul.top-nav {
  display: block;
  padding-block: 2px;
  padding-right: 10px;
  float: left;
}

.header-top ul.top-nav li {
  display: block;
  padding: 0 13px;
  float: left;
  font-size: 11px;
}

.header-top ul.top-nav li a {
  color: #fff;
  font-size: 15px;
}

.header-top ul.top-nav li a i {
  font-size: 17px;
}

.header-top ul.top-nav li a:hover {
  color: #fff;
}

.header-top .lang-wrapper {
  display: block;
  float: right;
}

.header-top .select-lang,
.header-top .select-lang2 {
  display: block;
  float: left;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.header-top .select-lang {
  margin-left: 1px;
}

.header-top .select2-container--default .select2-selection--single {
  border: none;
  border-radius: 0px;
  background: #302c2d;
}

.header-top .select2.select2-container {
  width: 100px !important;
}

.header-top .select2-container .select2-selection--single {
  height: 42px;
}

.header-top
  .select2-container--default
  .select2-selection--single
  .select2-selection__rendered {
  line-height: 42px;
}

.header-top
  .select2-container
  .select2-selection--single
  .select2-selection__rendered {
  padding-left: 16px;
  color: #fff;
}

.header-top
  .select2-container
  .select2-selection--single
  .select2-selection__rendered
  img {
  margin-right: 4px;
}

.header-top
  .select2-container--default
  .select2-selection--single
  .select2-selection__arrow {
  width: 30px;
  height: 42px;
}

.select2-container--open .select2-dropdown--below {
  border-radius: 0px;
}

.select2-container--default
  .select2-selection--single
  .select2-selection__arrow
  b {
  border-width: 6px 5px 0;
  border-color: #c1c0c0 transparent transparent;
}

.select2-container--default.select2-container--open
  .select2-selection--single
  .select2-selection__arrow
  b {
  border-width: 0 5px 6px;
}

.select2-dropdown {
  border: 1px #dedddd solid;
}

.select2-results__option {
  padding: 0 6px;
  font-size: 13px;
}

.select2-results__option .img-flag {
  margin-right: 4px;
}

.select2-container--default
  .select2-results__option--highlighted[aria-selected] {
  background: #ff9600;
}

.header-middle {
  padding-top: 20px;
  padding-bottom: 20px;
}

.header-middle .contact {
  display: block;
  padding: 8px 0 0 0;
  float: right;
}

.header-middle .contact ul {
  display: block;
  padding-right: 32px;
  float: left;
}

.header-middle .contact ul li {
  display: block;
  padding: 0 30px;
  border-right: 1px #dedddd solid;
  float: left;
  font-family: "texgyreadventorbold";
  font-size: 18px;
  color: #4f4a4a;
  line-height: 18px;
}

.header-middle .contact ul li span {
  display: block;
  font-family: "Roboto", sans-serif;
  font-size: 12px;
  color: #8f9ba1;
  text-transform: uppercase;
}

.header-middle .contact ul li a {
  color: #4f4a4a;
}

.header-middle .contact ul li a:hover {
  color: #ff9600;
}

.header-middle a.login {
  display: inline-block;
  padding: 5px 20px;
  border: 2px #2c97ea solid;
  border-radius: 5px;
  font-size: 12px;
  color: #6f7a7f;
  font-weight: 700;
}

.header-middle a.login:hover {
  background: #2c97ea;
  color: #fff;
}

.header-middle a.login span {
  display: inline-block;
  vertical-align: middle;
  margin-top: -2px;
  margin-left: 10px;
  font-size: 14px;
  color: #00aaff;
}

.header-middle a.login:hover span {
  color: #fff;
}

/* Hide the top bar on scroll */
.fixed-top {
  position: fixed;
  top: -100px;
  transition: top 0.3s;
}

.fixed-top.show {
  top: 0;
}

/* Navbar styles */
nav {
  position: relative;
}

nav.sticky {
  position: fixed;
  top: -70px;
  left: 0;
  right: 0;
  z-index: 9999;
  background-color: #fff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: top 0.3s;
}

nav.sticky.show {
  top: 0;
}

/* Add a sliding down effect */
nav.sticky.slide-down {
  -webkit-animation: slide-down 0.4s ease-out;
  animation: slide-down 0.4s ease-out;
}

@-webkit-keyframes slide-down {
  0% {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }

  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes slide-down {
  0% {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }

  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

/* ================================================== */
/* 03. navigation */
/* ================================================== */
.navbar {
  border-radius: 0px;
  margin: 0px;
  border: none;
}

.navbar-collapse {
  padding: 0px;
}

.navbar-inverse {
  background: #fff;
}

.navbar-header {
  justify-content: space-between;
  align-items: center;
  padding-block: 5px;
  padding-inline: 2px;
}

.nav > li > a {
  padding: 19px 16px;
}

.navbar-nav {
  padding-top: 5px;
}

.navbar-nav > li {
  /* border-right: 1px #5fc078 solid; */
}

.navbar-nav > li > a {
  text-transform: uppercase;
}

.navbar-nav > li:last-child {
  border: none;
}

.navbar-nav {
  float: right;
}

.nav-logo-link {
  align-items: center;
  padding-top: 5px;
}

.nav-logo-link img {
  width: 30%;
  padding-bottom: 8px;
  display: inline;
}
.navbar-inverse .navbar-nav > li > a {
  font-family: "texgyreadventorbold";
  font-size: 13px;
  color: #000;
}

.navbar-inverse .navbar-nav > li > a i {
  font-size: 14px;
  color: var(--primary-color);
}

.logo-text {
  color: var(--primary-color);
  text-align: left !important;
  font-family: gargoyle_ssiregular !important;
  text-transform: none !important;
  font-weight: 600;
  padding-left: 18px;
  display: inline;
}

.logo-text-sm-head {
  padding: 0;
  margin: 0 0 5px;
  font-weight: 500;
  letter-spacing: 0.5px;
  line-height: 14px;
  font-size: 14px;
  color: var(--primary-color);
  font-style: italic;
  text-align: right;
  display: block;
}

.navbar-inverse .navbar-nav > .open > a,
.navbar-inverse .navbar-nav > .open > a:focus,
.navbar-inverse .navbar-nav > .open > a:hover {
  color: var(--primary-color);
  background: transparent;
}

.navbar-inverse .navbar-nav > li > a:focus,
.navbar-inverse .navbar-nav > li > a:hover {
  color: var(--primary-color);
}

.navbar-form {
  width: 30%;
  padding: 0 25px;
  background: #4ab866;
  margin: 0px;
  position: relative;
}

.navbar-form .form-control {
  width: 100%;
  margin: 12px 0;
  padding-left: 0px;
  height: 34px;
  background: none;
  border-radius: 0px;
  box-shadow: none;
  border-bottom: 1px #a5dcb3 solid !important;
  border: none;
  font-size: 12px;
  color: #b4ddbd;
  text-transform: uppercase;
}

.navbar-form .form-control::-webkit-input-placeholder {
  color: #fff;
}

.navbar-form .form-control:-moz-placeholder {
  /* Firefox 18- */
  color: #fff;
}

.navbar-form .form-control::-moz-placeholder {
  /* Firefox 19+ */
  color: #fff;
}

.navbar-form .form-control:-ms-input-placeholder {
  color: #fff;
}

.navbar-form .search-btn {
  display: block;
  border: none;
  position: absolute;
  right: 25px;
  top: 18px;
  background: none;
  font-size: 16px;
  color: #fff;
}

.navbar .dropdown-menu {
  min-width: 260px;
  padding: 0px;
  border: none;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  border-radius: 0px;
  border-top: 4px var(--primary-color) solid;
}

.navbar .dropdown-menu:after {
  bottom: 100%;
  left: 40px;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  border-color: rgba(255, 150, 0, 0);
  border-bottom-color: var(--primary-color);
  border-width: 10px;
}

.navbar .dropdown-menu > li > a {
  padding: 7px 15px;
}

.navbar .dropdown-menu > li > a:focus,
.navbar .dropdown-menu > li > a:hover {
  background: var(--primary-color);
  color: #fff;
}

/* ================================================== */
/* 04. home page sections */
/* ================================================== */

/*-----------------------
    banner 1
  -----------------------*/
.banner-outer {
  display: block;
  position: relative;
  overflow-x: hidden;
}

.banner-slider .container {
  display: table;
  height: 100%;
}

.banner-outer .slide2 .content h1 {
  font-family: gargoyle_ssiregular !important;
  text-shadow: 1px 1px #ffffff;
  font-weight: 600;
  text-transform: none !important;
  color: var(--primary-color) !important;
}

.banner-outer .slide1,
.banner-outer .slide2,
.banner-outer .slide3,
.banner-outer .slide4,
.banner-outer .slide5,
.banner-outer .slide6{
  display: block;
  height: 100vh;
}

.banner-outer .slide1 {
  background: url(../images/1.webp) no-repeat;
  background-position: 100% 135%;
  background-size: cover;
}

.banner-outer .slide2 {
  background: url(../images/2.webp) no-repeat;
  background-position: 50% 135%;
  background-size: cover;
}

.banner-outer .slide3 {
  background: url(../images/3.webp) no-repeat;
  background-position: 100% 65%;
  background-size: cover;
}

.banner-outer .slide4 {
  background: url(../images/4.webp) no-repeat;
  background-position: 100% 65%;
  background-size: cover;
}
.banner-outer .slide5 {
  background: url(../images/5.webp) no-repeat;
  background-position: 100% 65%;
  background-size: cover;
}
.banner-outer .slide6 {
  background: url(../images/6.webp) no-repeat;
  background-position: 100% 65%;
  background-size: cover;
}

.banner-outer .content {
  display: table-cell;
  vertical-align: middle;
}

.banner-slider .content .fl-right {
  float: right;
  text-shadow: 2px 1px black;
}

.banner-outer .content h1 {
  display: block;
  padding-bottom: 20px;
  font-family: "Pacifico", cursive;
  line-height: 50px;
  -webkit-animation-delay: 0.2s;
}

.banner-outer .content h1 span {
  display: block;
  text-shadow: white 2px 2px;
  font-size: 62px;
  color: var(--primary-color);
  -webkit-animation-delay: 0.3s;
}

.banner-outer .content p {
  display: block;
  padding-bottom: 25px;
  max-width: 390px;
  font-size: 19px;
  color: #ffffff;
  opacity: 0.8;
  -webkit-animation-delay: 0.34s;
}

.banner-outer .content a.btn {
  -webkit-animation-delay: 0.36s;
}

.banner-outer .slide2 .content a.btn {
  margin: 0 10px;
}

.banner-outer .slide2 .content {
  float: none;
  text-align: center;
}

.banner-outer .slide1 .content p,
.banner-outer .slide3 .content p,
.banner-outer .slide4 .content p,
.banner-outer .slide5 .content p,
.banner-outer .slide6 .content p{
  color: var(--primary-color);
  text-shadow: none;
  background: #ffffff;
  padding: 15px;
  border-radius: 15px;
}
.banner-outer .slide2 .content p {
  color: var(--primary-color);
  text-shadow: none;
  background: white;
  padding: 15px;
  border-radius: 15px;
  margin: 0 auto;
}

.banner-outer .slide3 .content h1, .slide4 .content h1 {
  font-family: "Pacifico", cursive;
  display: block;
  text-shadow: var(--primary-color) 3px 3px;
  font-size: 62px;
  color: #ffffff;
}

.banner-outer .slide2 .content p {
  color: var(--primary-color);
  font-size: 19px;
}

.btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 4px;
  background: var(--primary-color);
  font-family: "texgyreadventorbold";
  font-size: 14px;
  color: #fff;
  text-transform: uppercase;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  -webkit-transition: all 0.3s ease 0s;
  -ms-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.btn span {
  margin-left: 8px;
  display: inline-block;
  vertical-align: middle;
  margin-top: -3px;
  content: "";
  opacity: 0.5;
}

.btn:hover,
.btn:focus {
  background: #2c97ea;
  color: #fff;
}

.btn.white {
  background: #fff;
  color: #595545;
}

.btn.white:hover {
  background: #2c97ea;
  color: #fff;
}

.btn.blue {
  background: #2c97ea;
  color: #fff;
}

.btn.blue:hover {
  background: #17a43b;
}

.banner-outer .bx-wrapper .bx-pager {
  bottom: 60px;
  position: absolute;
  width: 100%;
  text-align: center;
  z-index: 999;
}

.banner-outer .bx-wrapper .bx-pager .bx-pager-item {
  display: inline-block;
}

.banner-outer .bx-wrapper .bx-pager a {
  background: #fff;
  border-radius: 2px;
  display: block;
  height: 5px;
  margin: 0 4px;
  outline: 0 none;
  text-indent: -9999px;
  width: 18px;
  opacity: 0.3;
}

.banner-outer .bx-wrapper .bx-pager a:hover,
.banner-outer .bx-wrapper .bx-pager a.active {
  background: #fff;
  opacity: 1;
}

/*-----------------------
    about
  -----------------------*/

.icon-row {
  justify-content: center;
  padding-top: 65px;
}

.icon1 {
  margin-top: 20px;
}

.icon1 img {
  width: 71px;
  height: 70px;
}

.icon1-text p {
  padding-block: 10px;
  font-size: 14px;
  line-height: 1.4;
  font-family: "Roboto", sans-serif;
}

.icon1-text span a {
  text-align: left;
  color: var(--primary-color);
}

.icon1-heading {
  padding-block: 10px;
  font-size: 18px;
  color: var(--primary-color);
  font-family: "Roboto", sans-serif;
}

div.icon-row > div {
  text-align: center;
  border-color: #ffffff;
  -webkit-box-shadow: 0px 5px 83px 0px rgb(9 29 62 / 15%);
  box-shadow: 0px 5px 83px 0px rgb(9 29 62 / 15%);
  margin-inline: 15px;
  padding: 30px 15px;
}

div.icon-row > div:hover {
  border-color: #ffffff;
  -webkit-box-shadow: 0px 5px 83px 0px rgb(9 29 62 / 15%);
  box-shadow: 0px 5px 83px 0px rgb(9 29 62 / 15%);
}

.about {
  display: block;
  position: relative;
  padding: 180px 0 100px 0;
  background: url(../images/about-bg.webp) no-repeat center bottom;
}

.sec-heading {
  color: var(--primary-color);
  text-transform: none !important;
  font-weight: 600;
  font-size: 48px;
  padding-bottom: 75px !important;
}

.about ul.our-links {
  display: block;
  margin: -280px 0 0 0;
  position: relative;
  z-index: 99;
}

.about ul.our-links li {
  display: block;
  position: relative;
}

.about ul.our-links li.apply-online {
  background: #ff9600;
}

.about ul.our-links li.prospects .detail a.more {
  border: 2px #ff9600 solid;
  color: #ff9600;
}

.about ul.our-links li.prospects {
  background: #2c97ea;
}

.about ul.our-links li.prospects .detail a.more {
  border: 2px #2c97ea solid;
  color: #2c97ea;
}

.about ul.our-links li.certification {
  background: #f0bc01;
}

.about ul.our-links li.certification .detail a.more {
  border: 2px #f0bc01 solid;
  color: #f0bc01;
}

.about ul.our-links li {
  display: block !important;
  padding: 44px 10px 60px 4%;
  opacity: 1 !important;
}

.about ul.our-links li p {
  padding-bottom: 0px;
}

.about ul.our-links li .icon {
  width: 23%;
  float: left;
}

.about ul.our-links li .detail {
  width: 60%;
  padding-left: 20px;
  float: left;
  color: #fff;
}

.about ul.our-links li .detail h3 {
  display: block;
  padding-bottom: 10px;
  font-family: "texgyreadventorbold";
  font-size: 24px;
  color: #fff;
  text-transform: uppercase;
}

.about ul.our-links li .detail h3 span {
  display: block;
  font-size: 12px;
}

.about ul.our-links li .detail p {
  display: block;
  font-size: 12px;
  line-height: 16px;
  color: #fff;
}

.about ul.our-links li .detail a.more {
  display: inline-block;
  width: 38px;
  height: 38px;
  line-height: 34px;
  position: absolute;
  bottom: -17px;
  margin: 0 auto;
  left: 0;
  right: 0;
  background: #fff;
  font-size: 20px;
  color: #ff9600;
  border-radius: 50%;
  text-align: center;
  border: 2px #ff9600 solid;
}

.about ul.our-links li .detail a.more:hover {
  color: #211d1e;
}

.about .sm-head {
  padding: 0;
  margin: 0 0 5px;
  font-weight: 500;
  letter-spacing: 0.5px;
  font-size: 16px;
  color: var(--primary-color);
  font-style: italic;
  text-align: right;
  display: block;
}

.button2 {
  display: inline-block;
  vertical-align: middle;
  position: relative;
  background: none;
  border: 1px solid var(--primary-color);
  -webkit-transition-property: color;
  transition-property: color;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  padding: 12px 30px;
  font-size: 13px;
  text-transform: uppercase;
  color: var(--primary-color);
  font-weight: normal;
  border-radius: 0px;
}

.button2:hover {
  background: var(--primary-color);
  color: #fff;
  border: 1px solid var(--primary-color);
}

.button4 {
  display: inline-block;
  vertical-align: middle;
  position: relative;
  background: none;
  border: 1px solid var(--primary-color);
  -webkit-transition-property: color;
  transition-property: color;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  padding: 5px 10px;
  font-size: 13px;

  color: var(--primary-color);
  font-weight: normal;
  border-radius: 0px;
  margin-top: 10px;
}

.button3 {
  display: inline-block;
  vertical-align: middle;
  position: relative;
  background: var(--primary-color);
  border: 1px solid var(--primary-color);
  -webkit-transition-property: color;
  transition-property: color;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  padding: 5px 15px;
  font-size: 13px;

  color: #fff;
  font-weight: normal;
  border-radius: 2px;
  font-weight: 600;
}

.heading {
  display: inline-block;
}

.about .left-block {
  display: block;
}

.video-block {
  /*
    height: 0;
    overflow: hidden;
    padding-bottom: 56.25%;
  */
  text-align: center;
  position: relative;
}

/*
  .video-block iframe, .video-block object, .video-block embed {
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
  }
  #thumbnail_container {
    overflow: hidden;
    width: 100%;
  }
  */
.about .video-block img {
  width: 70%;
}

.about .video-block a {
  width: 67px;
  display: block;
  position: absolute;
  margin: -34px auto 0;
  left: 0px;
  right: 0px;
  top: 50%;
  cursor: pointer;
}

.heading h2 {
  padding-bottom: 0px !important;
  color: var(--primary-color);
  text-align: left !important;
  font-family: gargoyle_ssiregular !important;
  text-transform: none !important;
  font-weight: 600;
}

.about .left-block p {
  font-size: 17px;
  color: #454545;
  font-weight: 400;
  line-height: 30px;
  text-align: justify;
  text-shadow: 0 0 #454545;
  margin-bottom: 20px;
}

.sec-heading {
  position: relative;
}

/* .sec-heading::after
   {
        position: absolute;
      content: '';
      left: 0px;
      top: -25px;
      bottom: -25px;
      width: 155px;
      background-color: #d7f0fd;
   } */
.image {
  position: relative;
  z-index: 99;
}

.color-three {
  position: absolute;
  left: -61px;
  top: -75px;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  background-color: #fff9ce;
}

.programme-desc {
  font-size: 17px;
  color: rgb(69, 69, 69);
  font-weight: 400;
  line-height: 30px;
  text-align: justify;
  text-shadow: rgb(69 69 69) 0px 0px;
  margin-bottom: 20px;
}

.about .know-more-wrapper {
  display: block;
  position: relative;
}

.about .know-more-wrapper:after {
  width: calc(100% - 135px);
  height: 1px;
  background: #e8e8e8;
  content: "";
  position: absolute;
  right: 0px;
  top: 14px;
  z-index: 1;
}

.about a.know-more {
  display: inline-block;
  padding-right: 24px;
  position: relative;
  z-index: 2;
  font-family: "texgyreadventorbold";
  font-size: 14px;
  color: #645847;
  text-transform: uppercase;
}

.about a.know-more span {
  display: inline-block;
  vertical-align: middle;
  margin-top: -2px;
  margin-left: 4px;
  color: #ff9600;
}

.about a.know-more:hover span {
  color: #17a43b;
}

.image-column .image img {
  border-radius: 15px;
}

/* .sec-heading
  {
    position: relative;
  }
  .sec-heading::after
  {
    content: '';
    position: absolute;
    height: 2px;
    background-color: var(--primary-color);
    width: 50px;
  } */

/*-----------------------
    cources
  -----------------------*/
.padding-lg {
  display: block;
  padding-top: 70px;
  padding-bottom: 70px;
}

.our-cources h2,
.how-study h2,
.why-choose h2,
.news-events h2,
.campus-tour h2,
.testimonial h2,
.about h2,
.browse-teacher h2,
.how-apply h2,
.have-question h2,
.homework-sec h2 {
  display: block;
  padding-bottom: 44px;
  font-family: Roboto, sans-serif;
  font-size: 36px;
  text-transform: uppercase;
  text-align: center;
}

/* .our-cources h2 span,
  .how-study h2 span,
  .why-choose h2 span,
  .news-events h2 span,
  .campus-tour h2 span,
  .browse-teacher h2 span,
  .how-apply h2 span {
    display: block;
    font-family: Roboto, sans-serif;
    font-size: 14px;
    opacity: 0.8;
  } */

.our-cources {
  display: block;
  /* background: #f6fbf8; */
  /* background: url(../images/lbp-background.png) no-repeat center top / cover; */
  position: relative;
}

.our-cources .icon-layer-one {
  position: absolute;
  right: -80px;
  top: 90px;
  width: 102px;
  height: 89px;
  background-repeat: no-repeat;
}

.our-cources .color-box {
  position: absolute;
  right: 0px;
  top: 0px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #fff9ce;
}

/* .our-cources:after {
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    top: 0px;
    z-index: 1;
    content: "";
    background: #38383845;
    opacity: 0.8;
  } */

.our-cources .container {
  position: relative;
  z-index: 2;
}

.our-cources h2 {
  color: var(--primary-color);
  font-weight: 600;
  text-transform: none !important;
  padding-bottom: 0 !important;
}

.our-cources ul.course-list {
  display: block;
  padding-top: 20px;
}

.our-cources ul.course-list li {
  display: block;
  background: url(../images/book-bg.png) no-repeat center top;
  position: relative;
}

.our-cources ul.course-list li:after {
  width: 1px;
  height: 100%;
  position: absolute;
  right: 0px;
  top: 0px;
  display: block;
  background: #fff;
  content: " ";
  opacity: 0.3;
}

.our-cources ul.course-list li .inner {
  width: 198px;
  margin: 0 auto;
  height: 280px;
  padding: 54px 0 0 30px;
  position: relative;
}

.our-cources ul.course-list li .inner figure {
  position: absolute;
  left: 4px;
  top: 1px;
  opacity: 0.3;
}

.our-cources ul.course-list li h3 {
  display: block;
  padding-bottom: 10px;
  font-family: "texgyreadventorbold";
  font-size: 18px;
  text-transform: uppercase;
  line-height: 22px;
  color: #fff;
  position: relative;
}

.our-cources ul.course-list li h3 span {
  display: block;
}

.our-cources ul.course-list li p {
  display: block;
  padding-bottom: 12px;
  font-size: 12px;
  line-height: 18px;
  color: #fff;
  opacity: 0.8;
}

.our-cources ul.course-list li .fess-box {
  display: inline-block;
  padding: 0 12px;
  background: #ff9600;
  font-size: 11px;
  font-weight: 700;
  color: #fff;
  position: relative;
  text-transform: uppercase;
}

.our-cources ul.course-list li .fess-box span {
  font-family: "texgyreadventorbold";
  font-size: 16px;
}

.our-cources ul.course-list li .bottom-txt {
  width: 100%;
  padding: 18px 30px;
  position: absolute;
  bottom: 0px;
  left: 0px;
}

.our-cources ul.course-list li .duration {
  width: 81%;
  float: left;
}

.our-cources ul.course-list li .duration h4 {
  display: block;
  font-family: "texgyreadventorbold";
  font-size: 16px;
  color: #fff;
  text-transform: uppercase;
}

.our-cources ul.course-list li .duration span {
  display: block;
  font-size: 11px;
  font-weight: 700;
  color: #fff;
  line-height: 16px;
  text-transform: uppercase;
  opacity: 0.8;
}

.our-cources ul.course-list li a {
  display: block;
  position: absolute;
  right: 18px;
  top: 22px;
}

.our-cources ul.course-list li a .icon-more-icon {
  font-size: 23px;
  color: #fff;
  opacity: 0.5;
  transition: all 0.3s ease 0s;
}

.our-cources ul.course-list li a:hover .icon-more-icon {
  opacity: 1;
}

.flex_cont {
  display: flex;
  align-items: center;
  margin-top: 8%;
}

.flex_cont .col-lg-3 {
  padding: 0;
}

.fact-area.pjt {
  border-bottom: none;
}

.round_anim {
  margin: 0 auto;
  width: 100px;
  height: 100px;
  text-align: center;
  border-radius: 50%;
  animation: pulse 1s infinite;
  line-height: 100px;
}

.fact-area img {
  height: 70px;
}

.fact-area p {
  font-size: 18px;
  margin-top: 24px;
  font-weight: 700;
  padding-top: 6px;
  color: #000;
  text-align: center;
}

.fact-area.pjt:after,
.fact-area.inet_off:after {
  width: 20%;
  content: "";
  display: inline-block;
  position: absolute;
  background: #ccc;
  border-bottom: 1px solid #ccc;
  right: 0;
  top: 49.9%;
}

.fact-area.dvpmnt,
.fact-area.hours_eff {
  border-left: 1px solid #ccc;
  padding: 15px 0;
}

.fact-area.sag_client,
.fact-area.year_exp {
  border-left: 1px solid #ccc;
  border-right: 1px solid #ccc;
  padding: 15px 0;
}

.fact-area {
  width: 100%;
  margin: 0 auto;
  text-align: center;
  border-bottom: 1px solid #ccc;
  padding-bottom: 15px;
  position: relative;
}

.fact-area.inet_off {
  border-bottom: #ffdead;
}

.fact-area.inet_off:after {
  left: 0;
}

.fact-area.hours_eff {
  border-bottom: #ffdead;
  margin-bottom: 0;
}

.fact-area.year_exp {
  border-bottom: none;
  margin-bottom: 0;
}

.pulse {
  margin: 100px;
  display: block;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #cca92c;
  cursor: pointer;
  box-shadow: 0 0 0 rgba(204, 169, 44, 0.4);
  animation: pulse 3s infinite;
}

.pulse:hover {
  animation: none;
}

@-webkit-keyframes pulse {
  0% {
    -webkit-box-shadow: 0 0 0 0 rgba(204, 169, 44, 0.4);
  }

  70% {
    -webkit-box-shadow: 0 0 0 10px rgba(204, 169, 44, 0);
  }

  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(204, 169, 44, 0);
  }
}

@keyframes pulse {
  0% {
    -moz-box-shadow: 0 0 0 0 rgba(204, 169, 44, 0.4);
    box-shadow: 0 0 0 0 rgba(204, 169, 44, 0.4);
  }

  70% {
    -moz-box-shadow: 0 0 0 10px rgba(204, 169, 44, 0);
    box-shadow: 0 0 0 10px rgba(204, 169, 44, 0);
  }

  100% {
    -moz-box-shadow: 0 0 0 0 rgba(204, 169, 44, 0);
    box-shadow: 0 0 0 0 rgba(204, 169, 44, 0);
  }
}

/*-----------------------
    impotance
  -----------------------*/
.our-impotance {
  background: #fff;
}

.our-impotance ul {
  display: block;
  text-align: center;
}

.our-impotance ul li {
  display: block;
  margin-bottom: 64px;
  border-right: 1px #e9e9e9 solid;
  position: relative;
}

.our-impotance ul li .inner {
  display: block;
  padding: 30px;
}

.our-impotance ul li .inner img {
  border-radius: 3px;
}

.our-impotance ul li:nth-child(3n) {
  border-right: none;
}

.our-impotance ul li:nth-child(n + 4):after {
  display: none;
}

.our-impotance ul li:nth-child(n + 4) {
  margin-bottom: 0px;
}

.our-impotance ul li:after {
  width: 80%;
  height: 1px;
  margin: 0 auto;
  left: 0px;
  right: 0px;
  display: block;
  position: absolute;
  bottom: -35px;
  content: "";
  background: #e9e9e9;
}

.our-impotance ul li h3 {
  display: block;
  padding: 22px 0 12px 0;
  font-family: "texgyreadventorbold";
  font-size: 18px;
  color: #284962;
  text-transform: uppercase;
  line-height: 24px;
}

.our-impotance ul li h3 span {
  display: block;
}

.our-impotance ul li p {
  display: block;
  font-size: 12px;
  color: #969a9e;
  line-height: 20px;
}

/*-----------------------
    how study
  -----------------------*/
.how-study {
  background: url(../images/bg-8.webp) center;
  padding-bottom: 90px;
}

.how-study h2:first-child {
  color: var(--primary-color);
  text-transform: none !important;
  font-weight: 600;
  padding-bottom: 90px;
}

.how-study ul {
  display: block;
}

.how-study ul li img {
  width: 100%;
}

.how-study ul li:hover .overly {
  background: rgba(0, 0, 0, 0.9);
}

.how-study ul li .overly {
  width: calc(100% - 30px);
  height: 100%;
  position: absolute;
  left: 15px;
  top: 0px;
  background: rgba(0, 0, 0, 0.5);
  transition: all 0.4s ease 0s;
}

.how-study ul li .cnt-block {
  max-width: 220px;
  position: absolute;
  bottom: 30px;
  left: 11%;
  color: #fff;
}

.how-study ul li .cnt-block h3 {
  display: block;
  padding-bottom: 12px;

  font-size: 22px;
  color: #fff;
  line-height: 26px;
  position: relative;
  text-transform: none;
}

/* .how-study ul li .cnt-block h3:before {
    display: block;
    margin-bottom: 8px;
    width: 40%;
    height: 4px;
    content: " ";
    background: #ff9600;
  } */

.how-study ul li:nth-child(2) .cnt-block h3:before,
.how-study ul li:nth-child(2) a.more:hover {
  background: #17a43b;
}

.how-study ul li:nth-child(3) .cnt-block h3:before,
.how-study ul li:nth-child(3) a.more:hover {
  background: #1876bf;
}

.how-study ul li .cnt-block p {
  display: block;
  font-size: 12px;
  line-height: 16px;
  opacity: 0.7;
}

.how-study ul li a.more {
  display: block;
  width: 24px;
  height: 24px;
  position: absolute;
  right: 30px;
  bottom: 30px;
  border-radius: 50%;
  line-height: 24px;
  background: #fff;
  font-size: 18px;
  color: #000;
  text-align: center;
}

.how-study ul li a.more i {
  margin-left: 2px;
}

.how-study ul li a.more:hover {
  background: #ff9600;
  color: #fff;
}

.sec-title-two h2 {
  text-align: left;
  padding-bottom: 15px !important;
}

/*-----------------------
    why choose
  -----------------------*/
.why-choose {
  background: url(../images/why-choose-bg.jpg) no-repeat center center / cover;
  position: relative;
}

.why-choose:after {
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0px;
  z-index: 1;
  content: "";
  background: var(--primary-color);
  opacity: 0.9;
}

.why-choose .container {
  position: relative;
  z-index: 2;
}

.why-choose h2 {
  padding-bottom: 70px;
  color: #fff;
}

.why-choose h2 span {
  color: #fff;
}

ul.our-strength {
  display: block;
  text-align: center;
}

ul.our-strength li {
  width: 20%;
  display: inline-block;
  color: #fff;
  text-align: center;
  border-right: 1px #94d3a4 solid;
}

ul.our-strength li:last-child {
  border: none;
}

ul.our-strength li .icon {
  display: block;
  padding-bottom: 20px;
}

ul.our-strength li .icon span {
  font-size: 44px;
  opacity: 0.7;
}

ul.our-strength li span {
  padding-bottom: 12px;
  font-family: "texgyreadventorregular";
  font-size: 48px;
}

ul.our-strength li .couter-outer {
  display: block;
}

ul.our-strength li .title {
  display: block;
  font-family: "texgyreadventorregular";
  font-size: 14px;
  opacity: 0.8;
  text-transform: uppercase;
}

/*-----------------------
    news & events
  -----------------------*/
.news-events {
  background: #f3f6f8;
}

.news-events h2 {
  color: #2a4356;
}

.news-events h2 span {
  color: #2d4256;
}

.news-events ul {
  display: block;
  margin-bottom: 60px;
}

.news-events ul li .inner {
  display: block;
  background: #fff;
  box-shadow: 0px 0px 3px #c4c6c8;
  position: relative;
}

.news-events ul li .img-block {
  display: block;
}

.news-events ul li .img-block img {
  width: 100%;
}

.news-events ul li .cnt-block {
  display: block;
  padding: 40px 30px 30px 30px;
  background: #fff;
  position: relative;
}

.news-events ul li .cnt-block .plus-icon {
  display: block;
  width: 64px;
  height: 64px;
  line-height: 60px;
  text-align: center;
  position: absolute;
  right: 20px;
  top: -32px;
  background: #2c97ea;
  border-radius: 50%;
  font-size: 34px;
  color: #fff;
  box-shadow: 0px 5px 5px #c0e0f9;
}

.news-events ul li .cnt-block .plus-icon:hover {
  background: #ff9600;
}

.news-events ul li .cnt-block h3 {
  display: block;
  padding-bottom: 36px;
  font-family: "texgyreadventorregular";
  font-size: 22px;
  color: #41484d;
  line-height: 32px;
  text-transform: none;
}

.news-events figure {
  position: relative;
}

.news-events figure img {
  width: 100%;
  display: block;
  position: relative;
}

.news-events figcaption {
  position: absolute;
  top: 0;
  left: 0;
}

/* Caption Style 3 */
.cs-style-3 figure {
  overflow: hidden;
  padding-bottom: 104px;
}

.cs-style-3 figure img {
  -webkit-transition: -webkit-transform 0.4s;
  -moz-transition: -moz-transform 0.4s;
  transition: transform 0.4s;
}

.no-touch .cs-style-3 figure:hover img,
.cs-style-3 figure.cs-hover img {
  -webkit-transform: translateY(-50px);
  -moz-transform: translateY(-50px);
  -ms-transform: translateY(-50px);
  transform: translateY(-50px);
}

.cs-style-3 figcaption {
  width: 100%;
  top: auto;
  bottom: 0px;
  -webkit-transform: translateY(40%);
  -moz-transform: translateY(40%);
  -ms-transform: translateY(40%);
  transform: translateY(40%);
  -webkit-transition: -webkit-transform 0.4s, opacity 0.1s 0.3s;
  -moz-transition: -moz-transform 0.4s, opacity 0.1s 0.3s;
  transition: transform 0.4s, opacity 0.1s 0.3s;
}

.no-touch .cs-style-3 figure:hover figcaption,
.cs-style-3 figure.cs-hover figcaption {
  bottom: 0px;
  opacity: 1;
  -webkit-transform: translateY(0px);
  -moz-transform: translateY(0px);
  -ms-transform: translateY(0px);
  transform: translateY(0px);
  -webkit-transition: -webkit-transform 0.4s, opacity 0.1s;
  -moz-transition: -moz-transform 0.4s, opacity 0.1s;
  transition: transform 0.4s, opacity 0.1s;
}

.news-events ul li .bottom-block {
  display: block;
  padding: 30px 0 0 0;
  border-top: 1px #e8eef0 solid;
  font-size: 12px;
  color: #96adba;
}

.news-events ul li .date {
  display: block;
  float: left;
}

.news-events ul li .icon {
  display: block;
  float: left;
  margin-right: 10px;
  margin-top: 2px;
}

.news-events ul li .icon span {
  font-size: 20px !important;
  color: #c5d4da !important;
}

.news-events ul li .comment {
  display: block;
  float: right;
}

.news-events ul li .date span,
.news-events ul li .comment span {
  font-weight: 700;
  color: #5c7e91;
}

.news-events .know-more-wrapper {
  display: block;
  text-align: center;
  position: relative;
}

.news-events .know-more-wrapper:after {
  width: 100%;
  height: 1px;
  background: #daddde;
  content: "";
  position: absolute;
  left: 0px;
  top: 14px;
  z-index: 1;
}

.news-events .know-more {
  display: inline-block;
  padding: 0 30px;
  position: relative;
  background: #f3f6f8;
  z-index: 2;
  font-family: "texgyreadventorbold";
  font-size: 14px;
  color: #645847;
  text-transform: uppercase;
}

.news-events a.know-more span {
  margin-left: 4px;
  vertical-align: middle;
  margin-top: -2px;
  display: inline-block;
  color: #ff9600;
  transition: all 0.3s ease 0s;
}

.news-events a.know-more:hover span {
  color: #17a43b;
}

/*-----------------------
    campus tour
  -----------------------*/
.campus-tour {
  background: #fff;
  padding-bottom: 0px;
  overflow: hidden;
}

.campus-tour h2 {
  color: #2a4356;
}

.campus-tour h2 span {
  color: #2d4256;
}

.campus-tour ul.gallery {
  display: block;
}

.campus-tour ul.gallery li {
  width: 25%;
  float: left;
  display: block;
  background: #000;
  padding: 5px;
  background: rgb(255, 255, 255);
  position: relative;
}

.campus-tour ul.gallery li figure {
  transition: all 0.3s ease 0s;
}

.campus-tour ul.gallery li:hover figure {
  opacity: 0.2;
}

.campus-tour ul.gallery li .overlay {
  width: 100%;
  position: absolute;
  top: 50%;
  margin-top: -57px;
  z-index: 1;
  text-align: center;
  opacity: 0;
  transition: all 0.3s ease 0s;
}

.campus-tour ul.gallery li:hover .overlay {
  top: 56%;
  opacity: 1;
}

.campus-tour ul.gallery li h3 {
  display: block;
  padding-bottom: 4px;
  font-family: "texgyreadventorbold";
  font-size: 24px;
  color: #fff;
  text-transform: uppercase;
}

.campus-tour ul.gallery li p {
  display: block;
  padding-bottom: 30px;
  font-weight: 700;
  font-size: 12px;
  color: #fff;
  text-transform: uppercase;
  opacity: 0.5;
}

.campus-tour ul.gallery li a {
  width: 56px;
  height: 56px;
  margin: 0 8px;
  display: inline-block;
  line-height: 60px;
  border-radius: 50%;
  text-align: center;
  background: var(--primary-color);
  font-size: 22px;
  color: #fff;
}

.campus-tour ul.gallery li a.more {
  background: var(--primary-color);
}

.campus-tour ul.gallery li a:hover {
  background: var(--secondary-color);
}

.mfp-arrow-left:before,
.mfp-arrow-left:after,
.mfp-arrow-right:before,
.mfp-arrow-right:after {
  border: none;
}

.mfp-arrow-left:before,
.mfp-arrow-right:after {
  width: 20px;
  height: 38px;
  display: block;
  content: "";
  background: url(../images/popup-arrows.png) no-repeat center bottom;
}

.mfp-arrow-left:before {
  background-position: left top;
}

.mfp-image-holder .mfp-close,
.mfp-iframe-holder .mfp-close {
  width: 28px;
  height: 28px;
  right: 0px;
  padding-right: 0px;
  display: block;
  cursor: pointer;
  background: url(../images/popup-close.png) no-repeat center top;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
}

.mfp-zoom-out-cur,
.mfp-zoom-out-cur .mfp-image-holder .mfp-close {
  cursor: pointer;
}

/* ================================================== */
/* 05. footer */
/* ================================================== */

.copyright {
  background: #fff;
  padding: 40px 0 40px 0;
  border-top: 1px solid #dadada;
}

.copyright {
  font-size: 13px !important;
}

.footer-social {
  float: left;
}

.footer-social ul {
  list-style: none;
  text-align: center;
}

.footer-social li {
  display: inline-block;
  float: left;
}

.footer-social-col {
  justify-content: center;
}

.footer-social li a {
  width: 38px;
  height: 33px;
  padding: 0;
  color: #555;
  font-size: 22px;
  text-align: left;
  line-height: 36px;
  border-radius: 40px;
  display: block;
  margin: 0 4px 0 0px;
}

.footer-social li a i {
  font-style: normal;
}

.footer-links-col {
  justify-content: right;
}

.company-link-footer {
  padding: 5px 0 0 0 !important;
  line-height: initial !important;
  float: none !important;
}

.copyright img {
  margin: 0px auto;
  display: block;
}

.copyright a {
  font-size: 13px;
  line-height: 101px;
  padding: 20px 0 0px 20px;
  margin: 0;
  display: block;
  color: #999;
  float: right;
}

.copyright a:hover {
  color: #000;
}

a.scroll-top {
  width: 44px;
  height: 44px;
  line-height: 40px;
  color: #fff;
  border-radius: 50%;
  text-align: center;
  position: fixed;
  display: none;
  right: 20px;
  bottom: 20px;
  background-color: var(--primary-color);
  z-index: 999;
}

a.scroll-top:hover {
  background: var(--secondary-color);
}

/* ================================================== */
/* 06. index2 */
/* ================================================== */
/*-----------------------
    banner2
  -----------------------*/
.banner2 {
  min-height: 650px;
  padding: 115px 0;
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
  text-align: center;
  color: #fff;
  position: relative;
}

.banner2:before {
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  left: 0px;
  top: 0px;
  content: "";
  background: rgba(0, 0, 0, 0.3);
}

.banner2 .container {
  max-width: 965px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.banner2 .cnt-block {
  max-width: 740px;
  margin: 0 auto;
}

.banner2 h1 {
  padding-bottom: 30px;
  color: #fff;
  text-transform: none;
  line-height: 56px;
}

.banner2 p {
  font-size: 16px;
  line-height: 26px;
  opacity: 0.8;
}

.banner2 .form-group {
  width: 100%;
  margin: 40px 0 70px 0;
  display: inline-block;
  vertical-align: middle;
}

.banner2 .form-group .form-control {
  width: calc(100% - 74px);
  margin-right: -2px;
  height: 64px;
  padding: 0 40px;
  display: inline-block;
  vertical-align: middle;
  font-size: 16px;
  color: #98a1a5;
  text-transform: capitalize;
  border: none;
  border-radius: 30px 0 0 30px;
  box-shadow: none;
}

.banner2 .form-group .search-btn {
  width: 70px;
  height: 64px;
  display: inline-block;
  vertical-align: middle;
  margin-left: -2px;
  border-radius: 0 30px 30px 0;
}

.banner2 ul.banner-list {
  width: 100%;
  max-width: 790px;
  display: inline-block;
  vertical-align: middle;
}

.banner2 ul.banner-list li {
  width: 33%;
  display: inline-block;
  vertical-align: middle;
  position: relative;
}

.banner2 ul.banner-list li:after {
  width: 1px;
  height: 100%;
  display: block;
  position: absolute;
  right: 30px;
  top: 0px;
  content: "";
  background: rgba(255, 255, 255, 0.5);
}

.banner2 ul.banner-list li:last-child:after {
  display: none;
}

.banner2 ul.banner-list li figure {
  width: 54px;
  display: inline-block;
  vertical-align: middle;
}

.banner2 ul.banner-list li .cnt {
  width: calc(100% - 58px);
  padding-left: 10px;
  font-size: 16px;
  line-height: 22px;
  text-align: left;
  display: inline-block;
  vertical-align: middle;
}

.banner2 ul.banner-list li .cnt span {
  display: block;
}

/*-----------------------
    Intro Sec
  -----------------------*/
.intro-sec .video-block .play-outer {
  width: 220px;
  height: 78px;
  padding: 15px;
  background: #fff;
  border-radius: 50px;
  position: absolute;
  margin: 0 auto;
  left: 0;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

.intro-sec .video-block .play-outer figure {
  width: 46px;
  display: inline-block;
  vertical-align: middle;
}

.intro-sec .video-block .play-outer span {
  width: calc(100% - 50px);
  padding-left: 12px;
  display: inline-block;
  vertical-align: middle;
  font-family: "texgyreadventorbold";
  font-size: 16px;
  color: #565656;
  line-height: 20px;
}

.intro-sec h2 {
  padding-bottom: 35px;
  font-size: 36px;
  color: #353434;
  line-height: 45px;
  text-transform: capitalize;
}

.intro-sec h2 span {
  display: block;
}

.intro-sec p {
  color: #575d60;
}

.intro-sec .know-more-wrapper {
  display: block;
  margin-top: 40px;
  position: relative;
}

.intro-sec a.know-more {
  display: inline-block;
  font-family: "texgyreadventorbold";
  font-size: 16px;
  color: #606d87;
  text-decoration: underline !important;
}

.intro-sec a.know-more span {
  display: inline-block;
  vertical-align: middle;
  margin: -2px 14px 0 0;
  font-size: 18px;
  color: #f5731f;
}

.intro-sec a.know-more:hover span {
  color: #17a43b;
}

/*---------------------------
    Popular Cources Sec
  ---------------------------*/
.popular-cources {
  background: #fafafa;
}

.popular-cources .title-row {
  display: block;
  margin-bottom: 45px;
}

.popular-cources a.view-courses {
  display: block;
  float: right;
  font-family: "texgyreadventorbold";
  font-size: 16px;
  color: #606d87;
  text-decoration: underline !important;
}

.popular-cources a.view-courses span {
  display: inline-block;
  vertical-align: middle;
  margin: -2px 14px 0 0;
  font-size: 18px;
  color: #f5731f;
}

.popular-cources a.view-courses:hover span {
  color: #17a43b;
}

.popular-cources h3 {
  display: block;
  float: left;
  font-size: 30px;
  color: #353434;
  text-transform: capitalize;
}

.popular-cources ul.courses-list li .inner {
  background: #fff;
  -webkit-box-shadow: 0 0 15px rgba(0, 0, 0, 0.03);
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.03);
  border-radius: 5px;
}

.popular-cources ul.courses-list li figure img {
  width: 100%;
  border-radius: 10px 10px 0 0;
}

.popular-cources ul.courses-list li .cnt-block {
  padding: 40px;
  background: #fff;
  border-radius: 0 0 10px 10px;
  position: relative;
}

.popular-cources ul.courses-list li .duration {
  padding: 6px 20px;
  background: #2c97ea;
  color: #fff;
  line-height: 18px;
  text-transform: uppercase;
  border-radius: 10px;
  position: absolute;
  right: 20px;
  top: -22px;
}

.popular-cources ul.courses-list li .duration .year {
  display: block;
  font-family: "texgyreadventorbold";
  font-size: 16px;
}

.popular-cources ul.courses-list li .duration .txt {
  font-size: 12px;
  opacity: 0.7;
}

.popular-cources ul.courses-list li h4 {
  padding-bottom: 12px;
  font-size: 18px;
  color: #282828;
  text-transform: capitalize;
  line-height: 22px;
}

.popular-cources ul.courses-list li p {
  font-size: 14px;
  color: #7f7f7f;
  line-height: 22px;
}

/*-----------------------------
    Whats Makes Different Sec
  -----------------------------*/
.wt-makes-different {
  background: #1b305c;
  position: relative;
}

.wt-makes-different .bg-image {
  width: 45%;
  height: 100%;
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  background-position: left top;
  background-size: cover;
}

.wt-makes-different .bg-image:after {
  width: 100%;
  height: 100%;
  display: block;
  content: "";
  background: rgba(27, 48, 92, 0.7);
  position: absolute;
  left: 0;
  top: 0;
}

.wt-makes-different .left {
  padding-top: 140px;
  padding-bottom: 180px;
  color: #fff;
}

.wt-makes-different .left .q-mark {
  width: 100px;
  height: 100px;
  margin-bottom: 22px;
  font-family: "texgyreadventorbold";
  font-size: 60px;
  line-height: 90px;
  background: #ff9600;
  border-radius: 50%;
  text-align: center;
}

.wt-makes-different .left h2 {
  margin-bottom: 50px;
  font-size: 60px;
  line-height: 72px;
  color: #fff;
  text-transform: capitalize;
}

.wt-makes-different .left a.read-more {
  display: inline-block;
  font-family: "texgyreadventorbold";
  font-size: 16px;
  color: #fff;
  text-decoration: underline !important;
}

.wt-makes-different .left a.read-more span {
  display: inline-block;
  vertical-align: middle;
  margin: -2px 12px 0 0;
  font-size: 18px;
}

.wt-makes-different .left a.read-more:hover span {
  color: #17a43b;
}

.wt-makes-different .right {
  padding: 120px 0 0 60px;
}

ul.makes-different-list li {
  margin-bottom: 70px;
}

ul.makes-different-list li .inner {
  max-width: 246px;
}

ul.makes-different-list li h3 {
  padding: 20px 0 15px 0;
  padding-bottom: 15px;
  font-size: 18px;
  text-transform: inherit;
  color: #fff;
}

ul.makes-different-list li p {
  font-size: 14px;
  line-height: 22px;
  color: #9ca8c3;
}

/*-----------------------------
    How Study 2
  -----------------------------*/
.how-study2 {
  background: #fff;
}

.how-study2 h2,
.why-choose2 h2,
.news-events2 h2,
.campus-tour2 h2 {
  text-transform: inherit;
}

.how-study2 h2 span,
.why-choose2 h2 span,
.news-events2 h2 span,
.campus-tour h2 span {
  padding-bottom: 5px;
}

.how-study2 ul li .overly,
.how-study2 ul li figure {
  border-radius: 15px;
  overflow: hidden;
}

/*-----------------------------
    Why Choose 2
  -----------------------------*/
.why-choose2 ul.our-strength li {
  border: none;
}

/*-----------------------------
    Testimonials 2
  -----------------------------*/
.testimonial2 {
  background: none;
}

.testimonial2:after {
  display: none;
}

.testimonial2 .wrapper:before,
.testimonial2 .wrapper:after {
  color: #cecece;
}

.testimonial2 h2 {
  text-transform: inherit;
  color: #254b65;
}

.testimonial2 ul li p {
  color: #8397a5;
}

.testimonial2 ul li p a {
  color: #2c97ea;
}

.testimonial2 ul li span {
  color: #ff9600;
}

.testimonial2 ul li span span {
  color: #8397a5;
}

/*-----------------------------
    Brands 2
  -----------------------------*/
.logos2 {
  padding-top: 0px;
}

.logos2 ul {
  padding: 60px 0 0;
  border-top: 1px #e9e9e9 solid;
}

/*-----------------------------
    Footer 2
  -----------------------------*/
.footer2 {
  background: #333;
}

.footer2 .foot-nav ul li a,
.footer2 p,
.footer2 ul.terms li:after,
.footer2 ul.terms li a {
  color: #999;
}

.footer2 .footer-logo {
  border-color: #454545;
}

.footer2 .bottom {
  background: #1a1a1a;
}

.footer2 .connect-us,
.footer2 ul.follow-us li a,
.footer2 .subscribe {
  border-color: #262626;
}

.footer2 .subscribe input[type="email"] {
  color: #999;
}

.footer2 .subscribe input[type="email"]::-webkit-input-placeholder {
  color: #999;
}

.footer2 .subscribe input[type="email"]:-moz-placeholder {
  /* Firefox 18- */
  color: #999;
}

.footer2 .subscribe input[type="email"]::-moz-placeholder {
  /* Firefox 19+ */
  color: #999;
}

.footer2 .subscribe input[type="email"]:-ms-input-placeholder {
  color: #999;
}

/* ================================================== */
/* 07. about page */
/* ================================================== */
.about-right {
  display: block;
}

.about-right img {
  width: 75%;
  margin-left: auto;
}

.why-choose.grey-bg {
  background: #f3f6f8;
}

.why-choose.grey-bg:after {
  display: none;
}

.why-choose.grey-bg h2 {
  color: #2a4356;
}

.why-choose.grey-bg h2 span {
  color: #808182;
}

ul.our-strength.opt2 li {
  border-color: #dde5e9;
}

ul.our-strength.opt2 li span {
  color: #3f5044;
}

ul.our-strength.opt2 li .icon span {
  color: #17a43b;
}

ul.our-strength.opt2 li .title {
  color: #9099a0;
}

.about-video {
  width: 100%;
  background: url(../images/about-video-bg.jpg) no-repeat center top / cover;
  text-align: center;
  position: relative;
}

.about-video:after {
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0px;
  z-index: 1;
  content: "";
  background: #081d2d;
  opacity: 0.6;
}

.about-video .container {
  display: table;
  height: 550px;
  position: relative;
  z-index: 2;
}

.about-video p {
  display: table-cell;
  vertical-align: middle;
  font-family: "texgyreadventorbold";
  font-size: 60px;
  color: #d1d3d4;
}

.about-video p a {
  color: #fff;
}

.about-video p a span {
  display: inline-block;
  vertical-align: middle;
  margin-top: -2px;
}

.about-video p a:hover {
  color: #17a43b;
}

.browse-teacher.grey-bg {
  background: #f3f6f8;
}

.modal-content {
  border-radius: 0px;
}

.about .close,
.about-video .close {
  position: absolute;
  opacity: 1;
  top: 0;
  right: 0;
  z-index: 2;
}

.about .close span,
.about-video .close span {
  width: 36px;
  height: 36px;
  display: block;
  text-indent: -9999px;
  background: url(../images/popup-close-btn.jpg) no-repeat center top;
}

.modal {
  z-index: 99999;
}

.modal-backdrop {
  z-index: 9999;
}

/* ================================================== */
/* 08. cources listing page */
/* ================================================== */
.inner-banner {
  display: block;
  padding: 60px 0;
  min-height: 290px;
  background: url(../images/top-sec.jpg) no-repeat center top / cover;
  background-attachment: fixed;
}

.inner-banner .content {
  max-width: 448px;
}

.inner-banner h1 {
  display: block;
  padding-bottom: 18px;
  font-family: "texgyreadventorbold";
  font-size: 46px;
  color: #24353b;
  text-transform: uppercase;
}

.inner-banner p {
  display: block;
  font-size: 16px;
  line-height: 26px;
  color: transparent;
}

.inner-banner a.apply-online {
  max-width: 246px;
  display: block;
  margin-top: 16px;
  margin-bottom: 26px;
  background: #ff9600;
  text-transform: uppercase;
  font-family: "texgyreadventorbold";
  font-size: 18px;
  color: #fff;
  position: relative;
}

.inner-banner a.apply-online:hover {
  background: #ff8800;
}

.inner-banner a.apply-online .left {
  width: 80%;
  float: left;
  padding: 20px 0 20px 24px;
}

.inner-banner a.apply-online .icon {
  display: block;
  padding-right: 15px;
  float: left;
}

.inner-banner a.apply-online .txt {
  width: 36%;
  float: left;
  line-height: 20px;
}

.inner-banner a.apply-online .arrow {
  width: 20%;
  height: 100%;
  line-height: 78px;
  position: absolute;
  right: 0px;
  background: #e38600;
  font-size: 24px;
  text-align: center;
  transition: all 0.3s ease 0s;
}

.inner-banner a.apply-online:hover .arrow {
  background: #df7600;
}

a.download-prospects {
  display: block;
  padding: 0 10px 10px 0;
  font-family: "texgyreadventorbold";
  font-size: 14px;
  color: #43647d;
  text-transform: uppercase;
}

a.download-prospects .icon-brochure-icon {
  display: block;
  margin-right: 15px;
  float: left;
  font-size: 29px;
  color: #389ceb;
}

a.download-prospects.brochure {
  background-position: left 4px;
  font-size: 18px;
  line-height: 18px;
  text-transform: none;
  color: #4f4a4a;
}

a.download-prospects .small {
  display: block;
  font-family: "texgyreadventorregular";
  font-size: 12px;
  color: #8f9ba1;
  line-height: 14px;
  text-transform: uppercase;
}

a.download-prospects:hover,
a.download-prospects:hover span {
  color: #2c97ea;
}

.about.inner {
  background: none;
}

.about.inner .video-block {
  margin-bottom: 12px;
}

.about.inner .modal-body .video-block {
  margin-bottom: 0px;
}

.about.inner p {
  padding-bottom: 20px;
}

.about .btn-wrapper {
  display: block;
}

a.download-pros,
a.download-cert {
  width: 50%;
  float: left;
  padding: 22px 20px;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  line-height: 20px;
}

a.download-pros {
  background: #2c97ea;
  border-right: 1px #fff solid;
}

a.download-cert {
  background: #f0bc01;
  border-left: 1px #fff solid;
}

a.download-pros .ico-block,
a.download-cert .ico-block {
  display: block;
  padding-right: 15px;
  float: left;
}

a.download-pros .txt-block,
a.download-cert .txt-block {
  display: block;
  padding-top: 4px;
  float: left;
  text-transform: uppercase;
}

a.download-pros .sm-txt,
a.download-cert .sm-txt {
  display: block;
  font-size: 12px;
  text-transform: uppercase;
  line-height: 18px;
  opacity: 0.7;
}

a.download-pros:hover,
a.download-cert:hover {
  background-color: #17a43b;
}

.select-course {
  display: block;
  float: right;
  padding-right: 34px;
}

.select-course .select2.select2-container {
  width: 254px !important;
}

.select-course .select2-container .select2-selection--single {
  height: 48px;
}

.select-course .select2-container--default .select2-selection--single {
  background: rgba(0, 0, 0, 0.4);
}

.select-course
  .select2-container--default
  .select2-selection--single
  .select2-selection__rendered {
  padding-left: 20px;
  line-height: 48px;
  font-family: "texgyreadventorregular";
  color: #fff;
  text-transform: uppercase;
}

.select-course
  .select2-container--default
  .select2-selection--single
  .select2-selection__arrow {
  width: 46px;
  height: 46px;
  border-left: 1px #aaa solid;
  background: rgba(255, 255, 255, 0.2);
}

.our-cources.sub {
  background: url(../images/cources-bg1.jpg) no-repeat center top / cover;
}

.our-cources.sub h2 {
  padding-left: 32px;
  text-align: left;
}

.our-cources ul.inner li {
  margin-bottom: 140px;
}

.our-cources ul.inner li:before {
  width: 100%;
  height: 1px;
  position: absolute;
  left: 0px;
  bottom: -70px;
  display: block;
  background: #fff;
  content: " ";
  opacity: 0.3;
}

.our-cources ul.course-list.inner li .inner {
  padding: 40px 0 0 30px;
}

.our-cources ul.inner li:nth-child(n + 9) {
  margin-bottom: 80px;
}

.our-cources ul.inner li:nth-child(n + 9):before,
.our-cources ul.inner li:nth-child(4n):after {
  display: none;
}

.pagination {
  margin: 0px;
}

.pagination > li > a,
.pagination > li > span {
  font-family: "texgyreadventorbold";
  color: #8faabe;
  margin: 0 4px;
  border: none;
  border-radius: 50%;
}

.pagination > li > a:focus,
.pagination > li > a:hover,
.pagination > li > span:focus,
.pagination > li > span:hover {
  background: #ff9600;
  color: #fff;
}

.pagination > li:first-child > a,
.pagination > li:first-child > span,
.pagination > li:last-child > a,
.pagination > li:last-child > span {
  padding: 7px 22px;
  border-radius: 25px;
  font-size: 12px;
  text-transform: uppercase;
}

.pagination li a i {
  display: inline-block;
  vertical-align: middle;
  margin-top: -2px;
  font-size: 18px;
}

.pagination > li:first-child a i {
  margin-right: 10px;
}

.pagination > li:last-child a i {
  margin-left: 10px;
}

/*-----------------------
    browse teacher
  -----------------------*/
.browse-teacher {
  display: block;
}

.browse-teacher h2 {
  color: #2a4356;
}

ul.browse-teachers-list {
  display: block;
  padding-top: 20px;
}

ul.browse-teachers-list > li {
  display: block;
  text-align: center;
  border-right: 1px #e5e5e5 solid;
}

ul.browse-teachers-list > li:last-child {
  border: none;
}

ul.browse-teachers-list > li .inner-block {
  display: block;
  padding: 0 20px;
}

ul.browse-teachers-list figure {
  width: 124px;
  height: 124px;
  margin: 0 auto 28px;
  position: relative;
}

ul.browse-teachers-list figure:before {
  width: 100%;
  height: 100%;
  display: block;
  content: "";
  position: absolute;
  left: 0px;
  right: 0px;
  top: 0px;
  background: url(../images/teacher-overlay-bg.png) no-repeat center top;
}

.browse-teacher.grey-bg ul.browse-teachers-list figure:before {
  background: url(../images/teacher-overlay-bg-grey.png) no-repeat center top;
}

.details-tab ul.browse-teachers-list figure:before {
  background: url(../images/teacher-overlay-bg-tab.png) no-repeat center top;
}

ul.browse-teachers-list h3 {
  font-family: "texgyreadventorbold";
  font-size: 14px;
  text-transform: uppercase;
  color: #414a4f;
}

ul.browse-teachers-list .designation {
  display: block;
  padding-bottom: 10px;
  font-size: 12px;
  font-weight: 500;
}

ul.browse-teachers-list p {
  display: block;
  padding: 0 20px 26px 20px;
  font-size: 12px;
  line-height: 22px;
}

ul.teachers-follow {
  display: block;
}

ul.teachers-follow li {
  display: inline-block;
  padding: 0 6px;
}

ul.teachers-follow li a {
  width: 30px;
  height: 30px;
  line-height: 30px;
  border-radius: 50%;
  display: block;
  font-size: 16px;
  color: #fff;
  text-align: center;
}

ul.teachers-follow li a:hover {
  background: #333 !important;
}

ul.teachers-follow li:nth-child(1) a {
  background: #00a0d1;
}

ul.teachers-follow li:nth-child(2) a {
  background: #0e76a8;
}

ul.teachers-follow li:nth-child(3) a {
  background: #00aff0;
}

/* ================================================== */
/* 09. course detail page */
/* ================================================== */
.enquire-wrapper {
  max-width: 438px;
}

.enquire-now {
  max-width: 405px;
  margin: -90px auto 0;
  position: relative;
  color: #fff;
}

.enquire-now .inner {
  padding: 40px 26px 30px 26px;
  background: #2c97ea;
}

.enquire-now .inner h3 {
  display: block;
  padding-bottom: 26px;
  font-family: "texgyreadventorbold";
  font-size: 24px;
  color: #fff;
  text-transform: none;
}

.enquire-now .inner .row1 {
  display: block;
  margin-bottom: 14px;
}

.enquire-now .inner input::-webkit-input-placeholder {
  color: #fff;
}

.enquire-now .inner input:-moz-placeholder {
  color: #fff;
}

.enquire-now .inner input::-moz-placeholder {
  color: #fff;
}

.enquire-now .inner input:-ms-input-placeholder {
  color: #fff;
}

.enquire-now .inner .row1 input,
.enquire-now .inner .row2 input {
  width: 100%;
  height: 44px;
  padding: 0 15px;
  background: #60b1f0;
  font-size: 12px;
  text-transform: uppercase;
  border: 1px #fff solid;
}

.enquire-now .inner .row2 {
  display: block;
  margin: 0 -5px 14px -5px;
}

.enquire-now .inner .row2 input {
  width: calc(50% - 10px);
  margin: 0 5px;
  float: left;
}

.enquire-now .enquire-btn {
  width: 100%;
  padding: 13px 15px;
  font-family: "texgyreadventorbold";
  font-size: 16px;
  text-transform: uppercase;
  background: #ff9600;
  border: none;
}

.enquire-now .enquire-btn span {
  margin-left: 4px;
  font-size: 14px;
  opacity: 0.5;
}

.enquire-now .enquire-btn:hover {
  background: #17a43b;
}

.cert-head {
  display: block;
  margin-top: 15px;
  padding-bottom: 10px;
  position: relative;
}

.cert-head:after {
  width: 100%;
  height: 1px;
  position: absolute;
  top: 10px;
  left: 0px;
  background: #d8d8d8;
  content: "";
}

.cert-head h3 {
  display: inline-block;
  padding-right: 14px;
  background: #fff;
  font-family: "texgyreadventorbold";
  font-size: 18px;
  color: #211d1e;
  z-index: 1;
  position: relative;
}

ul.cert-list {
  display: block;
}

ul.cert-list li {
  width: calc(50% - 30px);
  float: left;
  padding: 14px 0 14px 28px;
  margin-right: 30px;
  font-weight: 700;
  border-bottom: 1px #c0c4c6 dashed;
  position: relative;
}

ul.cert-list li:before {
  display: block;
  position: absolute;
  left: 0px;
  top: 13px;
  font-family: "icomoon";
  font-size: 15px;
  color: #2c97ea;
  content: "\e91f";
}

ul.cert-list li:nth-last-child(2),
ul.cert-list li:last-child {
  border-bottom: none;
}

ul.cert-list li span {
  display: inline-block;
  margin-right: 6px;
  color: #2c97ea;
}

.course-detail {
  display: block;
  padding: 25px 40px;
  margin-top: 50px;
  border: 1px #dfe9f1 solid;
}

.course-detail .duration {
  width: 25%;
  min-height: 85px;
  padding-right: 40px;
  float: left;
  border-right: 1px #dfe9f1 solid;
}

.course-detail .duration.eligible {
  width: 34%;
  padding: 0 40px;
}

.course-detail .duration.eligible .icon {
  font-size: 34px;
}

.course-detail .duration.fee {
  width: 22%;
  padding: 0 40px;
}

.course-detail .duration.fee .detail {
  font-size: 36px;
  color: #17a43b;
}

.course-detail .duration.fee .detail span {
  padding-bottom: 10px;
}

.course-detail .duration .icon {
  width: 67px;
  height: 67px;
  display: table;
  float: left;
  background: #edf1f4;
  border-radius: 50%;
  font-size: 38px;
  color: #79a2c2;
  text-align: center;
}

.course-detail .duration .icon span {
  display: table-cell;
  vertical-align: middle;
}

.course-detail .duration .detail {
  display: block;
  padding: 10px 0 0 16px;
  float: left;
  font-family: "texgyreadventorbold";
  font-size: 18px;
  color: #4f4a4a;
  line-height: 22px;
}

.course-detail .duration .detail span {
  display: block;
  font-family: "texgyreadventorregular";
  font-size: 14px;
  color: #8f9ba1;
  text-transform: uppercase;
}

.course-detail .btn {
  margin: 18px 0 0 40px;
}

/*-----------------------
    course detail tab
  -----------------------*/
.details-tab {
  display: block;
  padding: 50px 0 90px 0;
  background: #ebeff3;
}

#myTabs {
  padding: 0 30px;
  text-align: center;
}

.course-tab {
  margin-bottom: 50px;
  border-bottom: 2px #d8e0e7 solid;
}

.course-tab > li {
  width: 25%;
}

.course-tab > li > a {
  padding: 0 0 26px 0;
  font-family: "texgyreadventorbold";
  font-size: 18px;
  color: #909aa1;
  text-transform: uppercase;
  border: none !important;
}

.course-tab > li > a span {
  display: block;
  padding-bottom: 18px;
  font-size: 50px;
  color: #a4b1bc;
}

.course-tab > li > a .block {
  display: inline;
}

.course-tab > li.active > a,
.course-tab > li.active > a:focus,
.course-tab > li.active > a:hover,
.course-tab > li > a:hover {
  background: none;
  border-bottom: 2px #17a43b solid !important;
  color: #17a43b;
}

.course-tab > li.active > a span,
.course-tab > li.active > a:focus span,
.course-tab > li.active > a:hover span,
.course-tab > li > a:hover span {
  color: #17a43b;
}

.details-tab #curriculam,
.details-tab #schedule {
  background: #fff;
  box-shadow: 0 0 14px #d4d9de;
}

#curriculam .lecture-txt {
  display: block;
  padding-bottom: 2px;
  font-size: 12px;
  color: #a5b1a8;
  text-transform: uppercase;
}

#curriculam .lecture-txt span {
  color: #4f5c53;
}

#curriculam .lecture-txt a.preview {
  display: inline-block;
  padding: 0 12px;
  background: #2c97ea;
  font-size: 11px;
  color: #fff;
  border-radius: 2px;
}

#curriculam .lecture-txt a.preview:hover {
  background: #ff9600;
}

.details-tab .course-table {
  border: 1px #d8e0e7 solid;
  margin: 0px;
}

.details-tab .course-table > thead > tr > th {
  padding: 11px 30px;
  background: #e9f4fd;
  font-family: "texgyreadventorbold";
  text-transform: uppercase;
  font-size: 14px;
  color: #4e5d52;
  border-color: #c3e1f9;
}

.course-table > tbody > tr > td,
.course-table > tfoot > tr > td,
.course-table > thead > tr > td {
  padding: 28px 30px;
}

.course-table > thead > tr,
.course-table > thead > tr > td,
.course-table > thead > tr > th {
  border: 1px #c3e1f9 solid;
}

.course-table > tbody > tr > td,
.course-table > tbody > tr > th,
.course-table > tfoot > tr > td,
.course-table > tfoot > tr > th {
  border: 1px solid #eee;
  font-weight: 700;
  color: #707c82;
}

.table-col1 {
  display: block;
  padding-left: 20px;
  position: relative;
}

.table-col1:before {
  display: block;
  position: absolute;
  left: 0px;
  top: -4px;
  font-family: "FontAwesome";
  font-size: 18px;
  color: #ff9600;
  content: "\f105";
}

#schedule .course-table > thead > tr > th:first-child {
  width: 55%;
}

#schedule .fee-amt {
  font-family: "texgyreadventorbold";
  font-size: 24px;
  color: #585d60;
}

#schedule ul.fee-details {
  display: block;
  padding: 5px 0 0 22px;
}

#schedule ul.fee-details li {
  display: block;
  padding: 8px 0;
  border-bottom: 1px #c9cdce dashed;
  font-weight: normal;
  position: relative;
}

#schedule ul.fee-details li:last-child {
  border-bottom: none;
}

#schedule ul.fee-details li:before {
  display: block;
  position: absolute;
  left: -22px;
  top: 8px;
  font-family: "icomoon";
  font-size: 14px;
  color: #2c97ea;
  content: "\e908";
}

#semester ul.content {
  display: block;
}

#semester ul.content > li {
  display: block;
  padding: 0 0 24px 24px;
  margin-bottom: 24px;
  border-bottom: 1px #c9cdce dashed;
  position: relative;
}

#semester ul.content > li:last-child {
  padding-bottom: 0px;
  margin-bottom: 0px;
}

#semester ul.content > li:before {
  display: block;
  position: absolute;
  left: 0px;
  top: -2px;
  font-family: "icomoon";
  font-size: 16px;
  color: #2c97ea;
  content: "\e908";
}

#semester ul.content > li:last-child {
  border-bottom: none;
}

#semester ul.content > li h4 {
  display: block;
  padding-bottom: 6px;
  font-size: 18px;
  font-weight: 700;
  color: #4c5357;
}

#semester ul.content > li p {
  display: block;
  line-height: 22px;
}

#semester ul.content > li > ul {
  max-width: 430px;
  padding: 10px 0 0 0;
}

#semester ul.content > li > ul > li {
  padding: 6px 0 6px 20px;
  font-size: 12px;
  line-height: 18px;
  position: relative;
}

#semester ul.content > li > ul > li:before {
  display: block;
  position: absolute;
  left: 0px;
  top: 8px;
  font-family: "icomoon";
  font-size: 12px;
  color: #79a2c2;
  content: "\e917";
}

#teachers ul.browse-teachers-list > li {
  border-color: #dbdedf;
}

/*-----------------------
    how to apply
  -----------------------*/
.how-apply {
  display: block;
}

.how-apply h2 {
  color: #2a4356;
}

.how-apply ul {
  display: block;
  padding-top: 20px;
  padding-bottom: 70px;
}

.how-apply ul li {
  display: block;
  text-align: center;
}

.how-apply ul li:nth-child(1):after {
  width: 214px;
  height: 77px;
  display: block;
  content: "";
  position: absolute;
  right: -120px;
  top: 86px;
  background: url(../images/dotted-arrow.png) no-repeat left top;
  z-index: -1;
}

.how-apply ul li:nth-child(2):after {
  width: 221px;
  height: 84px;
  display: block;
  content: "";
  position: absolute;
  right: -122px;
  top: 32px;
  background: url(../images/dotted-arrow1.png) no-repeat left top;
  z-index: -1;
}

.how-apply ul li .icon-block {
  width: 175px;
  height: 175px;
  line-height: 175px;
  position: relative;
  display: block;
  margin: 0 auto;
  border-radius: 50%;
  background: #ff9600;
  text-align: center;
  transition: all 0.3s ease 0s;
}

.how-apply ul li .icon-block .num {
  width: 44px;
  height: 44px;
  position: absolute;
  right: -20px;
  top: 45px;
  display: block;
  font-family: "texgyreadventorbold";
  font-size: 18px;
  line-height: 44px;
  color: #fff;
  background: #2c97ea;
  border-radius: 50%;
}

.how-apply ul li:hover .icon-block,
.how-apply ul li.active .icon-block {
  background: #3eb25c;
}

.how-apply ul li:hover .num,
.how-apply ul li.active .num {
  background: #ff9600;
}

.how-apply ul li h3 {
  display: block;
  padding: 34px 0 25px 0;
  font-family: "texgyreadventorbold";
  font-size: 18px;
  color: #211d1e;
  text-transform: uppercase;
}

.how-apply ul li p {
  display: block;
  padding: 0 40px 0;
}

.how-apply .button-wrapper {
  display: block;
  text-align: center;
  position: relative;
}

.how-apply .button-wrapper:before,
.how-apply .button-wrapper:after {
  width: calc(50% - 110px);
  height: 1px;
  background: #d8d8d8;
  content: "";
  position: absolute;
  top: 50%;
}

.how-apply .button-wrapper:before {
  left: 0;
}

.how-apply .button-wrapper:after {
  right: 0;
}

/*-----------------------
    comments section
  -----------------------*/
.comments-wrapper {
  display: block;
  background: #f3f6f8;
}

.comments-wrapper h2 {
  display: block;
  padding-bottom: 22px;
  font-family: "texgyreadventorbold";
  font-size: 24px;
  color: #606d87;
  text-transform: uppercase;
  border-bottom: 1px #d5d7d9 solid;
  position: relative;
}

.comments-wrapper h2:after {
  display: block;
  width: 166px;
  height: 1px;
  background: #4181b9;
  position: absolute;
  bottom: -1px;
  content: "";
  background: #4181b9;
}

.comments-wrapper ul.comments {
  display: block;
  padding-top: 56px;
  padding-bottom: 40px;
}

.comments-wrapper ul.comments li {
  margin-bottom: 30px;
}

.comments-wrapper ul.comments li .com-img {
  width: 68px;
  height: 68px;
  float: left;
}

.comments-wrapper ul.comments li .com-txt {
  width: calc(100% - 92px);
  padding: 30px 60px 30px 30px;
  float: right;
  background: #fbfcfd;
  border: 1px #d1dadf solid;
  position: relative;
}

.comments-wrapper ul.comments li .com-txt:after,
.comments-wrapper ul.comments li .com-txt:before {
  right: 100%;
  top: 30px;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
}

.comments-wrapper ul.comments li .com-txt:after {
  border-color: rgba(243, 246, 248, 0);
  border-right-color: #fbfcfd;
  border-width: 8px;
  margin-top: -8px;
}

.comments-wrapper ul.comments li .com-txt:before {
  border-color: rgba(209, 218, 223, 0);
  border-right-color: #d1dadf;
  border-width: 9px;
  margin-top: -9px;
}

.comments-wrapper ul.comments li .com-txt h3 {
  display: block;
  padding-bottom: 13px;
  font-family: "texgyreadventorbold";
  font-size: 16px;
  color: #4b5761;
  text-transform: uppercase;
}

.comments-wrapper ul.comments li .com-txt h3 span {
  padding-left: 10px;
  font-family: "Roboto", sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: #96adba;
}

.comments-wrapper ul.comments li .com-txt p {
  padding-bottom: 10px;
  line-height: 20px;
}

.comments-wrapper ul.comments li .com-txt a {
  font-size: 12px;
  font-weight: 700;
  color: #4181b9;
  text-transform: uppercase;
}

.comments-wrapper ul.comments li .com-txt a span {
  display: inline-block;
  vertical-align: middle;
  padding-right: 6px;
  font-size: 16px;
  opacity: 0.5;
  transition: all 0.3s ease 0s;
}

.comments-wrapper ul.comments li .com-txt a:hover {
  color: #ff9600;
}

.comments-wrapper ul.comments li .com-txt a:hover span {
  opacity: 1;
}

.comments-wrapper hr {
  margin: 0px;
  border-color: #d5d7d9;
}

.leave-comment h4 {
  display: block;
  padding: 60px 0;
  font-family: "texgyreadventorbold";
  font-size: 20px;
  color: #606d87;
  text-transform: uppercase;
}

.leave-comment .row1 {
  display: block;
  margin-bottom: 30px;
}

.leave-comment input {
  width: calc(50% - 25px);
  height: 46px;
  padding: 0 20px;
  float: left;
  background: none;
  border: none;
  border-left: 1px #cbd8de solid;
  border-bottom: 1px #cbd8de solid;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  color: #7f8385;
}

.leave-comment input:last-child {
  float: right;
}

.leave-comment textarea {
  width: 100%;
  height: 130px;
  margin-bottom: 40px;
  padding: 10px 20px;
  float: left;
  background: none;
  border: none;
  border-left: 1px #cbd8de solid;
  border-bottom: 1px #cbd8de solid;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  color: #7f8385;
  resize: none;
}

/* ================================================== */
/* 10. contact page */
/* ================================================== */
.inner-banner.contact {
  min-height: 240px;
  padding: 60px 0;
}

.form-wrapper {
  display: block;
}

.form-wrapper .input-row {
  display: block;
}

.form-wrapper .row .col-sm-6 {
  margin-bottom: 40px;
}

.form-wrapper input {
  width: 100%;
  padding: 0 22px;
  height: 46px;
  border: none;
  border-bottom: 1px #dae4e8 solid;
  border-left: 1px #dae4e8 solid;
  font-size: 12px;
  color: #858788;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.form-wrapper input:focus {
  border-color: #9da4a8;
}

.google-map {
  display: block;
  position: relative;
}

.google-map .container {
  position: absolute;
  margin: 0 auto;
  left: 0px;
  right: 0px;
  top: 0px;
}

.google-map #map {
  height: 550px;
  z-index: 1;
}

.google-map #map iframe {
  width: 100%;
  height: 100%;
}

.contact-detail {
  max-width: 360px;
  margin: 96px 0;
  float: right;
  background: #17a43b;
  color: #fff;
  box-shadow: 0 0 30px #bfcdbf;
  position: relative;
  z-index: 2;
}

.contact-detail .address {
  display: block;
  padding: 18px 40px 12px 70px;
}

.contact-detail .inner {
  display: block;
  padding: 18px 0;
  border-bottom: 1px #45b662 solid;
  position: relative;
}

.contact-detail .inner:before {
  width: 16px;
  height: 23px;
  display: block;
  position: absolute;
  left: -30px;
  font-family: "icomoon" !important;
  font-size: 22px;
  content: "\e918";
  color: #a4dbb2;
}

.contact-detail .inner:nth-child(2):before {
  width: 19px;
  height: 19px;
  display: block;
  position: absolute;
  left: -30px;
  font-size: 18px;
  content: "\e91a";
}

.contact-detail .inner:nth-child(3) {
  border-bottom: none;
}

.contact-detail .inner:nth-child(3):before {
  width: 21px;
  height: 15px;
  display: block;
  position: absolute;
  left: -30px;
  top: 20px;
  font-size: 16px;
  content: "\e919";
}

.contact-detail .inner h3 {
  padding-bottom: 6px;
  font-size: 18px;
  color: #fff;
  text-transform: uppercase;
}

.contact-detail .inner p {
  color: #9be5ad;
  line-height: 20px;
}

.contact-detail .inner a {
  padding-bottom: 6px;
  font-size: 18px;
  font-family: "texgyreadventorbold";
  color: #fff;
}

.contact-bottom {
  display: block;
  padding: 27px 0 23px 0;
  background: #ff9600;
  text-align: center;
}

.contact-bottom ul.follow-us {
  display: block;
}

.contact-bottom ul.follow-us li {
  display: inline-block;
  padding: 0 20px;
  font-size: 24px;
}

.contact-bottom ul.follow-us li a {
  color: #fff;
  opacity: 0.7;
}

.contact-bottom ul.follow-us li a:hover {
  color: #fff;
  opacity: 1;
}

.have-question h2 {
  color: #2d4256;
}

.have-question ul li {
  margin-bottom: 0px;
}

.have-question ul li:after {
  display: none;
}

.error {
  margin: 5px 0 0 0;
  font-size: 13px;
  color: #cb0101;
}

.msg {
  display: none;
}

.msg-error {
  display: block;
  padding: 6px 20px;
  margin: 30px 0 0 0;
  font-size: 13px;
  color: #fff;
  background: #c70202;
  border-radius: 4px;
}

.msg-error:after {
  display: inline-block;
  vertical-align: middle;
  font-family: "FontAwesome";
  content: "\f071";
  float: right;
}

.msg-success {
  display: block;
  padding: 6px 20px;
  margin: 30px 0 0 0;
  font-size: 13px;
  color: #fff;
  background: #17a43b;
  border-radius: 4px;
}

.msg-success:after {
  display: inline-block;
  vertical-align: middle;
  font-family: "FontAwesome";
  content: "\f00c";
  float: right;
}

/* ================================================== */
/* 11. blog page */
/* ================================================== */
.inner-banner.blog {
  min-height: 240px;
  padding: 60px 0;
}

.inner-banner.blog .content {
  margin: 0 auto;
  text-align: center;
  margin-top: 75px;
}

.blog-wrapper {
  display: block;
}

.blog-left {
  display: block;
  position: relative;
}

.blog-left:after {
  width: 1px;
  height: 100%;
  display: block;
  background: #e5e5e5;
  position: absolute;
  top: 0px;
  right: -50px;
  content: "";
}

ul.blog-listing {
  display: block;
}

ul.blog-listing > li {
  padding-bottom: 60px;
  margin-bottom: 60px;
  border-bottom: 1px #e9e9e9 solid;
}

ul.blog-listing > li h2 {
  padding: 30px 0 20px 0;
  font-family: "texgyreadventorregular";
  font-size: 24px;
  color: #343a3c;
  line-height: 36px;
  text-transform: none;
}

ul.blog-listing > li p {
  padding-bottom: 26px;
  color: #8d8f8f;
}

ul.blog-listing > li .read-more {
  font-family: "texgyreadventorbold";
  font-size: 14px;
  color: #606d87;
  text-transform: uppercase;
}

ul.blog-listing > li .read-more span {
  vertical-align: middle;
  margin-right: 7px;
  font-size: 18px;
  color: #ff9600;
  transition: all 0.3s ease 0s;
}

ul.blog-listing > li .read-more:hover span {
  color: #17a43b;
}

ul.post-detail {
  display: block;
  padding-bottom: 17px;
}

ul.post-detail li {
  display: inline-block;
  padding-right: 20px;
  font-size: 12px;
  color: #96adba;
}

ul.post-detail li .ico {
  display: inline-block;
  vertical-align: middle;
  padding-right: 6px;
  font-size: 17px;
  color: #afc0c9;
}

ul.post-detail li .bold {
  font-weight: 700;
  color: #5c7e91;
  text-transform: uppercase;
}

ul.post-detail li .label {
  display: inline-block;
  padding: 5px 10px;
  background: #abbfc9 scroll;
  border-radius: 2px;
  font-size: 11px;
  color: #fff;
  text-transform: uppercase;
}

.blog-wrapper .pagination > li > a,
.blog-wrapper .pagination > li > span {
  background: #ecf4fa;
}

.blog-wrapper .pagination > li > a:focus,
.blog-wrapper .pagination > li > a:hover,
.blog-wrapper .pagination > li > span:focus,
.blog-wrapper .pagination > li > span:hover {
  background: #ff9600;
}

.blog-right {
  display: block;
  padding-left: 100px;
}

.search-block {
  display: block;
  margin-bottom: 40px;
  background: #e9e9e9;
}

.search-block input {
  width: calc(100% - 58px);
  height: 42px;
  float: left;
  padding: 0 20px;
  border: none;
  background: none;
}

.search-block .search {
  width: 40px;
  height: 42px;
  float: right;
  border: none;
  background: #ff9600;
  font-size: 16px;
  color: #fff;
  transition: all 0.3s ease 0s;
}

.search-block .search:hover {
  background: #17a43b;
}

.blog-right h3 {
  padding-bottom: 16px;
  font-size: 17px;
  color: #606d87;
  text-transform: uppercase;
}

.category {
  display: block;
  padding-bottom: 70px;
}

.category h3 {
  border-bottom: 1px #eee solid;
}

.category ul {
  display: block;
}

.category ul li {
  display: block;
  border-bottom: 1px #eee solid;
}

.category ul li:last-child {
  border-bottom: none;
}

.category ul li a {
  display: block;
  padding: 10px 0;
  font-size: 13px;
  color: #899eaa;
}

.category ul li a span {
  display: inline-block;
  margin-top: 5px;
  background: #bed1db;
  float: right;
  padding: 1.5px 5px;
  border-radius: 3px;
  font-size: 11px;
  font-weight: 700;
  color: #fff;
  line-height: 14px;
  transition: all 0.3s ease 0s;
}

.category ul li a:hover span {
  background: #2c97ea;
}

.recent-post {
  display: block;
  padding-bottom: 60px;
}

.recent-post ul {
  display: block;
}

.recent-post ul li {
  display: block;
  padding: 15px 0;
  border-bottom: 1px #eee solid;
}

.recent-post ul li:last-child {
  border: none;
}

.recent-post ul li .img-block {
  width: 22%;
  float: left;
}

.recent-post ul li .detail {
  width: 78%;
  padding-left: 15px;
  float: left;
}

.recent-post ul li .detail h4 {
  padding-bottom: 4px;
  font-family: "texgyreadventorbold";
  font-size: 12px;
  color: #5f6f77;
  text-transform: uppercase;
}

.recent-post ul li .detail p {
  font-size: 12px;
  color: #b9c8d0;
}

.recent-post ul li .detail .ico {
  padding-right: 7px;
  font-size: 15px;
  color: #adbec8;
}

.recent-post ul li .detail p span {
  font-weight: 700;
  text-transform: uppercase;
  color: #98abb6;
}

.archives {
  display: block;
  padding-bottom: 60px;
}

.archives h3 {
  border-bottom: 1px #eee solid;
}

.archives ul {
  display: block;
}

.archives ul li {
  display: block;
  border-bottom: 1px #eee solid;
}

.archives ul li:last-child {
  border: none;
}

.archives ul li a {
  display: block;
  padding: 10px 0;
  font-size: 12px;
  font-weight: 700;
  color: #899eaa;
  text-transform: uppercase;
}

.archives ul li a:hover,
.archives ul li:hover span {
  color: #ff9600;
}

.archives ul li span {
  display: inline-block;
  vertical-align: middle;
  margin-top: -2px;
  padding-right: 10px;
  vertical-align: middle;
  font-size: 20px;
  color: #adbec8;
}

.blog-right .tags {
  display: block;
  padding-bottom: 70px;
}

.blog-right .tags h3 {
  border-bottom: 1px #eee solid;
}

ul.tags-list {
  display: block;
  padding-top: 24px;
}

ul.tags-list li {
  display: block;
  margin-right: 8px;
  float: left;
  margin-bottom: 8px;
  font-size: 11px;
  font-weight: bold;
}

ul.tags-list li a {
  padding: 4px 10px;
  color: #fff;
  background: #abbfc9;
  text-transform: uppercase;
  border-radius: 2px;
}

ul.tags-list li a:hover {
  background: #17a43b;
}

/* ================================================== */
/* 12. blog Single page */
/* ================================================== */
.imp-quote {
  display: block;
  padding: 25px 20px 0 66px;
  margin-bottom: 30px;
  border-radius: 4px;
  background: #eef2f4;
  position: relative;
}

.imp-quote:before {
  position: absolute;
  left: 26px;
  top: 30px;
  font-family: "icomoon";
  font-size: 20px;
  content: "\e90d";
  color: #4181b9;
}

.imp-quote > p {
  display: block;
  font-size: 14px;
  font-style: italic;
  color: #79929f !important;
  line-height: 24px;
}

ul.blog-listing.detail > li {
  margin-bottom: 0px;
  padding-bottom: 50px;
}

.blog-left ul.follow-us {
  display: inline-block;
  padding-right: 15px;
  margin-top: -17px;
  background: #fff;
}

.blog-left ul.follow-us li {
  display: block;
  padding: 0 4px;
  float: left;
}

.blog-left ul.follow-us li:first-child {
  padding-left: 0px;
}

.blog-left ul.follow-us li a {
  width: 32px;
  height: 32px;
  display: block;
  border-radius: 50%;
  background: #c6d9ea;
  font-size: 16px;
  line-height: 30px;
  text-align: center;
  color: #fff;
}

.blog-left ul.follow-us li a:hover {
  background: #17a43b;
  border-color: #1c7bc3;
}

.blog-left .comments-wrapper {
  background: none;
  padding: 50px 0 0 0;
  border-bottom: 1px #dfdfdf solid;
}

.blog-left .comments-wrapper ul.comments li .com-txt {
  background: none;
}

.blog-left .comments-wrapper ul.comments li.col-xs-offset-1 {
  padding-left: 42px;
}

.blog-left .leave-comment h4 {
  padding: 50px 0;
}

/* ================================================== */
/* 13. 404 page */
/* ================================================== */
.not-found-wrapper {
  max-width: 480px;
  margin: 130px auto;
  padding: 240px 0 0 0;
  background: url(../images/404-img.png) no-repeat center top / 100%;
  text-align: center;
}

.not-found-wrapper h1 {
  font-size: 186px;
  color: #bcbfc1;
}

.not-found-wrapper p {
  padding-bottom: 60px;
  font-family: "texgyreadventorbold";
  font-size: 30px;
  color: #bcbfc1;
  text-transform: uppercase;
}

/* ================================================== */
/* 14. FAQ opt1 page */
/* ================================================== */

.faq-wrapper {
  display: block;
  background: #f3f6f8;
}

.faq-wrapper .search-block {
  background: #fff;
  border-radius: 4px;
  box-shadow: 0px 4px 4px #eaedef;
}

.faq-wrapper .search-block input {
  height: 58px;
}

.faq-wrapper .search-block .search {
  width: 58px;
  height: 58px;
  border-radius: 0px 4px 4px 0px;
}

ul.faq-listing {
  display: block;
}

ul.faq-listing li {
  margin-bottom: 25px;
  position: relative;
}

ul.faq-listing li:after {
  width: 1px;
  height: calc(100% - 25px);
  display: block;
  position: absolute;
  top: 0px;
  right: 0px;
  background: #e2e4e6;
  content: "";
}

ul.faq-listing li:nth-child(even):after {
  display: none;
}

ul.faq-listing li:nth-child(even) .inner {
  padding-left: 88px;
}

ul.faq-listing li:nth-child(even) .inner:before {
  left: 20px;
}

ul.faq-listing li:nth-last-child(2) .inner,
ul.faq-listing li:last-child .inner {
  border-bottom: none;
}

ul.faq-listing li .inner {
  display: block;
  padding: 50px 40px 50px 68px;
  border-bottom: 1px #e2e4e6 solid;
  position: relative;
}

ul.faq-listing li .inner:before {
  position: absolute;
  left: 0px;
  top: 58px;
  font-family: "icomoon";
  font-size: 46px;
  color: #c5d4da;
  content: "\e91c";
}

ul.faq-listing li h2 {
  padding-bottom: 20px;
  font-size: 18px;
  color: #284962;
  text-transform: uppercase;
  line-height: 26px;
}

.faq-wrapper hr {
  margin: 0px;
  border-color: #e2e4e6;
}

.faq-wrapper .text-center,
.testimonial-outer .text-center {
  margin-top: 80px;
}

.pagination.blue > li > a,
.faq-wrapper .pagination.blue > li > span {
  background: #e3edf5;
}

.pagination.blue > li > a:focus,
.pagination.blue > li > a:hover,
.pagination.blue > li > span:focus,
.pagination.blue > li > span:hover {
  background: #ff9600;
}

/* ================================================== */
/* 15. FAQ opt2 page */
/* ================================================== */
.faq-wrapper.faq2 {
  background: #fff;
}

.faq-wrapper.faq2 .search-block {
  padding-left: 50px;
  box-shadow: none;
}

.faq-wrapper.faq2 .search-block input {
  border: 2px #ff9600 solid;
  border-radius: 4px 0 0 4px;
  border-right: none;
}

.panel-default {
  background: none;
  border: none;
  border-bottom: 1px #ececec solid;
  border-radius: 0px !important;
  box-shadow: none;
}

.panel-group .panel + .panel {
  margin: 0px;
}

.panel-default > .panel-heading {
  padding: 22px 0px;
  background: none;
  border: none;
  color: #738c9f;
}

.panel-default .panel-title {
  font-size: 18px;
  text-transform: inherit;
}

.panel-default .panel-title a {
  display: block;
  padding-left: 50px;
  position: relative;
  font-weight: 600;
  color: var(--secondary-color);
}

.panel-default .panel-title a:before,
.panel-default .panel-title a.collapsed:before {
  position: absolute;
  right: 0px;
  top: -9px;
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  font-size: 32px;
}

.panel-default .panel-title a:before {
  top: -11px;
  content: " - ";
  color: var(--secondary-color);
}

.panel-default .panel-title a.collapsed {
  color: var(--primary-color);
  font-weight: 600;
}

.panel-default .panel-title a.collapsed:before {
  content: " + ";
  color: var(--primary-color);
}

.panel-default .panel-body {
  padding: 0 0 15px 50px;
}

.panel-default .panel-body p {
  padding-bottom: 15px;
}

.panel-default > .panel-heading + .panel-collapse > .panel-body {
  border: none;
}

/* ================================================== */
/* 16. login page */
/* ================================================== */
.fill-bg {
  background: url(../images/login-bg.jpg) no-repeat center center / cover;
  background-attachment: fixed;
}

.fill-bg:after {
  content: "";
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: #000;
  opacity: 0.5;
}

.login-wrapper {
  width: 100%;
  height: 100%;
  position: absolute;
  display: table;
  z-index: 2;
}

.login-wrapper .inner {
  display: table-cell;
  vertical-align: middle;
}

.login-wrapper .login {
  max-width: 500px;
  margin: 30px auto;
}

.login-wrapper .login-logo {
  margin-bottom: 30px;
}

.login-wrapper .login-logo img {
  margin: 0 auto;
}

.login-wrapper .head-block {
  display: block;
  padding: 22px 0;
  text-align: center;
  background: rgba(255, 255, 255, 0.8);
}

.login-wrapper .head-block h1 {
  font-size: 34px;
  text-transform: uppercase;
  color: #353434;
}

.login-wrapper .cnt-block {
  display: block;
  padding: 40px;
  background: #fff;
}

.form-outer input {
  width: 100%;
  height: 46px;
  margin-bottom: 30px;
  padding: 0 20px;
  background: none;
  border: none;
  border-left: 1px #dae4e8 solid;
  border-bottom: 1px #dae4e8 solid;
  font-size: 12px;
  font-weight: 700;
  color: #7f8385;
  z-index: 2;
  position: relative;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.form-outer input:focus {
  border-color: #9da4a8;
}

.login-wrapper .button-outer {
  display: block;
  position: relative;
}

.login-wrapper .or {
  width: 16%;
  display: inline-block;
  font-family: "texgyreadventorbold";
  font-size: 18px;
  text-align: center;
  color: #b7c1c4;
  text-transform: uppercase;
}

.login-wrapper .btn:hover {
  background: #17a43b;
}

.login-wrapper .register {
  display: block;
  float: right;
  background: #7f7f7f;
}

.login-wrapper .remember {
  display: block;
  margin: 36px 0 0 0;
  font-family: "texgyreadventorbold";
  font-size: 12px;
  text-transform: uppercase;
  text-align: center;
}

.login-wrapper .remember .check {
  display: inline-block;
  margin-right: 15px;
  line-height: 15px;
  color: #6e7e83;
}

.login-wrapper .remember .check input {
  height: auto;
  position: absolute;
}

.login-wrapper a.forgot {
  display: inline-block;
  margin-left: 15px;
  color: #6e7e83;
}

.login-wrapper a.forgot:hover {
  color: #17a43b;
}

.login-wrapper a.forgot span {
  display: inline-block;
  margin-right: 8px;
  width: 20px;
  height: 20px;
  color: #fff;
  line-height: 20px;
  text-align: center;
  background: #becfd5;
  border-radius: 50%;
  transition: all 0.3s ease 0s;
}

.login-wrapper a.forgot:hover span {
  background: #17a43b;
}

.login-wrapper .login-footer {
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.8);
  text-align: center;
}

.login-wrapper ul.follow-us {
  display: block;
}

.login-wrapper ul.follow-us li {
  display: inline-block;
  padding: 0 15px;
}

.login-wrapper ul.follow-us li a {
  font-size: 18px;
  color: #849da6;
}

.login-wrapper ul.follow-us li a:hover {
  color: #1e4f61;
}

/* Base for label styling */
[type="checkbox"]:not(:checked),
[type="checkbox"]:checked {
  position: absolute;
  left: -9999px;
}

[type="checkbox"]:not(:checked) + label,
[type="checkbox"]:checked + label {
  position: relative;
  padding-left: 28px;
  cursor: pointer;
}

/* checkbox aspect */
[type="checkbox"]:not(:checked) + label:before,
[type="checkbox"]:checked + label:before {
  content: "";
  position: absolute;
  left: 0;
  top: -1px;
  width: 17px;
  height: 17px;
  background: #dae4e8;
  border-radius: 3px;
}

/* checked mark aspect */
[type="checkbox"]:not(:checked) + label:after,
[type="checkbox"]:checked + label:after {
  font-family: "icomoon";
  font-size: 11px;
  content: "\e91e";
  position: absolute;
  top: 3px;
  left: 3px;
  line-height: 0.8;
  color: #17a43b;
  transition: all 0.2s;
}

/* checked mark aspect changes */
[type="checkbox"]:not(:checked) + label:after {
  opacity: 0;
  transform: scale(0);
}

[type="checkbox"]:checked + label:after {
  opacity: 1;
  transform: scale(1);
}

/* ================================================== */
/* 17. testimonial page */
/* ================================================== */
.testimonial-outer {
  display: block;
}

ul.testimonials {
  text-align: center;
  border-bottom: 1px #dfe5e1 solid;
  position: relative;
}

ul.testimonials:after {
  width: 5px;
  height: 100%;
  display: block;
  content: "";
  position: absolute;
  right: 0px;
  top: 0px;
  background: #fff;
}

ul.testimonials li {
  display: block;
  border-right: 1px #dfe5e1 solid;
  border-bottom: 1px #dfe5e1 solid;
  position: relative;
}

ul.testimonials li .quotblock {
  display: block;
  padding: 50px 20px;
}

ul.testimonials li:nth-last-child(1),
ul.testimonials li:nth-last-child(2),
ul.testimonials li:nth-last-child(3) {
  border-bottom: none;
}

ul.testimonials li:nth-last-child(1):after,
ul.testimonials li:nth-last-child(2):after,
ul.testimonials li:nth-last-child(3):after,
ul.testimonials li:nth-last-child(1):before,
ul.testimonials li:nth-last-child(2):before,
ul.testimonials li:nth-last-child(3):before {
  display: none !important;
}

ul.testimonials li:after,
ul.testimonials li:nth-child(2n):before,
ul.testimonials li:nth-child(3n):before {
  width: 5px;
  height: 7px;
  display: block;
  content: "";
  background: url(../images/testi-clip.png) no-repeat left top;
  position: absolute;
  bottom: -4px;
}

ul.testimonials li:nth-child(1) .quotblock,
ul.testimonials li:nth-child(2) .quotblock,
ul.testimonials li:nth-child(3) .quotblock {
  padding-top: 0px;
}

ul.testimonials li:after {
  right: -1px;
}

ul.testimonials li:nth-child(2n):before,
ul.testimonials li:nth-child(3n):before {
  left: -1px;
  -moz-transform: scaleX(-1);
  -o-transform: scaleX(-1);
  -webkit-transform: scaleX(-1);
  transform: scaleX(-1);
  filter: FlipH;
  -ms-filter: "FlipH";
}

ul.testimonials li img {
  margin: 0 auto 22px;
}

ul.testimonials li .icon-quote-left-icon {
  font-size: 20px;
  color: #ffac34;
}

ul.testimonials li h3 {
  padding: 14px 0 2px 0;
  font-size: 18px;
  color: #464f53;
  text-transform: none;
}

ul.testimonials li .desig {
  display: block;
  padding-bottom: 15px;
  font-size: 12px;
  font-weight: 700;
}

ul.testimonials li p {
  font-family: Georgia, "Times New Roman", Times, serif;
  font-size: 18px;
  line-height: 36px;
}

/* ================================================== */
/* 18. gallery page */
/* ================================================== */
.campus-tour .pagination {
  margin: 80px 0;
}

ul.gallery-filter {
  display: block;
  padding: 0 30px;
  border-bottom: 2px #d8e0e7 solid;
  margin-bottom: 50px;
}

ul.gallery-filter li {
  width: auto;
  padding-inline: 18px;
  display: inline-block;
  font-family: "texgyreadventorbold";
  font-size: 15px;
  text-transform: capitalize;
  position: relative;
}

ul.gallery-filter li a {
  display: inline-block;
  padding: 0 0 18px 0;
  color: #909aa1;
}

ul.gallery-filter li:after {
  width: 0px;
  height: 2px;
  display: block;
  position: absolute;
  bottom: -2px;
  right: 0px;
  content: "";
  background: var(--primary-color);
  color: #4f4a4a;
  transition: all 0.5s ease 0s;
}

ul.gallery-filter li:hover:after,
ul.gallery-filter li.active:after {
  width: 100%;
  left: 0px;
  color: #4f4a4a;
}

ul.gallery-filter li:hover a,
ul.gallery-filter li.active a {
  color: #4f4a4a;
}

.mfp-counter {
  left: 0px;
  right: 0px;
  margin: 0 auto;
  text-align: center;
}

/* ================================================== */
/* 19. news & events page */
/* ================================================== */
.news-wrapper {
  background: #f1f4f6;
}

ul.news-listing > li {
  margin-bottom: 30px;
}

ul.news-listing > li .inner {
  display: block;
  padding-bottom: 15px;
  background: #fff;
  box-shadow: 0 0 8px #e4e7e9;
}

ul.news-listing > li img {
  width: 100%;
}

ul.news-listing > li .cnt-block {
  display: block;
  padding: 40px 30px;
}

ul.news-listing > li h2 {
  padding-bottom: 12px;
  font-family: "texgyreadventorbold";
  font-size: 20px;
  color: #4d5557;
  line-height: 30px;
  text-transform: none;
}

ul.news-listing > li p {
  padding-bottom: 26px;
  color: #8d8f8f;
}

ul.news-listing > li .read-more {
  font-family: "texgyreadventorbold";
  font-size: 14px;
  color: #606d87;
  text-transform: uppercase;
}

ul.news-listing > li .read-more span {
  vertical-align: middle;
  margin-right: 7px;
  font-size: 19px;
  color: #ff9600;
  transition: all 0.3s ease 0s;
}

ul.news-listing > li .read-more:hover span {
  color: #17a43b;
}

.news-wrapper ul.post-detail {
  padding-bottom: 10px;
}

.news-wrapper ul.post-detail li .ico {
  font-size: 17px;
}

.news-wrapper .text-center {
  margin-top: 50px;
}

/* ================================================== */
/* 20. privacy page */
/* ================================================== */
.privacy-wrapper {
  background: #f1f4f6;
}

.privacy-wrapper h2 {
  display: block;
  padding-bottom: 25px;
  font-size: 30px;
  color: #343a3c;
  line-height: 32px;
  text-transform: none;
}

.privacy-wrapper p {
  padding-bottom: 25px;
  color: #7d8081;
}

ul.privacy-listing {
  padding: 10px 0;
}

ul.privacy-listing > li {
  border-bottom: 1px dashed #c9cdce;
  color: #707c82;
  font-weight: 700;
  margin-bottom: 8px;
  padding: 0 0 15px 24px;
  position: relative;
}

ul.privacy-listing > li:last-child {
  border-bottom: none;
}

ul.privacy-listing > li:before {
  display: block;
  position: absolute;
  left: 0px;
  top: 4px;
  font-family: "icomoon";
  font-size: 12px;
  color: #79a2c2;
  content: "\e917";
}

ul.privacy-listing > li > ul {
  padding: 4px 0;
}

ul.privacy-listing > li > ul > li {
  font-size: 12px;
  font-weight: normal;
}

ul.privacy-listing > li > ul > li:before {
  display: inline-block;
  vertical-align: middle;
  top: -2px;
  width: 5px;
  height: 5px;
  margin-right: 12px;
  border-radius: 50%;
  content: "";
  background: #98b4cb;
}

.privacy-wrapper hr {
  border-color: #daddde;
}

.privacy-wrapper h3 {
  display: block;
  padding-bottom: 25px;
  font-size: 24px;
  color: #343a3c;
  line-height: 32px;
  text-transform: none;
}

.privacy-wrapper .padding-top {
  padding-top: 30px;
}

.imp-note {
  display: block;
  margin: 10px 0 38px 0;
  box-shadow: 0 0 8px #e4e7e9;
  padding: 24px 40px 5px 22px;
  background: #fdfdfe;
}

.imp-note span {
  width: 72px;
  height: 72px;
  line-height: 52px;
  margin-right: 25px;
  display: block;
  float: left;
  border-radius: 50%;
  background: #fec472;
  font-size: 24px;
  font-weight: 700;
  text-align: center;
  color: #fff;
  border: 12px #fdf2e4 solid;
}

.imp-note p {
  padding-bottom: 25px;
  font-size: 13px;
  color: #94a6af;
  line-height: 22px;
  overflow: hidden;
}

ol.ord-listing {
  padding-left: 68px;
  counter-reset: li;
  list-style: none;
  *list-style: decimal;
}

ol.ord-listing li {
  position: relative;
  min-height: 60px;
  margin-top: 15px;
  padding-bottom: 20px;
  color: #7d8081;
  border-bottom: 1px #daddde solid;
}

ol.ord-listing li:before {
  content: counter(li);
  counter-increment: li;
  color: #fff;
  background: #17a43b;
  border-radius: 50%;
  font-size: 12px;
  font-weight: 700;
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  display: block;
  position: absolute;
  top: 7px;
  left: -50px;
}

ol.ord-listing li:last-child {
  padding-bottom: 0px;
  border-bottom: none;
}

/* ================================================== */
/* 21. register page */
/* ================================================== */
.form-outer input.country-code {
  float: left;
  width: 16%;
}

.form-outer input.phone-no {
  float: right;
  width: calc(84% - 18px);
}

.register .cnt-block textarea {
  width: 100%;
  height: 122px;
  margin-bottom: 30px;
  padding: 0 20px;
  background: none;
  border: none;
  border-left: 1px #dae4e8 solid;
  border-bottom: 1px #dae4e8 solid;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  color: #7f8385;
  resize: none;
}

.datepicker {
  min-width: 260px;
  border: 1px #dae4e8 solid;
  box-shadow: none;
}

.form-outer .date {
  position: relative;
}

.form-outer .date .icon-calander-icon {
  position: absolute;
  right: 0px;
  top: 14px;
  font-size: 19px;
  color: #aab8be;
}

.register .cnt-block {
  padding: 70px 80px;
}

.register .regiter-inner {
  max-width: 1000px;
  padding: 0 15px;
  margin: 30px auto;
}

.form-outer h2 {
  padding-bottom: 14px;
  font-size: 13px;
  text-transform: uppercase;
  color: #353434;
}

.form-outer ul.select-opt {
  list-style: none;
  height: 100%;
  width: 100%;
  margin: 0;
  padding: 0 0 40px 0;
}

ul.select-opt li {
  color: #aaa;
  display: block;
  position: relative;
  float: left;
  font-size: 12px;
  text-transform: uppercase;
}

.login-wrapper .cnt-block ul.select-opt li input {
  height: auto;
  margin: 0px;
}

ul.select-opt li input[type="radio"] {
  position: absolute;
  visibility: hidden;
}

ul.select-opt li label {
  display: block;
  position: relative;
  padding: 0px 30px 0 26px;
  margin: 0px;
  z-index: 9;
  cursor: pointer;
  -webkit-transition: all 0.25s linear;
}

ul.select-opt li .check {
  display: block;
  position: absolute;
  background: #dae4e8;
  border-radius: 2px;
  height: 17px;
  width: 17px;
  top: 4px;
  left: 0px;
  z-index: 5;
}

ul.select-opt li:hover .check {
  border: 3px solid #dae4e8;
}

ul.select-opt li .check::before {
  display: block;
  position: absolute;
  content: "";
  border-radius: 2px;
  height: 11px;
  width: 11px;
  top: 0px;
  left: 0px;
  margin: auto;
}

.form-outer input[type="radio"]:checked ~ .check {
  border: 3px solid #dae4e8;
}

.form-outer input[type="radio"]:checked ~ .check::before {
  background: #ef5b34;
}

.form-outer input[type="radio"]:checked ~ label {
  color: #343a3c;
}

/* ================================================== */
/* 22. apply online page */
/* ================================================== */
.form-outer .select2.select2-container {
  width: 100% !important;
}

.form-outer .select2-container--default .select2-selection--single {
  width: 100%;
  height: 46px;
  margin-bottom: 1px;
  padding: 0 20px;
  background: none;
  border: none;
  border-left: 1px #dae4e8 solid;
  border-bottom: 1px #dae4e8 solid;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  color: #7f8385;
  border-radius: 0px;
}

.form-outer
  .select2-container--default
  .select2-selection--single
  .select2-selection__rendered {
  padding-left: 0px;
  color: #7f8385;
  line-height: 43px;
}

.form-outer .col-left {
  float: left;
}

.form-outer .col-left:first-child {
  padding-right: 10%;
}

/* ================================================== */
/* 23. generic UI page */
/* ================================================== */
.generic-wrapper {
  display: block;
}

.generic-wrapper .head-block {
  display: block;
  padding-bottom: 50px;
}

.generic-wrapper .head-block h2 {
  padding-bottom: 10px;
}

.generic-wrapper .head-block p {
  color: #7d8081;
}

.generic-wrapper hr {
  margin: 0;
  border-color: #dde5e9;
}

.generic-wrapper .heading-group {
  display: block;
  margin-bottom: 10px;
}

.heading-group h1,
.heading-group h2,
.heading-group h3,
.heading-group h4,
.heading-group h5,
.heading-group h6 {
  padding-bottom: 30px;
}

.heading-right {
  display: block;
}

.heading-right ul.privacy-listing,
.heading-right ul.privacy-listing li:last-child {
  padding-bottom: 0px;
  margin-bottom: 0px;
}

.heading-right p {
  padding-bottom: 20px;
}

ul.our-spec {
  display: block;
}

ul.our-spec li {
  width: 33.3%;
  padding-bottom: 50px;
  float: left;
  font-weight: 700;
  color: #284962;
  text-align: center;
  line-height: 20px;
}

ul.our-spec li .icon {
  display: block;
  padding-bottom: 15px;
}

ul.our-spec li .icon img {
  border-radius: 3px;
}

ul.our-spec li:last-child,
ul.our-spec li:nth-last-child(2),
ul.our-spec li:nth-last-child(3) {
  padding-bottom: 0px;
}

.button-group {
  margin-bottom: 70px;
}

.button-group a {
  display: inline-block;
  vertical-align: middle;
}

a.btn-circle {
  width: 60px;
  height: 60px;
  margin: 0 8px;
  display: inline-block;
  line-height: 64px;
  border-radius: 50%;
  text-align: center;
  background: #ff9600;
  font-size: 22px;
  color: #fff;
}

a.btn-circle.more {
  background: #17a43b;
}

a.btn-circle.plus {
  background: #2c97ea;
}

a.btn-circle.plus:hover {
  background: #ff9600;
}

a.btn-circle:hover {
  background: #2c97ea;
}

.button-group a.btn {
  margin: 0 8px;
}

.generic-wrapper .imp-note {
  margin: 0px;
}

.button-group1 {
  margin: 0;
}

.button-group1 a.download-pros,
.button-group1 a.download-cert {
  width: calc(50% - 20px);
  margin: 0 10px;
}

.generic-wrapper ul.tags-list,
.generic-wrapper ul.teachers-follow {
  padding-top: 0px;
  margin-bottom: 40px;
}

.generic-wrapper .enquire-now {
  margin: inherit;
}

/* ================================================== */
/* 24. Coming Soon */
/* ================================================== */
.coming-soon {
  display: block;
}

.coming-soon .left {
  height: 100vh;
  display: table;
  text-align: center;
  position: relative;
}

.coming-soon .inner {
  display: table-cell;
  vertical-align: middle;
  position: relative;
}

.coming-soon .left a.logo {
  width: 200px;
  margin: 0 auto;
  position: absolute;
  left: 0;
  right: 0;
  top: 80px;
}

.coming-soon .left .cnt-block {
  max-width: 490px;
}

.coming-soon .cnt-block {
  max-width: 520px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.coming-soon .cnt-block h1 {
  display: block;
  padding-bottom: 40px;
  font-size: 60px;
}

.stay-connected {
  width: 100%;
  position: absolute;
  bottom: 80px;
}

.stay-connected h2 {
  padding-bottom: 25px;
  font-size: 18px;
  text-transform: inherit;
}

.coming-soon ul.follow-us {
  display: block;
}

.coming-soon ul.follow-us li {
  display: inline-block;
  padding: 0 3px;
}

.coming-soon ul.follow-us li a {
  width: 38px;
  height: 38px;
  display: block;
  background: rgba(28, 123, 195, 0.3);
  border-radius: 50%;
  font-size: 16px;
  line-height: 36px;
  text-align: center;
  color: #fff;
}

.coming-soon ul.follow-us li a:hover {
  background: rgba(28, 123, 195, 1);
  border-color: #1c7bc3;
}

.coming-soon .right {
  height: 100vh;
  display: table;
  background: url(../images/coming-soon-bg.jpg) no-repeat center top / cover;
  text-align: center;
  position: relative;
  color: #fff;
}

.coming-soon .right:after {
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  left: 0px;
  top: 0px;
  content: "";
  background: rgba(0, 0, 0, 0.7);
}

.coming-soon .right .ready {
  display: block;
  padding-bottom: 60px;
}

.coming-soon .right h2 {
  padding-bottom: 20px;
  font-family: "texgyreadventorregular";
  font-size: 20px;
  text-transform: inherit;
  color: #fff;
}

.coming-soon .right ul {
  display: block;
}

.coming-soon .right ul li {
  display: inline-block;
  position: relative;
  padding: 0 20px;
  font-weight: 300;
  color: #fff;
}

.coming-soon .right ul li:after {
  display: inline-block;
  vertical-align: middle;
  color: #fff;
  content: ":";
  font-size: 60px;
  position: absolute;
  right: -5px;
  top: 18%;
}

.coming-soon .right ul li:last-child:after {
  display: none;
}

.coming-soon .right ul li span {
  display: block;
  font-size: 13px;
  text-transform: uppercase;
}

.coming-soon .right ul li .count {
  font-size: 70px;
  font-weight: 300;
  line-height: 70px;
}

.coming-soon .stay-tuned {
  max-width: 400px;
  margin: 0 auto;
}

.coming-soon .stay-tuned p {
  max-width: 320px;
  padding-bottom: 25px;
  margin: 0 auto;
  opacity: 0.7;
}

.coming-soon .stay-tuned input[type="email"] {
  width: calc(100% - 115px);
  height: 46px;
  padding: 0 0 0 55px;
  border: none;
  border-radius: 25px 0 0 25px;
  color: #9cb0be;
  text-transform: none;
}

.coming-soon .stay-tuned #mc_embed_signup_scroll {
  position: relative;
}

.coming-soon .stay-tuned #mc_embed_signup_scroll:before {
  position: absolute;
  left: 25px;
  top: 50%;
  transform: translateY(-50%);
  font-family: "icomoon";
  font-size: 20px;
  content: "\e907";
  color: #c0cfda;
  z-index: 1;
}

.coming-soon .stay-tuned input::-webkit-input-placeholder,
.banner2 .form-group .form-control::-webkit-input-placeholder {
  text-transform: none;
}

.coming-soon .stay-tuned input:-moz-placeholder,
.banner2 .form-group .form-control:-moz-placeholder {
  /* Firefox 18- */
  text-transform: none;
}

.coming-soon .stay-tuned input::-moz-placeholder,
.banner2 .form-group .form-control::-moz-placeholder {
  /* Firefox 19+ */
  text-transform: none;
}

.coming-soon .stay-tuned input:-ms-input-placeholder,
.banner2 .form-group .form-control:-ms-input-placeholder {
  text-transform: none;
}

.coming-soon .stay-tuned .clear {
  float: right;
}

.coming-soon .stay-tuned .clear .button {
  width: 115px;
  background: #ff9600;
  padding: 10px 0;
  border: none;
  border-radius: 0 25px 25px 0;
  transition: all 0.3s ease 0s;
}

.coming-soon .stay-tuned .clear .button:hover {
  background: #2c97ea;
}

/* ================================================== */
/* 25. Responsive Style */
/* ================================================== */
@media (min-width: 1200px) and (max-width: 1366px) {
  .logos {
    padding: 40px 0;
  }
}

/* Portrait tablet to landscape and desktop */
@media (min-width: 992px) and (max-width: 1199px) {
  .nav > li > a {
    padding: 19px 20px;
  }

  .navbar-form {
    width: 24%;
    padding: 0 20px;
  }

  .banner-outer .content h1 {
    font-size: 28px;
    line-height: 48px;
  }

  .banner-outer .content h1 span {
    font-size: 60px;
  }

  .news-events ul li .cnt-block h3 {
    font-size: 18px;
  }

  .campus-tour {
    padding: 60px 0 0 0;
    padding-bottom: 0px;
  }

  .campus-tour ul.gallery li a {
    width: 50px;
    height: 50px;
    line-height: 50px;
    font-size: 16px;
  }

  .campus-tour ul.gallery li h3 {
    font-size: 20px;
  }

  .campus-tour ul.gallery li a {
    margin: 0 2px;
  }

  .campus-tour ul.gallery li .overlay {
    margin-top: -55px;
  }

  .details-tab,
  .padding-lg {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  a.download-pros,
  a.download-cert {
    padding: 20px 16px;
  }

  a.download-pros .txt-block,
  a.download-cert .txt-block {
    text-transform: none;
  }

  a.download-pros .ico-block,
  a.download-cert .ico-block {
    padding-right: 10px;
  }

  .logos {
    padding: 40px 0;
  }

  .testimonial ul li p {
    padding-bottom: 25px;
    font-size: 20px;
    line-height: 36px;
  }

  .footer ul.follow-us li a {
    width: 36px;
    height: 36px;
    line-height: 34px;
  }

  .footer .connect-us {
    width: 100%;
  }

  .footer .subscribe {
    width: 100%;
    padding-right: 30px;
  }

  .footer .instagram {
    padding-right: 0px;
  }

  .about-video .container {
    height: 450px;
  }

  .about-video p {
    font-size: 55px;
  }

  .about {
    padding-bottom: 60px;
  }

  .about ul.our-links li {
    padding: 44px 0 60px 3%;
  }

  .course-detail {
    padding: 20px 30px;
    margin: 30px 0 0 0;
  }

  .course-detail .duration {
    width: 23%;
    padding-right: 20px;
  }

  .course-detail .duration.eligible {
    padding: 0 20px;
  }

  .course-detail .duration.fee {
    width: 21%;
    padding: 0 20px;
  }

  .course-detail .btn {
    margin: 10px 0 0 32px;
  }

  .how-apply ul li:nth-child(1):after,
  .how-apply ul li:nth-child(2):after {
    top: 54px;
  }

  .how-apply ul li p {
    padding: 34px 0 25px;
  }

  .blog-right {
    padding-left: 60px;
  }

  ul.blog-listing > li {
    padding-bottom: 30px;
    margin-bottom: 40px;
  }

  .blog-left .comments-wrapper ul.comments li.col-xs-offset-1 {
    padding-left: 53px;
  }

  .not-found-wrapper {
    width: 60%;
  }

  .not-found-wrapper h1 {
    font-size: 186px;
  }

  .login-wrapper .login {
    max-width: 460px;
  }

  .login-wrapper .login-logo {
    margin-bottom: 40px;
    text-align: center;
  }

  .login-wrapper .login-logo a {
    width: 250px;
    display: inline-block;
  }

  .login-wrapper .head-block {
    padding: 22px 0;
  }

  .login-wrapper .head-block h1 {
    font-size: 30px;
  }

  .login-wrapper .cnt-block {
    padding: 30px;
  }

  .login-wrapper .or {
    width: 20%;
  }

  .login-wrapper .btn {
    padding: 10px 20px;
  }

  ul.testimonials li p {
    font-size: 16px;
    line-height: 30px;
  }

  .coming-soon .cnt-block {
    max-width: 400px;
  }

  .coming-soon .cnt-block h1 {
    font-size: 50px;
  }

  .coming-soon .right ul li {
    padding: 0 15px;
  }

  .coming-soon .right ul li .count {
    font-size: 60px;
  }

  .banner2 ul.banner-list li:after {
    right: 35px;
  }

  .popular-cources ul.courses-list li .cnt-block {
    padding: 40px 25px;
  }

  .popular-cources ul.courses-list li h4 {
    font-size: 16px;
  }

  .wt-makes-different .left {
    padding-top: 100px;
    padding-bottom: 140px;
  }

  .wt-makes-different .left .q-mark {
    width: 80px;
    height: 80px;
    font-size: 50px;
    line-height: 76px;
  }

  .wt-makes-different .left h2 {
    margin-bottom: 40px;
    font-size: 52px;
    line-height: 64px;
  }

  .wt-makes-different .right {
    padding: 80px 0 0 60px;
  }

  .logos2 ul {
    padding-top: 40px;
  }
}

@media (max-width: 991px) {
  .faq-wrapper.faq2 .search-block input {
    width: calc(100% - 48px);
  }

  .panel-default .panel-title {
    font-size: 17px;
  }

  .faq-wrapper.faq2 .search-block,
  .panel-default .panel-title a,
  .panel-default .panel-body {
    padding-left: 40px;
  }

  .panel-default .panel-title a:before,
  .panel-default .panel-title a.collapsed:before {
    font-size: 28px;
    top: -10px;
  }

  .coming-soon .left,
  .coming-soon .right {
    width: 100%;
  }

  .banner2 {
    min-height: inherit;
    padding: 60px 0;
  }

  .banner2 h1 {
    padding-bottom: 25px;
    font-size: 42px;
    line-height: 50px;
  }

  .banner2 .cnt-block {
    max-width: 630px;
  }

  .banner2 .form-group {
    width: 80%;
    margin: 30px 0 40px 0;
  }

  .banner2 .form-group .form-control {
    width: calc(100% - 60px);
    height: 50px;
    padding: 0 30px;
    font-size: 16px;
  }

  .banner2 .form-group .search-btn {
    width: 50px;
    height: 50px;
    padding: 0px;
  }

  .intro-sec .video-block .play-outer {
    width: 200px;
    height: 68px;
    padding: 10px;
  }

  .intro-sec h2 {
    padding-bottom: 20px;
    font-size: 32px;
    line-height: 40px;
  }

  .intro-sec .know-more-wrapper {
    margin-top: 20px;
  }

  .popular-cources .title-row {
    margin-bottom: 30px;
  }

  .popular-cources h3 {
    font-size: 28px;
  }

  .popular-cources a.view-courses {
    font-size: 14px;
  }

  .popular-cources a.view-courses span {
    margin: -2px 10px 0 0;
    font-size: 16px;
  }

  .popular-cources ul.courses-list li {
    margin-bottom: 30px;
  }

  .popular-cources ul.courses-list li .cnt-block {
    padding: 40px 50px;
  }

  .wt-makes-different .left {
    padding-top: 100px;
    padding-bottom: 140px;
  }

  .wt-makes-different .left .q-mark {
    width: 72px;
    height: 72px;
    font-size: 42px;
    line-height: 68px;
  }

  .wt-makes-different .left h2 {
    margin-bottom: 40px;
    font-size: 46px;
    line-height: 56px;
  }

  .wt-makes-different .right {
    padding: 60px 0 10px 45px;
  }

  ul.makes-different-list li {
    margin-bottom: 50px;
  }

  ul.makes-different-list li h3 {
    font-size: 16px;
  }

  .why-choose h2 {
    padding-bottom: 40px;
  }

  .logos2 ul {
    padding-top: 30px;
  }
}

/* Portrait tablet */
@media (min-width: 768px) and (max-width: 991px) {
  .header-top ul.follow-us li {
    padding-right: 12px;
  }

  .header-middle .contact ul {
    padding-right: 28px;
  }

  .header-middle .contact ul li {
    padding: 0 20px;
    font-size: 16px;
  }

  .header-middle a.login {
    padding: 5px 14px;
  }

  .navbar-inverse .navbar-nav > li > a {
    font-size: 14px;
  }

  .navbar-inverse .container {
    padding: 0px;
  }

  .nav > li > a {
    padding: 18px 12px;
  }

  .navbar-form {
    width: 24%;
    padding: 0 15px;
  }

  .banner-outer .slide1,
  .banner-outer .slide2,
  .banner-outer .slide3 {
    height: 450px;
  }

  .banner-outer .content h1 {
    font-size: 22px;
    line-height: 40px;
  }

  .banner-outer .content h1 span {
    font-size: 50px;
  }

  .banner-outer .slide2 .content h1,
  .banner-outer .slide3 .content h1 {
    font-size: 46px;
  }

  .banner-outer .content p {
    font-size: 14px;
  }

  .about {
    padding-bottom: 60px;
  }

  .about .video-block a {
    width: 50px;
    margin-top: -25px;
  }

  .about ul.our-links li {
    padding: 34px;
    text-align: center;
  }

  .about ul.our-links li .icon {
    width: 26%;
    float: none;
    margin: 0 auto;
    padding-bottom: 15px;
  }

  .about ul.our-links li .detail {
    width: auto;
    padding-left: 0px;
  }

  .about .btn-wrapper {
    margin-bottom: 30px;
  }

  .our-impotance ul li .inner {
    padding: 30px 0;
  }

  .details-tab,
  .padding-lg {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .our-cources h2,
  .how-study h2,
  .why-choose h2,
  .news-events h2,
  .campus-tour h2,
  .testimonial h2,
  .about h2,
  .browse-teacher h2,
  .how-apply h2,
  .have-question h2,
  .homework-sec h2 {
    font-size: 30px;
  }

  .our-cources ul.inner li:nth-child(9) {
    margin-bottom: 160px;
  }

  .our-cources ul.inner li:nth-child(3n):after,
  .our-cources ul.inner li:nth-child(n + 10):before {
    display: none;
  }

  .our-cources ul.inner li:nth-child(9):before {
    width: 100%;
    height: 1px;
    position: absolute;
    left: 0px;
    bottom: -70px;
    display: block;
    background: #fff;
    content: " ";
    opacity: 0.3;
  }

  ul.our-strength li span {
    font-size: 38px;
  }

  ul.our-strength li {
    width: 24%;
  }

  .news-events ul li .cnt-block {
    padding: 32px 20px 20px;
  }

  .news-events ul li .cnt-block h3 {
    padding-bottom: 26px;
    font-size: 18px;
    line-height: 24px;
  }

  .news-events ul li .bottom-block {
    padding: 20px 0 0;
  }

  .news-events ul li .icon {
    margin-right: 4px;
  }

  .news-events ul li .icon span {
    font-size: 14px !important;
  }

  .news-events ul li .cnt-block .plus-icon {
    width: 54px;
    height: 54px;
    line-height: 54px;
  }

  .news-events ul li .date span,
  .news-events ul li .comment span {
    font-size: 11px;
  }

  .how-study ul li .cnt-block {
    max-width: 152px;
  }

  .how-study ul li a.more {
    right: 10px;
  }

  .how-study ul li .cnt-block h3 {
    font-size: 18px;
    line-height: 20px;
  }

  .campus-tour {
    padding-bottom: 0px;
  }

  .campus-tour ul.gallery li h3 {
    font-size: 14px;
  }

  .campus-tour ul.gallery li a {
    width: 34px;
    height: 34px;
    margin: 0 2px;
    line-height: 34px;
    font-size: 14px;
  }

  .campus-tour ul.gallery li .overlay {
    margin-top: -58px;
  }

  .campus-tour ul.gallery li:hover .overlay {
    top: 60%;
  }

  .campus-tour ul.gallery li p {
    padding-bottom: 10px;
  }

  .logos {
    padding: 30px 0;
  }

  .testimonial ul li p {
    font-size: 18px;
    line-height: 30px;
  }

  .testimonial ul li span {
    font-size: 16px;
  }

  .testimonial .wrapper:before,
  .testimonial .wrapper:after {
    font-size: 38px;
  }

  .footer .footer-logo {
    padding-bottom: 20px;
  }

  .footer p {
    line-height: 20px;
  }

  .footer .bottom {
    padding: 20px 0;
  }

  .footer .connect-us {
    width: 100%;
  }

  .footer .subscribe {
    width: 100%;
    padding-right: 30px;
  }

  .footer .subscribe input[type="email"] {
    width: 75%;
  }

  .footer .subscribe .clear:before {
    font-size: 18px;
    top: 3px;
  }

  .footer .subscribe .clear .button {
    width: 40px;
    height: 34px;
  }

  .footer ul.follow-us li {
    padding: 0 2px;
  }

  .footer ul.follow-us li a {
    width: 30px;
    height: 30px;
    line-height: 28px;
    font-size: 14px;
    border-width: 1px;
  }

  .footer .instagram {
    padding: 14px 15px 18px 0;
  }

  .footer .subscribe input[type="email"] {
    width: 78%;
    height: 34px;
  }

  ul.browse-teachers-list p {
    padding: 0 0 20px 0;
  }

  .about-video .container {
    height: 400px;
  }

  .about-video p {
    font-size: 50px;
  }

  .inner-banner a.apply-online {
    width: 100%;
  }

  .enquire-wrapper {
    max-width: none;
    margin-top: 30px;
  }

  .enquire-now {
    margin-top: 20px;
    max-width: none;
  }

  .course-detail {
    padding: 20px;
    margin: 30px 0 0 0;
  }

  .course-detail .duration {
    width: 33.3%;
    padding-right: 20px;
  }

  .course-detail .duration .icon {
    float: none;
    margin: 0 auto;
  }

  .course-detail .duration .detail {
    width: 100%;
    padding-left: 0px;
    text-align: center;
  }

  .course-detail .duration.eligible {
    width: 33.3%;
    padding: 0 20px;
  }

  .course-detail .duration.fee {
    width: 33.3%;
    border-right: none;
    padding: 0 20px;
  }

  .course-detail .btn {
    margin: 10px 0 0 32px;
  }

  .how-apply ul li .icon-block {
    width: 135px;
    height: 135px;
    line-height: 135px;
  }

  .how-apply ul li .icon-block img {
    width: 60px;
  }

  .how-apply ul li p {
    padding: 34px 0 25px;
  }

  .how-apply ul li .icon-block .num {
    width: 34px;
    height: 34px;
    line-height: 34px;
    font-size: 16px;
    top: 20px;
    right: -8px;
  }

  .how-apply ul li:nth-child(1):after {
    top: 10px;
  }

  #myTabs {
    padding: 0px;
  }

  .course-tab > li > a {
    padding: 18px 0px;
    font-size: 16px;
  }

  .course-table > tbody > tr > td,
  .course-table > tfoot > tr > td,
  .course-table > thead > tr > td {
    padding: 18px 20px;
  }

  #schedule .fee-amt {
    font-size: 20px;
  }

  #semester ul.content > li h4 {
    font-size: 16px;
  }

  ul.blog-listing > li {
    padding-bottom: 30px;
    margin-bottom: 40px;
  }

  ul.blog-listing > li h2 {
    padding: 20px 0 10px;
    font-size: 20px;
  }

  .blog-left:after {
    right: -20px;
  }

  .blog-right {
    padding-left: 20px;
  }

  .search-block input {
    width: 78%;
  }

  ul.post-detail li {
    padding-right: 15px;
  }

  .category ul li a {
    font-size: 12px;
  }

  .blog-left .comments-wrapper ul.comments li.col-xs-offset-1 {
    padding-left: 64px;
  }

  .not-found-wrapper {
    width: 60%;
    margin: 80px auto;
    padding-top: 198px;
  }

  .not-found-wrapper h1 {
    font-size: 166px;
  }

  .faq-wrapper .search-block input {
    height: 48px;
  }

  .faq-wrapper .search-block .search {
    width: 48px;
    height: 48px;
  }

  ul.faq-listing li .inner {
    padding: 20px 20px 20px 68px;
  }

  ul.faq-listing li .inner:before {
    top: 36px;
  }

  .faq-wrapper .text-center,
  .testimonial-outer .text-center {
    margin-top: 40px;
  }

  .login-wrapper .login {
    max-width: 460px;
  }

  .login-wrapper .login-logo {
    margin-bottom: 40px;
    text-align: center;
  }

  .login-wrapper .login-logo a {
    width: 250px;
    display: inline-block;
  }

  .login-wrapper .head-block {
    padding: 22px 0;
  }

  .login-wrapper .head-block h1 {
    font-size: 30px;
  }

  .login-wrapper .cnt-block {
    padding: 30px;
  }

  .login-wrapper .or {
    width: 20%;
  }

  .login-wrapper .btn {
    padding: 10px 20px;
  }

  ul.testimonials li p {
    font-size: 15px;
    line-height: 26px;
  }

  ul.testimonials li .quotblock {
    padding: 40px 10px;
  }

  ul.gallery-filter li {
    width: auto;
    font-size: 17px;
    padding: 0 16px;
  }

  ul.gallery-filter li a {
    padding-bottom: 20px;
  }

  .campus-tour .pagination {
    margin: 50px 0;
  }

  .news-wrapper .text-center {
    margin-top: 10px;
  }

  ul.news-listing > li h2 {
    font-size: 18px;
    line-height: 26px;
  }

  ul.news-listing > li p {
    line-height: 24px;
  }

  .news-wrapper ul.post-detail li {
    padding-right: 10px;
    padding-bottom: 2px;
  }

  ul.news-listing > li .cnt-block {
    padding: 20px;
  }

  .form-outer .cnt-block {
    padding: 50px 20px;
  }

  .form-outer ul.select-opt {
    padding-bottom: 30px;
  }

  .form-outer .col-left:first-child {
    padding-right: 0;
  }

  .col-left ul.select-opt li label {
    padding-right: 21px;
  }

  .generic-wrapper ul.our-spec {
    padding-bottom: 40px;
  }

  .generic-wrapper .button-group {
    text-align: center;
  }
}

@media (min-width: 768px) {
  .navbar-header {
    display: none;
  }
}

/* Landscape phone to portrait tablet */
@media (max-width: 767px) {
  .navbar {
    min-height: 45px;
  }

  .navbar-inverse .navbar-toggle {
    border: none;
    height: fit-content;
  }

  .nav-logo-link.desktop {
    display: none;
  }

  .navbar-inverse .navbar-toggle:focus,
  .navbar-inverse .navbar-toggle:hover {
    background: transparent;
  }

  .navbar-form {
    background: none;
    border: none;
    box-shadow: none;
  }

  .navbar-form .search-btn {
    top: 4px;
  }

  .form-control {
    padding: 6px 10px;
    
  }
  .error
{
     
    padding-left:24px !important;
}

  .navbar-toggle {
    padding: 6px 0px;
  }

  .navbar-toggle .icon-bar {
    width: 26px;
    height: 3px;
  }

  .navbar-collapse {
    box-shadow: none;
    border: none;
    padding: 0 15px;
  }

  .navbar-form {
    width: auto;
    margin: 0 -15px;
  }

  .nav > li > a {
    padding: 12px 20px;
  }

  .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:focus,
  .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:hover {
    color: #333;
  }

  .navbar-nav .open .dropdown-menu {
    background: #fff;
    border-radius: 0px;
    border-left: 5px solid var(--primary-color);
    margin-left: 20px;
  }

  .navbar-inverse .navbar-nav .open .dropdown-menu > li > a {
    color: #000000;
  }

  .navbar .dropdown-menu {
    padding: 10px 0;
  }

  .navbar .dropdown-menu:after {
    display: none;
  }

  .header-top ul.top-nav li {
    padding: 0 7px;
  }

  .header-top .right-block {
    float: none;
  }

  .header-top .lang-wrapper {
    margin-right: -15px;
  }

  .header-middle a.login {
    padding: 5px 14px;
  }

  .banner-outer .content {
    float: none;
    padding: 50px 0px;
  }

  .banner-outer .content h1 span {
    font-size: 60px;
  }

  .banner-outer .slide2 .content h1,
  .banner-outer .slide3 .content h1 {
    font-size: 44px;
  }

  .banner-outer .content p {
    font-size: 14px;
    line-height: 24px;
  }

  .banner-outer .bx-wrapper .bx-pager {
    bottom: 10px;
  }
  .banner-outer .content {
    display: none;
  }
  .banner-outer .slide1,
  .banner-outer .slide2,
  .banner-outer .slide3,
  .banner-outer .slide4,
  .banner-outer .slide5,
  .banner-outer .slide6{
    height: 375px;
  }

  .about {
    padding: 226px 0 40px;
  }

  .about .video-block a {
    width: 50px;
    margin-top: -25px;
  }

  .modal-open .modal {
    padding-right: 0px !important;
  }

  .about ul.our-links {
    margin: -226px -15px 30px -15px;
  }

  .about ul.our-links li {
    padding: 20px 20px 30px 20px;
  }

  .about ul.our-links li .icon {
    width: 20%;
  }

  .about ul.our-links li .detail {
    width: 80%;
  }

  .about ul.our-links li .detail a.more {
    width: 30px;
    height: 30px;
    line-height: 24px;
    font-size: 16px;
    position: relative;
  }

  .about .left-block {
    padding-bottom: 30px;
  }

  .details-tab,
  .padding-lg {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .our-cources h2,
  .how-study h2,
  .why-choose h2,
  .news-events h2,
  .campus-tour h2,
  .testimonial h2,
  .about h2,
  .browse-teacher h2,
  .how-apply h2,
  .have-question h2,
  .homework-sec h2 {
    padding-bottom: 30px;
    font-size: 26px;
  }

  .our-impotance ul li .inner {
    padding: 10px 10px 30px 10px;
    border-bottom: 1px #e9e9e9 solid;
  }

  .our-impotance ul li:last-child {
    margin-bottom: 0px !important;
  }

  .our-impotance ul li:last-child .inner {
    border-bottom: none;
  }

  .our-impotance ul li {
    border-right: none;
    margin-bottom: 30px !important;
  }

  .our-impotance ul li:after {
    display: none;
  }

  .our-impotance ul li h3 span {
    display: inline;
  }

  .how-study ul li {
    margin-bottom: 20px;
  }

  .how-study ul li .cnt-block {
    left: 20px;
  }

  ul.our-strength li {
    width: 24%;
    border: none;
  }

  ul.our-strength li span {
    font-size: 26px;
  }

  ul.our-strength li .title {
    line-height: 20px;
  }

  .news-events ul {
    margin-bottom: 30px;
  }

  .news-events ul li {
    margin-bottom: 30px;
  }

  .news-events ul li .cnt-block {
    padding: 40px 20px 20px;
  }

  .news-events ul li .cnt-block h3 {
    font-size: 18px;
    line-height: 28px;
  }

  .news-events ul li .cnt-block .plus-icon {
    width: 54px;
    height: 54px;
    line-height: 54px;
    font-size: 30px;
    top: -27px;
  }

  .news-events ul li .bottom-block {
    padding-top: 20px;
  }

  .campus-tour {
    padding-bottom: 0px;
  }

  .campus-tour ul.gallery li {
    width: 50%;
  }

  .campus-tour ul.gallery li h3 {
    font-size: 18px;
  }

  .campus-tour ul.gallery li a {
    width: 44px;
    height: 44px;
    margin: 0 4px;
    line-height: 44px;
    font-size: 18px;
  }

  .campus-tour ul.gallery li:hover .overlay {
    top: 60%;
  }

  .campus-tour ul.gallery li p {
    padding-bottom: 10px;
  }

  .logos {
    padding: 30px 0;
  }

  .testimonial ul li p {
    font-size: 18px;
    line-height: 28px;
  }

  .testimonial ul li span {
    font-size: 16px;
  }

  .testimonial .wrapper:before,
  .testimonial .wrapper:after {
    font-size: 38px;
  }

  .footer .row1 {
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .footer .row1 .col-sm-9 {
    padding-bottom: 15px;
  }

  .footer .foot-nav {
    width: 100%;
    border-bottom: 1px #2e5f85 solid;
    padding: 10px 0 12px 0;
  }

  .footer .foot-nav h3 {
    padding-bottom: 0px;
    cursor: pointer;
  }

  .footer .foot-nav h3:after {
    display: inline-block;
    vertical-align: middle;
    margin-top: -4px;
    float: right;
    content: " + ";
  }

  .footer .foot-nav h3.open:after {
    content: " - ";
  }

  .footer .foot-nav ul {
    padding: 15px 0 10px 0;
  }

  .footer .bottom {
    padding: 20px 0px;
  }

  .footer .connect-us,
  .footer .subscribe,
  .footer .instagram {
    width: 100%;
    border-right: none;
    padding-right: 0px;
  }

  .footer .instagram ul li a img {
    width: 100%;
  }

  ul.browse-teachers-list > li {
    padding-top: 30px;
    padding-bottom: 30px;
    border-bottom: 1px #e5e5e5 solid;
  }

  ul.browse-teachers-list > li:nth-child(2n) {
    border-right: none;
  }

  ul.browse-teachers-list > li:nth-last-child(2) {
    border-bottom: none;
  }

  .about-video .container {
    height: 300px;
  }

  .about-video p {
    font-size: 36px;
  }

  .inner-banner {
    padding: 30px 0 20px;
  }

  .inner-banner h1 {
    font-size: 30px;
    padding-bottom: 10px;
  }

  .inner-banner p {
    padding-bottom: 10px;
    font-size: 14px;
    line-height: 24px;
  }

  .inner-banner a.apply-online .left {
    padding: 12px 0 12px 24px;
  }

  .inner-banner a.apply-online .arrow {
    line-height: 64px;
  }

  .about .btn-wrapper {
    margin-bottom: 20px;
  }

  .select-course {
    float: left;
    margin-bottom: 30px;
  }

  .our-cources.sub h2 {
    padding-left: 0px;
  }

  .our-cources ul.inner li {
    margin-bottom: 70px;
  }

  .our-cources ul.inner li:before {
    bottom: -35px;
    display: none;
  }

  .our-cources ul.inner li:nth-child(2n):after {
    display: none;
  }

  ul.cert-list li {
    width: 100%;
    float: none;
  }

  ul.cert-list li:nth-last-child(2) {
    border-bottom: 1px dashed #c0c4c6;
  }

  .enquire-now {
    max-width: none;
    margin-top: 0;
  }

  .enquire-wrapper {
    max-width: none;
  }

  .course-detail {
    padding: 0 20px;
    margin: 20px 0 0 0;
  }

  .course-detail .duration {
    width: auto;
    padding: 20px 0;
    border: none;
    float: none;
    border-bottom: 1px solid #dfe9f1;
  }

  .course-detail .duration.eligible {
    width: auto;
    padding: 20px 0px;
  }

  .course-detail .duration.fee {
    width: auto;
    float: none;
    padding: 20px 0px;
    border: none;
  }

  .course-detail .duration.fee .detail {
    padding: 0px;
  }

  .course-detail .btn {
    position: absolute;
    right: 36px;
    bottom: 22px;
    float: none;
    margin: 10px 0 0 0;
  }

  .how-apply ul,
  .how-apply ul li {
    padding-bottom: 30px;
  }

  .how-apply ul li .icon-block {
    width: 135px;
    height: 135px;
    line-height: 135px;
  }

  .how-apply ul li .icon-block img {
    width: 60px;
  }

  .how-apply ul li .icon-block .num {
    width: 34px;
    height: 34px;
    line-height: 34px;
    font-size: 16px;
    top: 20px;
    right: -8px;
  }

  .how-apply ul li:nth-child(1):after,
  .how-apply ul li:nth-child(2):after {
    display: none;
  }

  .comments-wrapper ul.comments {
    padding-top: 40px;
    padding-bottom: 10px;
  }

  .comments-wrapper ul.comments li .com-txt {
    padding: 20px;
  }

  .leave-comment {
    padding-bottom: 30px;
    border-bottom: 1px solid #e9e9e9;
  }

  .leave-comment h4 {
    padding: 30px 0;
  }

  .leave-comment textarea {
    height: 100px;
  }

  #myTabs {
    padding: 0px;
  }

  .course-tab {
    margin-bottom: 30px;
  }

  .course-tab > li > a {
    font-size: 14px;
    padding-bottom: 16px;
  }

  .course-tab > li > a span {
    font-size: 44px;
    padding-bottom: 14px;
  }

  .course-tab > li > a .block {
    display: block;
  }

  .course-table > tbody > tr > td,
  .course-table > tfoot > tr > td,
  .course-table > thead > tr > td {
    padding: 18px 20px;
  }

  #schedule .fee-amt {
    font-size: 18px;
  }

  #semester ul.content {
    border-bottom: 1px dashed #c9cdce;
    padding-bottom: 24px;
    margin-bottom: 24px;
  }

  #semester .col-sm-6:last-child ul.content {
    border-bottom: none;
    padding-bottom: 0px;
    margin-bottom: 0px;
  }

  #semester ul.content > li h4 {
    font-size: 16px;
  }

  .inner-banner.contact,
  .inner-banner.blog {
    padding: 30px 0 60px 0;
  }

  .inner-banner.contact p,
  .inner-banner.blog p {
    padding-bottom: 0px;
  }

  .form-wrapper .row .col-sm-6 {
    margin-bottom: 20px;
  }

  .contact-detail .address {
    padding: 18px 40px 12px 60px;
  }

  .contact-bottom {
    padding: 18px 0 14px 0;
  }

  .blog-left {
    padding-bottom: 30px;
  }

  .blog-left:after {
    display: none;
  }

  .blog-right {
    padding-left: 0px;
  }

  ul.blog-listing > li {
    padding-bottom: 30px;
    margin-bottom: 40px;
  }

  ul.blog-listing > li h2 {
    padding: 20px 0 15px;
    font-size: 18px;
    line-height: 26px;
  }

  ul.post-detail li {
    padding-bottom: 4px;
    padding-right: 18px;
  }

  .inner-banner.blog {
    min-height: 160px;
  }

  .recent-post,
  .archives {
    padding-bottom: 30px;
    margin-bottom: 30px;
    border-bottom: 1px #e9e9e9 solid;
  }

  .blog-left .comments-wrapper ul.comments li.col-xs-offset-1 {
    padding-left: 64px;
  }

  .category {
    padding-bottom: 30px;
    margin-bottom: 30px;
    border-bottom: 1px #e9e9e9 solid;
  }

  .not-found-wrapper {
    width: 80%;
    margin: 50px auto;
    padding-top: 178px;
  }

  .not-found-wrapper h1 {
    font-size: 116px;
  }

  .not-found-wrapper p {
    font-size: 26px;
    padding-bottom: 40px;
  }

  .faq-wrapper .search-block input {
    height: 48px;
  }

  .faq-wrapper .search-block .search {
    width: 48px;
    height: 48px;
  }

  ul.faq-listing li .inner {
    padding: 10px 20px 30px 48px;
  }

  ul.faq-listing li .inner:before {
    top: 26px;
    font-size: 36px;
  }

  ul.faq-listing li:nth-last-child(2) .inner {
    border-bottom: 1px #e2e4e6 solid;
  }

  ul.faq-listing li:nth-child(2n) .inner {
    padding-left: 48px;
  }

  ul.faq-listing li .inner:before {
    left: 0px !important;
    top: 22px;
  }

  .faq-wrapper .text-center,
  .testimonial-outer .text-center {
    margin-top: 40px;
  }

  .panel-default .panel-title {
    font-size: 15px;
    line-height: 20px;
  }

  .panel-default .panel-title a:before,
  .panel-default .panel-title a.collapsed:before {
    font-size: 30px;
    top: 0px;
    right: 18px;
  }

  .panel-default > .panel-heading {
    padding: 15px 0;
  }

  .faq-wrapper.faq2 .search-block,
  .panel-default .panel-title a,
  .panel-default .panel-body {
    padding-left: 15px;
  }

  .login-wrapper .login {
    max-width: 360px;
  }

  .login-wrapper .login-logo {
    margin-bottom: 30px;
    text-align: center;
  }

  .login-wrapper .login-logo a {
    width: 220px;
    display: inline-block;
  }

  .login-wrapper .head-block {
    padding: 18px 15px;
  }

  .login-wrapper .head-block h1 {
    font-size: 26px;
  }

  .login-wrapper .cnt-block {
    padding: 30px;
  }

  .login-wrapper .btn {
    padding: 8px 14px;
  }

  .login-wrapper .login-footer {
    padding: 12px 15px;
  }

  .login-wrapper ul.follow-us li {
    padding: 0 12px;
  }

  ul.testimonials:after {
    display: none;
  }

  ul.testimonials li h3 {
    padding-top: 8px;
  }

  ul.testimonials li p {
    font-size: 15px;
    line-height: 28px;
  }

  ul.testimonials li .quotblock {
    padding: 30px 10px 15px 10px;
  }

  ul.testimonials li:nth-child(3) .quotblock {
    padding-top: 30px;
  }

  ul.testimonials li:nth-last-child(2),
  ul.testimonials li:nth-last-child(3) {
    border-bottom: 1px solid #dfe5e1 !important;
  }

  ul.testimonials li:nth-child(odd):before,
  ul.testimonials li:nth-child(even):after {
    display: none;
  }

  ul.testimonials li:nth-child(even) {
    border-right: none;
  }

  ul.testimonials li:nth-last-child(2):before,
  ul.testimonials li:nth-last-child(3):before,
  ul.testimonials li:nth-last-child(2):after,
  ul.testimonials li:nth-last-child(3):after {
    display: block !important;
  }

  ul.gallery-filter {
    padding: 0px;
  }

  ul.gallery-filter li {
    width: auto;
    float: none;
    display: inline-block;
    padding: 0 16px;
    font-size: 16px;
  }

  ul.gallery-filter li a {
    padding-bottom: 20px;
  }

  .campus-tour .pagination {
    margin: 40px 0;
  }

  .news-wrapper .text-center {
    margin-top: 10px;
  }

  ul.news-listing > li h2 {
    font-size: 18px;
    line-height: 26px;
  }

  ul.news-listing > li p {
    line-height: 24px;
  }

  .news-wrapper ul.post-detail li {
    padding-right: 10px;
    padding-bottom: 2px;
  }

  ul.news-listing > li .cnt-block {
    padding: 20px;
  }

  .privacy-wrapper h2 {
    font-size: 24px;
  }

  .privacy-wrapper h3 {
    font-size: 20px;
  }

  ul.privacy-listing {
    padding: 0px;
  }

  ul.privacy-listing > li {
    padding-bottom: 10px;
  }

  ul.privacy-listing > li:last-child {
    border-bottom: 1px dashed #c9cdce;
  }

  ul.privacy-listing > li.last {
    border-bottom: none;
  }

  .privacy-wrapper .padding-top {
    padding-top: 10px;
  }

  .imp-note {
    padding: 20px;
  }

  .imp-note span {
    float: none;
    margin: 0px auto 20px;
  }

  .imp-note p {
    text-align: center;
  }

  .form-outer ul.select-opt {
    padding-bottom: 20px;
  }

  .form-outer .cnt-block textarea {
    height: 100px;
  }

  .form-outer .col-left {
    float: none;
  }

  .form-outer .select2.select2-container {
    margin-bottom: 30px;
  }

  .modal-body {
    padding: 10px;
  }

  .generic-wrapper ul.our-spec {
    padding-bottom: 40px;
  }

  .generic-wrapper .button-group {
    margin-bottom: 40px;
    text-align: center;
  }

  .generic-wrapper .pagination {
    padding-bottom: 30px;
  }

  .generic-wrapper ul.privacy-listing > li:last-child {
    border-bottom: none;
  }

  .coming-soon .left,
  .coming-soon .right {
    display: block;
    height: auto;
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .coming-soon .inner {
    display: inline-block;
    position: inherit;
  }

  .coming-soon .left a.logo {
    display: block;
    position: inherit;
    top: auto;
  }

  .coming-soon .cnt-block {
    padding: 60px 0 40px 0;
  }

  .stay-connected {
    position: inherit;
    bottom: auto;
  }

  .banner2 {
    padding: 40px 0 60px 0;
  }

  .banner2 .form-group {
    margin-bottom: 0px;
  }

  .banner2 ul.banner-list {
    display: none;
  }

  .intro-sec .left-block {
    padding-bottom: 30px;
  }

  .intro-sec .video-block img {
    width: 100%;
  }

  .popular-cources ul.courses-list li:last-child {
    margin-bottom: 0px;
  }

  .popular-cources ul.courses-list li .cnt-block {
    padding: 40px 30px;
  }

  .wt-makes-different .bg-image {
    width: 100%;
  }

  .wt-makes-different .left {
    padding-top: 40px;
    padding-bottom: 0px;
  }

  .wt-makes-different .left .q-mark {
    width: 70px;
    height: 70px;
    font-size: 40px;
    line-height: 66px;
  }

  .wt-makes-different .left h2 {
    margin-bottom: 30px;
    font-size: 42px;
    line-height: 52px;
  }

  .wt-makes-different .right {
    padding: 40px 0 10px 0px;
  }

  .footer2 .foot-nav {
    border-color: #454545;
  }
}

/* Landscape phones and down */
@media (max-width: 640px) {
  .banner-outer .content h1 span {
    font-size: 50px;
  }

  .why-choose ul li {
    width: 48%;
    padding-bottom: 30px;
  }

  .why-choose ul li:nth-child(n + 3) {
    padding-bottom: 0px;
  }

  ul.our-strength.opt2 li {
    border-right: none;
  }

  ul.testimonials li {
    width: 100%;
  }

  ul.testimonials li:before,
  ul.testimonials li:nth-last-child(2):before,
  ul.testimonials li:nth-last-child(3):before,
  ul.testimonials li:after,
  ul.testimonials li:nth-last-child(2):after,
  ul.testimonials li:nth-last-child(3):after {
    display: none !important;
  }

  ul.testimonials li:nth-last-child(2),
  ul.testimonials li:nth-last-child(3) {
    border-bottom: 1px solid #dfe5e1;
  }

  ul.testimonials li:first-child .quotblock {
    padding-top: 0px;
  }

  ul.testimonials li:nth-child(2) .quotblock {
    padding-top: 30px;
  }

  ul.gallery-filter li {
    margin-bottom: 10px;
    font-size: 15px;
    padding: 0 6px;
  }

  ul.gallery-filter li a {
    padding-bottom: 4px;
            font-size: 14px;
  }

  ul.news-listing > li {
    width: 100%;
  }

  ul.select-opt li {
    width: 100%;
    margin-bottom: 8px;
    float: none;
  }

  .generic-wrapper ul.our-spec li {
    width: 50%;
    min-height: 142px;
  }

  .generic-wrapper a.btn-circle {
    margin-bottom: 20px;
  }

  .button-group1 a.download-pros,
  .button-group1 a.download-cert {
    width: 100%;
    margin: 0 0 2px 0;
  }

  .coming-soon .right .cnt-block {
    padding: 0px;
  }

  .coming-soon .right ul li:after {
    font-size: 50px;
  }

  .coming-soon .right ul li .count {
    font-size: 60px;
    line-height: 60px;
  }

  .coming-soon .cnt-block h1 {
    font-size: 50px;
    padding-bottom: 30px;
  }

  .banner2 h1 {
    padding-bottom: 20px;
    font-size: 36px;
    line-height: 48px;
  }
}

/* Landscape phones and down */
@media (max-width: 480px) {

  .nav-logo-link img {
    width: 85%;
    padding-bottom: 0;
  }
  .banner-outer .content h1 {
    font-size: 26px;
    line-height: 38px;
  }

.about .left-block
{
    margin-top:25px;
}
  .banner-outer .slide3 {
    background-position: 56% 65%;
  }
  .banner-outer .slide1 {
    background-position: 15% 100%;
  }
  .banner-outer .content h1 span {
    font-size: 50px;
  }

  .our-impotance ul li {
    width: 100%;
  }

  .our-impotance ul li:after {
    width: 94%;
  }

  .our-impotance ul li .inner {
    padding: 10px 10px 30px 10px;
  }

  .our-impotance ul li h3 span {
    display: inline;
  }

  .testimonial ul li p {
    font-size: 16px;
    line-height: 26px;
  }

  .testimonial .wrapper:before,
  .testimonial .wrapper:after {
    font-size: 28px;
  }

  .about-video .container {
    height: 300px;
  }

  .about-video p {
    font-size: 32px;
  }

  a.download-pros {
    margin-bottom: 1px;
  }

  a.download-pros,
  a.download-cert {
    width: 100%;
    border: none;
  }

  .our-cources ul.inner li {
    width: 100%;
    margin-bottom: 40px;
  }

  .our-cources ul.inner li:nth-child(n + 9) {
    margin-bottom: 40px;
  }

  .our-cources ul.course-list li:after {
    display: none;
  }

  .enquire-now .inner .row2 input {
    width: 100%;
    margin: 0 0 14px 0;
  }

  ul.browse-teachers-list > li {
    width: 100%;
    border: none;
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .leave-comment input {
    width: 100%;
  }

  .leave-comment input:first-child {
    margin-bottom: 30px;
  }

  .course-detail .duration .icon {
    width: 57px;
    height: 57px;
    font-size: 34px;
  }

  .form-outer input {
    height: 40px;
    padding: 0 15px;
    margin-bottom: 20px;
  }

  .login-wrapper .remember {
    margin-top: 20px;
  }

  .register .cnt-block textarea {
    margin-bottom: 20px;
  }

  .form-outer input.country-code {
    width: 20%;
  }

  .form-outer input.phone-no {
    width: calc(80% - 18px);
  }

  .coming-soon .left,
  .coming-soon .right {
    padding-bottom: 50px;
    padding-top: 50px;
  }

  .coming-soon .cnt-block {
    padding: 40px 0;
  }

  .coming-soon .cnt-block h1 {
    font-size: 40px;
  }

  .coming-soon .right ul li {
    padding: 0 15px;
  }

  .coming-soon .right ul li:after {
    font-size: 40px;
    top: 13%;
  }

  .coming-soon .right ul li .count {
    font-size: 44px;
    line-height: 50px;
  }

  .banner2 {
    padding: 30px 0 40px 0;
  }

  .banner2 h1 {
    padding-bottom: 12px;
    font-size: 30px;
    line-height: 40px;
  }

  .banner2 p {
    font-size: 14px;
    line-height: 22px;
  }

  .banner2 .form-group {
    margin-top: 20px;
  }

  .popular-cources a.view-courses {
    display: none;
  }

  .wt-makes-different .left .q-mark {
    width: 60px;
    height: 60px;
    font-size: 32px;
    line-height: 56px;
  }

  .wt-makes-different .left h2 {
    margin-bottom: 20px;
    font-size: 38px;
    line-height: 46px;
  }

  .wt-makes-different .left a.read-more {
    font-size: 15px;
  }

  .wt-makes-different .right {
    padding: 30px 0 0 0;
  }

  ul.makes-different-list li h3 {
    font-size: 17px;
  }
  .homework-sec table td {
    font-size: 14px !important;
    padding: 13px !important;
  }
  .homework-sec table td a {
    font-size: 14px !important;
  }

  /* mboile home slider heading adjustments */
  .banner-outer .content {
    display: block;
  }
  .banner-outer .content {
    position: absolute;
    padding: 0;
  }

  .banner-outer .slide1 .content {
    top: 15%;
    left: 10px;
  }
  .banner-outer .content h1 {
    padding-bottom: 10px;
  }
  .banner-outer .slide1 .content h1 span {
    font-size: 38px;
  }
  .banner-outer .slide1 .content p {
    padding: 8px;
  }
  .banner-outer .slide2 .content {
    inset: 0;
    top: 68%;
  }
  .banner-outer .slide2 .content h1 {
    font-size: 38px;
  }
  .banner-outer .slide2 .content p {
    font-size: 13px;
    padding: 5px;
    max-width: 295px;
  }
  .banner-outer .slide3 .content, .banner-outer .slide4 .content, .banner-outer .slide5 .content, .banner-outer .slide6 .content {
    top: 64%;
    left: 10px;
  }

  .banner-outer .slide3 .content h1 {
    font-size: 32px;
  }
  .banner-outer .slide3 .content p {
    font-size: 13px;
    padding: 6px;
  }

  .infra-heading
  {
    font-weight: 500 !important;
  }
}

/* iPhone 6 Plus and down */
@media (max-width: 414px) {
  .header-middle {
    padding-top: 15px;
    padding-bottom: 15px;
  }

  .about-video p {
    font-size: 26px;
  }

  .pagination > li > a,
  .pagination > li > span {
    margin: 0 2px;
    padding: 4px 10px;
    font-size: 13px;
  }

  .pagination > li:first-child > a,
  .pagination > li:first-child > span,
  .pagination > li:last-child > a,
  .pagination > li:last-child > span {
    padding: 5px 14px;
  }

  .pagination > li:first-child a i {
    margin-right: 4px;
  }

  .pagination > li:last-child a i {
    margin-left: 4px;
  }

  .course-tab > li > a {
    font-size: 13px;
  }

  .not-found-wrapper {
    padding-top: 158px;
  }

  .not-found-wrapper h1 {
    font-size: 96px;
  }

  .not-found-wrapper p {
    font-size: 22px;
    padding-bottom: 30px;
  }

  .banner2 h1 {
    font-size: 28px;
    line-height: 36px;
  }

  .banner2 .form-group .form-control {
    height: 42px;
    padding: 0 20px;
    font-size: 14px;
  }

  .banner2 .form-group .search-btn {
    width: 42px;
    height: 42px;
  }

  .banner2 .form-group .search-btn img {
    width: 18px;
  }

  .intro-sec h2 {
    font-size: 28px;
    line-height: 36px;
  }

  .wt-makes-different .left h2 {
    margin-bottom: 15px;
    font-size: 34px;
    line-height: 42px;
  }

  .wt-makes-different .left .q-mark {
    width: 52px;
    height: 52px;
    font-size: 26px;
    line-height: 48px;
    margin-bottom: 15px;
  }

  ul.makes-different-list li {
    width: 100%;
    margin-bottom: 30px;
  }

  ul.makes-different-list li .inner {
    max-width: inherit;
  }

  .popular-cources ul.courses-list li .cnt-block {
    padding: 30px 20px;
  }

  .inner-banner.enquiry-back {
    background-repeat: no-repeat;
    background-position: 75% 100%;
    background-size: cover;
  }
}

/* iPhone 6 and down */
@media (max-width: 375px) {
  .header-middle a.login {
    padding: 2px 8px;
  }

  .banner-outer .content h1 {
    font-size: 22px;
    line-height: 34px;
  }

  .banner-outer .content h1 span,
  .banner-outer .slide2 .content h1,
  .banner-outer .slide2 .content h1 {
    font-size: 38px;
    line-height: 40px;
  }

  .btn {
    padding: 8px 16px;
  }

  .testimonial #bx-pager a {
    margin: 0 2px;
  }

  .testimonial .wrapper:before {
    top: 44px;
  }

  .testimonial .wrapper:after {
    bottom: -26px;
  }

  .testimonial ul li p {
    padding-top: 30px;
  }

  .course-tab > li > a span {
    font-size: 40px;
  }

  .course-tab > li > a {
    font-size: 12px;
  }

  .not-found-wrapper {
    padding-top: 138px;
  }

  .not-found-wrapper h1 {
    font-size: 86px;
  }

  .login-wrapper .head-block h1 {
    font-size: 20px;
  }

  .login-wrapper .login {
    max-width: 320px;
  }

  .login-wrapper .cnt-block {
    padding: 20px 15px;
  }

  .login-wrapper .btn {
    padding: 6px 12px;
  }

  .privacy-wrapper h2 {
    font-size: 22px;
  }

  .coming-soon .right ul li {
    padding: 0 12px;
  }

  .coming-soon .stay-tuned input[type="email"] {
    width: calc(100% - 90px);
  }

  .coming-soon .stay-tuned .clear .button {
    width: 90px;
  }

  .banner2 h1 {
    font-size: 24px;
    line-height: 32px;
  }

  .banner2 h1 br {
    display: none;
  }

  .banner2 .form-group {
    width: 100%;
  }

  .intro-sec .video-block .play-outer {
    width: 170px;
    height: 52px;
    padding: 8px;
  }

  .intro-sec .video-block .play-outer span {
    padding-left: 8px;
    font-size: 14px;
    line-height: 18px;
  }

  .intro-sec .video-block .play-outer figure {
    width: 36px;
  }
}

/* iPhone 4 */
@media (max-width: 320px) {
  .about-video p {
    font-size: 24px;
  }

  .course-detail .btn {
    position: inherit;
    margin: 10px 0 20px 0;
    right: auto;
  }

  .not-found-wrapper {
    padding-top: 128px;
  }

  .not-found-wrapper h1 {
    font-size: 66px;
  }

  .not-found-wrapper p {
    font-size: 18px;
  }

  ul.faq-listing li h2 {
    font-size: 16px;
  }

  .login-wrapper .login {
    max-width: 300px;
  }

  .login-wrapper .cnt-block {
    padding: 20px 15px;
  }

  .login-wrapper .btn {
    padding: 6px 12px;
    font-size: 12px;
  }

  .coming-soon .cnt-block h1 {
    font-size: 34px;
  }

  .coming-soon .right ul li {
    padding: 0 8px;
  }
}

/* ------------- */

advantage-img img
{

}
.advantage-bg {
  background-image: url(../images/background3.webp);
  height: 400px;
  position: relative;
  background-attachment: scroll;
}

.inner-banner.advantage-bg::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 85px;
  left: 0;
  bottom: -2px;
  mask-image: url(../images/bread-cum-overlay.png);
  mask-repeat: repeat;
  mask-size: auto;
  mask-position: center;
  -webkit-mask-image: url(../images/bread-cum-overlay.png);
  -webkit-mask-repeat: repeat;
  -webkit-mask-size: auto;
  -webkit-mask-position: center;
  z-index: 1;
  background-color: #ffffff;
  animation: movement 40s linear infinite;
  -webkit-animation: movement 40s linear infinite;
}

.advantage-bg .content {
  margin-top: 75px !important;
}

.advantage-bg .content h1 {
  color: #fff;
}

.advantage-section {
  padding-top: 50px;
  padding-bottom: 90px;
  background: #bfb6ce1a;
}

.advantage-section .row {
  justify-content: center;
}

.advantage-list img {
  display: block;
  max-width: 65px;
  margin: 0 auto 15px;
}

.advantage-list {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  grid-gap: 10px;
  justify-content: space-between;
  justify-items: stretch;
}

.advantage-list li {
  text-align: center;
  font-weight: 600;
}

.advantage-list li span {
  display: block;
}

.advantage-section h2 {
  color: var(--primary-color);
  text-transform: none !important;
  font-weight: 600;
  text-align: center;
  font-size: 36px;
  padding-bottom: 90px;
}

.gold-text-head {
  color: var(--secondary-color);
  font-size: 36px;
  display: inline;
}

/* about us page css */

.about-bg {
  background-image: url(../images/background6.webp);
  height: 400px;
  position: relative;
  background-attachment: scroll;
}

.inner-banner.about-bg::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 85px;
  left: 0;
  bottom: -2px;
  mask-image: url(../images/bread-cum-overlay.png);
  mask-repeat: repeat;
  mask-size: auto;
  mask-position: center;
  -webkit-mask-image: url(../images/bread-cum-overlay.png);
  -webkit-mask-repeat: repeat;
  -webkit-mask-size: auto;
  -webkit-mask-position: center;
  z-index: 1;
  background-color: #ffffff;
  animation: movement 40s linear infinite;
  -webkit-animation: movement 40s linear infinite;
}

.about-bg .content {
  margin-top: 75px !important;
}

.about-bg .content h1 {
  color: #fff;
}

.about-content-points-box {
  margin-bottom: 30px;
}

.about-content-points-text-img-box {
  align-items: center;
}

.about-content-points-text-img-box img {
  width: 50px;
}

.about-content-points-text-img-box h5 {
  margin: 0 0 0 32px;
}

.about-content-points-desc {
  margin-block: 15px;
}

.about-us-left-col {
  padding-bottom: 100px;
  padding-top: 100px;
  padding-left: 0;
  padding-right: 80px;
  position: relative;
  z-index: 1;
  height: 100%;
  box-sizing: border-box;
}

.about-us-left-col::before {
  content: "";
  width: 300%;
  height: 100%;
  background-color: #f2f2f2;
  position: absolute;
  right: 0;
  top: 0;
  z-index: -9;
}

.about-us-left-col h2 {
  font-size: 27px;
  overflow: visible;
  color: var(--primary-color);
  font-weight: 700;
  text-align: left;
  line-height: 1.7;
  padding-bottom: 20px;
  margin-bottom: 10px;
}

.about-us-right-col {
  padding-bottom: 100px;
  padding-top: 100px;
  padding-right: 0;
  padding-left: 80px;
  position: relative;
  z-index: 1;
  height: 100%;
  box-sizing: border-box;
}

.about-us-right-col h2 {
  color: var(--primary-color);
  font-size: 30px;
  overflow: visible;
  text-transform: uppercase;
  font-weight: 700;
  text-align: left;
  line-height: 1.7;
  padding-bottom: 20px;
  margin-bottom: 10px;
}

.about-us-right-col::before ::before {
  content: "";
  width: 300%;
  height: 100%;
  background-color: #fcfcfc;
  position: absolute;
  left: 0;
  top: 0;
}

.about-us-right-col {
}

.accordian {
  max-width: 90%;
  margin-right: auto;
  background-color: #fff;
  border-radius: 5px;
  overflow: hidden;
  box-shadow: rgba(0, 0, 0, 0.25) 0px 0.0625em 0.0625em,
    rgba(0, 0, 0, 0.25) 0px 0.125em 0.5em,
    rgba(255, 255, 255, 0.1) 0px 0px 0px 1px inset;
}

.accordian .accordian-container .accordian-heading {
  padding: 5px 15px;
  background-color: var(--primary-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: 0.3s;
  border: 1px solid rgba(255, 255, 255, 0.034);
}

.accordian .accordian-container.active .accordian-heading {
  background-color: var(--secondary-color);
  border: transparent;
}

.accordian .accordian-container.active .accordian-heading:hover {
  background-color: var(--primary-color);
}

.accordian .accordian-container .accordian-heading h3,
.accordian .accordian-container .accordian-heading h2 {
  font-weight: 500;
  font-size: 18px;
  color: #fff;
  margin-bottom: 0;
}

.accordian-heading h3 small {
  color: #fff;
}

.accordian .accordian-container .accordian-heading:hover {
  background-color: var(--secondary-color);
  transition: 0.3s;
}

.accordian .accordian-container .panel {
  max-height: 0;
  overflow: hidden;
  transition: 0.5s;
}

.accordian .accordian-container .panel p {
  padding: 5px 15px;
  font-size: 15px;
  line-height: 25px;
  color: #666;
}

.accordian .accordian-container .panel ul li {
  padding: 5px 15px;
  font-size: 15px;
  line-height: 25px;
  color: #666;
}

.accordian .accordian-container .panel ul li b {
  font-weight: 700;
}

.accordian .accordian-container.active .panel {
  max-height: 9em;
  display: block;
  transition: 0.5s;
}

/* director page */
.director-bg {
  background: url(../images/background8.webp);
  background-size: cover;
  height: 400px;
  position: relative;
}

.director-bg::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 85px;
  left: 0;
  bottom: -2px;
  mask-image: url(../images/bread-cum-overlay.png);
  mask-repeat: repeat;
  mask-size: auto;
  mask-position: center;
  -webkit-mask-image: url(../images/bread-cum-overlay.png);
  -webkit-mask-repeat: repeat;
  -webkit-mask-size: auto;
  -webkit-mask-position: center;
  z-index: 1;
  background-color: #ffffff;
  animation: movement 40s linear infinite;
  -webkit-animation: movement 40s linear infinite;
}

.director-bg .content {
  margin-top: 75px !important;
}

.director-bg .content h1 {
  color: #fff;
}

.background2 {
  top: 50px !important;
  left: 69px;
}

.founder-note {
  /* background: #faf4f4; */
  padding: 80px 0;
  overflow: hidden;
}

.founder-note .images {
  overflow: hidden;
  width: 400px;
  height: 400px;
  border: 4px solid #ddd;
  border-radius: 200px;
  margin: 0px auto;
}

.founder-note .images img {
  width: 100%;
  object-fit: cover;
}

.imagenaecon {
  display: block;
  text-align: center;
}

.imagenae h3 {
  font-size: 28px;
  display: block;
  font-weight: 500;
  margin: 25px 0 10px 0;
}

.founder-note .founder-note-in {
  padding: 0px 0px;
  position: relative;
  z-index: 99;
}

.founder-note .founder-note-in small {
  font-size: 14px;
  line-height: 26px;
  color: var(--secondary-color);
  display: block;
  margin: 0 0 20px 0;
}

.founder-note .founder-note-in h4 {
  font-size: 34px;
  display: block;
  font-weight: normal;
  margin: 0 0 40px 0;
  color: var(--primary-color);
  font-family: "Roboto Slab", serif;
  position: relative;
}

.founder-note .founder-note-in h4:after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  height: 2px;
  width: 120px;
  display: block;
  background: var(--primary-color);
}

.founder-note .founder-note-in p {
  font-size: 16px;
  line-height: 26px;
  color: #444;
  display: block;
  margin: 0 0 20px 0;
}

.founder-note-in p:first-of-type:before {
  content: "❝";
  position: relative;
  left: -12px;
  font-size: 65px;
  top: 25px;

  color: var(--primary-color);
}

.founder-note-in p:last-of-type::after {
  content: "❞";
  position: relative;
  left: 15px;
  font-size: 65px;
  top: 36px;
  color: var(--primary-color);
}

/* --advisory page */

.our-team-section {
  position: relative;
  padding-top: 40px;
  padding-bottom: 40px;
  /* 	 */
}

.our-team-section:before {
  position: absolute;
  top: -0;
  left: 0;
  content: " ";
  background: url(img/service-section-bottom.png);
  background-size: 100% 100px;
  width: 100%;
  height: 100px;
  float: left;
  z-index: 99;
}

.our-team {
  padding: 30px 0 40px;
  background: #f9f9f9;
  text-align: center;
  overflow: hidden;
  position: relative;
  border-bottom: 5px solid #00325a;
  height: 450px;
  border-radius: 15px;
}

.our-team:hover {
  border-bottom: 5px solid #2f2f2f;
}

.our-team .pic {
  display: inline-block;
  width: 250px;
  height: 250px;
  margin-bottom: 15px;
  z-index: 1;
  position: relative;
  cursor: pointer;
}

.our-team .pic:before {
  content: "";
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: var(--primary-color);
  position: absolute;
  bottom: 135%;
  right: 0;
  left: 0;
  opacity: 1;
  transform: scale(3);
  transition: all 0.3s linear 0s;
}

.our-team:hover .pic:before {
  height: 100%;
  background: #2f2f2f;
}

.our-team .pic:after {
  content: "";
  width: 85%;
  height: 85%;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0);
  position: absolute;
  top: 19px;
  left: 19px;
  z-index: 1;
  transition: all 0.3s linear 0s;
}

.our-team:hover .pic:after {
  background: var(--secondary-color);
}

.our-team .pic img {
  width: 100%;
  height: auto;
  border-radius: 50%;
  transform: scale(1);
  transition: all 0.9s ease 0s;
  box-shadow: 0 0 0 14px #f7f5ec;
  transform: scale(0.7);
  position: relative;
  z-index: 2;
}

.our-team:hover .pic img {
  box-shadow: 0 0 0 14px #f7f5ec;
  transform: scale(0.7);
}

.our-team .team-content {
  margin-bottom: 30px;
}

.our-team .title {
  font-size: 22px;
  font-weight: 700;
  color: #4e5052;
  letter-spacing: 1px;
  text-transform: capitalize;
  margin-bottom: 5px;
}

.our-team .post {
  display: block;
  font-size: 15px;
  color: #4e5052;
  text-transform: capitalize;
}

.our-team .social {
  width: 100%;
  padding: 0;
  margin: 0;
  background: #2f2f2f;
  position: absolute;
  bottom: -100px;
  left: 0;
  transition: all 0.5s ease 0s;
}

.our-team:hover .social {
  bottom: 0;
}

.our-team .social li {
  display: inline-block;
}

.our-team .social li a {
  display: block;
  padding: 10px;
  font-size: 17px;
  color: #fff;
  transition: all 0.3s ease 0s;
}

.our-team .social li a:hover {
  color: #2f2f2f;
  background: #f7f5ec;
}

@media only screen and (max-width: 990px) {
  .our-team {
    margin-bottom: 30px;
  }
}

.popup {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1060;
  display: none;
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  outline: 0;
}

.popup.show {
  opacity: 1;
  top: 0;
}

.popup-content {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 0.3rem;
  outline: 0;
  max-width: 800px;
  margin: 10% auto;
  padding: 16px;
}

.hidden-description {
  display: none;
}

.popup-content h2 {
  font-size: 24px;
  margin-top: 0;
}

.popup-content p {
  font-size: 16px;
  line-height: 1.5;
}

.close {
  color: var(--primary-color);
  float: right;
  font-size: 32px;
  font-weight: bold;
  opacity: 1;
  cursor: pointer;
  align-self: end;
}

.close:hover,
.close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}

.imgsec {
  margin: 0 0px;
  position: relative;
  margin: 0 0 0px 0;
  text-align: center;
}

.imgsec h3 {
  display: block;
  font-size: 28px;
  margin: 15px 0 10px 0;
  font-weight: 600;
}

.imgsec small {
  display: block;
  font-size: 20px;
  margin: 0 0 15px 0;
  color: #222222;
  font-style: italic;
}

.imgsec img {
  border-radius: 50%;
}

.contant {
  padding: 20px;
}

.popupteam .contant {
  padding: 20px;
}

.contant h4 {
  display: block;
  font-size: 20px;
  margin: 5px 0 10px 0;
  font-weight: 600;
}

.contant p {
  font-size: 14px;
  display: block;
  padding: 0 0 0px 0;
  margin: 0;
  color: #444;
}

/* ----Why us section------ */
.why {
  background: url(../images/background6.webp);
  background-size: cover;
  height: 400px;
  position: relative;
}

.why::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 85px;
  left: 0;
  bottom: -2px;
  mask-image: url(../images/bread-cum-overlay.png);
  mask-repeat: repeat;
  mask-size: auto;
  mask-position: center;
  -webkit-mask-image: url(../images/bread-cum-overlay.png);
  -webkit-mask-repeat: repeat;
  -webkit-mask-size: auto;
  -webkit-mask-position: center;
  z-index: 1;
  background-color: #ffffff;
  animation: movement 40s linear infinite;
  -webkit-animation: movement 40s linear infinite;
}

.why .content {
  margin-top: 75px !important;
}

.why .content h1 {
  color: #fff;
}

.whyus-sec1 {
  background: url(../images/bg-8.webp) center;
  padding-bottom: 90px;
  position: relative;
}

.whyus-sec1-image-column img {
  width: 85%;
}

.whyus-sec1-title h2 {
  font-size: 36px;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.whyus-sec1-desc p {
  font-size: 17px;
  color: #454545;
  font-weight: 400;
  line-height: 30px;
  text-align: justify;
  text-shadow: 0 0 #454545;
  margin-bottom: 20px;
}

.whyus-sec2 .icon2 {
  margin-bottom: 15px;
}

.icon2 img {
  width: 70px;
}

.whyus-sec2-bx {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 35px;
  width: 25%;
  border-radius: 8px;
  margin: 12px;
}

.whyus-sec2 h4 {
  color: #fff;
  font-size: 20px;
  text-align: center;
  font-weight: 600;
}

.whyus-sec2-bx1 {
  background: #59a946;
}

.whyus-sec2-bx2 {
  background: #f15a21;
}

.whyus-sec2-bx3 {
  background: #058183;
}

.whyus-sec2-bx4 {
  background: #fca61b;
}

.icon-layer-eight {
  position: absolute;
  right: 0px;
  top: 0px;
  width: 100%;
  height: 90px;
  background-repeat: repeat-x;
}

.whyus-sec3 {
  background: #eff9ff;
  position: relative;
  overflow: hidden;
}

.icon-layer-nine {
  position: absolute;
  left: 0px;
  top: 60px;
  width: 500px;
  height: 692px;
  background-repeat: no-repeat;
}

.relationship-section {
  position: relative;
}

.relationship-section .blocks-column {
  position: relative;
  margin-bottom: 40px;
}

.relationship-section .blocks-column .inner-column {
  position: relative;
  margin-left: -50px;
  padding-right: 50px;
}

.relationship-section .blocks-column .pattern-layer {
  position: absolute;
  left: 20px;
  top: -20px;
  right: 0px;
  bottom: 0px;
  width: 535px;
  height: 535px;
  background-repeat: no-repeat;
}

.relationship-section .content-column {
  position: relative;
  margin-bottom: 40px;
}

.relationship-section .content-column .inner-column {
  position: relative;
  padding-left: 50px;
}

.relationship-section .inner-column img {
  width: 65%;
  margin: 0 auto;
}

.relationship-section .content-column .color-box {
  position: absolute;
  right: 0px;
  top: 0px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #fff9ce;
}

.relationship-section .content-column .icon-layer-one {
  position: absolute;
  right: -80px;
  top: 90px;
  width: 102px;
  height: 89px;
  background-repeat: no-repeat;
}

.relationship-section .content-column h2 {
  color: #0c0d24;
  font-weight: 500;
  line-height: 1.3em;
  margin-bottom: 20px;
}

.relationship-section .content-column .bold-text {
  position: relative;
  color: #0c0d24;
  font-size: 20px;
  margin-bottom: 15px;
  line-height: 1.6em;
}

.relationship-section .content-column .text {
  margin-bottom: 25px;
  color: #0c0d24;
  opacity: 0.8;
  font-size: 18px;
  line-height: 1.7em;
}

/* ----Advantages section------ */

.how-study1 {
  background-image: url(../images/back.jpeg);
  width: 100%;
  height: auto;
  background-size: cover;
  background-repeat: no-repeat;
}

.how-study1 h2 {
  text-align: center;
  font-size: 36px !important;
  font-weight: 600;
  padding: 0px 0px 57px 0px;
}

/* ===================================
               swimming-pool
  ====================================== */
.swimming-pool {
  width: 100%;
  height: auto;
  position: relative;
  background-color: #ffffff;
  box-shadow: -5px 7px 5px 0px #00000061;
  border-right: 10px solid rgb(157 239 60);
  border-radius: 22px 0px 0px 22px;
  padding: 14px 17px;
}

.swimming-img {
  width: 80px;
  height: 80px;
  background-color: #ffffff;
  border-radius: 23px;
  position: absolute;
  padding: 12px;
  right: 17px;
}

.swimming-img img {
  width: 100%;
}

.swimming-pre {
  text-align: left;
  padding: 25px 0px 0px 0px;
}

.hadding-pool {
  width: 80%;
  padding: 10px 0px 10px 0px;
}

.hadding-pool h1 {
  font-size: 36px;
}

.swimming-pre p {
  color: #717576;
  font-size: 15px;
}

/* ===================================
          ac-classrooms
  ====================================== */
.ac-classrooms {
  width: 100%;
  height: auto;
  position: relative;
  background-color: #ffffff;
  box-shadow: -5px 7px 5px 0px #00000061;
  border-right: 10px solid rgb(229, 128, 49);
  border-radius: 22px 0 0 22px;
  padding: 14px 17px;
  margin-top: -38px;
}

.ac-classrooms-img {
  width: 80px;
  height: 80px;
  background-color: #ffffff;
  border-radius: 23px;
  position: absolute;
  padding: 12px;
  left: 17px;
}

.ac-classrooms-img img {
  width: 100%;
}

.ac-classrooms-pre {
  text-align: left;
  padding: 25px 0px 0px 0px;
}

.hadding-ac-classrooms {
  width: 90%;
  padding: 10px 0px 10px 100px;
}

.hadding-ac-classrooms h1 {
  font-size: 36px;
}

.ac-classrooms-pre p {
  color: #717576;
  font-size: 15px;
}

/* ===================================
               Indoor-Socce
  ====================================== */
.Indoor-Socce {
  width: 100%;
  height: auto;
  position: relative;
  background-color: #ffffff;
  box-shadow: -5px 7px 5px 0px #00000061;
  border-right: 10px solid rgb(226 68 68);
  border-radius: 22px 0px 0px 22px;
  padding: 14px 17px;
  margin-top: -38px;
}

.Indoor-Socce-img {
  width: 80px;
  height: 80px;
  background-color: rgb(255, 255, 255);
  border-radius: 23px;
  position: absolute;
  padding: 12px;
  right: 17px;
}

.Indoor-Socce-img img {
  width: 100%;
}

.Indoor-Socce-pre {
  text-align: left;
  padding: 25px 0px 0px 0px;
}

.hadding-Indoor-Socce {
  width: 80%;
  padding: 10px 0px 10px 0px;
}

.hadding-Indoor-Socce h1 {
  font-size: 36px;
}

.Indoor-Socce-pre p {
  color: #717576;
  font-size: 15px;
}

/* ===================================
         Martial-Arts
  ====================================== */
.Martial-Arts {
  width: 100%;
  height: auto;
  position: relative;
  background-color: #ffffff;
  box-shadow: -5px 7px 5px 0px #00000061;
  border-right: 10px solid rgb(229 128 49);
  border-radius: 22px 0px 0px 22px;
  padding: 14px 17px;
  margin-top: -38px;
}

.Martial-Arts-img {
  width: 80px;
  height: 80px;
  background-color: #ffffff;
  border-radius: 23px;
  position: absolute;
  padding: 12px;
  left: 17px;
}

.Martial-Arts-img img {
  width: 100%;
}

.Martial-Arts-pre {
  text-align: left;
  padding: 25px 0px 0px 0px;
}

.hadding-Martial-Arts {
  width: 90%;
  padding: 10px 0px 10px 100px;
}

.hadding-Martial-Arts h1 {
  font-size: 36px;
}

.Martial-Artss-pre p {
  color: #717576;
  font-size: 15px;
}

/* ===================================
               Basketball
  ====================================== */
.Basketball {
  width: 100%;
  height: auto;
  position: relative;
  background-color: #ffffff;
  box-shadow: 5px 7px 5px 0px #00000061;

  border-left: 10px solid rgb(241 72 121);
  border-radius: 0px 22px 22px 0px;
  padding: 14px 17px;
  margin-top: 123px;
}

.Basketball-img {
  width: 80px;
  height: 80px;
  background-color: rgb(255, 255, 255);
  border-radius: 23px;
  position: absolute;
  padding: 12px;
  right: 17px;
}

.Basketball-img img {
  width: 100%;
}

.Basketball-pre {
  text-align: left;
  padding: 25px 0px 0px 0px;
}

.hadding-Basketball {
  width: 80%;
  padding: 10px 0px 10px 0px;
}

.hadding-Basketball h1 {
  font-size: 36px;
}

.Basketball-pre p {
  color: #717576;
  font-size: 15px;
}

/* ===================================
        Cricket
  ====================================== */
.Cricket {
  width: 100%;
  height: auto;
  position: relative;
  background-color: #ffffff;
  box-shadow: 5px 7px 5px 0px #00000061;
  border-left: 10px solid rgb(78 189 226);
  border-radius: 0px 22px 22px 0px;
  padding: 14px 17px;
  margin-top: 123px;
}

.Cricket-img {
  width: 80px;
  height: 80px;
  background-color: #ffffff;
  border-radius: 23px;
  position: absolute;
  padding: 12px;
  left: 17px;
}

.Cricket-img img {
  width: 100%;
}

.Cricket-pre {
  text-align: left;
  padding: 25px 0px 0px 0px;
}

.hadding-Cricket {
  width: 90%;
  padding: 10px 0px 10px 100px;
}

.hadding-Cricket h1 {
  font-size: 36px;
}

.Cricket-pre p {
  color: #717576;
  font-size: 15px;
}

/* ===================================
               Adventure
  ====================================== */
.Adventure {
  width: 100%;
  height: auto;
  position: relative;
  background-color: #ffffff;
  box-shadow: -5px 7px 5px 0px #00000061;

  border-right: 10px solid rgb(233 180 54);
  border-radius: 22px 0px 0px 22px;
  padding: 14px 17px;
  margin-top: -38px;
}

.Adventure-img {
  width: 80px;
  height: 80px;
  background-color: rgb(255, 255, 255);
  border-radius: 23px;
  position: absolute;
  padding: 12px;
  right: 17px;
}

.Adventure-img img {
  width: 100%;
}

.Adventure-pre {
  text-align: left;
  padding: 25px 0px 0px 0px;
}

.hadding-Adventure {
  width: 80%;
  padding: 10px 0px 10px 0px;
}

.hadding-Adventure h1 {
  font-size: 36px;
}

.Adventure-pre p {
  color: #717576;
  font-size: 15px;
}

/* ===================================
        Cinema
  ====================================== */
.Cinema {
  width: 100%;
  height: auto;
  position: relative;
  background-color: #ffffff;
  box-shadow: 5px 7px 5px 0px #00000061;
  border-left: 10px solid rgb(44 229 145);
  border-radius: 0px 22px 22px 0px;
  padding: 14px 17px;
  margin-top: 123px;
}

.Cinema-img {
  width: 80px;
  height: 80px;
  background-color: #ffffff;
  border-radius: 23px;
  position: absolute;
  padding: 12px;
  left: 17px;
}

.Cinema-img img {
  width: 100%;
}

.Cinema-pre {
  text-align: left;
  padding: 25px 0px 0px 0px;
}

.hadding-Cinema {
  width: 90%;
  padding: 10px 0px 10px 100px;
}

.hadding-Cinema h1 {
  font-size: 36px;
}

.Cinema-pre p {
  color: #717576;
  font-size: 15px;
}

/* ===================================
               Badminton
  ====================================== */
.Badminton {
  width: 100%;
  height: auto;
  position: relative;
  background-color: #ffffff;
  box-shadow: -5px 7px 5px 0px #00000061;

  border-right: 10px solid rgb(229 128 49);
  border-radius: 22px 0px 0px 22px;
  padding: 14px 17px;
  margin-top: -38px;
}

.Badminton-img {
  width: 80px;
  height: 80px;
  background-color: rgb(255, 255, 255);
  border-radius: 23px;
  position: absolute;
  padding: 12px;
  right: 17px;
}

.Badminton-img img {
  width: 100%;
}

.Badminton-pre {
  text-align: left;
  padding: 25px 0px 0px 0px;
}

.hadding-Badminton {
  width: 80%;
  padding: 10px 0px 10px 0px;
}

.hadding-Badminton h1 {
  font-size: 36px;
}

.Badminton-pre p {
  color: #717576;
  font-size: 15px;
}

/* ===================================
        Lab
  ====================================== */
.Lab {
  width: 100%;
  height: auto;
  position: relative;
  background-color: #ffffff;
  box-shadow: 5px 7px 5px 0px #00000061;
  border-left: 10px solid rgb(44 229 145);
  border-radius: 0px 22px 22px 0px;
  padding: 14px 17px;
  margin-top: 123px;
}

.Lab-img {
  width: 80px;
  height: 80px;
  background-color: #ffffff;
  border-radius: 23px;
  position: absolute;
  padding: 12px;
  left: 17px;
}

.Lab-img img {
  width: 100%;
}

.Lab-pre {
  text-align: left;
  padding: 25px 0px 0px 0px;
}

.hadding-Lab {
  width: 90%;
  padding: 10px 0px 10px 100px;
}

.hadding-Lab h1 {
  font-size: 36px;
}

.Lab-pre p {
  color: #717576;
  font-size: 15px;
}

/* ===================================
               Skating
  ====================================== */
.Skating {
  width: 100%;
  height: auto;
  position: relative;
  background-color: #ffffff;
  box-shadow: 5px 7px 5px 0px #00000061;

  border-left: 10px solid rgb(241 72 121);
  border-radius: 0px 22px 22px 0px;
  padding: 14px 17px;
  margin-top: 123px;
}

.Skating-img {
  width: 80px;
  height: 80px;
  background-color: rgb(255, 255, 255);
  border-radius: 23px;
  position: absolute;
  padding: 12px;
  right: 17px;
}

.Skating-img img {
  width: 100%;
}

.Skating-pre {
  text-align: left;
  padding: 25px 0px 0px 0px;
}

.hadding-Skating {
  width: 80%;
  padding: 10px 0px 10px 0px;
}

.hadding-Skating h1 {
  font-size: 36px;
}

.Skating-pre p {
  color: #717576;
  font-size: 15px;
}

/* ===================================
        Tennis
  ====================================== */
.Tennis {
  width: 100%;
  height: auto;
  position: relative;
  background-color: #ffffff;
  box-shadow: 5px 7px 5px 0px #00000061;
  border-left: 10px solid rgb(237 65 61);
  border-radius: 0px 22px 22px 0px;
  padding: 14px 17px;
  margin-top: 123px;
}

.Tennis-img {
  width: 80px;
  height: 80px;
  background-color: #ffffff;
  border-radius: 23px;
  position: absolute;
  padding: 12px;
  left: 17px;
}

.Tennis-img img {
  width: 100%;
}

.Tennis-pre {
  text-align: left;
  padding: 25px 0px 0px 0px;
}

.hadding-Tennis {
  width: 90%;
  padding: 10px 0px 10px 100px;
}

.hadding-Tennis h1 {
  font-size: 36px;
}

.Tennis-pre p {
  color: #717576;
  font-size: 15px;
}

/* ===================================
               Archery Field
  ====================================== */
.Archery {
  width: 100%;
  height: auto;
  position: relative;
  background-color: #ffffff;
  box-shadow: -5px 7px 5px 0px #00000061;

  border-right: 10px solid rgb(62 142 229);
  border-radius: 22px 0px 0px 22px;
  padding: 14px 17px;
  margin-top: -38px;
}

.Archery-img {
  width: 80px;
  height: 80px;
  background-color: rgb(255, 255, 255);
  border-radius: 23px;
  position: absolute;
  padding: 12px;
  right: 17px;
}

.Archery-img img {
  width: 100%;
}

.Archery-pre {
  text-align: left;
  padding: 25px 0px 0px 0px;
}

.hadding-Archery {
  width: 80%;
  padding: 10px 0px 10px 0px;
}

.hadding-Archery h1 {
  font-size: 36px;
}

.Archery-pre p {
  color: #717576;
  font-size: 15px;
}

/* ===================================
        Lawn Tennis
  ====================================== */
.Lawn {
  width: 100%;
  height: auto;
  position: relative;

  border-left: 10px solid rgb(55 177 226);
  border-radius: 0px 22px 22px 0px;
  padding: 14px 17px;
  margin-top: 123px;
  background-color: #ffffff;
  box-shadow: 5px 7px 5px 0px #00000061;
}

.Lawn-img {
  width: 80px;
  height: 80px;
  background-color: #ffffff;
  border-radius: 23px;
  position: absolute;
  padding: 12px;
  left: 17px;
}

.Lawn-img img {
  width: 100%;
}

.Lawn-pre {
  text-align: left;
  padding: 25px 0px 0px 0px;
}

.hadding-Lawn {
  width: 90%;
  padding: 10px 0px 10px 100px;
}

.hadding-Lawn h1 {
  font-size: 36px;
}

.Lawn-pre p {
  color: #717576;
  font-size: 15px;
}

/* --career page--- */

.career-bg {
  background-image: url(../images/background4.webp);
  height: 400px;
  position: relative;
  background-attachment: scroll;
}

.inner-banner.career-bg::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 85px;
  left: 0;
  bottom: -2px;
  mask-image: url(../images/bread-cum-overlay.png);
  mask-repeat: repeat;
  mask-size: auto;
  mask-position: center;
  -webkit-mask-image: url(../images/bread-cum-overlay.png);
  -webkit-mask-repeat: repeat;
  -webkit-mask-size: auto;
  -webkit-mask-position: center;
  z-index: 1;
  background-color: #ffffff;
  animation: movement 40s linear infinite;
  -webkit-animation: movement 40s linear infinite;
}

.career-bg .content {
  margin-top: 75px !important;
}

.career-bg .content h1 {
  color: #fff;
}

.content-column ul li:last-child {
  margin-bottom: 20px;
}

li.email-info {
  line-height: 25px;
}

.how-study ul {
  display: block;
  margin-top: 9px;
}

.contact-form {
  margin-top: 30px;
}

.contact-form .input-block {
  border: solid 1px #750525;
  width: 100%;
  height: 40px;
  padding: 25px;
  position: relative;
  margin-bottom: 20px;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

.contact-form .input-block.focus {
  background-color: #fff;
  border: solid 1px #fb2900;
}

.contact-form .input-block.textarea {
  height: auto;
}

.contact-form .input-block.textarea .form-control {
  height: auto;
  resize: none;
}

.contact-form .input-block label {
  padding: 0 10px;

  position: absolute;
  left: 8px;
  top: 20px;
  display: block;
  margin: 0;
  font-weight: 300;
  z-index: 1;
  color: #999;
  font-size: 18px;
  line-height: 10px;
}

.contact-form .input-block .form-control {
  background-color: transparent;
  border: medium none;
  border-radius: 0;
  box-shadow: none;
  color: #333;
  font-size: 18px;
  height: 40px;
  padding: 0;
  position: relative;
  top: -20px;
  z-index: 2;
}

.contact-form .input-block .form-control:focus label {
  top: 0;
}

.contact-form .square-button {
  background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuMCIgeTE9IjAuNSIgeDI9IjEuMCIgeTI9IjAuNSI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2ZmNTEyZiIvPjxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iI2RkMjQ3NiIvPjwvbGluZWFyR3JhZGllbnQ+PC9kZWZzPjxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9InVybCgjZ3JhZCkiIC8+PC9zdmc+IA==);
  background-size: 100%;

  background-image: linear-gradient(to right, #750525, #52041b);
  color: #fff;
  font-size: 26px;
  text-transform: uppercase;
  font-weight: 700;
  text-align: center;
  -moz-border-radius: 2px;
  -webkit-border-radius: 2px;
  border-radius: 2px;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  padding: 0 60px;
  height: 60px;
  border: none;
  width: 100%;
}

.contact-form .square-button:hover,
.contact-form .square-button:focus {
  background-color: white;
}

@media (min-width: 768px) {
  .contact-wrap {
    width: 60%;
    margin: auto;
  }
}

/*----page styles---*/
.contact-wrap {
  padding: 15px;
}

.large-cta-section {
  background: #1e9fc4 linear-gradient(45deg, #3e3ed0, #1e9fc4 57%, #4fddd5)
    repeat scroll 0 0;
  box-shadow: 0 6px 12px -4px rgba(54, 56, 66, 0.25) inset;
  text-align: center;
  z-index: 1;
  height: 400px;
  position: relative;
  overflow: hidden;
}

.medium-large-wrapper {
  padding-top: 50px;
}

.h2.large {
  display: inline-block;
  font-size: 5em;
  font-family: "Roboto", sans-serif;
}

.white {
  color: #fff;
}

.h2 > .yellow {
  color: #f5ee33;
  font-weight: 600;
}

.h3 {
  font-family: "Roboto", sans-serif;
  font-size: 1.4em;
  font-weight: 300;
  line-height: 1.8rem;
  margin-top: 10px;
  margin-bottom: 40px;
}

.footer-cta-link::after {
  background-image: url("https://neverbounce.com/images/background-images/yellow-airplane-left.png");
  background-repeat: no-repeat;
  background-size: contain;
  bottom: -10em;
  content: "";
  display: block;
  height: 10em;
  left: -8.5em;
  pointer-events: none;
  position: absolute;
  width: 7em;
}

.footer-cta-link {
  position: relative;
}

.cta-link {
  background: #fff none repeat scroll 0 0;
  border-radius: 4px;
  color: #1e9fc4;
  letter-spacing: 2px;
  line-height: 1rem;
  margin-left: 1em;
  margin-right: 1em;
  margin-top: 4em;
  padding: 0.88rem 1.5em;
  text-decoration: none;
  text-transform: uppercase;
  transition: background 0.2s ease-in-out 0s;
  vertical-align: middle;
}

a.cta-link:hover {
  background: #f5ee33;
  text-decoration: none;
}

.cta-purple-email {
  left: 0;
  position: absolute;
  top: 5em;
  z-index: 0;
  transform: translate3d(0px, 0%, 0px);
}

.cta-blue-email {
  bottom: -45px;
  position: absolute;
  right: 15%;
  width: 15em;
  z-index: 0;
  transform: translate3d(86.875px, -8.6875%, 0px);
}

.cta-left-line {
  left: 0;
  opacity: 0.7;
  pointer-events: none;
  position: absolute;
  top: -38em;
  z-index: 0;
}

.cta-teal-airplane {
  opacity: 0.8;
  pointer-events: none;
  position: absolute;
  right: 10px;
  top: 3em;
  width: 15em;
  z-index: 4;
}

.made-with-love {
  margin-top: 40px;
  padding: 10px;
  clear: left;
  text-align: center;
  font-size: 12px;
  font-family: arial;
  color: #666;
}

.made-with-love i {
  font-style: normal;
  color: #f50057;
  font-size: 14px;
  position: relative;
  top: 2px;
}

.made-with-love a {
  color: #666;
  text-decoration: none;
}

.made-with-love a:hover {
  text-decoration: underline;
}

input {
  margin-top: 10px;
  margin-bottom: 10px;
  /* box-shadow: 0px 6px 15px black; */
  border: 1px solid #750525;
  padding: 8px;
  width: 100%;
}

.enquiry-form {
  width: 100%;
  height: 660px;
  background-size: cover;
  background: url(../images/bg-8.webp);
}

/* --Contact page--- */

.contactbox1 {
  width: 100%;
  height: auto;
  border-radius: 10px;
  background-color: #ffffff;
  color: white;
  padding: 30px;
  margin: 20px 0px;
  box-shadow: 2px 2px 13px 4px #00000063;
}

.img img {
  width: 26%;
}

.conthadding {
  padding: 20px 0px;
}

.conthadding h3 {
  font-size: 20px;
  font-weight: 700;
}

.contaders p {
  font-size: 16px;
  line-height: 26px;
  color: #5f6465;
}

.contactbox2 {
  width: 100%;
  height: 282px;
  border-radius: 10px;
  background-color: #ffffff;
  color: white;
  padding: 30px;
  box-shadow: 2px 2px 13px 4px #00000063;
  margin: 20px 0px;
}

.contactbox3 {
  width: 100%;
  height: 282px;
  border-radius: 10px;
  background-color: #ffffff;
  color: white;
  padding: 30px;
  box-shadow: 2px 2px 13px 4px #00000063;
  margin: 20px 0px;
}

.contactbox4 {
  width: 100%;
  height: 282px;
  border-radius: 10px;
  background-color: #ffffff;
  color: white;
  margin: 20px 0px;
  padding: 30px;
  box-shadow: 2px 2px 13px 4px #00000063;
}

/* form */
.form1 {
}

.contact-wrapper {
  margin: auto 0;
}

.submit-btn {
  float: left;
}

.reset-btn {
  float: right;
}

.form-headline:after {
  content: "";
  display: block;
  width: 10%;
  padding-top: 10px;
  border-bottom: 3px solid #750525;
}

.highlight-text {
  color: #750525;
}

.hightlight-contact-info {
  font-weight: 700;
  font-size: 22px;
  line-height: 1.5;
}

.highlight-text-grey {
  font-weight: 500;
}

.email-info {
  margin-top: 20px;
}

::-webkit-input-placeholder {
  /* Chrome */
  font-family: "Roboto", sans-serif;
}

.required-input {
  color: black;
}

@media (min-width: 600px) {
  .contain {
    padding: 0;
  }
}

h3,
ul {
  margin: 0;
}

h3 {
  margin-bottom: 1rem;
}

.form-input:focus,
textarea:focus {
  -webkit-box-shadow: 0px 10px 24px 0px #75052554;
  box-shadow: 0px 10px 24px 0px #75052554;
}

.form-input,
textarea {
  width: 100%;
  border: 1px solid #bdbdbd;
  border-radius: 5px;
}

.wrapper > * {
  padding: 1em;
}

@media (min-width: 700px) {
  .wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
  }

  .wrapper > * {
    padding: 2em 2em;
  }
}

ul {
  list-style: none;
  padding: 0;
}

.contacts {
  color: #212d31;
}

.form {
  background: #fff;
}

.form1 form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 20px;
}

form label {
  display: block;
}

form p {
  margin: 0;
}

.full-width {
  grid-column: 1 / 3;
}

button,
.submit-btn,
.form-input,
textarea {
  padding: 1em;
  transition: 0.5s ease-in-out;
}

button,
.submit-btn {
  background: transparent;
  border: 1px solid #750525;
  color: #750525;
  width: 100%;
  margin-bottom: 20px;
  border-radius: 15px;
  padding: 5px 20px;
  text-transform: uppercase;
}

button:hover,
.submit-btn:hover,
button:focus,
.submit-btn:focus {
  -webkit-box-shadow: 0px 10px 24px 0px #75052554;
  box-shadow: 0px 10px 24px 0px #75052554;
}

.error {
  color: #750525;
}

/* contact page updates */

.inner-banner.contact {
  background: url(../images/contact-bg.webp) no-repeat center top / cover !important;
  position: relative;
  height: 400px;
}

.inner-banner.contact h1 {
  color: #fff;
}

.inner-banner.contact::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 85px;
  left: 0;
  bottom: -2px;
  mask-image: url(../images/bread-cum-overlay.png);
  mask-repeat: repeat;
  mask-size: auto;
  mask-position: center;
  -webkit-mask-image: url(../images/bread-cum-overlay.png);
  -webkit-mask-repeat: repeat;
  -webkit-mask-size: auto;
  -webkit-mask-position: center;
  z-index: 1;
  background-color: #ffffff;
  animation: movement 40s linear infinite;
  -webkit-animation: movement 40s linear infinite;
}

@keyframes movement {
  to {
    mask-position: -100vw 80%;
    -webkit-mask-position: -100vw 80%;
  }
}

.contacts {
  background: var(--primary-color);
  padding: 40px 15px 15px 40px;
  color: #fff;
  border-radius: 8px;
}

.contact-wrapper h4 {
  color: #fff !important;
  margin-bottom: 40px;
  font-weight: 600;
}

.contact-enquiry--details-row {
  display: flex;
  margin-bottom: 30px;
  align-items: baseline;
}

.contact-data h5 {
  color: #fff;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 10px;
}

.contact-data p {
  font-size: 16px;
}

.contact-data ul li {
  padding-right: 10px;
  color: #fff;
}

.contact-data ul li a {
  color: #fff;
  font-size: 20px;
  padding-right: 10px;
}

.pc-enquiry--map iframe {
  width: 100%;
  height: 430px;
}

.full-width textarea {
  height: 207px;
}

/* ------advisory------- */

.advisory-bg {
  background-image: url(../images/background5.webp);
  height: 400px;
  position: relative;
  background-attachment: scroll;
}

.inner-banner.advisory-bg::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 85px;
  left: 0;
  bottom: -2px;
  mask-image: url(../images/bread-cum-overlay.png);
  mask-repeat: repeat;
  mask-size: auto;
  mask-position: center;
  -webkit-mask-image: url(../images/bread-cum-overlay.png);
  -webkit-mask-repeat: repeat;
  -webkit-mask-size: auto;
  -webkit-mask-position: center;
  z-index: 1;
  background-color: #ffffff;
  animation: movement 40s linear infinite;
  -webkit-animation: movement 40s linear infinite;
}

.advisory-bg .content {
  margin-top: 75px !important;
}

.advisory-bg .content h1 {
  color: #fff;
}

.team-desc {
  padding: 120px;
  text-align: center;
  position: relative;
  z-index: 99;
}

.team-desc p:first-of-type:before {
  content: "❝";
  position: relative;
  left: -12px;
  font-size: 65px;
  top: 25px;
  color: var(--primary-color);
}

.team-desc p:last-of-type::after {
  content: "❞";
  position: relative;
  left: 15px;
  font-size: 65px;
  top: 36px;
  color: var(--primary-color);
}

.background {
  position: absolute;
  z-index: 10;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
}

.grey-bg.small {
  width: 29px;
  height: 29px;
  top: 163px;
  right: 23%;
}

.background .grey-bg {
  position: absolute;
  z-index: -3;
  border-radius: 50%;
  background: #e6eef4;
}

.color-bg.small {
  width: 17px;
  height: 17px;
  top: 108px;
  right: 18%;
}

.background .grey-bg.big {
  width: 232px;
  height: 232px;
  top: -22px;
  right: -3%;
}

.background .color-bg {
  background: -webkit-linear-gradient(left, #f8c76d, #f6b43c);
  background: -o-linear-gradient(left, #f8c76d, #f6b43c);
  background: -moz-linear-gradient(left, #f8c76d, #f6b43c);
  background: linear-gradient(left, #f8c76d, #f6b43c);
}

.background .color-bg {
  position: absolute;
  z-index: -2;
  border-radius: 50%;
  background: #f3ae7f;
  background: -webkit-linear-gradient(left, #f8c76d, #f3ae7f);
  background: -o-linear-gradient(left, #f8c76d, #f3ae7f);
  background: -moz-linear-gradient(left, #f8c76d, #f3ae7f);
  background: linear-gradient(left, #f8c76d, #f3ae7f);
}

.background .color-bg.big {
  width: 88px;
  height: 88px;
  top: 155px;
  left: 86%;
  box-shadow: -27px 74px 60px 0 rgb(248 197 110 / 40%);
}

.background .color-bg.normal {
  width: 38px;
  height: 38px;
  top: 32px;
  right: 20%;
}

/* ----enquiry page---------- */

.inner-banner.enquiry-back {
  background: url(../images/contact-bg.webp) no-repeat center top / cover !important;
  position: relative;
  height: 400px;
}

.inner-banner.enquiry-back h1 {
  color: #fff;
}

.enquiry {
  position: relative;
}

.inner-banner.enquiry-back::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 85px;
  left: 0;
  bottom: -2px;
  mask-image: url(../images/bread-cum-overlay.png);
  mask-repeat: repeat;
  mask-size: auto;
  mask-position: center;
  -webkit-mask-image: url(../images/bread-cum-overlay.png);
  -webkit-mask-repeat: repeat;
  -webkit-mask-size: auto;
  -webkit-mask-position: center;
  z-index: 1;
  background-color: #ffffff;
  animation: movement 40s linear infinite;
  -webkit-animation: movement 40s linear infinite;
}

.enquiry-left-col {
  display: flex;
  flex-direction: column;
}

.enquiry-left-col img {
  margin-bottom: 25px;
}

.form-outer-div {
  border: 1px solid var(--primary-color);
  margin-left: 45px;
  padding: 55px 20px 50px 20px;
}

.form-heading {
  width: 90%;
  margin: auto;

  text-align: center;
  margin-bottom: 45px;
}

.form-heading h3 {
  font-weight: 600;
  color: var(--primary-color);
}

.admissionform .form-group input,
.admissionform select {
  height: 50px;
  width: 90%;
  margin: auto;
  transition: 0.5s ease-in-out;
  position:relative;
  color:black;
}

.admissionform textarea {
  width: 90%;
  margin: auto;
  transition: 0.5s ease-in-out;
}

.admissionform button {
  width: 25%;
  background: var(--primary-color);
  color: #ffff;
  margin-top: 18px;
  transition: 0.5s ease-in-out;
  font-weight: 600;
}

.admissionform input:focus,
textarea:focus {
  -webkit-box-shadow: 0px 10px 24px 0px #75052554;
  box-shadow: 0px 10px 24px 0px #75052554;
  border-color: transparent;
}

.career-tease {
  background: url(/images/boy-with-laptop.webp) no-repeat center center;
  position: relative;
}

.career-tease::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.5;
  display: block;
}

.career-tease .sec-2-contant h2 {
  font-size: 42px;
  margin: 40px 0 60px 0;
  line-height: 52px;
  font-weight: 600;
  color: #fff;
}

.career-tease .sec-2-contant p {
  font-size: 16px;
  margin: 0 0 15px 0;
  line-height: 32px;
  color: #fff;
}

.button1 {
  display: inline-block;
  vertical-align: middle;
  position: relative;
  background: var(--primary-color);
  -webkit-transition-property: color;
  transition-property: color;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  padding: 12px 40px;
  border: 0;
  font-size: 14px;
  text-transform: uppercase;
  color: #fff;
  font-weight: normal;
  letter-spacing: 1px;
  transition: ease all 0.3s;
}

.button1:hover {
  background: var(--secondary-color);
  color: white;
}

.icon-layer-six {
  position: absolute;
  right: -18px;
  top: 1px;
  width: 485px;
  z-index: -1;
  height: 492px;
  background-repeat: no-repeat;
}

/* career page */
.career {
  padding-bottom: 0;
}

.career .row {
  margin-bottom: 90px;
}

.career-inner-column p {
  font-size: 16px;
  line-height: 26px;
  color: #444;
  display: block;
  margin: 0 0 20px 0;
}

.career-title h2 {
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 15px;
}

.career-title2 {
  color: var(--primary-color);
  margin-bottom: 15px;
}

.career-title2 strong {
  color: var(--secondary-color);
}

.career-inner-column h6 {
  color: var(--primary-color);
  margin-bottom: 10px;
  font-size: 18px;
}

.career-inner-column ul li {
  list-style: none !important;
  background: url(../images/checked.png) no-repeat;
  background-position: 0 3px;
  padding-left: 25px;
}

.career-image-column .image img {
  margin-left: auto;
}

.career-form {
  position: relative;
}

.career-form-outer {
  margin: 30px;

  top: 0;
  border-radius: 60px;
  flex-wrap: wrap;
  justify-content: center;
  display: flex;
  border: 1px solid black;
  background: var(--primary-color);
}

.career-form-container {
  background: white;
  padding-inline: 85px;
}

.career-form-container-right {
  color: #fff;
}

.career-form-container-right h2 {
  margin: 0 0 30px;
  color: #fff;

  font-weight: 600;
}

/* galery */

.gallery-bg {
  background: url(../images/background.webp) no-repeat center top / cover !important;
  position: relative;
  height: 400px;
}

.gallery-bg .content {
  margin-top: 75px !important;
}

.inner-banner.gallery-bg::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 85px;
  left: 0;
  bottom: 0px;
  mask-image: url(../images/bread-cum-overlay.png);
  mask-repeat: repeat-x;
  mask-size: auto;
  mask-position: center;
  -webkit-mask-image: url(../images/bread-cum-overlay.png);
  -webkit-mask-repeat: repeat-x;
  -webkit-mask-size: auto;
  -webkit-mask-position: center;
  z-index: 1;
  background-color: #ffffff;
  animation: movement 40s linear infinite;
  -webkit-animation: movement 40s linear infinite;
}

/* responsive */

@media (max-width: 767px) {
  /* home page */
  .navbar-toggle {
    background: transparent;
    border-radius: 0px;
    text-align: center;
    width: 38px;
  }

  .nav-logo-link {
    justify-content: left;
  }

  .navbar-nav {
    float: none;
  }

  .about ul.our-links li.apply-online {
    height: auto !important;
  }

  .navbar-inverse .navbar-toggle .icon-bar {
    margin-inline: auto;
    background-color: var(--primary-color);
  }

  .icon-row {
    flex-wrap: wrap;
  }

  .icon-row .col-md-3 {
    margin-bottom: 15px;
  }

  .flex_cont {
    flex-wrap: wrap;
  }

  .flex_cont .col-lg-3 {
    width: 100%;
  }

  .icon-layer-one {
    display: none;
  }

  .icon-layer-nine {
    display: none;
  }

  .fact-area {
    border: none !important;
  }

  .fact-area.pjt:after,
  .fact-area.inet_off:after {
    display: none;
  }

  .advantage-list {
    gap: 25px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin: auto;
  }

  .copyright .row {
    justify-content: center;
  }

  .footer-logo-col {
    order: 1;
    padding-bottom: 15px;
  }

  .footer-social {
    float: none !important;
    display: flex;
    justify-content: center;
  }

  .copyright p {
    text-align: center;
  }

  .footer-logo-col {
    order: 1;
    padding-bottom: 15px;
  }

  .footer-social-col {
    order: 2;
  }

  .footer-links-col {
    order: 3;
    justify-content: center;
  }

  /* about page */
  .about-us-left-col {
    padding: 15px;
  }

  .about-us-left-col h2 {
    text-align: center;
    padding-top: 30px;
  }

  .accordian {
    max-width: 100%;
    margin: auto;
  }

  .about-us-right-col {
    padding: 15px;
  }

  .about-us-right-col h2 {
    text-align: center;
    padding-top: 30px;
  }

  .founder-note .images {
    width: 260px;
    height: 260px;
  }

  .team-desc {
    padding: 15px;
  }

  .our-team-section .background .color-bg.big {
    left: 72%;
  }

  .our-team-section .background .grey-bg.big {
    right: 0;
  }

  .whyus-sec1-title {
    margin-top: 50px;
  }

  .whyus-sec1-image-column img {
    margin: auto;
  }

  .relationship-section .blocks-column .inner-column {
    margin-left: 0;
    padding-right: 0;
  }

  .relationship-section .blocks-column .pattern-layer {
    width: initial;
  }

  .relationship-section .content-column .inner-column {
    padding-left: 0;
  }

  .whyus-sec2 .row {
    flex-wrap: wrap;
  }

  .whyus-sec2-bx {
    width: 100%;
  }

  .button1 {
    padding: 12px 25px;
  }

  .form-outer-div {
    padding: 28px 15px 50px 15px;
    margin-left: 0;
  }
}

@media (max-width: 420px) {
  .logo-text {
    font-size: 24px;
  }

  .logo-text-sm-head {
    font-size: 12px;
  }

  .sec-heading {
    font-size: 36px !important;
  }

  .heading h2 {
    font-size: 35px;
  }

  .advantage-list {
    gap: 45px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin: auto;
  }

  .whyus-sec1-image-column img {
    width: 60%;
  }

  .button1 {
    padding: 12px 15px;
  }

  .form-outer-div {
    padding: 28px 15px 50px 15px;
  }

  .admissionform .form-group input,
  .admissionform select {
    height: 42px;
  }

  .admissionform select {
    font-size: 13px;
  }

  .admissionform button {
    width: 35%;
  }

  .icon-layer-six {
    display: none;
  }

  .inner-banner {
    height: 315px !important;
  }

  .career-tease .sec-2-contant h2 {
    line-height: 40px;
    font-size: 35px;
  }

  .form iframe {
    height: 350px;
  }

  .contact-enquiry--details-row {
    margin-bottom: 21px;
  }

  .contacts {
    padding: 28px 10px 10px 15px;
  }

  .contact-wrapper h4 {
    margin-bottom: 28px;
  }

  .contact-icon {
    margin-right: 25px !important;
  }
}

@media (max-width: 320px) {
  .about-video p {
    font-size: 24px;
  }
}

@media (min-width: 320px) and (max-width: 420px) {
  .hadding-pool h1 {
    font-size: 24px;
  }

  .swimming-pre p {
    color: #717576;
    font-size: 13px;
  }

  .hadding-ac-classrooms h1 {
    font-size: 24px;
  }

  .hadding-ac-classrooms {
    width: 100%;
    padding: 10px 0px 10px 84px;
  }

  .ac-classrooms-pre p {
    color: #717576;
    font-size: 13px;
  }

  .swimming-pool {
    width: 100%;
    height: auto;
    position: relative;
    background-color: #ffffff;
    box-shadow: -5px 7px 5px 0px #00000061;
    border-right: 10px solid rgb(157 239 60);
    border-radius: 22px 0px 0px 22px;
    padding: 14px 17px;
    margin-top: 50px;
  }

  .Skating {
    width: 100%;
    height: auto;
    position: relative;
    background-color: #ffffff;
    box-shadow: 5px 7px 5px 0px #00000061;
    border-left: 10px solid rgb(241 72 121);
    border-radius: 0px 22px 22px 0px;
    padding: 14px 17px;
    margin-top: 50px;
  }

  .Martial-Arts {
    width: 100%;
    height: auto;
    position: relative;
    background-color: #ffffff;
    box-shadow: -5px 7px 5px 0px #00000061;
    border-right: 10px solid rgb(229 128 49);
    border-radius: 22px 0px 0px 22px;
    padding: 14px 17px;
    margin-top: 50px;
  }

  .Indoor-Socce {
    width: 100%;
    height: auto;
    position: relative;
    background-color: #ffffff;
    box-shadow: -5px 7px 5px 0px #00000061;
    border-right: 10px solid rgb(226 68 68);
    border-radius: 22px 0px 0px 22px;
    padding: 14px 17px;
    margin-top: 59px;
  }

  .hadding-Indoor-Socce h1 {
    font-size: 24px;
  }

  .Indoor-Socce-pre p {
    color: #717576;
    font-size: 13px;
  }

  .hadding-Martial-Arts {
    width: 100%;
    padding: 10px 0px 10px 79px;
  }

  .hadding-Martial-Arts h1 {
    font-size: 24px;
  }

  .Martial-Arts-pre p {
    padding: 0px;
    margin: 0px;
    font-size: 13px;
  }

  .Basketball {
    width: 100%;
    height: auto;
    position: relative;
    background-color: #ffffff;
    box-shadow: 5px 7px 5px 0px #00000061;
    border-left: 10px solid rgb(241 72 121);
    border-radius: 0px 22px 22px 0px;
    padding: 14px 17px;
    margin-top: 50px;
  }

  .hadding-Basketball {
    width: 100%;
    padding: 10px 0px 10px 0px;
  }

  .hadding-Basketball h1 {
    font-size: 24px;
  }

  .Basketball-pre p {
    color: #717576;
    font-size: 13px;
  }

  .Cricket {
    width: 100%;
    height: auto;
    position: relative;
    background-color: #ffffff;
    box-shadow: 5px 7px 5px 0px #00000061;
    border-left: 10px solid rgb(78 189 226);
    border-radius: 0px 22px 22px 0px;
    padding: 14px 17px;
    margin-top: 50px;
  }

  .hadding-Cricket {
    width: 100%;
    padding: 10px 0px 10px 100px;
  }

  .hadding-Cricket h1 {
    font-size: 24px;
  }

  .hadding-Cricket {
    width: 100%;
    padding: 10px 0px 10px 96px;
  }

  .Cricket-pre p {
    color: #717576;
    font-size: 13px;
  }

  .Adventure {
    width: 100%;
    height: auto;
    position: relative;
    background-color: #ffffff;
    box-shadow: -5px 7px 5px 0px #00000061;
    border-right: 10px solid rgb(233 180 54);
    border-radius: 22px 0px 0px 22px;
    padding: 14px 17px;
    margin-top: 50px;
  }

  .hadding-Adventure h1 {
    font-size: 24px;
  }

  .hadding-Adventure {
    width: 100%;
    padding: 10px 0px 10px 0px;
  }

  .hadding-Adventure h1 {
    font-size: 21px;
  }

  .Cinema {
    width: 100%;
    height: auto;
    position: relative;
    background-color: #ffffff;
    box-shadow: 5px 7px 5px 0px #00000061;
    border-left: 10px solid rgb(44 229 145);
    border-radius: 0px 22px 22px 0px;
    padding: 14px 17px;
    margin-top: 50px;
  }

  .hadding-Cinema {
    width: 100%;
    padding: 10px 0px 10px 78px;
  }

  .hadding-Cinema h1 {
    font-size: 24px;
  }

  .Cinema-pre p {
    color: #717576;
    font-size: 13px;
  }

  .Badminton {
    width: 100%;
    height: auto;
    position: relative;
    background-color: #ffffff;
    box-shadow: -5px 7px 5px 0px #00000061;
    border-right: 10px solid rgb(229 128 49);
    border-radius: 22px 0px 0px 22px;
    padding: 14px 17px;
    margin-top: 50px;
  }

  .hadding-Badminton h1 {
    font-size: 24px;
  }

  .Lab {
    width: 100%;
    height: auto;
    position: relative;
    background-color: #ffffff;
    box-shadow: 5px 7px 5px 0px #00000061;
    border-left: 10px solid rgb(232 208 56);
    border-radius: 0px 22px 22px 0px;
    padding: 14px 17px;
    margin-top: 50px;
  }

  .hadding-Lab {
    width: 100%;
    padding: 10px 0px 10px 78px;
  }

  .hadding-Lab h1 {
    font-size: 24px;
  }

  .Lab-pre p {
    color: #717576;
    font-size: 13px;
  }

  .hadding-Skating h1 {
    font-size: 24px;
  }

  .Skating-pre p {
    color: #717576;
    font-size: 13px;
  }

  .Tennis {
    width: 100%;
    height: auto;
    position: relative;
    background-color: #ffffff;
    box-shadow: 5px 7px 5px 0px #00000061;
    border-left: 10px solid rgb(237 65 61);
    border-radius: 0px 22px 22px 0px;
    padding: 14px 17px;
    margin-top: 50px;
  }

  .hadding-Tennis {
    width: 100%;
    padding: 10px 0px 10px 82px;
  }

  .hadding-Tennis h1 {
    font-size: 24px;
  }

  .Tennis-pre p {
    color: #717576;
    font-size: 13px;
  }

  .Archery {
    width: 100%;
    height: auto;
    position: relative;
    background-color: #ffffff;
    box-shadow: -5px 7px 5px 0px #00000061;
    border-right: 10px solid rgb(62 142 229);
    border-radius: 22px 0px 0px 22px;
    padding: 14px 17px;
    margin-top: 50px;
  }

  .hadding-Archery h1 {
    font-size: 24px;
  }

  .Archery-pre p {
    color: #717576;
    font-size: 13px;
  }

  .Lawn {
    width: 100%;
    height: auto;
    position: relative;
    border-left: 10px solid rgb(157 239 60);
    border-radius: 0px 22px 22px 0px;
    padding: 14px 17px;
    margin-top: 50px;
    background-color: #ffffff;
    box-shadow: 5px 7px 5px 0px #00000061;
  }

  .hadding-Lawn {
    width: 100%;
    padding: 10px 0px 10px 84px;
  }

  .hadding-Lawn h1 {
    font-size: 24px;
  }

  .Lawn-pre p {
    color: #717576;
    font-size: 13px;
  }
}

@media (min-width: 420px) and (max-width: 520px) {
  .hadding-pool h1 {
    font-size: 24px;
  }

  .swimming-pre p {
    color: #717576;
    font-size: 13px;
  }

  .hadding-ac-classrooms h1 {
    font-size: 24px;
  }

  .hadding-ac-classrooms {
    width: 100%;
    padding: 10px 0px 10px 84px;
  }

  .swimming-pool {
    width: 100%;
    height: auto;
    position: relative;
    background-color: #ffffff;
    box-shadow: -5px 7px 5px 0px #00000061;
    border-right: 10px solid rgb(157 239 60);
    border-radius: 22px 0px 0px 22px;
    padding: 14px 17px;
    margin-top: 50px;
  }

  .ac-classrooms-pre p {
    color: #717576;
    font-size: 13px;
  }

  .Indoor-Socce {
    width: 100%;
    height: auto;
    position: relative;
    background-color: #ffffff;
    box-shadow: -5px 7px 5px 0px #00000061;
    border-right: 10px solid rgb(226 68 68);
    border-radius: 22px 0px 0px 22px;
    padding: 14px 17px;
    margin-top: 59px;
  }

  .hadding-Indoor-Socce h1 {
    font-size: 24px;
  }

  .Indoor-Socce-pre p {
    color: #717576;
    font-size: 13px;
  }

  .Martial-Arts {
    width: 100%;
    height: auto;
    position: relative;
    background-color: #ffffff;
    box-shadow: -5px 7px 5px 0px #00000061;
    border-right: 10px solid rgb(229 128 49);
    border-radius: 22px 0px 0px 22px;
    padding: 14px 17px;
    margin-top: 50px;
  }

  .hadding-Martial-Arts {
    width: 100%;
    padding: 10px 0px 10px 79px;
  }

  .hadding-Martial-Arts h1 {
    font-size: 24px;
  }

  .Martial-Arts-pre p {
    padding: 0px;
    margin: 0px;
    font-size: 13px;
  }

  .Basketball {
    width: 100%;
    height: auto;
    position: relative;
    background-color: #ffffff;
    box-shadow: 5px 7px 5px 0px #00000061;
    border-left: 10px solid rgb(241 72 121);
    border-radius: 0px 22px 22px 0px;
    padding: 14px 17px;
    margin-top: 50px;
  }

  .hadding-Basketball {
    width: 100%;
    padding: 10px 0px 10px 0px;
  }

  .hadding-Basketball h1 {
    font-size: 24px;
  }

  .Basketball-pre p {
    color: #717576;
    font-size: 13px;
  }

  .Cricket {
    width: 100%;
    height: auto;
    position: relative;
    background-color: #ffffff;
    box-shadow: 5px 7px 5px 0px #00000061;
    border-left: 10px solid rgb(78 189 226);
    border-radius: 0px 22px 22px 0px;
    padding: 14px 17px;
    margin-top: 50px;
  }

  .hadding-Cricket {
    width: 100%;
    padding: 10px 0px 10px 100px;
  }

  .hadding-Cricket h1 {
    font-size: 24px;
  }

  .hadding-Cricket {
    width: 100%;
    padding: 10px 0px 10px 96px;
  }

  .Cricket-pre p {
    color: #717576;
    font-size: 13px;
  }

  .Adventure {
    width: 100%;
    height: auto;
    position: relative;
    background-color: #ffffff;
    box-shadow: -5px 7px 5px 0px #00000061;
    border-right: 10px solid rgb(233 180 54);
    border-radius: 22px 0px 0px 22px;
    padding: 14px 17px;
    margin-top: 50px;
  }

  .hadding-Adventure h1 {
    font-size: 24px;
  }

  .hadding-Adventure {
    width: 100%;
    padding: 10px 0px 10px 0px;
  }

  .hadding-Adventure h1 {
    font-size: 21px;
  }

  .Cinema {
    width: 100%;
    height: auto;
    position: relative;
    background-color: #ffffff;
    box-shadow: 5px 7px 5px 0px #00000061;
    border-left: 10px solid rgb(44 229 145);
    border-radius: 0px 22px 22px 0px;
    padding: 14px 17px;
    margin-top: 50px;
  }

  .hadding-Cinema {
    width: 100%;
    padding: 10px 0px 10px 78px;
  }

  .hadding-Cinema h1 {
    font-size: 24px;
  }

  .Cinema-pre p {
    color: #717576;
    font-size: 13px;
  }

  .Badminton {
    width: 100%;
    height: auto;
    position: relative;
    background-color: #ffffff;
    box-shadow: -5px 7px 5px 0px #00000061;
    border-right: 10px solid rgb(229 128 49);
    border-radius: 22px 0px 0px 22px;
    padding: 14px 17px;
    margin-top: 50px;
  }

  .hadding-Badminton h1 {
    font-size: 24px;
  }

  .Lab {
    width: 100%;
    height: auto;
    position: relative;
    background-color: #ffffff;
    box-shadow: 5px 7px 5px 0px #00000061;
    border-left: 10px solid rgb(232 208 56);
    border-radius: 0px 22px 22px 0px;
    padding: 14px 17px;
    margin-top: 50px;
  }

  .hadding-Lab {
    width: 100%;
    padding: 10px 0px 10px 78px;
  }

  .hadding-Lab h1 {
    font-size: 24px;
  }

  .Lab-pre p {
    color: #717576;
    font-size: 13px;
  }

  .Skating {
    width: 100%;
    height: auto;
    position: relative;
    background-color: #ffffff;
    box-shadow: 5px 7px 5px 0px #00000061;
    border-left: 10px solid rgb(241 72 121);
    border-radius: 0px 22px 22px 0px;
    padding: 14px 17px;
    margin-top: 50px;
  }

  .hadding-Skating h1 {
    font-size: 24px;
  }

  .Skating-pre p {
    color: #717576;
    font-size: 13px;
  }

  .Tennis {
    width: 100%;
    height: auto;
    position: relative;
    background-color: #ffffff;
    box-shadow: 5px 7px 5px 0px #00000061;
    border-left: 10px solid rgb(237 65 61);
    border-radius: 0px 22px 22px 0px;
    padding: 14px 17px;
    margin-top: 50px;
  }

  .hadding-Tennis {
    width: 100%;
    padding: 10px 0px 10px 82px;
  }

  .hadding-Tennis h1 {
    font-size: 24px;
  }

  .Tennis-pre p {
    color: #717576;
    font-size: 13px;
  }

  .Archery {
    width: 100%;
    height: auto;
    position: relative;
    background-color: #ffffff;
    box-shadow: -5px 7px 5px 0px #00000061;
    border-right: 10px solid rgb(62 142 229);
    border-radius: 22px 0px 0px 22px;
    padding: 14px 17px;
    margin-top: 50px;
  }

  .hadding-Archery h1 {
    font-size: 24px;
  }

  .Archery-pre p {
    color: #717576;
    font-size: 13px;
  }

  .Lawn {
    width: 100%;
    height: auto;
    position: relative;
    border-left: 10px solid rgb(157 239 60);
    border-radius: 0px 22px 22px 0px;
    padding: 14px 17px;
    margin-top: 50px;
    background-color: #ffffff;
    box-shadow: 5px 7px 5px 0px #00000061;
  }

  .hadding-Lawn {
    width: 100%;
    padding: 10px 0px 10px 84px;
  }

  .hadding-Lawn h1 {
    font-size: 24px;
  }

  .Lawn-pre p {
    color: #717576;
    font-size: 13px;
  }
}

@media (min-width: 521px) and (max-width: 620px) {
  .swimming-pool {
    width: 100%;
    height: auto;
    position: relative;
    background-color: #ffffff;
    box-shadow: -5px 7px 5px 0px #00000061;
    border-right: 10px solid rgb(157 239 60);
    border-radius: 22px 0px 0px 22px;
    padding: 14px 17px;
    margin-top: 50px;
  }

  .Indoor-Socce {
    width: 100%;
    height: auto;
    position: relative;
    background-color: #ffffff;
    box-shadow: -5px 7px 5px 0px #00000061;
    border-right: 10px solid rgb(226 68 68);
    border-radius: 22px 0px 0px 22px;
    padding: 14px 17px;
    margin-top: 50px;
  }

  .Basketball {
    width: 100%;
    height: auto;
    position: relative;
    background-color: #ffffff;
    box-shadow: 5px 7px 5px 0px #00000061;
    border-left: 10px solid rgb(241 72 121);
    border-radius: 0px 22px 22px 0px;
    padding: 14px 17px;
    margin-top: 50px;
  }

  .Martial-Arts {
    width: 100%;
    height: auto;
    position: relative;
    background-color: #ffffff;
    box-shadow: -5px 7px 5px 0px #00000061;
    border-right: 10px solid rgb(229 128 49);
    border-radius: 22px 0px 0px 22px;
    padding: 14px 17px;
    margin-top: 50px;
  }

  .Cricket {
    width: 100%;
    height: auto;
    position: relative;
    background-color: #ffffff;
    box-shadow: 5px 7px 5px 0px #00000061;
    border-left: 10px solid rgb(78 189 226);
    border-radius: 0px 22px 22px 0px;
    padding: 14px 17px;
    margin-top: 50px;
  }

  .Adventure {
    width: 100%;
    height: auto;
    position: relative;
    background-color: #ffffff;
    box-shadow: -5px 7px 5px 0px #00000061;
    border-right: 10px solid rgb(233 180 54);
    border-radius: 22px 0px 0px 22px;
    padding: 14px 17px;
    margin-top: 50px;
  }

  .Cinema {
    width: 100%;
    height: auto;
    position: relative;
    background-color: #ffffff;
    box-shadow: 5px 7px 5px 0px #00000061;
    border-left: 10px solid rgb(44 229 145);
    border-radius: 0px 22px 22px 0px;
    padding: 14px 17px;
    margin-top: 50px;
  }

  .Badminton {
    width: 100%;
    height: auto;
    position: relative;
    background-color: #ffffff;
    box-shadow: -5px 7px 5px 0px #00000061;
    border-right: 10px solid rgb(229 128 49);
    border-radius: 22px 0px 0px 22px;
    padding: 14px 17px;
    margin-top: 50px;
  }

  .Lab {
    width: 100%;
    height: auto;
    position: relative;
    background-color: #ffffff;
    box-shadow: 5px 7px 5px 0px #00000061;
    border-left: 10px solid rgb(232 208 56);
    border-radius: 0px 22px 22px 0px;
    padding: 14px 17px;
    margin-top: 50px;
  }

  .Skating {
    width: 100%;
    height: auto;
    position: relative;
    background-color: #ffffff;
    box-shadow: 5px 7px 5px 0px #00000061;
    border-left: 10px solid rgb(241 72 121);
    border-radius: 0px 22px 22px 0px;
    padding: 14px 17px;
    margin-top: 50px;
  }

  .Tennis {
    width: 100%;
    height: auto;
    position: relative;
    background-color: #ffffff;
    box-shadow: 5px 7px 5px 0px #00000061;
    border-left: 10px solid rgb(237 65 61);
    border-radius: 0px 22px 22px 0px;
    padding: 14px 17px;
    margin-top: 50px;
  }

  .Archery {
    width: 100%;
    height: auto;
    position: relative;
    background-color: #ffffff;
    box-shadow: -5px 7px 5px 0px #00000061;
    border-right: 10px solid rgb(62 142 229);
    border-radius: 22px 0px 0px 22px;
    padding: 14px 17px;
    margin-top: 50px;
  }

  .Lawn {
    width: 100%;
    height: auto;
    position: relative;
    border-left: 10px solid rgb(157 239 60);
    border-radius: 0px 22px 22px 0px;
    padding: 14px 17px;
    margin-top: 50px;
    background-color: #ffffff;
    box-shadow: 5px 7px 5px 0px #00000061;
  }
}

@media (min-width: 621px) and (max-width: 767px) {
  .swimming-pool {
    width: 100%;
    height: auto;
    position: relative;
    background-color: #ffffff;
    box-shadow: -5px 7px 5px 0px #00000061;
    border-right: 10px solid rgb(157 239 60);
    border-radius: 22px 0px 0px 22px;
    padding: 14px 17px;
    margin-top: 50px;
  }

  .Indoor-Socce {
    width: 100%;
    height: auto;
    position: relative;
    background-color: #ffffff;
    box-shadow: -5px 7px 5px 0px #00000061;
    border-right: 10px solid rgb(226 68 68);
    border-radius: 22px 0px 0px 22px;
    padding: 14px 17px;
    margin-top: 50px;
  }

  .Basketball {
    width: 100%;
    height: auto;
    position: relative;
    background-color: #ffffff;
    box-shadow: 5px 7px 5px 0px #00000061;
    border-left: 10px solid rgb(241 72 121);
    border-radius: 0px 22px 22px 0px;
    padding: 14px 17px;
    margin-top: 50px;
  }

  .Martial-Arts {
    width: 100%;
    height: auto;
    position: relative;
    background-color: #ffffff;
    box-shadow: -5px 7px 5px 0px #00000061;
    border-right: 10px solid rgb(229 128 49);
    border-radius: 22px 0px 0px 22px;
    padding: 14px 17px;
    margin-top: 50px;
  }

  .Cricket {
    width: 100%;
    height: auto;
    position: relative;
    background-color: #ffffff;
    box-shadow: 5px 7px 5px 0px #00000061;
    border-left: 10px solid rgb(78 189 226);
    border-radius: 0px 22px 22px 0px;
    padding: 14px 17px;
    margin-top: 50px;
  }

  .Adventure {
    width: 100%;
    height: auto;
    position: relative;
    background-color: #ffffff;
    box-shadow: -5px 7px 5px 0px #00000061;
    border-right: 10px solid rgb(233 180 54);
    border-radius: 22px 0px 0px 22px;
    padding: 14px 17px;
    margin-top: 50px;
  }

  .Cinema {
    width: 100%;
    height: auto;
    position: relative;
    background-color: #ffffff;
    box-shadow: 5px 7px 5px 0px #00000061;
    border-left: 10px solid rgb(44 229 145);
    border-radius: 0px 22px 22px 0px;
    padding: 14px 17px;
    margin-top: 50px;
  }

  .Badminton {
    width: 100%;
    height: auto;
    position: relative;
    background-color: #ffffff;
    box-shadow: -5px 7px 5px 0px #00000061;
    border-right: 10px solid rgb(229 128 49);
    border-radius: 22px 0px 0px 22px;
    padding: 14px 17px;
    margin-top: 50px;
  }

  .Lab {
    width: 100%;
    height: auto;
    position: relative;
    background-color: #ffffff;
    box-shadow: 5px 7px 5px 0px #00000061;
    border-left: 10px solid rgb(232 208 56);
    border-radius: 0px 22px 22px 0px;
    padding: 14px 17px;
    margin-top: 50px;
  }

  .Skating {
    width: 100%;
    height: auto;
    position: relative;
    background-color: #ffffff;
    box-shadow: 5px 7px 5px 0px #00000061;
    border-left: 10px solid rgb(241 72 121);
    border-radius: 0px 22px 22px 0px;
    padding: 14px 17px;
    margin-top: 50px;
  }

  .Tennis {
    width: 100%;
    height: auto;
    position: relative;
    background-color: #ffffff;
    box-shadow: 5px 7px 5px 0px #00000061;
    border-left: 10px solid rgb(237 65 61);
    border-radius: 0px 22px 22px 0px;
    padding: 14px 17px;
    margin-top: 50px;
  }

  .Archery {
    width: 100%;
    height: auto;
    position: relative;
    background-color: #ffffff;
    box-shadow: -5px 7px 5px 0px #00000061;
    border-right: 10px solid rgb(62 142 229);
    border-radius: 22px 0px 0px 22px;
    padding: 14px 17px;
    margin-top: 50px;
  }

  .Lawn {
    width: 100%;
    height: auto;
    position: relative;
    border-left: 10px solid rgb(157 239 60);
    border-radius: 0px 22px 22px 0px;
    padding: 14px 17px;
    margin-top: 50px;
    background-color: #ffffff;
    box-shadow: 5px 7px 5px 0px #00000061;
  }
}

.error {
  color: red;
}

/* sidebar */
#side-quick-links {
  position: fixed;
  right: 0;
  top: 245px;
  text-align: center;
  z-index: 999;
}

#side-quick-links ul {
  margin: 0;
  padding: 0;
  list-style: none;
  position: relative;
}

#side-quick-links li {
  position: absolute;
  right: -153px;
  transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1) 0.2s;
  -webkit-transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1) 0.2s;
  -moz-transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1) 0.2s;
  -o-transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1) 0.2s;
  -ms-transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1) 0.2s;
}

#side-quick-links .content {
  height: 40px;
  width: 193px;
  text-align: middle;
  padding: 0px 10px 0px 10px;
}

#side-quick-links li .content > a {
  width: 40px;
  height: 40px;
  line-height: 40px !important;
  display: block;
  position: relative;
  z-index: 5;
  opacity: 1 !important;
  position: absolute;
  left: 0px;
  top: 0px;
}

#side-quick-links li p {
  margin: 0px;
  line-height: 40px;
  text-align: right;
}

#side-quick-links li .content p a {
  color: #fff;
  padding-right: 20px;
}

#side-quick-links .fa {
  font-size: 18px;
  color: #fff;
  line-height: 40px;
  margin-right: 0;
}

#side-quick-links .call {
  top: 0px;
}

#side-quick-links .call .content {
  background: var(--primary-color);
}

#side-quick-links li.call .content > a {
  background: var(--primary-color);
}

#side-quick-links .marker {
  top: 40px;
}

#side-quick-links .marker .content {
  background: var(--secondary-color);
}

#side-quick-links .whatapp {
  top: 80px;
}

#side-quick-links .whatapp .content {
  background: var(--primary-color);
  overflow: hidden;
}

#side-quick-links .call:hover,
#side-quick-links .whatapp:hover,
#side-quick-links .marker:hover {
  right: 0px;
}

.error {
  color: red;
}
 
.isotopeSelector figure {
  position: relative;
  overflow: hidden;
  padding: 0;
  margin: 0;
  height: 0;
  padding-bottom: 100%; /* Maintain aspect ratio (square) */
}

.isotopeSelector img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; /* Maintain aspect ratio */
}

/*preloader animation*/
.pencil {
  display: block;
  width: 10em;
  height: 10em;
}
.pencil__body1,
.pencil__body2,
.pencil__body3,
.pencil__eraser,
.pencil__eraser-skew,
.pencil__point,
.pencil__rotate,
.pencil__stroke {
  animation-duration: 3s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}
.pencil__body1,
.pencil__body2,
.pencil__body3 {
  transform: rotate(-90deg);
}
.pencil__body1 {
  animation-name: pencilBody1;
}
.pencil__body2 {
  animation-name: pencilBody2;
}
.pencil__body3 {
  animation-name: pencilBody3;
}
.pencil__eraser {
  animation-name: pencilEraser;
  transform: rotate(-90deg) translate(49px, 0);
}
.pencil__eraser-skew {
  animation-name: pencilEraserSkew;
  animation-timing-function: ease-in-out;
}
.pencil__point {
  animation-name: pencilPoint;
  transform: rotate(-90deg) translate(49px, -30px);
}
.pencil__rotate {
  animation-name: pencilRotate;
}
.pencil__stroke {
  animation-name: pencilStroke;
  transform: translate(100px, 100px) rotate(-113deg);
}

/* Animations */
@keyframes pencilBody1 {
  from,
  to {
    stroke-dashoffset: 351.86;
    transform: rotate(-90deg);
  }
  50% {
    stroke-dashoffset: 150.8; /* 3/8 of diameter */
    transform: rotate(-225deg);
  }
}
@keyframes pencilBody2 {
  from,
  to {
    stroke-dashoffset: 406.84;
    transform: rotate(-90deg);
  }
  50% {
    stroke-dashoffset: 174.36;
    transform: rotate(-225deg);
  }
}
@keyframes pencilBody3 {
  from,
  to {
    stroke-dashoffset: 296.88;
    transform: rotate(-90deg);
  }
  50% {
    stroke-dashoffset: 127.23;
    transform: rotate(-225deg);
  }
}
@keyframes pencilEraser {
  from,
  to {
    transform: rotate(-45deg) translate(49px, 0);
  }
  50% {
    transform: rotate(0deg) translate(49px, 0);
  }
}
@keyframes pencilEraserSkew {
  from,
  32.5%,
  67.5%,
  to {
    transform: skewX(0);
  }
  35%,
  65% {
    transform: skewX(-4deg);
  }
  37.5%,
  62.5% {
    transform: skewX(8deg);
  }
  40%,
  45%,
  50%,
  55%,
  60% {
    transform: skewX(-15deg);
  }
  42.5%,
  47.5%,
  52.5%,
  57.5% {
    transform: skewX(15deg);
  }
}
@keyframes pencilPoint {
  from,
  to {
    transform: rotate(-90deg) translate(49px, -30px);
  }
  50% {
    transform: rotate(-225deg) translate(49px, -30px);
  }
}
@keyframes pencilRotate {
  from {
    transform: translate(100px, 100px) rotate(0);
  }
  to {
    transform: translate(100px, 100px) rotate(720deg);
  }
}
@keyframes pencilStroke {
  from {
    stroke-dashoffset: 439.82;
    transform: translate(100px, 100px) rotate(-113deg);
  }
  50% {
    stroke-dashoffset: 164.93;
    transform: translate(100px, 100px) rotate(-113deg);
  }
  75%,
  to {
    stroke-dashoffset: 439.82;
    transform: translate(100px, 100px) rotate(112deg);
  }
}
.error
{
    color:red;
    padding-left:35px;
}

.admissionform select
{
     padding: 6px 10px !important;
     color:black;
   
}
.form-group
{
    position:relative;
}
.video-block {
  position: relative;
 
 border-radius: 5px;
  max-width: 1920px;
  margin: 0 auto;
}
.video-block video {
 
 border-radius: 5px;
 
}

  .video-block iframe {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      max-height: 1080px;
  }

  .infra-heading
  {
  padding-top:30px !important;
  padding-bottom: 12px !important;
  color: var(--primary-color) !important;
  text-transform: none !important;
  font-weight: 600;
  font-size: 36px !important;
  position: relative;
 
  }
  .infra-heading:after
  {
    inset: 0;
    position: absolute;
    height: 2px;
    width: 35px;
    background-color: var(--primary-color);
  }
  
  .campus-tour .gold-text-head
  {
    color: var(--secondary-color);
 
    display: inline;
  }

  .infra-bg {
    background: url(../images/background9.webp) no-repeat center top / cover !important;
    position: relative;
    height: 400px;
}

.inner-banner.infra-bg::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 85px;
  left: 0;
  bottom: -2px;
  mask-image: url(../images/bread-cum-overlay.png);
  mask-repeat: repeat;
  mask-size: auto;
  mask-position: center;
  -webkit-mask-image: url(../images/bread-cum-overlay.png);
  -webkit-mask-repeat: repeat;
  -webkit-mask-size: auto;
  -webkit-mask-position: center;
  z-index: 1;
  background-color: #ffffff;
  animation: movement 40s linear infinite;
  -webkit-animation: movement 40s linear infinite;
}



/* advantage section updated */

.advantage-single
{
 
  border-radius: 8px;
  padding: 15px 8px;
  justify-content: center;
  align-items: center;
  box-shadow:3px 3px 12px rgb(0 0 0 / 18%);
   
    flex-wrap: wrap;
}

.advantage-container .advantage-single:nth-child(odd) {
  border-right: 6px solid var(--primary-color);
  flex-direction: row; /* Default flex-direction */
}
.advantage-container .advantage-single:nth-child(even) {
  border-left: 6px solid var(--secondary-color);
  flex-direction: row-reverse; /* Reverse the order of flex items */
}

.advantage-container
{
  gap: 20px;
  display: flex;
  flex-direction: column;
}
.advantage-content-col
{
  
  gap: 25px;
  display: flex;
  flex-direction: column;
}
.advantage-title-outer
{
  display: flex;
  justify-content: start;
  gap: 25px;
  align-items: center;

}
.advantage-title-img  
{
  width: 12%;
}

.advantage-title
{

}
.advantage-title h1
{
  font-size: 36px;
  font-weight: 600;
}
.advantange-desc p
{
font-size: 16px;
}

.advantage-img
{
  gap: 5px;
  display: flex;
  flex-direction: column;
}

.advantage-img .img-half-width
{
  gap: 5px;
}

@media (max-width: 500px) {
  .advantage-single {
    gap: 25px;
  }

  .advantange-desc p {
    font-size: 13PX;
    line-height: 19px;
  }

  .advantage-title h1 {
    font-size: 20px;
  
  }

  .advantage-title-img {
    width: 20%;
  }

  .advantage-container .advantage-single:nth-child(odd) {
    border-right: 5px solid var(--primary-color);
 
  }
  .advantage-container .advantage-single:nth-child(even) {
    border-left: 5px solid var(--secondary-color);
 
  }
 
}

.fee-pay-li
{
        
    background: white;
    border-radius: 29px;
 
}
.navbar-collapse .fee-pay-li
{
        background:var(--primary-color)!important;
}

.fee-pay-li a
{
    color: var(--primary-color)!important;
    font-weight: 600;

}

/* .advantage-title  {
  box-shadow:3px 3px 12px rgb(0 0 0 / 18%);
  padding: 10px 12px;
  border-radius: 8px;
} */

/* academic faiclity page */
.academic-faciltiy-bg{
  background-image: url(../images/academic-banner.webp);
  height: 400px;
  position: relative;
  background-attachment: scroll;
}
.academic-faciltiy-bg h1{
  color: white;
}
/* sports faiclity page */
.sports-faciltiy-bg{
  background-image: url(../images/sport-banner.webp);
  height: 400px;
  position: relative;
  background-attachment: scroll;
}

/* lilbopeep page */
.lilbopeep  .whyus-sec2-bx
{
  padding: 12px;
  justify-content: initial;
}

.lilbopeep .whyus-sec2-bx .text p {
  color: #fff;
  margin-top:10px;
}
.lilbopeep .whyus-sec2-bx .text h4 {
  
  font-size: 17px;
  
 }

.lilbopeep .icon2 img
{
  width: 60px;
}
.lilbopeep .team-desc
{
  padding: 30px 100px;
}
.subtitle {
  font-weight: 600;
  font-size: 26px;
  margin-bottom: 15px;
  border-left: 3px solid #7f0126;
  padding-left: 15px;
}