@import url('https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&family=Montserrat:ital,wght@0,100..900;1,100..900&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');

:root {
    --primary-color: #10486D;
    --highlight-color: #26A7C4;
    --s_backgound-color: #f7fbff;
    --secondary-color: #ffffff;
    --text-color: #202020;
    --p-color: #696969;
    font-family: "Poppins", sans-serif;
    font-family: "Jost", serif;
    font-family: "Montserrat", sans-serif;
}


p {
    font-size: 15px;
}


#top_bar {
    width: 100%;
    height: auto;
    padding: 16px 0;
    background: var(--primary-color);
    z-index: 999 !important;
}

.top_phone_mail {
    padding: 0;
    margin: 0;
}

.top_phone_mail li {
    display: inline-block;
    color: var(--secondary-color);
    padding-right: 50px;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    letter-spacing: 0.3px;
    transition: all 0.3s ease-in;
}

.top_phone_mail li a i {
    color: var(--secondary-color);
    padding-right: 6px;
    transition: all 0.3s ease-in;
}

.top_phone_mail li:hover {
    transition: all 0.3s ease-in;
    color: var(--secondary-color);
}

.mobile_icon {
    transform: rotate(-30deg);
}

.top_social {
    padding: 0;
    margin: 0;
}

.top_social li {
    display: inline-block;
    color: var(--secondary-color);
    padding: 0px 12px;
    transition: all 0.3s ease-in;
}

.top_social li :hover {
    color: var(--primary-color);
    transition: all 0.3s ease-in;
}

/* navbar  */

#header {
    position: sticky;
    top: 0;
    z-index: 999 !important;
}

.navbar-brand {
    padding: 0px 15px;
}

.navbar {
    width: 100%;
    background: var(--secondary-color);
    border: none;
    border-radius: 0;
    margin: 0 !important;
    box-shadow: 0px 3px 6px 0px rgba(5, 37, 95, 0.2);
}

.logo {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: -0.5px;
    padding-top: 7px !important;
    font-size: 32px;
}

#logo {
    height: 80px;
}

.navbar .navbar-nav>li>a {
    padding: 12px 20px;
    color: var(--text-color);
    font-size: 16px;
    letter-spacing: 0.15px;
    font-weight: 500;
    margin: 18px 5px;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
}

.navbar .navbar-nav>li>a:hover {
    font-size: 16px;
    font-weight: 500;
    color: var(--secondary-color) !important;
    background: var(--primary-color) !important;
    transition: all 0.3s ease;
}

.navbar-default .navbar-nav>.active>a,
.navbar-default .navbar-nav>.active>a:focus,
.navbar-default .navbar-nav>.active>a:hover {
    font-size: 16px;
    font-weight: 400;
    color: var(--secondary-color) !important;
    background: var(--primary-color) !important;
    transition: all 0.3s ease;
}

/* end navbar  */


/* slider  */

#slider {
    width: 100%;
    height: auto;
    position: relative;
}

#slider .list .item {
    position: absolute;
    /* inset: 0 0 0 0; */
    overflow: hidden;
    opacity: 0;
    transition: 0.5s;
}

#slideer .list .item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#slider .list .item .content {
    position: absolute;
    left: 8%;
    top: 25%;
    width: 60%;
    z-index: 1;
}

.slider_sp {
    font-family: "Jost", serif;
    font-size: 20px;
    color: var(--secondary-color);
    font-weight: 500;
    letter-spacing: 1px;
}

.slider_h {
    font-weight: 700;
    font-family: "Montserrat", sans-serif;
    font-size: 46px;
    letter-spacing: 1.5px;
    line-height: inherit;
    color: var(--secondary-color);
    margin-top: 10px !important;
}

.slider_btn {
    background: var(--highlight-color);
    border: none;
    padding: 12px 30px;
    font-family: "Montserrat", sans-serif;
    color: var(--secondary-color);
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.35px;
    font-weight: 400;
    margin-top: 20px;
}

.slider_btn i {
    position: relative;
    left: 2.5px;
    top: 2px;
}

#slider .list .item.active {
    opacity: 1;
    z-index: 10;
}

#slider .list .item.active img {
    transform: scale(1);
    animation: showImage 5s linear 1 forwards;
}

@keyframes showImage {
    to {
        transform: scale(1.1);
        opacity: 1;
    }
}

#slider .list .item.active .slider_sp,
#slider .list .item.active .slider_h,
#slider .list .item.active .slider_btn {
    transform: translateY(100px);
    filter: blur(20px);
    opacity: 0;
    animation: showContent .5s .7s ease-in-out 1 forwards;
}

@keyframes showContent {
    to {
        transform: translateX(0px);
        filter: blur(0);
        opacity: 1;
    }
}

#slider .list .item.active .slider_sp {
    animation-delay: 0.7s;
}

#slider .list .item.active .slider_h {
    animation-delay: 1s;
}

#slider .list .item.active .slider_btn {
    animation-delay: 1.3s;
}

.arrows #prev {
    left: 1%;
    position: absolute;
    margin-top: 25%;
    z-index: 100;
}

.arrows #next {
    right: 1%;
    position: absolute;
    margin-top: 25%;
    z-index: 100;
}

.arrows button {
    background: rgba(255, 255, 255, 0.65);
    border: none;
    padding: 15px 20px;
    color: #000;
    transition: 0.5s;
}

.arrows button:hover {
    background: var(--highlight-color);
    color: var(--secondary-color);
}

/* slider  */

#about {
    width: 100%;
    height: auto;
    padding: 90px 0;
    margin-top: 55%;
    position: relative;
}
#abt_img{
    padding-top: 15px;
}
.abt_h {
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    line-height: inherit;
    letter-spacing: 0.35px;
    font-size: 23px;
    line-height: 40px;
    color: var(--highlight-color);
}
.courses_h {
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    line-height: inherit;
    letter-spacing: 0.35px;
    text-align: center;
    color: var(--highlight-color);
}

.abt_p {
    font-family: "Jost", serif;
    line-height: 30px;
    font-size: 16px;
    letter-spacing: 0.35px;
    padding-top: 10px !important;
    font-weight: 400;
    color: var(--p-color);
}

.abt_p strong {
    font-family: "Jost", serif;
    color: var(--text-color);
}

.abt_btn {
    padding: 14px 30px;
    background: var(--highlight-color);
    border: none;
    font-family: "Monserrat", sans-serif;
    color: var(--secondary-color);
    letter-spacing: 0.65px;
    font-size: 15px;
    margin-top: 25px;
    font-weight: 500;
}

.abt_btn i {
    position: relative;
    left: 2.5px;
    top: 2px;
}
.abt_sh{
    font-family: "Montserrat", sans-serif;
    font-weight: 600;
    line-height: inherit !important;
    letter-spacing: 0.35px;
    font-size: 20px;
    line-height: 40px;
    padding-top: 15px !important;
    color: var(--highlight-color);
}
.abt_li{
    padding: 0;
    margin: 0;
}
.abt_li li{
    font-family: "Jost", serif;
    line-height: 30px;
    font-size: 16px;
    letter-spacing: 0.35px;
    padding-top: 10px !important;
    font-weight: 400;
    margin-left: 20px;
    color: var(--p-color);
}

#courses{
    width: 100%;
    height: auto;
    padding: 90px 0;
    background: var(--s_backgound-color);
}

.course_box {
    margin-top: 40px;
    width: 100%;
    height: auto;
    padding: 10px;
    background: var(--secondary-color);
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
}

.cb_text {
    padding: 25px 15px;
}

.cbt_h {
    font-family: 'Montserrat', sans-serif;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 23px;
    line-height: 30px;
}

.cbt_p {
    font-family: "Jost", serif;
    font-weight: 500;
    color: var(--highlight-color);
    font-size: 16px;
    padding-top: 2.5px !important;
}

.cbt_li {
    padding: 0;
    margin: 0;
}

.cbt_li li {
    display: inline-block;
    padding-right: 10px;
    font-family: "Jost", serif;
    font-weight: 400;
    color: var(--p-color);
    font-size: 15px;
}

.cbt_li li i {
    color: var(--highlight-color);
    font-size: 18px;
}

.cb_divider {
    width: 100%;
    height: 1px;
    background: rgba(0, 0, 0, 0.15);
    margin: 15px 0;
    border-radius: 5px;
}

.cb_img {
    overflow: hidden;
}

.cb_img img {
    transform: scale(1);
    transition: all 0.3s ease;
}

.course_box:hover .cb_img img {
    transform: scale(1.1);
    transition: all 0.3s ease;
}

.cb_btn {
    padding: 10px 25px;
    font-family: 'Montserrat', sans-serif;
    background: var(--highlight-color);
    border: none;
    color: var(--secondary-color);
    margin-top: 20px;
    font-size: 16px;
    font-weight: 400;
}
.cb_btn i{
    position: relative;
    left: 2.5px;
    top: 2px;
}
.all_c_btn {
    padding: 12px 25px;
    font-family: 'Montserrat', sans-serif;
    background: var(--highlight-color);
    border: none;
    color: var(--secondary-color);
    margin: auto;
    margin-top: 40px;
    font-size: 16px;
    font-weight: 500;
    display: block;
}


#why_us {
    width: 100%;
    height: auto;
    /* padding: 50px 0; */
    background: var(--primary-color);
    border-top-left-radius: 100px;
    padding-top: 50px;
}

.whyus_h {
    font-family: 'Montserrat', sans-serif;
    color: var(--secondary-color);
    font-weight: 600;
    letter-spacing: 0.65px;
    padding-top: 50px !important;
}

.whyus_li {
    padding: 0;
    margin: 0;
    margin-top: 10px !important;
}

.whyus_li li {
    list-style: none;
    color: var(--secondary-color);
    font-family: "Jost", serif;
    letter-spacing: 0.65px;
    padding-top: 15px;
    font-weight: 300;
    font-size: 20px;
    line-height: 32px;
}
.whyus_li li i{
    padding-right: 2.5px;
}

.whyus_nh {
    font-family: 'Montserrat', sans-serif;
    color: var(--secondary-color);
    font-weight: 600;
    letter-spacing: 1px;
    padding-top: 30px !important;
    font-size: 40px;
}
.whyus_nh span{
    position: relative;
    left: 5px;
    bottom: 5px;
    font-size: 32px;
}

.whyus_np {
    color: var(--secondary-color);
    font-family: "Jost", serif;
    font-family: "Jost", serif;
    font-weight: inherit;
    letter-spacing: 0.65px;
    font-size: 16px;
    padding-top: 10px !important;
}

#gallery{
    width: 100%;
    height: auto;
    padding: 90px 0;
}

#testimonials{
    width: 100%;
    height: auto;
    padding: 90px 0;
    background: var(--s_backgound-color);    
}
.testimonials_box{
    width: 100%;
    height: auto;
    padding: 40px 20px;
    border: 1px solid rgba(0, 0, 0, 0.15);
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.05);
    position: relative;
    background: var(--secondary-color);
    text-align: center;
    transition: all 0.3s ease-in;
}
.testimonials_box:hover{
    border-color: var(--highlight-color);
    transition: all 0.3s ease-in;
}
.profile_rating{
    position: relative;
}
#profile_img{
    width: 80px;
    margin: auto;
}
.pr_h{
    font-family: "Jost", serif;
    color: #5B8C51;
    font-weight: 600;
    font-size: 23px;
    padding-top: 15px !important;
}
#rating_img{
    height: 15px;
    position: relative;
    top: 10px;
    margin: auto;
    width: auto;
}
.review{
    width: 100%;
    height: auto;
    margin-top: 20px;
}
.review_p{
    font-family: "Jost", serif;
    color: var(--text-color);
    font-size: 17px;
    line-height: 30px;
    letter-spacing: 0.15px;
    padding-top: 5px !important;
}


.owl-nav {
    display: none;
}

.owl-dots {
    text-align: center;
}

.owl-dots .owl-dot span {
    width: 8px;
    height: 8px;
    margin: 0 5px;
    margin-top: 25px;
    background: var(--primary-color);
    display: block;
    transition: opacity .2s ease;
    border-radius: 30px;
}

.owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
    width: 10px;
    height: 10px;
    background: var(--highlight-color);
}


#contact{
    width: 100%;
    height: auto;
    padding: 90px 0;
    background: var(--secondary-color);
}

.contact_h{
    color: var(--highlight-color);
    font-weight: 600;
    letter-spacing: 0;
    font-size: 24px;
    font-family: 'Montserrat', sans-serif;
}

.contact_li{
    margin: 0;
    padding:0;
    margin-top: 15px !important;
    color: var(--primary-color);
    font-size: 18px;
    line-height: inherit;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
}
.contact_li li{
    color: var(--p-color);
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0px;
    list-style: none;
    line-height: 28px;
    font-family: "Jost", serif;
}
#contact_form{
    margin-top: 40px;
    box-shadow: 0 0 10px rgb(0 0 0 / 10%) !important;
    padding: 40px 25px;
    background: #ffffff;
}
.form_input{
    padding: 22px 15px !important;
    border: 1px solid var(--primary-color);
    border-radius: 0;
    margin-bottom: 25px;
    font-family: "Jost", serif;
    color: var(--text-color);
    letter-spacing: 0.5px;
}
::placeholder{
    font-family: "Jost", serif;
    color: var(--text-color) !important;
    letter-spacing: 0.5px;
}
.contact_btn{
    background: var(--primary-color);
    border: none;
    border-radius: 0;
    font-size: 15px;
    font-weight: 400;
    padding: 10px 35px;
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    transition: all 0.3s ease-in;
}
.contact_btn:hover{
    transition: all 0.3s ease-in;
    background: var(--highlight-color);
}
.social{
    padding: 0;
    margin: 0;
}
.social li{
    display: inline-block;
    padding-right: 10px;
    padding-top: 10px;
    color: var(--p-color);
    font-size: 16px;
    transition: all 0.3s ease-in;
}
.social li:hover{
    color: var(--highlight-color);
    transition: all 0.3s ease-in;
}


#map{
    line-height: 0;
}


#footer{
    width: 100%;
    height: auto;
    padding: 80px 0;
    background: var(--primary-color);
}
.footer_logo{
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    color: var(--secondary-color);
    font-size: 32px;
}
.footer_p{
    font-family: "Jost", serif;
    font-size: 15px;
    color: var(--secondary-color);
    line-height: 30px;
    padding-top: 10px !important;
    letter-spacing: 0px;
}
.footer_h{
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    color: var(--secondary-color);
    font-size: 20px;
    margin-bottom: 10px !important;
    letter-spacing: 0.65px;
}
.footer_links{
    padding: 0;
    margin: 0;
}
.footer_links li{
    font-size: 15px;
    color: var(--secondary-color);
    line-height: 30px;
    font-weight: 300;
    list-style: none;
    padding-top: 15px;
}
.footer_links li a{
    font-family: "Jost", serif;
    letter-spacing: 0.25px;
}
.footer_links li i{
    padding-right: 5px;
    color: var(--secondary-color);
}
.footer_social{
    padding: 0;
    margin: 0;
}
.footer_social li{
    display: inline-block;
    color: var(--secondary-color);
    font-size: 20px;
    padding-right: 15px;
    margin-top: 25px;
}


#copyrights {
    width: 100%;
    height: auto;
    padding: 15px;
    background: var(--highlight-color);
}

.copy_p{
    color: var(--secondary-color);
    font-size: 15px;
    font-weight: 400;
    line-height: 33px;
    letter-spacing: 0.65px;
    text-align: center;
}
.copy_p a{
    font-family: "Jost", serif;
}

.l_translate{
    margin-top: 15px;
}
#counter_img{
    width: 80px;
    margin-top: 15px;
}
