@import url('https://fonts.googleapis.com/css2?family=Inter:wght@200;300;400;500;600;700;800;900&display=swap');



*{

    margin: 0;

    padding: 0;

    text-decoration: none;

    outline: none;

    box-sizing: border-box;

}

html, body {

    scroll-behavior: smooth;

}

ul, address {

    margin-bottom: 0;

}

ul {

    list-style: none;

    padding-left: 0;

}

body{

    font-family: 'Inter', sans-serif;

    font-size: 16px;

    letter-spacing: inherit;

    line-height: 1.5;

    font-weight: 400;

    color: #000;

}

a, a:hover{

    color: inherit;

    text-decoration: inherit;

}

img{

    max-width: 100%;

}

.btn_block {

    width: 100%;

    display: flex;

    flex-wrap: wrap;

    margin-top: 2rem;

}

.button {

    border-radius: 7px;

    font-size: inherit;

    font-weight: 500;

    line-height: 1.5rem;

    box-shadow: none !important;

    outline: none !important;

    border: 1px solid;

    width: auto;

    background: transparent;

    padding: 14px 30px;

}

button, button:focus {

    border: 0;

    outline: none;

    box-shadow: none;

}

.blue_btn {

    min-width: 130px;

    border: 0;

    letter-spacing: 1px;

    color: #fff;

    background-color: #3872BA;

}

.blue_btn:hover {

    background: #fff;

    color: #000b41;

}

.blue_btn.btn_bg:hover {

    background: #000b41;

    color: #fff;

}

h1, h2, h3, h4 {

    font-family: inherit;

    color: inherit;

}

h1{

    font-weight: 700;

    font-size: 50px;

    line-height: 1.15;

}

h2{

    font-weight: 700;

    font-size: 40px;

    line-height: 1.25;

}

h3{

    font-weight: 500;

    font-size: 20px;

}

h4{

    font-weight: 500;

    font-size: 17px;

}

h5{

    font-weight: 500;

    font-size: 15px;

}

p:last-child {

    margin-bottom: 0;

    color: inherit;

}

.text_blue {

    color: #3872BA;

}



.sub_title {

    text-transform: uppercase;

    letter-spacing: 2px;

}

form .form-group{

    width: 100%;

    float: left;

    margin-bottom: 1.5rem;

    position: relative;

}

form .form-group .form-control {

    width: 100%;

    height: 50px;

    color: #fff;

    border: 0;

    border-radius: 0;

    font-size: inherit;

    padding: 10px 13px;

    outline: none;

    box-shadow: none;

    background: #2C2C2C;

}

form .form-group textarea{

    height: auto !important;

}





/* -------------------------- HEADER STYLE ------------------- */

header .navbar {

    border: 0;

    z-index: 999; 

    width: 100%;

    position: fixed;

    top: 0;

    left: 0;

    padding: 1rem 0;

    background: transparent;

}

header .navbar.sticky {

    background: #000B41;

}

header .navbar .navbar-brand{

    max-width: 150px;

    margin-right: 0.5em;

    transition: 0.5s;

    padding: 0.65em 0;

    display: inline-block;

    position: relative;

    z-index: 10001;

}

header .navbar.sticky .navbar-brand {

    max-width: 130px;

}

header .navbar .navbar-brand img{

    width: 100%;

}

header .navbar .navbar-nav li.nav-item {

    margin-left: 1.5rem;

}

header .navbar .navbar-nav li .nav-link {

    color: #fff;

    padding: .5rem 0;

    font-size: 16px;

    position: relative;

}

.navbar .navbar-nav {

    margin: 0 auto;

}

.navbar .navbar-nav li.nav-item .nav-link:after {

    content: '';

    width: 0;

    height: 1px;

    position: absolute;

    display: inline-block;

    left: 0;

    bottom: 2px;

    transition: .2s all;

    background: #3872BA;

}

.navbar .navbar-nav li.active .nav-link:after {

    width: 100%;

    transition: .2s all;

}

header .navbar .choose--lang {

    width: 150px;

    margin-left: 10px;

}







/* ------------------- site style -------------- */

.py_3{

    padding-top: 8rem;

    padding-bottom: 8rem;

}

.mt_3 {

    margin-top: 3rem;

}

.mb_3 {

    margin-bottom: 3rem;

}

.wi_full{

    width: 100%;

}

.sec_title.text-center {

    max-width: 650px;

    margin: 0 auto 3rem;

}

.bounce2 {

  animation: bounce2 6s ease infinite;

}

@keyframes bounce2 {

    0%, 20%, 50%, 80%, 100% {transform: translateY(0);}

    40% {transform: translateY(-20px);}

    60% {transform: translateY(-10px);}

}

.hide_overflow {

    overflow: hidden;

}

.banner_section .item {

    color: #fff;

    display: flex;

    align-items: center;

    padding-top: 150px;

    padding-bottom: 3rem;

    background-size: cover !important;

}

.banner_section .banner_content {

    padding-top: 5rem;

    padding-left: 2rem;

}

.banner_carousel .owl-nav button {

    position: absolute;

    top: 50%;

    transform: translateY(-50%);

    left: 1rem;

    width: 50px;

    height: 50px;

    background: #fff !important;

    border-radius: 5px;

}

.banner_carousel .owl-nav button.owl-next {

    left: auto;

    right: 1rem;

}

.banner_carousel.owl-carousel .owl-dots button span {

    border-color: #fff;

}

.banner_carousel.owl-carousel .owl-dots button.active span {

    background: #fff;

}

.banner_carousel .owl-item.active h3 {

    -webkit-animation-duration: 1s;

    animation-duration: 1s;

    -webkit-animation-fill-mode: both;

    animation-fill-mode: both;

    animation-name: fadeInDown;

    animation-delay: 0.3s;

}

.banner_carousel .owl-item.active h1 {

    -webkit-animation-duration: 1s;

    animation-duration: 1s;

    -webkit-animation-fill-mode: both;

    animation-fill-mode: both;

    animation-name: fadeInUp;

    animation-delay: 0.3s;

}

.banner_carousel .owl-item.active .animate_div {

    -webkit-animation-duration: 1s;

    animation-duration: 1s;

    -webkit-animation-fill-mode: both;

    animation-fill-mode: both;

    animation-name: fadeInUp;

    animation-delay: 0.4s;

}

.banner_carousel .owl-item.active .btn_block {

    -webkit-animation-duration: 1s;

    animation-duration: 1s;

    -webkit-animation-fill-mode: both;

    animation-fill-mode: both;

    animation-name: fadeInUp;

    animation-delay: 0.5s;

}



.mission_sec {

    position: relative;

}

.mission_sec .sec_title {

    position: relative;

    color: #fff;

    padding-bottom: 4rem;

}

.plan_shape_bg {

    position: absolute;

    left: 0;

    top: 50%;

    transform: translateY(-50%);
    z-index: -1;

}

.plan_shape_bg .d-flex {

    align-items: center;

}

.plan_shape_bg img.img_shape {

    width: 50%;

}

.plan_shape_bg img.img_plane {

    width: 50%;

    margin-left: -150px;

}



.event_sec {

    background-size: cover !important;

}

.event_sec .sec_title {

    color: #fff;

}

.event_sec .event_item, .what_we_sec .sec_item {

    margin-top: 1.5rem;

    text-align: center;

}

.iten_inner.shadow_box {

    background: #fff;

    padding: 1.5rem;

    position: relative;

    height: 100%;

    box-shadow: 0 3px 20px #00000029;

    border-radius: 15px;

}
.iten_inner.shadow_box:hover {
    background: #3872ba;
    color: #fff;
}
.iten_inner.shadow_box:hover img {
    filter: brightness(0) invert(1);
}
.what_we_sec .shadow_box:hover p {
	color: #fff;
}
.event_sec .event_item img, .what_we_sec .iten_inner img {

    width: 60px;

    height: 60px;

    object-fit: contain;

    margin: 0 auto 1rem;

    display: block;

}

.what_we_sec .shadow_box p {

    color: #A1A1A1;

    font-size: 95%;

}


.passion_sec {
    margin-top: 60px;
}


.passion_sec .w_50 {

    width: 50%;

    padding-bottom: 2rem;

}

.passion_sec .w_50 h2 {

    font-weight: 600;

    font-size: 35px;

}

.passion-carousel {

    margin-top: -130px;

}

.passion-carousel .item_inner {

    display: flex;

    flex-wrap: wrap;

}

.passion-carousel .item_inner .item_text {

    width: calc(58% + 100px);

    background: #EFEFEF;

    padding: 2rem;

    position: relative;

    padding-bottom: 100px;

    padding-right: 130px;

    margin-top: 130px;

}

/*.passion-carousel .item_inner .item_text:before {

    content: '';

    width: 200px;

    height: 70px;

    position: absolute;

    right: 1rem;

    bottom: 0;

    background: url(../images/School-watermark.png) no-repeat center;

    background-size: contain;

}*/

.passion-carousel .item_inner .item_image {

    width: calc(42% - 2rem);

    height: calc(300px - 2rem);

    margin-left: calc(-100px + 2rem);

    background: #efefef;

    position: relative;

    padding-top: 2rem;

    padding-right: 2rem;

}

.passion-carousel .item_inner .item_image img {

    width: calc(100% + 2rem);

    margin-left: -2rem;

    height: calc(100% + 2rem);

    object-fit: cover;

    max-width: none;

}

.passion-carousel .owl-nav {

    position: absolute;

    bottom: 2rem;

    left: 2rem;

}

.passion-carousel .owl-nav button.disabled {

    filter: grayscale(100%);

    opacity: 0.7;

}

.passion-carousel .owl-nav button {

    width: 20px;

    text-align: left;

}

.passion-carousel .owl-nav button.owl-next {

    margin-left: 2rem;

    text-align: right;

}

.passion_sec .slider_wrapper .slider-counter {

    position: absolute;

    bottom: 2rem;

    z-index: 1;

    left: 3.5rem;

}



.news_sec .sec_title {

    display: flex;

    justify-content: space-between;

    align-items: center;

}

.news_sec .more_btn {

    text-transform: uppercase;

    font-weight: 600;

    display: flex;

    flex-wrap: nowrap;

    white-space: nowrap;

    font-size: 100%;

    margin-left: 1rem;

}

.news_sec .more_btn span {

    width: 30px;

    height: 30px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background: #3872BA;

    margin-left: 10px;
        position: relative;
    top: -5px;

}

.news_sec .more_btn span img {

    width: 8px;

    filter: brightness(0) invert(1);

}

.news_wrapper {

    display: flex;

    flex-wrap: wrap;

    margin-top: 1rem;

}

.news_wrapper .item_w_40 {

    width: 40%;

    height: 500px;

    padding-right: 15px;

}

.pd_top {

    padding-top: 15px;

}

.news_wrapper .item_w_60 {

    width: 60%;

    display: flex;

    flex-wrap: wrap;

}

.news_wrapper .item_w_30 {

    width: 50%;

    height: 500px;

}

.news_wrapper .item_w_100 {

    width: 100%;

    height: 250px;

    padding-left: 15px;

}

.news_wrapper .news_item .item_wrap {

    width: 100%;

    height: 100%;

    position: relative;

    display: block;

    overflow: hidden;

    transition: .5s all;

}

.news_wrapper .news_item .item_wrap img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    transition: .5s all;

}

.news_wrapper .news_item .item_wrap .news_detail {

    position: absolute;

    bottom: 0;

    color: #fff;

    padding: 1rem 2rem;

}

.news_wrapper .news_item .item_wrap .news_detail .time_ago {

    transform: scaleY(0);

    transform-origin: top;

    transition: transform 0.5s ease;

    margin-bottom: 10px;

}

.news_wrapper .news_item .item_wrap:hover .news_detail .time_ago {

    transform: scaleY(1);

}







.testimnial_videos .shadow_box {

    background: #fff;

    padding: 1rem 1rem 1.5rem;

    position: relative;

    height: 100%;

    box-shadow: 0 3px 20px #00000029;

    border-radius: 15px;

}

.testimnial_videos .testi_item {

    margin-bottom: 1.5rem;

}

.testimnial_videos .video_box {

    width: 100%;

    height: 200px;

    border-radius: 15px;

    overflow: hidden;

    margin-bottom: 15px;

    position: relative;

}

.testimnial_videos .video_box img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    transition: .5s all;

}

.testimnial_videos .video_box .video_btn {

    width: 50px;

    height: 50px;

    position: absolute;

    top: 50%;

    left: 50%;

    transform: translate(-50%, -50%);

    border: 0;

    background: no-repeat;

    outline: none;

    box-shadow: none;

}

.testimnial_videos .shadow_box h3 {

    font-size: 20px;

}

.testimnial_videos .shadow_box p {

    color: #A1A1A1;

}

.testi-carousel .item_bg {

    background-size: cover !important;

    padding: 2rem;

    border-radius: 30px;

}

.testi-carousel .item_content {

    padding: 1rem 3rem;

}

.testi-carousel .item_img img {

    width: 100%;

    border-radius: 20px;

}

.testi-carousel .owl-nav button {

    width: 50px;

    height: 50px;

    outline: none;

    box-shadow: none;

    border: 0;

    align-items: center;

    display: flex;

    justify-content: center;

    position: absolute;

    top: 50%;

    transform: translateY(-50%);

    left: -25px;

    border-radius: 50%;

    background: #fff !important;

}

.testi-carousel .owl-nav button.disabled {

    background: #3872BA !important;

}

.testi-carousel .owl-nav button.disabled img {

    filter: brightness(0) invert(1);

}

.testi-carousel .owl-nav button.owl-next {

    left: auto;

    right: -25px;

}



.owl-carousel .owl-dots {

    display: flex;

    justify-content: center;

    margin-top: 2rem;

}

.owl-carousel .owl-dots button {

    box-shadow: none;

    outline: none;

    border: 0;

}

.owl-carousel .owl-dots button span {

    width: 25px;

    height: 10px;

    background: transparent;

    border: 1px solid #000b41;

    display: block;

    margin: 3px;

    border-radius: 20px;

    opacity: 1;

}

.owl-carousel .owl-dots button.active span {

    background: #000b41;

}





.gallery_sec {

    background-size: cover !important;

    color: #fff;

}

.gallery_row, .gallery_row .gal_grid {

    display: flex;

    flex-wrap: wrap;

}

.gallery_row .gallery_col_5 {

    width: 40%;

}

.gallery_row .gallery_col_7 {

    width: 60%;

}

.gallery_row .gallery_col_12 {

    width: 100%;

}

.gallery_row .gal_grid .grid_item {
    width: calc(50% - 10px);
    height: calc(180px - 10px);
    
}
.gallery_row .gal_grid .grid_item_large {
    width: calc(100% - 10px);
    height: calc(360px - 10px);
    
}
.gallery_row .gal_grid .grid_item, .gallery_row .gal_grid .grid_item_large {
	overflow: hidden;
	margin: 5px;
}
.gallery_row .gallery_col_7 .grid_item {
    width: calc(33.33% - 10px);
}

.gallery_row .gallery_col_12 .grid_item {
    width: calc(25% - 10px);
    border: 1px solid #dfdfdf;
    border-radius: 10px;
}

.gallery_row .gal_grid .grid_item img, .gallery_row .gal_grid .grid_item_large img {
    border-radius: 10px;
    height: 100%;
    width: 100%;
    object-fit: cover;
    transition: .5s all;
}
.gallery_row .gal_grid .grid_item:hover img, .gallery_row .gal_grid .grid_item_large:hover img {
	transform: scale(1.15);
}





.team_wrapper {

    position: relative;

    display: flex;

    flex-wrap: wrap;

    justify-content: space-between;

    overflow: hidden;

}

.team_wrapper .team-top {

    width: calc(100% - 150px);

    /*height: 550px;*/

    height: auto;

}

.swiper-button-next, .swiper-button-prev {

    position: absolute;

    bottom: 0;

    left: auto !important;

    top: auto !important;

    right: 0 !important;

    background: #000b41;

    width: 40px !important;

    height: 40px !important;

    border-radius: 50%;

}

.swiper-button-prev {

    right: 50px !important;

    background: #fff !important;

    border: 1px solid #000b41 !important;

}

.swiper-button-next img, .swiper-button-prev img {

    width: 18px;

}

.swiper-button-prev img {

    filter: brightness(0) invert(0);

}

.swiper-button-next:after, .swiper-button-prev:after {

    display: none !important;

}

.team_wrapper .team-thumbs {

    width: 150px;

    height: 450px;

    padding-left: 15px;

}

.team_wrapper .team-thumbs .swiper-slide .slide_thmb {

    position: relative;

    width: calc(100% - 10px);

    height: calc(100% - 10px);

    margin: 5px;

    border-radius: 10px;

    overflow: hidden;

}

.team_wrapper .team-thumbs .swiper-slide .slide_thmb:before {

    content: '';

    position: absolute;

    left: 0;

    top: 0;

    width: 100%;

    height: 100%;

    background: #3872BA;

    opacity: 0.5;

    border-radius: 10px;

}

.team_wrapper .team-thumbs .swiper-slide-thumb-active .slide_thmb:before {

    display: none;

}

.team_wrapper .team-thumbs .swiper-slide .slide_thmb img {

    width: 100%;

    height: 100%;

    object-fit: cover;      

    transition: 0.3s;

}

   



.slide_data_wrap .pos_content {

    width: 100%;

    height: 450px;

    border-radius: 20px;

    overflow: hidden;

    position: relative;

}

.slide_data_wrap .pos_content img {

    width: 100%;

    height: 100%;

    object-fit: cover;

}

.slide_data_wrap .pos_content h2 {

    position: absolute;

    left: 2rem;

    top: 2rem;

    font-size: 35px;

    max-width: 180px;

}

.slide_data_wrap .founder_t {

    padding: 1rem 0;

    padding-bottom: 1rem;

}

.slide_data_wrap .founder_t * {

    margin-bottom: 0;

}





.testimnial_videos .shadow_box:hover .video_box img, .news_wrapper .news_item .item_wrap:hover img {

    transform: scale(1.15);

}





.footer_sec {

    background-repeat: no-repeat;

    background-position: center;

    background-size: cover;

    color: #fff;

}

footer {

    max-width: 94%;

    margin: 0 auto;

    background: #0B0A34;

    border-radius: 50px 50px 0 0;

    padding: 2rem;

}

footer .copyrgt_txt {

    margin-top: 2rem;

}

footer .footer__log_sec, footer .footer_nav {

    padding-top: 2rem;

}

footer img.footer_logo {

    margin-bottom: 1rem;

}
footer .footer_nav, footer .copyrgt_txt {
    font-size: 90%;
}
footer .footer_nav a {

    display: block;

    padding-bottom: 10px;

}







.modal button.close {

    width: 40px;

    height: 40px;

    min-width: auto;

    padding: 6px;

    margin: 0;

    background: transparent;

    border: 0;

    outline: none;

    box-shadow: none;

    position: absolute;

    right: 20px;

    top: 20px;

    z-index: 99;

}

.videopopup .modal-body {

    padding: 0;

}

.modal .video_box {

    width: 100%;

    height: 400px;

}

.modal-dialog iframe, .html5-video-container {

    width: 100%;

    height: 100%;

    max-height: 100% !important;

}

.videopopup.modal button.close {

    background: #3872BA !important;

    border-radius: 50%;

    width: 50px;

    height: 50px;

    padding: 15px;

    line-height: 18px;

    right: -15px;

    top: -15px;

}

.text_shadow_f18 {
    text-shadow: 1px 1px 1px #0b0a0a;
    font-size: 18px !important;
}

.banner_subheading {
    font-weight: 400;
    font-size: 16px;
    text-align: center;
}
.mission-left.last {
    margin: 45px 0 0 0;
}
.contact-btn {
    padding: 100px 0;
    min-height: 400px;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
section.team_sec.about {
    padding: 50px 0;
}
.contact-btn {
    padding: 100px 0;
}
.contact-btn h3 {
    color: #fff;
    padding: 0 12%;
    line-height: 30px;
}
.contact-btn .btn_block {
    margin: 32px 0 15px 0;
}
.contact-btn h4 {
    color: #fff;
}
h1{font-size:42px;}
.about-text h2 {
    text-align: center;
    font-size: 18px;
    font-weight: 400;
    line-height: 30px;  }
.inner_banner .foreground {

    height: 300px;
    background-size: cover;
    background-repeat: no-repeat;
}
.about-text {
    padding: 60px 0;
}
.text-center{text-align:center;}
.mission-left {
    float: left;
    width: 49%;
    text-align: left;
    border: 1px solid #C6D2F2;
    border-radius: 10px;
    padding: 15px 20px;
    background: #fff;
    min-height: 235px;
    position: relative;
}
.mission-right {
    float: left;
    width: 49%;
    text-align: left;
    border: 1px solid #C6D2F2;
    border-radius: 10px;
    padding: 15px 20px;
    background: #fff;
    margin: 0 0 0 23px;
    position: relative;
    min-height: 235px;
}
.mission h3 {
    margin:25px 0 10px 0;
}
.space-edu{padding:50px 0;}
.mission p {
    font-size: 14px;
        line-height: 24px;
}
.our-mission {
    background: #F3F6FC;
    display: inline-block;
    width: 100%;
    padding: 50px 0;
}
.mission {
    margin: 40px 0 0 0;
    display: inline-block;
}
.mission-right img {
    position: absolute;
    width: 50px;
    top: -23px;
    background: #fff;
    padding: 5px;
    border-radius: 5px;
    border: 1px solid #ccc;
    left: 20px;
}
.space-left {
    float: left;
    width: 47%;
    overflow: hidden;
}
.space-edu {
    padding: 50px 0;
    display: inline-block;
    width: 100%;
}
.space-edu h1 {
    margin: 0 0 40px 0;
}
.space-right {
    float: right;
    width: 50%;margin-top:25px;
}
.space-right li {
    margin: 0 0 45px 0;
}
.space-left img {
    border-radius: 15px;
    border: 10px solid #F3F6FC;
}
.mission-left img {
    position: absolute;
    width: 50px;
    top: -23px;
    background: #fff;
    padding: 5px;
    border-radius: 5px;
    border: 1px solid #ccc;
    left: 20px;
}
.inner_banner .title {
    font-size: 42px;
    color: white;
    text-shadow: 0 0 5px black;
    padding: 112px 0;
    text-align:center;}
.mission-left {
    float: left;
    width: 48%;
    text-align: left;
    border: 1px solid #C6D2F2;
    border-radius: 10px;
    padding: 15px 20px;
    background: #fff;
    min-height:235px;
    position:relative;
}

.home_qoute_row {
    position: relative;
}
.home_quoterw_l .hmqt_bg {        
    left: 0px;
}
.home_quoterw_r .hmqt_bg {        
    right: 0px;
}
.hmqt_bg {
    position: absolute;
    background: #3872BA;
    height: 70%;
    top: 15%;
    width: 20%;
    z-index: -1;
}
.home_quoterw_l .hmq_img {
    padding-left: 23%;
}
.home_quoterw_r .hmq_img {
    padding-left: 12%;
}
.hmq_img {
    padding: 10px;
}
.hmq_img img {
    box-shadow: 3px 3px 23px 0 rgba(0,0,0,0.5);
    border-radius: 20px;
    max-width: 215px;
}
.hmq_container {
    padding-left: 60px;
    padding-right: 60px;
}


.hqm_blockquote-wrapper {
    display: flex;
    padding: 0 20px;
}

.hqm_blockquote {
    position: relative;
    max-width: 100%;
    margin: 0px auto;
    align-self: center;
}

.hqm_blockquote h3 {
    position: relative;
    font-size: 2.4rem;
    font-weight: normal;
    line-height: 1;
    margin: 0;
    border: 2px solid #3872BA !important;
    border: solid 2px;
    border-radius: 20px;
    padding: 18px;
}

/* Blockquote right double quotes */
.hqm_blockquote h3:after {
    content:"";
    position: absolute;
    border: 2px solid #3872BA;
    border-radius: 0 50px 0 0;
    width: 60px;
    height: 60px;
    bottom: -60px;
    left: 50px;
    border-bottom: none;
    border-left: none;
    z-index: 3; 
}

.hqm_blockquote h3::before {
    content: "";
    position: absolute;
    width: 80px;
    border: 6px solid #fff;
    bottom: -3px;
    left: 50px;
    z-index: 2;
}

.py_3_custom {
    padding-top: 50px;
    padding-bottom: 50px;
}


/* increase header size after 600px */
@media all and (min-width: 600px) {
    .hqm_blockquote h3 {
        font-size: 1.5rem;
        line-height: 1.2;
   }

}

/* Blockquote subheader */
.hqm_blockquote h4 {
    position: relative;
    font-size: 1.3rem;
    font-weight: 400;
    line-height: 1.2;
    margin: 0;
    padding-top: 15px;
    z-index: 1;
    margin-left:150px;
    padding-left:12px;
}

 
.blockquote h4:first-letter {
  margin-left:-12px;
}


.hmq_text_outer {
    padding-top: 52px;
}
.hmq_text_outer h4 {
    font-size: 17px;
    line-height: 1.3em;
}

.m_why_us .container {
    z-index: 1;
    position: relative;
}
.m_why_us {
    background-position: center center;
    background-size: cover;
    background-attachment: fixed;
    color: #fff;
    padding: 60px 20px;
    position: relative;
    margin-bottom: 60px;
}
.m_why_overlay {
    position: absolute;
    top: 0px;
    left: 0px;
    background: rgba(43, 75, 117, 0.9);
    height: 100%;
    width: 100%;
    z-index: 0;
}
.mwhy_col {
    margin-bottom: 40px;
}
.mwhy_col_inner {    
    border:1px solid #333;
    border-radius: 4px;    
    padding:10px;
}
.mwhy_col_small .mwhy_col_inner {
    min-height: 300px;
}
.mwhy_us_slider h3 {
    font-size: 31px;
    margin-bottom: 20px;
}
.mwhy_us_slider img {
    max-width: 240px;
}


.sdn_read_more .more_btn:hover {
    box-shadow: 3px 2px 8px #13101094;
}
.sdn_read_more .more_btn {
    font-weight: 600;
    transition: 0.5s;
    font-size: 100%;
    margin-left: 0px;
    background: #3872BA;
    display: inline-block;
    padding: 5px 15px;
    border-radius: 8px;
    color: #fff;
}
.sub-menu {
    display: none;
    position: absolute;
    background: #fff;
    color: #333;
    width: 200px;
}
.sub-menu a {
    color: #333 !important;
    padding: 5px 20px !important;
    display: block;
}
.menu-item-has-children:hover .sub-menu {
    display: block;
}
.sub-menu li {
    margin-left: 0px !important;
}
.more_btn {
    text-decoration: none !important;
}
.passion_sec .slider-counter , .passion_sec .owl-nav {
    display: none !important;
}
.tickul li {
    background-image: url('../images/litick.png');
    padding: 0 0 10px 24px !important;
    background-position: top 10px left;
    background-repeat: no-repeat;
    background-size: 15px;
}



@media only screen and (max-width: 996px) {
  .mission-left, .mission-right, .space-left, .space-right {
    width:100%;
  }
  .mission-left {
    margin-bottom: 60px;
  }
  .mission-right {
    margin-left: 0px;
  }
}

@media only screen and (max-width: 991px) {
    .hqm_blockquote h3 {
        font-size: 20px;
    }
    .hmq_text_outer h4 {
        font-size: 14px;
        line-height: 1.3em;
    }
    .hmqt_bg {
        display: none;
    }
    .hmq_img img {
        max-width: 100%;
        width: auto;
    }
    .hmq_text_outer {
        padding-top: 15px;
    }
    .sub-menu {
        display: block;
        position: relative;
        background: transparent;
        color: #fff;
        width: auto;
    }
    .sub-menu a {
        color: #fff !important;
        padding: 5px 0px !important;
        display: block;
        margin-left: 25px;
        min-width: 235px;
    }
}

@media only screen and (max-width: 768px) { 
    .hmq_desk {
        display: none !important;
    }
    .hmq_mobile {
        display: block !important;
    }
    .hmq_img {
        padding-left: 0px;
        max-width: 200px;
        display: inline-block;
    }
    .home_quoterw_r .hmq_img {
        padding-right: 0px;
        padding-left: 0px;
    }
    .home_quoterw_l .hmq_img {
        padding-left: 0px;
        padding-right: 0px;
    }
    .hmq_img_outer {
        text-align: center;
    }
    .hqm_blockquote h3 {
        font-size: 1.2rem;
        line-height: 1.3em;
        margin: 0;
    }
    .hqm_blockquote h4 {
        margin-left: 118px;
        font-size: 13px;
    }
    .home_quoterw_r .hmqt_bg {
        right: 0px;
        bottom: 7%;
        top: auto;
    }
}

@media only screen and (max-width: 639px) { 
    .hqm_blockquote h3::after {
      width: 15px;
      height: 15px;
      bottom: -15px;
      left: 15px;
    }
    .hqm_blockquote h3 {
        font-size: 14px;
        line-height: 1.3em;
        margin: 0;
    }
    .hqm_blockquote h3::before {
        width: 42px;
        border: 6px solid #fff;
        bottom: -4px;
        left: 18px;
    }
    .hqm_blockquote h4 {
        margin-left: 20px;
        font-size: 12px;
    }
}



