/********** Template CSS **********/
:root {
    --primary: #FE5D37;
    --light: #FFF5F3;
    --dark: #103741;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}
p
{
    text-align: justify;
}

.about h1
{
text-align: center;
}
/*** Button ***/
.btn {
    font-weight: 500;
    transition: .5s;
}

.btn.btn-primary {
    color: #FFFFFF;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 50px;
}


/*** Heading ***/
h1,
h2,
h3,
h4,
.h1,
.h2,
.h3,
.h4,
.display-1,
.display-2,
.display-3,
.display-4,
.display-5,
.display-6 {
    font-family: 'Lobster Two', cursive;
    font-weight: 700;
}

h5,
h6,
.h5,
.h6 {
    font-weight: 600;
}

.font-secondary {
    font-family: 'Lobster Two', cursive;
}


/*** Navbar ***/
.navbar .navbar-nav .nav-link {
    padding: 30px 25px;
    color: var(--dark);
    font-weight: 500;
    outline: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--primary);
}

.navbar.sticky-top {
    top: -100px;
    transition: .5s;
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 5px;
    transition: .5s;
}

.navbar .dropdown-toggle[aria-expanded=true]::after {
    transform: rotate(-180deg);
}

@media (max-width: 991.98px) {
    .navbar .navbar-nav .nav-link  {
        margin-right: 0;
        padding: 10px 0;
    }

    .navbar .navbar-nav {
        margin-top: 15px;
        border-top: 1px solid #EEEEEE;
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        top: calc(100% - 15px);
        margin-top: 0;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
        
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}


/*** Header ***/
.header-carousel::before,
.header-carousel::after,
.page-header::before,
.page-header::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 10px;
    top: 0;
    left: 0;
    background: url(../img/bg-header-top.png) center center repeat-x;
    z-index: 1;
}

.header-carousel::after,
.page-header::after {
    height: 19px;
    top: auto;
    bottom: 0;
    background: url(../img/bg-header-bottom.png) center center repeat-x;
}

@media (max-width: 768px) {
    #logo
    {
         width: 220px;
    }
  .anim-icon {
    display: none !important;
  }
  
    .header-carousel .owl-carousel-item {
        position: relative;
        min-height: 200px;
    }
    
    .header-carousel .owl-carousel-item img {
        position: absolute;
        width: 100%;
        height: 200px;
        object-fit: cover;
    }

    .header-carousel .owl-carousel-item p {
        font-size: 16px !important;
        font-weight: 400 !important;
    }

    .header-carousel .owl-carousel-item h1 {
        font-size: 30px;
        font-weight: 600;
    }
}


.header-carousel .owl-nav {
    position: absolute;
    top: 50%;
    right: 8%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
}

.header-carousel .owl-nav .owl-prev,
.header-carousel .owl-nav .owl-next {
    margin: 7px 0;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #136467;
    background: #ffffff;
    border: 5px solid #136467;
    border-radius: 45px;
    font-size: 22px;
    transition: .5s;
}

.header-carousel .owl-nav .owl-prev:hover,
.header-carousel .owl-nav .owl-next:hover {
    background: #136467;
    border-color: #ffffff;
    color:#ffffff;
}

.page-header {
    background: linear-gradient(rgba(0, 0, 0, .2), rgba(0, 0, 0, .2)), url(../img/carousel-1.jpg) center center no-repeat;
    background-size: cover;
}

.breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, .5);
}


/*** Facility ***/
.facility-item .facility-icon {
    position: relative;
    margin: 0 auto;
    width: 110px;
    height: 110px;
    border-radius: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.facility-item .facility-icon::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
   
    transition: .5s;
    z-index: 1;
}

.facility-item .facility-icon span {
    position: absolute;
    content: "";
    width: 15px;
    height: 30px;
    top: 0;
    left: 0;
    border-radius: 50%;
}

.facility-item .facility-icon span:last-child {
    left: auto;
    right: 0;
}

.facility-item .facility-icon i {
    position: relative;
    z-index: 2;
}

.facility-item .facility-text {
    position: relative;
    min-height: 250px;
    padding: 30px;
    border-radius: 100%;
    display: flex;
    text-align: center;
    justify-content: center;
    flex-direction: column;
}

.facility-item .facility-text::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
   
    transition: .5s;
    z-index: 1;
}

.facility-item .facility-text * {
    position: relative;
    z-index: 2;

}
 .facility-text p
 {
    font-size: 14px;
    text-align: center;
 }
 

.facility-item:hover .facility-icon::before,
.facility-item:hover .facility-text::before {
    background: transparent;
}

.facility-item * {
    transition: .5s;
}

.facility-item:hover * {
    color: #FFFFFF !important;
}


/*** About ***/
.about-img img {
    transition: .5s;
}

.about-img img:hover {
    background: var(--primary) !important;
}


/*** Classes ***/
.classes-item {
    transition: .5s;
}

.classes-item:hover {
    margin-top: -10px;
}


/*** Team ***/
.team-item .team-text {
    position: absolute;
    width: 250px;
    height: 250px;
    bottom: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background: #FFFFFF;
    border: 17px solid var(--light);
    border-radius: 250px;
    transition: .5s;
}

.team-item:hover .team-text {
    border-color: var(--primary);
}


/*** Testimonial ***/
.testimonial-carousel {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

@media (min-width: 576px) {
    .testimonial-carousel {
        padding-left: 4rem;
        padding-right: 4rem;
    }
}

.testimonial-carousel .testimonial-item .border {
    border: 1px dashed rgba(0, 185, 142, .3) !important;
}

.testimonial-carousel .owl-nav {
    position: absolute;
    width: 100%;
    height: 45px;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    z-index: 1;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    position: relative;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    background: var(--primary);
    border-radius: 45px;
    font-size: 20px;
    transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    background: var(--dark);
}


/*** Footer ***/
.footer .btn.btn-social {
    margin-right: 5px;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    border: 1px solid rgba(255,255,255,0.5);
    border-radius: 45px;
    transition: .3s;
}

.footer .btn.btn-social:hover {
    border-color: var(--primary);
    background: var(--primary);
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    font-size: 16px;
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    color: var(--primary) !important;
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .form-control {
    border-color: rgba(255,255,255,0.5);
}

.footer .copyright {
    padding: 25px 0;
    font-size: 15px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
    color: #FFFFFF;
}

.footer .footer-menu a {
    margin-right: 15px;
    padding-right: 15px;
    border-right: 1px solid rgba(255, 255, 255, .1);
}

.footer .copyright a:hover,
.footer .footer-menu a:hover {
    color: var(--primary) !important;
}

.footer .footer-menu a:last-child {
    margin-right: 0;
    padding-right: 0;
    border-right: none;
}

/** about-section **/

.about-section{
  position: relative;
  display: block;
  padding: 99px 0px 80px 0px;
}

.anim-icon {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  height: 100%;
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
}

.anim-icon .icon{
  position: absolute;
  background-repeat: no-repeat;
}

.about-section .image-box{
  position: relative;
  display: block;
  margin: 6px 30px 0px 140px;
}

.about-section .image-box:before{
  position: absolute;
  content: '';
  background: #9be9ff;
  width: 215px;
  height: 215px;
  border-radius: 50%;
  left: -135px;
  top: 105px;
  -webkit-animation: zoom-fade 5s infinite linear;
  animation: zoom-fade 5s infinite linear;
}

.about-section .image-box .image{
  position: relative;
  display: block;
  box-shadow: 0 30px 50px rgba(8,13,62,.15);
}

.about-section .image-box .image img{
  width: 100%;
}

.about-section .image-box .image-1{
  position: relative;
  display: block;
  border-radius: 30px;
}

.about-section .image-box .image-1 img{
  border-radius: 30px;
}

.about-section .image-box .image-2{
  position: absolute;
  left: -85px;
  bottom: -125px;
  border: 15px solid #fff;
  border-radius: 30px;
}

.about-section .content-box .sec-title{
  position: relative;
  display: block;
  margin-bottom: 33px;
}

.about-section .content-box .bold-text{
  position: relative;
  display: block;
  font-size: 18px;
  line-height: 28px;
  color: #4c4c4c;
  font-weight: 400;
  margin-bottom: 15px;
}

.about-section .content-box p{
  position: relative;
  display: block;
  margin-bottom: 46px;
}

.about-section .anim-icon .icon-1 {
  background: url(../images/icons/anim-icon-1.png);
  width: 210px;
  height: 275px;
  left: 60px;
  top: 40px;
  background-repeat: no-repeat;
}

.about-section .anim-icon .icon-2 {
  background: url(../images/icons/anim-icon-2.png);
  width: 188px;
  height: 192px;
  top: 70px;
  right: 110px;
  background-repeat: no-repeat;
}

.about-section .anim-icon .icon-3 {
  background: url(../images/icons/anim-icon-3.png);
  width: 102px;
  height: 198px;
  bottom: -40px;
  right: 150px;
  background-repeat: no-repeat;
  -webkit-animation: zoom-fade 5s infinite linear;
  animation: zoom-fade 5s infinite linear;
  z-index: 1;
}


/** service-section **/

.service-section{
  position: relative;
  display: block;
  width: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-attachment: fixed;
}

.service-section:before{
  position: absolute;
  content: '';
  background: rgba(33, 47, 84, 0);
  width: 100%;
  height: 100%;
  left: 0px;
  top: 0px;
}

.service-section .carousel-content{
  position: relative;
  display: block;
  margin-right: -340px;
  margin-top: 6px;
}

.service-block-one{
  position: relative;
  display: block;
  background: #fff;
  padding: 20px 20px 20px 20px;
  text-align: center;
  border-radius: 20px;
  transition: all 500ms ease;
}

.service-block-one .icon-box{
  position: relative;
  display: inline-block;
  font-size: 65px;
  line-height: 65px;
  color: #ff7162;
  margin-bottom: 25px;
}

.service-block-one .icon-box:before{
  position: absolute;
  content: '';
  background: url(../images/icons/icon-1.png);
  width: 56px;
  height: 71px;
  right: -20px;
  top: -10px;
  background-repeat: no-repeat;
  transition: all 500ms ease;
}

.service-section .owl-item:nth-child(odd) .service-block-one .icon-box{
  color: #43b3d9;
}

.service-section .owl-item:nth-child(odd) .service-block-one .icon-box:before{
  position: absolute;
  content: '';
  background: url(../images/icons/icon-2.png);
  width: 64px;
  height: 70px;
  right: -20px;
  top: -10px;
  background-repeat: no-repeat;
}

.service-section .owl-item:nth-child(3n+1) .service-block-one .icon-box{
  color: #fbb419;
}

.service-section .owl-item:nth-child(3n+1) .service-block-one .icon-box:before{
  position: absolute;
  content: '';
  background: url(../images/icons/icon-3.png);
  width: 65px;
  height: 70px;
  right: -20px;
  top: -10px;
  background-repeat: no-repeat;
}

.service-block-one:hover .icon-box:before{
  transform: rotate(25deg) !important;
}

.service-block-one h3{
  margin-bottom: 27px;
}

h3{
  position: relative;
  display: block;
  font-size: 22px;
  line-height: 30px;
  font-weight: 900;
  color: #2b3c6b;
  margin-bottom: 10px;
}

h3 a{
  position: relative;
  display: inline-block;
  color: #2b3c6b;
}

h3 a:hover{
  color: #ff7162;
}

.service-section .inner-content .sec-title h1,
.service-section .inner-content .text{
  color: #fff;
}

.service-section .inner-content{
  position: relative;
  display: block;
  margin-right: 20px;
}

.service-section .inner-content .sec-title{
  margin-bottom: 34px;
}

.service-section .owl-dots{
  display: none;
}

.service-section .owl-nav .owl-prev,
.service-section .owl-nav .owl-next{
  position: relative;
  display: inline-block;
  width: 60px;
  height: 60px;
  line-height: 60px;
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  background: #ff7162;
  text-align: center;
  border-radius: 50%;
  margin: 0px 5px;
  cursor: pointer;
  transition: all 500ms ease;
}

.service-section .owl-nav .owl-prev:hover,
.service-section .owl-nav .owl-next:hover{
  background: #fff;
  color: #2b3c6b;
}

.service-section .owl-nav{
  position: absolute;
  left: -405px;
  bottom: 0px;
}


/** classes-section **/

.classes-section{
  position: relative;
  display: block;
}

.classes-section .inner-block{
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 30px 50px rgba(229, 229, 229, 0.8);
}

.classes-section .inner-block .image-box{
  position: relative;
  display: block;
  background: #253b71;
  overflow: hidden;
}

.classes-section .inner-block .image-box img{
  width: 100%;
  transition: all 500ms ease;
}

.classes-section .inner-block:hover .image-box img{
  opacity: 0.5;
  transform: scale(1.02);
}

.classes-section .inner-block .lower-content{
  position: relative;
  display: block;
  padding: 34px 40px 37px 40px;
}

.classes-section .inner-block .lower-content .link-btn{
  position: absolute;
  top: -35px;
  right: 40px;
}

.classes-section .inner-block .lower-content .link-btn a{
  position: relative;
  display: inline-block;
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  width: 70px;
  height: 70px;
  line-height: 70px;
  text-align: center;
  background: #fbb419;
  border-radius: 50%;
  transition: all 500ms ease;
}

.classes-section .inner-block .lower-content .link-btn a:hover{
  background: #253b71 !important;
}

.classes-section .inner-block:hover .lower-content .link-btn a {
  -webkit-transform: scale(-1) rotate(-180deg);
  -moz-transform: scale(-1) rotate(-180deg);
  -ms-transform: scale(-1) rotate(-180deg);
  -o-transform: scale(-1) rotate(-180deg);
  transform: scale(-1) rotate(-180deg);
}

.classes-section .block-column:nth-child(2) .inner-block .lower-content .link-btn a{
  background: #43b3d9;
}

.classes-section .block-column:last-child .inner-block .lower-content .link-btn a{
  background: #ff7162;
}

.classes-section .inner-block .lower-content h3{
  margin-bottom: 9px;
}

.classes-section .inner-block .lower-content .price{
  position: relative;
  display: block;
  font-size: 18px;
  color: #ff7162;
  font-family: 'M PLUS Rounded 1c', sans-serif;
  font-weight: 700;
  margin-bottom: 17px;
}

.classes-section .inner-block .lower-content .text{
  position: relative;
  display: block;
  margin-bottom: 26px;
}

.classes-section .inner-block .lower-content .info-box{
  position: relative;
  display: block;
  background: url(../images/icons/icon-4.png);
  width: 100%;
  padding: 25px 15px 25px 15px;
  text-align: center;
  background-repeat: no-repeat;
  background-position: center;
}

.classes-section .inner-block .lower-content .info-box li{
  position: relative;
  display: inline-block;
  font-size: 15px;
  font-family: 'M PLUS Rounded 1c', sans-serif;
  color: #fff;
  margin: 0px 10px;
  text-transform: uppercase;
}

.classes-section .inner-block .lower-content .info-box li:before{
  position: absolute;
  content: '';
  border: 1px dashed #59688e;
  width: 1px;
  height: 20px;
  top: 4px;
  right: -12px;
}

.classes-section .inner-block .lower-content .info-box li:last-child:before{
  display: none;
}

.classes-section .inner-block .lower-content .info-box li span{
  color: #ff7162;
  text-transform: capitalize;
}

.classes-section .sec-title{
  position: relative;
  display: block;
  margin-bottom: 60px;
}

.classes-section .anim-icon .icon-1 {
  background: url(../images/icons/anim-icon-4.png);
  width: 192px;
  height: 292px;
  left: 90px;
  top: -190px;
  background-repeat: no-repeat;
}


/** feature-section **/

.feature-section{
  position: relative;
  display: block;
  background: #035392;
  padding: 83px 0px;
}

.feature-section .image-column{
  position: absolute;
  left: 0px;
  top: 0px;
  width: 50%;
  height: 100%;
  background-size: auto;
  background-repeat: no-repeat;
  background-position: center;
}

.feature-section .sec-title{
  margin-bottom: 41px;
}

.feature-section .inner-box .single-item{
  position: relative;
  display: block;
  padding: 0px 0px 0px 105px;
  margin-bottom: 50px;
}

.feature-section .inner-box .single-item:last-child{
  margin-bottom: 0px;
}

.feature-section .inner-box .single-item .icon-box{
  position: absolute;
  left: 0px;
  top: -1px;
  font-size: 40px;
  width: 85px;
  height: 85px;
  line-height: 85px;
  color: #fff;
  background: #fbb419;
  text-align: center;
  border-radius: 50%;
  z-index: 1;
}

.feature-section .inner-box .single-item .icon-box:before{
  position: absolute;
  content: '';
  background: #2b3c6b;
  width: 100%;
  height: 100%;
  left: 0px;
  top: 0px;
  right: 0px;
  border-radius: 50%;
  transform: scale(0,0);
  z-index: -1;
  transition: all 500ms ease;
}

.feature-section .inner-box .single-item:hover .icon-box:before{
  transform: scale(1,1);
}

.feature-section .inner-box .single-item:nth-child(2) .icon-box{
  background: #ff7162;
}
.feature-section .inner-box .single-item:nth-child(3) .icon-box{
  background: #43b3d9;
}
.feature-section .inner-box .single-item:nth-child(4) .icon-box{
  background: #6BB753;
}
.feature-section .inner-box .single-item:last-child .icon-box{
  background: #ff7162;
}

.feature-section .anim-icon .icon-1 {
  background: url(../images/icons/anim-icon-5.png);
  width: 119px;
  height: 127px;
  top: 120px;
  right: 320px;
  background-repeat: no-repeat;
  -webkit-animation: zoom-fade 5s infinite linear;
  animation: zoom-fade 5s infinite linear;
}

.feature-section .anim-icon .icon-2 {
  background: url(../images/icons/anim-icon-6.png);
  width: 321px;
  height:289px;
  right: 0px;
  bottom: -90px;
  background-repeat: no-repeat;
}


/** our-teachers **/

.our-teachers{
  position: relative;
  display: block;
}

.our-teachers .sec-title{
  margin-bottom: 60px;
}

.teachers-block-one{
  position: relative;
  display: block;
}

.teachers-block-one .inner-box .image-holder{
  position: relative;
  display: inline-block;
  border: 2px dashed #fbb928;
  padding: 18px;
  border-radius: 50%;
}

.our-teachers .block-column:nth-child(2) .teachers-block-one .inner-box .image-holder{
  border-color: #43b3d9;
}

.our-teachers .block-column:last-child .teachers-block-one .inner-box .image-holder{
  border-color: #ff7162;
}

.teachers-block-one .inner-box .image-holder img{
  width: 100%;
  border-radius: 50%;
  transition: all 500ms ease;
}

.teachers-block-one .inner-box .image-holder .image-box{
  position: relative;
  display: block;
  overflow: hidden;
  background: #2b3c6b;
  border-radius: 50%;
}

.teachers-block-one .inner-box:hover .image-holder img{
  transform: scale(1.03);
  opacity: 0.5;
}

.teachers-block-one .inner-box{
  position: relative;
  overflow: hidden;
}

.teachers-block-one .inner-box .lower-content{
  position: relative;
  display: block;
  background: url(../images/icons/teacher-icon-1.png);
  max-width: 283px;
  width: 100%;
  margin: 0 auto;
  padding: 31px 15px 8px 15px;
  margin-top: -44px;
  background-repeat: no-repeat;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.our-teachers .block-column:nth-child(2) .teachers-block-one .inner-box .lower-content{
  background: url(../images/icons/teacher-icon-2.png);
}

.our-teachers .block-column:last-child .teachers-block-one .inner-box .lower-content{
  background: url(../images/icons/teacher-icon-3.png);
}

.teachers-block-one .inner-box:hover .lower-content{
  background: url(../images/icons/hover-1.png);
  max-width: 303px;
  margin-top: -74px;
  padding: 31px 15px 38px 15px;
}

.our-teachers .block-column:nth-child(2) .teachers-block-one .inner-box:hover .lower-content{
  background: url(../images/icons/hover-2.png);
  max-width: 303px;
  margin-top: -74px;
  padding: 31px 15px 38px 15px;
}

.our-teachers .block-column:last-child .teachers-block-one .inner-box:hover .lower-content{
  background: url(../images/icons/hover-3.png);
  max-width: 303px;
  margin-top: -74px;
  padding: 31px 15px 38px 15px;
}

.teachers-block-one .inner-box .lower-content h3{
  color: #fff;
  margin-bottom: 5px;
}

.teachers-block-one .inner-box .lower-content h3 a{
  position: relative;
  display: inline-block;
  color: #fff;
}

.teachers-block-one .inner-box .lower-content .designation{
  position: relative;
  display: block;
  font-size: 16px;
  font-weight: 500;
  line-height: 26px;
  font-family: 'M PLUS Rounded 1c', sans-serif;
  color: #fff;
  margin-bottom: 7px;
}

.teachers-block-one .inner-box .lower-content .social-list{
  position: relative;
  opacity: 0;
  transform: translateY(10px);
  transition: all 900ms ease;
}

.teachers-block-one .inner-box:hover .lower-content .social-list{
  opacity: 1;
  transform: translateY(0px);
}

.teachers-block-one .inner-box .lower-content .social-list li{
  position: relative;
  display: inline-block;
  margin: 0px 10px;
}

.teachers-block-one .inner-box .lower-content .social-list li a{
  position: relative;
  display: inline-block;
  font-size: 15px;
  color: #fff;
}


/** event-section **/

.event-section{
  position: relative;
  display: block;
  width: 100%;
  padding: 144px 0px 120px 0px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-attachment: fixed;
}

.event-section:before {
  position: absolute;
  content: '';
  background: rgba(33, 47, 84, 0.50);
  width: 100%;
  height: 100%;
  left: 0px;
  top: 0px;
}

.event-section .sec-title{
  position: relative;
  display: block;
  margin-bottom: 57px;
}

.event-section .sec-title h1{
  color: #fff;
}

.event-block-one .inner-box{
  position: relative;
  display: block;
  background: #fff;
  padding: 45px 0px 39px 0px;
  border-radius: 20px;
  margin-bottom: 30px;
  min-height: 300px;
}

.event-block-one .inner-box .image-box{
  position: absolute;
  left: 0px;
  top: 0px;
  width: 220px;
  height: 300px;
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
  background: #2b3c6b;
  overflow: hidden;
  z-index: 1;
}

.event-block-one .inner-box .image-box img{
  width: 100%;
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
  transition: all 500ms ease;
}

.event-block-one .inner-box:hover .image-box img{
  transform: scale(1.03);
  opacity: 0.5;
}

.event-block-one .inner-box .content-box{
  position: relative;
  display: block;
  padding-left: 270px;
}

.event-block-one .inner-box .content-box .date{
  position: relative;
  display: inline-block;
  background: url(../images/icons/date-bg-1.png);
  font-size: 15px;
  line-height: 26px;
  font-family: 'M PLUS Rounded 1c', sans-serif;
  font-weight: 900;
  color: #fff;
  padding: 10px 32px 14px 33px;
  text-align: center;
  margin-bottom: 24px;
  background-repeat: no-repeat;
}

.event-section .event-block:nth-child(2) .event-block-one .inner-box .content-box .date{
  background: url(../images/icons/date-bg-2.png);
  background-repeat: no-repeat;
}

.event-section .event-block:nth-child(3) .event-block-one .inner-box .content-box .date{
  background: url(../images/icons/date-bg-3.png);
  background-repeat: no-repeat;
}

.event-section .event-block:last-child .event-block-one .inner-box .content-box .date{
  background: url(../images/icons/date-bg-4.png);
  background-repeat: no-repeat;
}

.event-block-one .inner-box .content-box h3{
  margin-bottom: 13px;
}

.event-block-one .inner-box .content-box .text{
  position: relative;
  display: block;
  margin-bottom: 18px;
}

.event-block-one .inner-box .content-box .location{
  position: relative;
  display: block;
  font-size: 14px;
  color: #848484;
  font-family: 'M PLUS Rounded 1c', sans-serif;
  font-weight: 400;
  text-transform: uppercase;
}

.event-block-one .inner-box .content-box .location span{
  font-weight: 700;
  color: #ff7162;
}

.event-block-one .inner-box .content-box .location i{
  position: relative;
  margin-right: 6px;
  color: #ff7162;
  font-size: 22px;
  font-weight: 600;
  top: 4px;
}

.event-section .anim-icon .icon-1 {
  background: url(../images/icons/anim-icon-7.png);
  width: 161px;
  height: 261px;
  left: 100px;
  top: -120px;
  background-repeat: no-repeat;
}


/** feature-section **/

.feature-section{
  position: relative;
  display: block;
  background: #035392;
  padding: 83px 0px;
}

.feature-section .image-column{
  position: absolute;
  left: 0px;
  top: 0px;
  width: 50%;
  height: 100%;
  background-size: auto;
  background-repeat: no-repeat;
  background-position: center;
}

.feature-section .sec-title{
  margin-bottom: 41px;
}

.feature-section .inner-box .single-item{
  position: relative;
  display: block;
  padding: 0px 0px 0px 105px;
  margin-bottom: 50px;
}

.feature-section .inner-box .single-item:last-child{
  margin-bottom: 0px;
}

.feature-section .inner-box .single-item .icon-box{
  position: absolute;
  left: 0px;
  top: -1px;
  font-size: 40px;
  width: 85px;
  height: 85px;
  line-height: 85px;
  color: #fff;
  background: #fbb419;
  text-align: center;
  border-radius: 50%;
  z-index: 1;
}

.feature-section .inner-box .single-item .icon-box:before{
  position: absolute;
  content: '';
  background: #2b3c6b;
  width: 100%;
  height: 100%;
  left: 0px;
  top: 0px;
  right: 0px;
  border-radius: 50%;
  transform: scale(0,0);
  z-index: -1;
  transition: all 500ms ease;
}

.feature-section .inner-box .single-item:hover .icon-box:before{
  transform: scale(1,1);
}

.feature-section .inner-box .single-item:nth-child(2) .icon-box{
  background: #ff7162;
}
.feature-section .inner-box .single-item:nth-child(3) .icon-box{
  background: #43b3d9;
}
.feature-section .inner-box .single-item:nth-child(4) .icon-box{
  background: #6BB753;
}
.feature-section .inner-box .single-item:last-child .icon-box{
  background: #ff7162;
}

.feature-section .anim-icon .icon-1 {
  background: url(../images/icons/anim-icon-5.png);
  width: 119px;
  height: 127px;
  top: 120px;
  right: 320px;
  background-repeat: no-repeat;
  -webkit-animation: zoom-fade 5s infinite linear;
  animation: zoom-fade 5s infinite linear;
}

.feature-section .anim-icon .icon-2 {
  background: url(../images/icons/anim-icon-6.png);
  width: 321px;
  height:289px;
  right: 0px;
  bottom: -90px;
  background-repeat: no-repeat;
}
.parallax-icon {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  height: 100%;
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
}

.parallax-icon .icon-1 {
  left: 110px !important;
  top: 160px !important;
  background: url(images/icons/parallax-icon-1.png);
  width: 131px;
  height: 86px;
  background-repeat: no-repeat;
}

.parallax-icon .icon-2 {
  left: 30% !important;
  top: 80px !important;
  background: url(images/icons/parallax-icon-2.png);
  width: 32px;
  height: 32px;
  background-repeat: no-repeat;
}

.parallax-icon .icon-3 {
  left: 27% !important;
  top: 70% !important;
  background: url(images/icons/parallax-icon-3.png);
  width: 59px;
  height: 63px;
  background-repeat: no-repeat;
}

.parallax-icon .icon-4 {
  left: 40% !important;
  top: 40% !important;
  background: url(images/icons/parallax-icon-4.png);
  width: 15px;
  height: 15px;
  background-repeat: no-repeat;
}

.parallax-icon .icon-5 {
  left: 75% !important;
  top: 80px !important;
  background: url(images/icons/parallax-icon-5.png);
  width: 119px;
  height: 54px;
  background-repeat: no-repeat;
}

.parallax-icon .icon-6 {
  left: 65% !important;
  top: 40% !important;
  background: url(images/icons/parallax-icon-6.png);
  width: 47px;
  height: 65px;
  background-repeat: no-repeat;
}

.parallax-icon .icon-7 {
  left: 72% !important;
  top: 70% !important;
  background: url(images/icons/parallax-icon-7.png);
  width: 57px;
  height: 50px;
  background-repeat: no-repeat;
}

