/********** Template CSS **********/
:root {
    --primary: #06BBCC;
    --light: #F0FBFC;
    --dark: #181d38;
}

.fw-medium {
    font-weight: 600 !important;
}

.fw-semi-bold {
    font-weight: 700 !important;
}

.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;
}


/*** Button ***/
.btn {
    font-family: 'Nunito', sans-serif;
    font-weight: 600;
    transition: .5s;
}

.btn.btn-primary,
.btn.btn-secondary {
    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: 0px;
}


/*** Navbar ***/
.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

.navbar-light .navbar-nav .nav-link {
    margin-right: 30px;
    padding: 25px 0;
    color: #FFFFFF;
    font-size: 15px;
    text-transform: uppercase;
    outline: none;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: var(--primary);
}

@media (max-width: 991.98px) {
    .navbar-light .navbar-nav .nav-link  {
        margin-right: 0;
        padding: 10px 0;
    }

    .navbar-light .navbar-nav {
        border-top: 1px solid #EEEEEE;
    }
}

.navbar-light .navbar-brand,
.navbar-light a.btn {
    height: 75px;
}

.navbar-light .navbar-nav .nav-link {
    color: var(--dark);
    font-weight: 500;
}

.navbar-light.sticky-top {
    top: -100px;
    transition: .5s;
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        margin-top: 0;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }

    .navbar .dropdown-menu.fade-down {
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        transform: rotateX(0deg);
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}


/*** 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 .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: #FFFFFF;
    background: transparent;
    border: 1px solid #FFFFFF;
    font-size: 22px;
    transition: .5s;
}

.header-carousel .owl-nav .owl-prev:hover,
.header-carousel .owl-nav .owl-next:hover {
    background: var(--primary);
    border-color: var(--primary);
}

.page-header {
    background: linear-gradient(rgba(24, 29, 56, .7), rgba(24, 29, 56, .7)), url(../img/carousel-1.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.page-header-inner {
    background: rgba(15, 23, 43, .7);
}

.breadcrumb-item + .breadcrumb-item::before {
    color: var(--light);
}


/*** Section Title ***/
.section-title {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
}

.section-title::before {
    position: absolute;
    content: "";
    width: calc(100% + 80px);
    height: 2px;
    top: 4px;
    left: -40px;
    background: rgba(255, 107, 0, 1);
    z-index: -1;
}

.section-title::after {
    position: absolute;
    content: "";
    width: calc(100% + 120px);
    height: 2px;
    bottom: 5px;
    left: -60px;
    background: rgba(255, 107, 0, 1);
    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: var(--light);
    transition: .5s;
}

.service-item:hover {
    margin-top: -10px;
    background: var(--primary);
}

.service-item * {
    transition: .5s;
}

.service-item:hover * {
    color: var(--light) !important;
}


/*** Categories & Courses ***/
.category img,
.course-item img {
    transition: .5s;
}

.category a:hover img,
.course-item:hover img {
    transform: scale(1.1);
}


/*** Team ***/
.team-item img {
    transition: .5s;
}

.team-item:hover img {
    transform: scale(1.1);
}


/*** 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: var(--primary) !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: var(--primary);
    border-color: var(--primary);
}


/*** Footer ***/
.footer .btn.btn-social {
    margin-right: 5px;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    font-weight: normal;
    border: 1px solid #FFFFFF;
    border-radius: 35px;
    transition: .3s;
}

.footer .btn.btn-social:hover {
    color: var(--primary);
}

.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: var(--light);
}

.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;
}

/* cusstom css */
.scroll-button-1,
.scroll-button-2,
.scroll-button-3{
    cursor: pointer;
}
.contact{
    background-color: rgba(255, 107, 0, 1);
    padding: 7px 40px;
    border-radius: 6px;
    color: #fff;
    margin-top: -10px;
}
.text-nova{
    color: rgba(255, 107, 0, 1);
}

.text-spro{
    color: rgba(0, 238, 95, 1)
}

.btn-primary{
    background-color: rgba(255, 107, 0, 1);
    border: none;
}

.header{
    width: 100%;
}

.header-carousel-right{
    position: relative;
}

.header-carousel-sub{
    position: absolute;
    right: 0;
    top:0;
}

.navbar-light .navbar-nav .nav-link:hover, .navbar-light .navbar-nav .nav-link.active {
    color: rgba(255, 107, 0, 1);
}

.text-primary{
    color: rgba(255, 107, 0, 1) !important;
}

.skills-rose{
    background-color: rgba(255, 247, 242, 1);
    color: rgba(0, 39, 96, 1);
    font-size: 16px;
    padding: 13px 15px;
    margin-bottom: 15px;
    border-radius: 8px;
}
.timhieu{
    background-color: #FF6B00;
    border-radius: 10px;
}
.skills-blue{
    background-color: rgba(250, 255, 242, 1);
    color: rgba(0, 39, 96, 1);
    font-size: 16px;
    padding: 13px 15px;
    margin-bottom: 15px;
    border-radius: 8px;
}

.text-black-main{
    color: #01255B !important;
}

.teacher-box small{
    height: 50px;
}
.target{
    position: relative;
}
.target img{
    z-index: 2;
}
.border-target{
    position: absolute;
    height: 40%;
    width: 2px;
    background-color: rgba(230, 230, 230, 1);
    top: 33%;
    left: 50px;
    z-index: 1;
}

.rounded-video{
    border-radius: 10px;
}

.bg-light{
    background-color: #fff !important;
    position: relative;
}

.value-main{
    background: rgba(255, 247, 242, 1);
}

.companion-main{
    background: rgba(255, 247, 242, 1);
}

.value-number{
    position: absolute;
    top: 0;
    left: 0;
    height: 50px;
    width: 50px;
    background: rgba(255, 107, 0, 1);
    color: #fff;
    font-size: 22px;
    border-top-left-radius: 10px ;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
    border-top-right-radius: 5px ;
}
.value-main img{
    width: 100%;
}
.value-text{
    height: 100px;
    display: flex;
    align-items: center;
}
.category-h3{
    font-size: 23px;
    color: rgba(255, 107, 0, 1);
}
.text-black-main-category{
    font-size: 35px;
}
.bg-0{
    height: 250px;
    padding: 30px 0px;
    border-radius: 8px;
}
.bg-1{
    background-color: rgba(250, 255, 242, 1);
    height: 250px;
    padding: 30px 20px;
    border-radius: 8px;
}

.bg-2{
    background-color: rgba(255, 247, 242, 1);
    height: 250px;
    padding: 30px 20px;
    border-radius: 8px;
}

.bg-3{
    background: rgba(233, 255, 225, 1);
    height: 250px;
    padding: 30px 20px;
    border-radius: 8px;
}

.bg-4{
    background: rgba(255, 249, 249, 1);
    height: 250px;
    padding: 30px 20px;
    border-radius: 8px;
}

.bg-5{
    background: rgba(233, 255, 225, 1);
    height: 250px;
    padding: 30px 20px;
    border-radius: 8px;
}

.companion-border{
    border: 1px solid  rgba(255, 107, 0, 1);
    border-radius: 6px;
}

.companion-img{
    position: relative;
}
.companion-text-h{
    color: rgba(0, 205, 82, 1);
}
.companion-number{
    position: absolute;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: rgba(0, 39, 96, 1);
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 12px;
    right: 12px;
    top: 10px;
}

.companion-border .text-center{
   height: 120px;
}

.companion-main-six{
    position: relative;
    z-index: 2;
}

.companion-main-six .companion-border{
    z-index: 2;
}

.companion-main-six-img{
    position: absolute;
    top: 40%;
    right: 4%;
    z-index: 0;
}

.companion-main-six-img img{
    width: 110%;
    z-index: 0;
}

.companion-footer-box{
    background: rgba(149, 255, 184, 1);
    height: 65px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    border-radius: 10px;
}

.donghanh{
    color: rgba(255, 107, 0, 1);
}

.svstart-box1{
    background: rgba(255, 247, 242, 1);
    height: 180px;
    padding: 20px 20px;
    border-radius: 10px;
}

.svstart-box2{
    background: rgba(250, 255, 242, 1);
    height: 180px;
    padding: 20px 20px;
    border-radius: 10px;
}

.svstart-box3{
    background: rgba(225, 255, 255, 1);
    height: 160px;
    padding: 20px 20px;
    border-radius: 10px;
}

.svstart-box4{
    background: rgba(233, 255, 225, 1);
    height: 160px;
    padding: 20px 20px;
    border-radius: 10px;
}

.svstart-up img{
    border-radius: 10px;
}
.map{
    display: flex;
    justify-content: center;
    align-items: center;
}

.map-img{
    width: 55%;
    position: relative;
}
.font-text-small{
    font-size: 16px;
}
.map-text-1{
    position: absolute;
    top:60%;
    left: -50%;
}
.mospro{
    position: absolute;
    left: 32%;
    top: 30%;
}
.kien{
    background-color: #fff;
    box-shadow: 0px 0px 15px 0px #0000001A;
    padding: 20px;
    border-radius: 10px;
}

.slick-prev:before, .slick-next:before {
    color: #FF6B00 !important;
    font-size: 20px !important;
}
.box-map-1{
    box-shadow: 0px 4px 4px 0px #00000040;
    height: 55px;
    border-radius: 6px;
    padding: 0 20px;
}

/* .responsive-teacher .slick-prev{
    right: 30px;
    top: 0 !important;
}

.responsive-teacher .slick-next{
    right: 0;
    top: 0 !important;
} */

.map-text-2 {
    position: absolute;
    top:25%;
    left: -35%;
}

.map-text-3 {
    position: absolute;
    top:-5%;
    left: -6%;
}

.map-text-4 {
    position: absolute;
    top:-6%;
    left: 55%;
    width: 215px;
}

.map-text-5 {
    position: absolute;
    top:25%;
    left: 83%;
    width: 215px;
}

.map-text-6 {
    position: absolute;
    top:60%;
    left: 85%;
    width: 215px;
}

.map-text-7 {
    position: absolute;
    bottom:0;
    left: 22%;
}

.map-nova{
    background: #002760;
    position: relative;
    padding: 100px 0;
}
.map-nova-box-main{
    padding: 0 100px;
}
.map-nova-img{
    position: absolute;
    left: 23%;
    top: 13%;
    z-index: 0;
}

.six-year{
    font-weight: bold;
    color: #00EE5F;
    font-size: 25px;
    z-index: 1;
}

.map-nova-box{
    background-color: #fff;
    display: flex;
    align-items: center;
    padding: 10px;
    border-radius: 10px;
    margin-bottom: 30px;
}

.images_nav button{
    border: none !important;
}

.nav-tabs{
    border-bottom: none !important;
}

.images_nav button p{
    border: 1px solid rgba(255, 107, 0, 1) !important  ;
    color: #FF6B00; 
    font-weight: bolder;
    padding: 12px 10px;
    border-radius: 5px;
}

.images_nav button.active p{
    color: #fff; 
    background-color: #FF6B00;
}

.contact-nova{
    position: relative;
    padding: 100px 0;
}

.contact-nova-img img{
    position: absolute;
    top: 0;
    z-index: 1;
    height: 100%;
}

.doitac{
    background: #FFF7F2;
}

.slick-dots{
    margin-left: -15px;
    bottom: -50px !important;
}

.slick-dots li.slick-active button:before {
    color: #00EE5F;
    font-size: 14px;
    margin-right:1px ;
}

.slick-dots li{
    margin: 0 !important;
}

.blue-main{
    color: #01337E;
}

.skill-text-h1{
    font-size: 40px;
}

.banner-left{
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.banner-left a{
    width: max-content;
}

.value-width{
    width: 50%;
}

.category-w-50{
    width: 50%;
}

.images-title{
    width: 75%;
}
.sach-title{
    width: 75%;
}
.sach-img{
    width: 100%;
}
.contact-element{
    padding: 0 40px;
}
.teacher-box{
    box-shadow: 0px 4px 20px 0px #00000026;
    border: 6px solid #FFFFFF;
    padding: 5px;
}
.logo-box{
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.10);
    border-radius: 10px;
    height: 100px;
}

.images-nav img{
    width: 100%;
    height: 300px;
    object-fit: cover;
    object-position: center;
}
@media (min-width: 1300px) and (max-width: 1434px) {
    .top-0{
        top: 105px !important;
    }
    .skill-text-h1{
        font-size: 28px;
    }
}
@media (min-width: 1025px) and (max-width: 1300px) {
    .nav-container{
        margin-top: -100px;
    }

    .companion-main-six-padding{
        padding: 0 6px !important;
    }
    .svstart-box2,
    .svstart-box1{
        height: 250px;
    }

    .svstart-box4,
    .svstart-box3{
        height: 220px;
    }

    .companion-footer-box{
        padding: 10px;
        font-size: 20px;
        height: 95px;
    }
}
@media (min-width: 768px) and (max-width: 993px) {
    
}
@media (min-width: 768px) and (max-width: 1024px) {
    .trainghiem{
        font-size: 15px;
    }
    .map-text-1 {
        padding: 1px;
    }
    .map-text-2 {
        padding: 1px;
    }
    
    .skill-text-h1 {
        font-size: 25px;
    }

    .skill-text-p{
        font-size: 1em !important;
    }

    .companion-main-six-padding{
        padding: 0 6px !important;
    }
    .svstart-box2,
    .svstart-box1{
        height: 250px;
    }

    .svstart-box4,
    .svstart-box3{
        height: 210px;
    }

    .companion-footer-box{
        padding: 10px;
        font-size: 16px;
        height: 75px;
    }
}

@media (max-width: 767px) {
    .teacher-box small{
        height: 90px;
    }
    .value-width{
        width: 100%;
    }

    .category-w-50{
        width: 100%;
    }

    .map{
        display: none;
    }

    .value-text{
        height: auto;
    }

    .bg-0 {
        height: auto;
        padding-bottom: 0;
    }

    .text-black-main-category{
        margin-bottom: 0;
    }

    .text-black-main{
        margin-top: 0;
    }

    .bg-1,.bg-2,.bg-3,.bg-4,.bg-5,.bg-6{
        height: auto;
    }

    .companion-border .text-center{
        height: 110px;
    }

    .companion-main-six-img{
        display: none;
    }
    .map-nova{
        padding: 20px 0;
    }
    .map-nova-box-main{
        padding: 0 20px;
    }
    .svstart-box4,
    .svstart-box3,
    .svstart-box2,
    .svstart-box1{
        height: auto;
    }

    .images-title{
        width: 100%;
    }

    .slick-slide{
        display: flex !important;
        justify-content: center;
        align-items: center;
    }

    .contact-nova{
        padding: 20px 0;
    }
    .sach-title{
        width: 100%;
    }

    .sach-img{
        width: 85%;
    }

    .banner-mobie{
        background-color: #001B44;
        padding: 20px 0;
    }

    .skill-text-h1 {
        font-size: 28px;
    }

    .skill-text-p{
        font-size: 1em !important;
    }
    .navbar-light a.btn{
        height: 40px;
    }
    .navbar ,
    .testimonial,
    .svstart-up{
        overflow: hidden;
    }



    
}



