/**** default Style Reset ****/
@font-face {
  font-family: Helvetica;
  src: url("fonts/Helvetica-Condensed-Light-Li.ttf");
}
@font-face {
  font-family: GeosansLight;
  src: url("fonts/GeosansLight.ttf");
}

* {
  color: #4b237c;
  font-weight: bold;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-family: GeosansLight, Helvetica, Arial, Lucida, sans-serif;
}
.white {
  color: #fff;
}
body {
  padding: 0;
  margin: 0;
  overflow-x: hidden;
}
p {
  line-height: 1.2;
  font-size: 18px;
}
a,
a:hover,
a:focus {
  color: #4b237c;
  text-decoration: none;
  outline: none;
}
ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  text-transform: capitalize;
}

::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #fff;
  opacity: 1;
}
::-moz-placeholder {
  /* Firefox 19+ */
  color: #fff;
  opacity: 1;
}
:-ms-input-placeholder {
  /* IE 10+ */
  color: #fff;
  opacity: 1;
}
:-moz-placeholder {
  /* Firefox 18- */
  color: #fff;
  opacity: 1;
}
section h2 {
  font-weight: bold;
}
.logo {
  max-width: 250px;
}
.logo img {
  width: 100%;
}
.height-100 {
  height: 100vh;
}
.slick-dots li button:before {
  font-size: 14px;
  color: #4b237c;
  opacity: 1;
}
.slick-dots li.slick-active button:before {
  font-size: 14px;
  color: #fff;
}
.quote {
  position: relative;
}
.quote:before {
  content: "";
  background-image: url(../images/quote_before.png);
  background-size: 100%;
  width: 120px;
  height: 100px;
  background-repeat: no-repeat;
  position: absolute;
  left: 0;
  top: -150px;
}
.quote:after {
  content: "";
  background-image: url(../images/quote_after.png);
  background-size: 100%;
  width: 120px;
  height: 100px;
  background-repeat: no-repeat;
  margin-left: 10px;
  margin-top: -60px;
  position: absolute;
  right: 0;
  bottom: -120px;
}
.form-field {
  display: block;
  width: 100%;
  padding: 0.5rem 0.75rem;
  font-size: 1rem;
  line-height: 1.25;
  background-color: #fff;
  background-image: none;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 0.25rem;
  -webkit-transition: border-color ease-in-out 0.15s,
    -webkit-box-shadow ease-in-out 0.15s;
  transition: border-color ease-in-out 0.15s,
    -webkit-box-shadow ease-in-out 0.15s;
  -o-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s,
    -webkit-box-shadow ease-in-out 0.15s;
}
#contact-us input.form-field,
#contact-us textarea.form-field {
  background: rgba(75, 35, 124, 0.5);
  -webkit-appearance: none;
  color: #fff;
  border-radius: 0;
  margin-bottom: 10px;
  font-family: GeosansLight;
}
#contact-us textarea.form-field {
  height: 110px;
}
#contact-us .btn {
  background: #4b237c;
  color: #fff;
  border-radius: 0;
}
#contact-us .social-icon .fa {
  background: #4b237c;
  color: #fff;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  line-height: 1.3;
  padding: 5px;
  margin-right: 10px;
}
/**** header ****/
.header {
  position: fixed;
  top: 20px;
  right: 5%;
  left: 5%;
  width: 90%;
  padding: 0;
  z-index: 2;
  background: rgba(255, 255, 255, 0.95);
  -webkit-transition: all 0.4s ease-out;
  -moz-transition: all 0.4s ease-out;
  -o-transition: all 0.4s ease-out;
  transition: all 0.4s ease-out;
}
.header .logo a {
  font-weight: 400;
}
.header.setTop {
  width: 100%;
  left: 0;
  right: 0;
  top: 0;
  -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}
ul.main-nav > li {
  position: relative;
  display: inline-block;
}
ul.main-nav > li:last-of-type a::after {
  margin-right: 0;
  display: none;
}
ul.main-nav > li a {
  position: relative;
  display: inline-block;
  margin: 10px 0;
  font-size: 16px;
  font-weight: bold;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}
ul.main-nav > li a::after {
  content: "";
  position: absolute;
  width: 1px;
  height: 80%;
  background: #4b237c;
  border-radius: 50%;
  bottom: 2px;
  margin-left: 15px;
}
ul.main-nav > li:last-child a::after {
  display: none;
}

ul.main-nav > li a::before {
  content: "";
  width: 0%;
  height: 2px;
  background: #4b237c;
  bottom: 0;
  position: absolute;
  transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
}
ul.main-nav > li.active > a:before,
ul.main-nav > li a:hover:before,
ul.main-nav > li a:focus:before {
  width: 100%;
}
.setTop ul.main-nav > li .active > a:before,
.setTop ul.main-nav > li a:hover:before,
.setTop ul.main-nav > li a:focus:before {
  width: 100%;
}
iframe {
  height: 250px;
  width: 100%;
}
.white {
  color: #fff;
}
.error_msg {
  color: #ff0000;
}
.success_msg {
  color: #4b237c;
}
.overlay {
  background: rgba(255, 255, 255, 0.65);
}
.border {
  border: 1px solid;
}
.bg-img {
  background-position: top;
}
.bg-img img {
  width: 100%;
}
.icon {
  max-width: 55px;
  margin-bottom: 20px;
}
.bold {
  font-weight: bolder;
}
.circle {
  border: 1px solid;
  width: 100px;
  height: 100px;
  text-align: center;
  border-radius: 50%;
  margin: 25px auto;
  overflow: hidden;
}
.circle img {
  width: 100%;
}
#hero-banner.bg-img {
  background: url(../images/banner.jpg) no-repeat 0 0 / cover;
  background-attachment: fixed;
}
#about.bg-img {
  background: url(../images/about.jpg) no-repeat 0 0 / cover;
  background-attachment: fixed;
}
#my-education.bg-img {
  background: url(../images/G3.jpg) no-repeat 0 0 / cover;
  background-attachment: fixed;
}
#gallery.bg-img {
  background: url(../images/gallery.jpg) no-repeat 0 0 / cover;
  background-attachment: fixed;
}
#services.bg-img {
  background: url(../images/services.jpg) no-repeat 0 0 / cover;
  background-attachment: fixed;
}
#our-team.bg-img {
  background: url(../images/team.jpg) no-repeat 0 0 / cover;
  background-attachment: fixed;
}
#testimonial.bg-img {
  background: url(../images/testimonial.jpg) no-repeat 0 0 / cover;
  background-attachment: fixed;
}
#why-choose-us.bg-img {
  background: url(../images/why.jpg) no-repeat 0 60% / cover;
  background-attachment: fixed;
}
#contact-us.bg-img {
  background: url(../images/contact-us.jpg) no-repeat 0 60% / cover;
  background-attachment: fixed;
}

/**** Why choose us***/
#why-choose-us .text {
  font-size: 1.3rem;
  margin-bottom: 0;
}
/**** Gallery ***/
#gallery .overlay {
  background: rgba(0, 0, 0, 0.8);
}
.gallery {
  height: 220px !important;
  overflow: hidden;
}

/*** Services ***/
#services p {
  max-width: 200px;
  margin: auto;
  font-size: 20px;
  position: relative;
}
#services p::before {
  content: "";
  position: absolute;
  width: 25px;
  height: 25px;
  border-left: 3px solid;
  border-top: 3px solid;
  left: -10px;
  top: -15px;
}
#services p::after {
  content: "";
  position: absolute;
  width: 25px;
  height: 25px;
  border-right: 3px solid;
  border-bottom: 3px solid;
  right: -10px;
  bottom: -15px;
}
/**** our team ***/
#our-team .circle {
  border-color: #c7b0e4;
}
#our-team h3 {
  color: #c7b0e4;
  font-weight: bold;
}
#our-team .text {
  max-width: 350px;
  text-align: justify;
  color: #fff;
}
.jack {
  padding-top: 150px;
}
.modal-content {
  background: transparent;
  border: 0;
  color: #fff;
  background: rgba(0, 0, 0, 0.9);
  height: 75vh;
  overflow-y: hidden;
  padding: 10px;
  overflow: hidden;
  overflow-y: hidden;
  overflow-y: auto;
  /* border: 2px solid white; */
  margin-top: 12vh !important;
  position: relative;
  width: 100%;
}
.row.image{
    display: flex;
    justify-content: center;
}
.modal button.close {
  color: #fff;
  opacity: 1;
  font-weight: 100;
  position: absolute;
  right: 15px;
  top: 10px;
  font-size: 14px;
  z-index: 1;
}
i.fa.fa-times {
  color: white;
}
.content p {
  color: white;
  text-align: justify;
  line-height: 1.4;
  padding: 5px 20px;
}
.readbtn img {
  width: 15px;
}
.readbtn a {
  color: #fff;
}
.readbtn a:hover {
  color: #c7b0e4;
}
/**** testimonial ***/
#testimonial .overlay {
  background: rgba(0, 0, 0, 0.5);
}
#testimonial .text {
  font-size: 22px;
}
#testimonial .author {
  display: block;
  text-align: right;
  font-size: 22px;
  line-height: 1;
  margin-top: 20px;
  color: #fff;
}
.testimonial-slider {
  margin-bottom: 0;
}
#contact-us .block .fa {
  font-size: 24px;
  margin-bottom: 14px;
}

/**** footer ***/
.footer {
  background: #00060b;
  color: #fff;
}
.footer * {
  color: #fff;
}
.footer p {
  margin: 0;
}
.footer a {
  color: #ddd;
  font-weight: bold;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}
.footer a:hover {
  color: #fff;
}
.sticky-nav-wrapper {
  display: none;
}

/****** Animations *****/
@keyframes phone {
  0% {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }

  10%,
  20% {
    -webkit-transform: rotate(-8deg);
    -ms-transform: rotate(-8deg);
    transform: rotate(-8deg);
  }

  30%,
  50%,
  70% {
    -webkit-transform: rotate(8deg);
    -ms-transform: rotate(8deg);
    transform: rotate(8deg);
  }

  40%,
  60% {
    -webkit-transform: rotate(-8deg);
    -ms-transform: rotate(-8deg);
    transform: rotate(-8deg);
  }

  80% {
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
  }
}

.fa-phone.animated,
.fa-phone.animated-hover:hover,
.fa-parent.animated-hover:hover > .fa-phone {
  -webkit-animation: phone 2s linear infinite;
  -ms-animation: phone 2s linear infinite;
  animation: phone 2s linear infinite;
}
