/*
    Contains All The Page Content Styles

*/
.front-page {
  position: relative;
  width: 100%;
  background: -webkit-gradient(linear, right top, left top, from(#2f2d35), to(#110741));
  background: linear-gradient(to left, #2f2d35, #110741);
  padding-top: 100px;
  padding-bottom: 100px;
  z-index: 2;
}

.front-page .container {
  text-align: center;
}

.front-page .container .row div.information {
  font-family: "Cairo",Sans-serif;
  color: white;
  margin-top: 90px;
}

.front-page .container .row div.information .name {
  margin-top: 30px;
}

.front-page .container .row div.information .info {
  font-size: 20px;
}

.front-page .container .row div.information .stylecolor {
  color: #f15a25;
}

.front-page .container .row .teacher-img-div {
  overflow: hidden;
  z-index: 1;
}

.front-page .container .row .teacher-img-div .teacher-img {
  border-radius: 15px;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.front-page .container .row .teacher-img-div .teacher-img:hover {
  -webkit-filter: grayscale(0);
          filter: grayscale(0);
}

@media screen and (max-width: 991px) {
  .front-page .container .row div.information {
    margin-top: 10px;
  }
}

.front-page::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  background: url("../images/wave1.svg") no-repeat;
  background-size: cover;
  width: 100%;
  height: 256px;
  z-index: 1;
}

.front-page .studynow {
  padding: 10px 48px 10px 30px;
  font-family: "Cairo",Sans-serif;
  border: 2px solid #0984e3;
  border-radius: 30px;
  color: #414141;
  font-size: 20px;
  cursor: pointer;
  -webkit-transition-duration: 400ms;
          transition-duration: 400ms;
  position: absolute;
  z-index: 2;
  bottom: 100px;
  left: 16%;
  height: 55px;
}

.front-page .studynow:hover {
  background-color: #0984e3;
  color: white;
}

.front-page .studynow:hover::after {
  background-color: white;
  color: #0984e3;
}

.front-page .studynow::after {
  position: absolute;
  content: '\f054';
  font-family: "Font Awesome 5 Free";
  padding: 10px;
  top: 0;
  right: -15px;
  height: 55px;
  width: 55px;
  border-radius: 50%;
  background-color: #0984e3;
  color: white;
  border-right: 1px solid #0984e3;
  -webkit-transition-duration: 400ms;
          transition-duration: 400ms;
  font-weight: 900;
  /* Fix version 5.0.9 */
}

@media screen and (max-width: 500px) {
  .front-page .studynow {
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}

.bubbles {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  position: absolute;
  bottom: 0;
}

.bubbles img {
  width: 50px;
  -webkit-animation: bubble 7s linear infinite;
          animation: bubble 7s linear infinite;
}

.bubbles img:nth-child(1) {
  -webkit-animation-delay: 3s;
          animation-delay: 3s;
}

.bubbles img:nth-child(2) {
  -webkit-animation-delay: .5s;
          animation-delay: .5s;
}

.bubbles img:nth-child(3) {
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
}

.bubbles img:nth-child(4) {
  -webkit-animation-delay: 1.5s;
          animation-delay: 1.5s;
}

.bubbles img:nth-child(5) {
  -webkit-animation-delay: 5s;
          animation-delay: 5s;
}

.bubbles img:nth-child(6) {
  -webkit-animation-delay: 6s;
          animation-delay: 6s;
}

@-webkit-keyframes bubble {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 0;
  }
  50% {
    opacity: 0.5;
  }
  70% {
    opacity: 0.6;
  }
  100% {
    -webkit-transform: translateY(-90vh);
            transform: translateY(-90vh);
    opacity: 0;
  }
}

@keyframes bubble {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 0;
  }
  50% {
    opacity: 0.5;
  }
  70% {
    opacity: 0.6;
  }
  100% {
    -webkit-transform: translateY(-90vh);
            transform: translateY(-90vh);
    opacity: 0;
  }
}

.contnr-study {
  overflow: hidden;
  width: 90%;
  position: relative;
  right: 5%;
  margin-top: 20px;
  text-align: center;
  font-family: "Cairo",Sans-serif;
}

.contnr-study .sub-title {
  display: inline-block;
  padding: 0px 0px 10px 00px;
  position: relative;
}

.contnr-study .sub-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 4px;
  width: 100%;
  background: -webkit-gradient(linear, left top, right top, color-stop(25%, #2980b9), color-stop(25%, #27ae60), color-stop(50%, #27ae60), color-stop(50%, #d35400), color-stop(75%, #d35400), color-stop(75%, #8e44ad));
  background: linear-gradient(to right, #2980b9 25%, #27ae60 25%, #27ae60 50%, #d35400 50%, #d35400 75%, #8e44ad 75%);
}

.contnr-study .row {
  margin: 0;
  padding-bottom: 20px;
  overflow: auto;
}

.contnr-study .row .item-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 30px;
  margin-top: 10px;
  border-radius: 15px;
  position: relative;
  overflow: hidden;
  -webkit-box-shadow: 0 0 19px 0px #d0d0d0;
          box-shadow: 0 0 19px 0px #d0d0d0;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  cursor: pointer;
  color: black;
  text-decoration: none;
}

.contnr-study .row .item-card .lrnmore {
  color: #27ae60;
}

.contnr-study .row .item-card:hover {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
  text-decoration: none;
}

.contnr-study .row .top-border-blue {
  border-top: 3px solid #2980b9;
}

.contnr-study .row .top-border-green {
  border-top: 3px solid #27ae60;
}

.contnr-study .row .top-border-red {
  border-top: 3px solid #d35400;
}

.contnr-study .study {
  margin-bottom: 30px;
}

.contnr-study .study .study-img {
  height: 200px;
  height: 200px;
  border-radius: 50%;
}

.contnr-study .study .study-title {
  margin-top: 10px;
  color: #4e4e4e;
}

.contnr-study .study .study-p {
  color: #686868;
}

.contnr-study .study .lrnmore {
  color: hotpink;
}

::-webkit-scrollbar {
  /* Webkit */
  width: 0;
  height: 0;
}

.contnr {
  overflow: hidden;
  width: 90%;
  position: relative;
  right: 5%;
  margin-top: 20px;
}

.hs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow-x: scroll;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
      justify-content: space-between;
  scrollbar-width: none;
  /* Firefox */
  -ms-overflow-style: none;
  /* IE 10+ */
  -webkit-overflow-scrolling: touch;
  margin: 0 -20px;
  cursor: -webkit-grab;
  cursor: grab;
}

.hs li {
  margin-left: 10px;
  list-style-type: none;
  float: right;
}

.hs li .card {
  text-align: center;
  position: relative;
  z-index: 1;
  font-family: "Cairo",Sans-serif;
}

.hs li .card:hover {
  -webkit-transition: all 400ms;
  transition: all 400ms;
}

.hs li .card:hover .card-body .grade {
  color: #5a48b6;
}

.hs li .card .go {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(204, 204, 204, 0.658);
  z-index: 2;
}

.hs li .card .go .go-link {
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  border: none;
  border-radius: 0px;
  width: 80px;
  color: white;
  background-color: #5a48b6;
}

.hs li .card .go .go-link i {
  font-size: 12px;
}

.hs li .card .go .go-link:hover {
  background-color: #45378f;
}

.hs li .card .card-body .card-title {
  color: #616161;
  font-weight: 600;
  position: relative;
}

.hs li .card .card-body .card-title::after {
  position: absolute;
  content: "";
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  bottom: -18px;
  height: 3px;
  width: 40px;
  background-color: #12CBC4;
}

.hs li .card .card-body .grade {
  color: #616161;
  font-family: "Cairo",Sans-serif;
  font-weight: 600;
  -webkit-transition: all 400ms ease-in-out;
  transition: all 400ms ease-in-out;
}

.hs li .card .card-body .grade:hover {
  color: #5a48b6;
}

.hs li .card .card-body .btn {
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.hs__header {
  display: -webkit-box;
  -webkit-box-align: center;
  -ms-flex-align: center;
      align-items: center;
  width: 100%;
  padding: 10px 15px;
}

.hs__header .hs__headline {
  text-align: right;
  -webkit-box-flex: 1;
  -ms-flex: 1;
      flex: 1;
  font-family: "Cairo",Sans-serif;
  font-weight: 800;
}

.hs__header .hs__arrows {
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
  margin-bottom: -48px;
}

.hs__header .hs__arrows a {
  cursor: pointer;
  margin-right: 10px;
}

.hs__header .hs__arrows a i {
  font-size: 20pt;
  color: #5a48b6;
}

.line {
  width: calc(100% - 10px);
  height: 3px;
  background-color: #5a48b6;
  position: relative;
  margin-bottom: 10px;
  margin-right: 10px;
}

.line::after {
  position: absolute;
  content: "";
  right: 0;
  bottom: 0;
  height: 100%;
  width: 300px;
  background-color: #12CBC4;
}

.line::before {
  position: absolute;
  content: "";
  right: 0;
  top: -100%;
  height: 10px;
  width: 10px;
  border-radius: 50%;
  background-color: #12CBC4;
  -webkit-transform: translateX(50%);
          transform: translateX(50%);
}
/*# sourceMappingURL=content.css.map */