@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
body {
    font-family: "Poppins", sans-serif;
}

p {
    color: #757575;
    font-size: 0.9rem;
    font-weight: normal;
    line-height: 1.5rem;
}

a {
    color: #252525;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    text-decoration: none !important;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
    background-color: #06BBCC;
}

.back-to-top:hover {
    color: #FFFFFF;
    background-color: #11c8d9;
    transition: .5s;
}

.btn {
    outline: none;
    border-radius: 0px;
    font-weight: 600;
    transition: .5s;
}

.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: 0px;
}

/*** Navbar ***/

.navbar-nav .nav-link {
    font-weight: 400;
    color: #181d38;
    font-size: 13px;
    text-transform: uppercase;
    outline: none;
}

.navbar-nav .nav-link:hover {
    color: #06BBCC;
    transition: .5s;
}

.navbar .navbar-brand p {
    padding-top: 1rem;
    margin-left: 0.5rem;
    line-height: 1.2rem;
}

.navbar .navbar-brand p .brand-one {
    font-size: 1.2rem;
    color: #181d38;
}

.navbar .navbar-brand p .brand-two {
    font-size: 0.9rem;
    color: #52565b;
}

.btn-sign {
    padding: 10px 15px;
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    color: #FFFFFF;
    outline: none;
    border-radius: 0px;
    background-color: #181d38;
    transition: .5s;
}

.btn-sign:hover {
    color: #FFFFFF;
    background-color: #6c757d;
    transition: .5s;
}

.signin-modal .modal-header {
    background-color: #06BBCC;
}

.btn-addmission {
    padding: 10px 10px;
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    color: #FFFFFF;
    outline: none;
    border-radius: 0px;
    background-color: #06BBCC;
    transition: .5s;
}

.btn-addmission:hover {
    color: #FFFFFF;
    background-color: #11c8d9;
    transition: .5s;
}

.sticky-top {
    transition: .5s;
}

/*** Header carousel ***/
@media (max-width: 768px) {
    .header-carousel .owl-carousel-item {
        position: relative;
        min-height: 500px;
    }
    
    .header-carousel .owl-carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

.header-carousel h5 {
    color: #06BBCC;
}

.carousel-btn {
    background-color: #06BBCC;
    color: white;
}

.carousel-btn:hover {
    background-color: #11c8d9;
    color: white;
}

/*** Section Title ***/
.section-title {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    color: #06BBCC;
}

.section-title::before {
    position: absolute;
    content: "";
    width: calc(100% + 80px);
    height: 2px;
    top: 4px;
    left: -40px;
    background: #06BBCC;
    z-index: -1;
}

.section-title::after {
    position: absolute;
    content: "";
    width: calc(100% + 120px);
    height: 2px;
    bottom: 5px;
    left: -60px;
    background: #06BBCC;
    z-index: -1;
}

.section-title.text-start::before {
    width: calc(100% + 40px);
    left: 0;
}

.section-title.text-start::after {
    width: calc(100% + 60px);
    left: 0;
}


/*** Service ***/
.service-item {
    background: #F0FBFC;
    transition: .5s;
}

.service-item:hover {
    margin-top: -10px;
    background: #06BBCC;
}

.service-item * {
    transition: .5s;
}

.service-item:hover * {
    color: #F0FBFC !important;
}

.service-item i {
    color: #06BBCC;
}

.about-section i {
    color: #06BBCC;
}
/*** Team ***/
.team-item img {
    transition: .5s;
}

.team-item:hover img {
    transform: scale(1.1);
}

.our-team h6 {
    color: #06BBCC;
}

.our-team .team-item {
    background-color: #F0FBFC;
}

.our-team .bg-teamicon {
    background-color: #F0FBFC;
}

.bg-teamicon .btn-team {
    background-color: #06BBCC;
}


/*** Testimonial ***/
.testimonial-carousel::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    background: linear-gradient(to right, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
    z-index: 1;
}

.testimonial-carousel::after {
    position: absolute;
    content: "";
    top: 0;
    right: 0;
    height: 100%;
    width: 0;
    background: linear-gradient(to left, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
    z-index: 1;
}

@media (min-width: 768px) {
    .testimonial-carousel::before,
    .testimonial-carousel::after {
        width: 200px;
    }
}

@media (min-width: 992px) {
    .testimonial-carousel::before,
    .testimonial-carousel::after {
        width: 300px;
    }
}

.testimonial-carousel .owl-item .testimonial-text,
.testimonial-carousel .owl-item.center .testimonial-text * {
    transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-text {
    background: #06BBCC !important;
}

.testimonial-carousel .owl-item.center .testimonial-text * {
    color: #FFFFFF !important;
}

.testimonial-carousel .owl-dots {
    margin-top: 24px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.testimonial-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 15px;
    height: 15px;
    border: 1px solid #CCCCCC;
    transition: .5s;
}

.testimonial-carousel .owl-dot.active {
    background: #06BBCC;
    border-color: #06BBCC;
}


/*** Footer ***/
.footer {
    background-color: #181d38;
}

.footer p, a {
    color: #FFF;
    font-size: 0.9rem;
}

.footer .btn.btn-social {
    margin-right: 5px;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #F0FBFC;
    font-weight: normal;
    border: 1px solid #FFFFFF;
    border-radius: 35px;
    transition: .3s;
}

.footer .btn.btn-social:hover {
    color: #06BBCC;
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: #FFFFFF;
    font-size: 15px;
    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 {
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .copyright {
    padding: 25px 0;
    font-size: 15px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
    color: #F0FBFC;
}

.footer .footer-menu a {
    margin-right: 15px;
    padding-right: 15px;
    border-right: 1px solid rgba(255, 255, 255, .1);
}

.footer .footer-menu a:last-child {
    margin-right: 0;
    padding-right: 0;
    border-right: none;
}