@charset "utf-8";

@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.10.2/font/bootstrap-icons.css");

/* font-family: 'Poppins',
sans-serif;
font-family: 'Roboto Slab',
serif;
font-family: 'Dosis', sans-serif;
*/


* {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}


/* ------Scrollbar CSS Start----- */

/* Firefox */

/* Chrome, Edge, and Safari */

*::-webkit-scrollbar {
    width: 5px;
}
*::-webkit-scrollbar-track {
    background: var(--white);
}
*::-webkit-scrollbar-thumb {
    background-color: var(--black);
    border-radius: 5px;
   border: 0px;
}

/* ------Scrollbar CSS End----- */



/*--- Common Style Start---*/

:root {
    --black: #101010;
    --dark: #101010;
    --white: #fff;
    --blue: #4777FB;
    --menu: #000000;
    --light-gray: #878787;
    --light-white: #F7F8FC;
    --body-font: 'Poppins',  sans-serif;
    --heading: 'Dosis', sans-serif;
}

html,
body {
    overflow-x: hidden;
}

body {
    margin: 0;
    padding: 0;
    font-size: 16px;
    line-height: 23px;
    color: var(--black);
    font-family: 'Dosis', sans-serif;
    font-weight: 500;
}
p {
    padding: 0;
    font-weight: 500;
}
p:last-child {
    margin-bottom: 0;
}

a {
    display: inline-block;
    text-decoration: none !important;
    -webkit-transition: all 300ms ease-in-out;
   -moz-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
}

a:hover,
a:focus {
    color: var(--color-black);
}

figure {
    margin: 0;
    padding: 0;
   display: block;
}

img {
    width: 100%;
    height: 100%;
}

h1,
h2,
.heading {
    line-height: normal;
    font-weight: 600;
    margin-bottom: 5px;
    font-family: var(--heading);
}

h3 {
    font-size: 22px;
    font-family: var(--heading);
}


h4 {

    font-size: 20px;

}



h5 {

    font-size: 18px;

}



h6 {

    font-size: 16px;

}



ul {

    padding-left: 0px;

    margin-bottom: 0px;

}



/*--- Common Style End---*/

/* ==========loader common css========== */
.loader-off.loaderWrap {
    opacity: 0;
    visibility: hidden;
}
.loader img {
    width: 50px;
}

.loaderWrap {
  position: fixed;
  height: 100%;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 9991;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.9);
  transition: all 300ms ease-in-out; 
}
.loader{
    animation: loader 2s infinite linear;
}
/* ============Loader Two CSS Start=============== */

@keyframes loader {
    0% {
      transform: rotate(-45deg);
    }
    50% {
      transform: rotate(-135deg);
    }
    100% {
      transform: rotate(-225deg);
    }
  }


/*--- Bootstrap Form Start ---*/

.form-control {
    height: 40px;
    border: 1px solid var(--white);
    padding: 10px 15px;
    background-color: var(--white);
    font-size: 13px;
    color: var(--black);
    letter-spacing: 0;
    border-radius: 0;
    box-shadow: none !important;
}

.form-control:focus {
    outline: none !important;
    border: 1px solid transparent !important;
    box-shadow: none !important;
}

select.form-control:not([size]):not([multiple]) {
    height: 50px;
}

textarea.form-control {
    height: 100px;
    resize: none;
}

.form-control::placeholder {
    color: var(--color-gray);
}

.sec-space {
    padding: 60px 0;
}

.sec-space-bottom {
    padding: 0 0 60px;
}

.sec-space-top {
    padding: 60px 0 0;
}

/*- Bootstrap Form End -*/

/*-- Button Start --*/

.btn {
    border-radius: 5px;
    height: 45px;
    line-height: 45px;
    padding: 0 25px;
    font-size: 14px;
    font-weight: 500;
    margin-top: 15px;
    border: 1px solid transparent;
    text-transform: uppercase;
    position: relative;
    transition: all .5s;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -ms-transition: all .5s;
    -o-transition: all .5s;
}

buton:focus,
.btn:focus,
buton:active,
.btn:active {
    outline: none;
    box-shadow: none !important;
    border: 1px solid transparent;
}

.btn-solid {
    background: #430062;
    color: var(--white);
    z-index: 9;
    position: relative;
    border: 1px solid transparent;
    transition: all .4s;
}

.btn-solid:hover {
    background: #5d0087;
    color: var(--white);
}

.btn-outline {
    background: transparent;
    color: var(--black);
    z-index: 9;
    position: relative;
    height: auto;
    line-height: normal;
    transition: all .4s;
    padding: 0px;
    font-weight: 600;
}
.btn-outline:before {
    position: absolute;
    left: 0;
    bottom: 0;
    background: var(--black);
    height: 1px;
    width: 100%;
    content: '';
    z-index: -1;
    transition: all .4s;
}

.btn-outline:hover::before {
    border: 1px solid var(--black);
    border-top: 0px;
    height: 1px;
    width: calc(100% + 15px);
    transition: all .4s;
}

/*-- Button End --*/

/*--- TITLE Start---*/

.section-title h3 {
    font-size: 36px;
    line-height: 46px;
    font-weight: 800;
    margin-bottom: 0px;
    font-family: var(--heading);
}
.section-title h6 {
    font-size: 14px;
    color: var(--green-blue);
    margin-bottom: 10px;
    text-transform: uppercase;
}
.section-title {
    margin-bottom: 30px;
}

/*--- TITLE End---*/

/*----   HEADER  START  ----*/

.innerheadersec {
    box-shadow: 0 2px 2px rgba(0,0,0,.03);
}

.main-header {
    margin: 0;
    padding: 0;
    position: relative;
    width: 100%;
    z-index: 9;
    background: #fff;
}

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

.navbar-brand img {
    height:70px;
    width: auto;
}
.navbar-collapse ul li {
    margin-right: 40px;
    position: relative;
}
.navbar-collapse ul li:last-child {
    margin-right: 0px;
}

.navbar-collapse ul li>a {
    color: var(--menu);
    padding: 40px 0;
    font-size: 18px;
    font-weight: 500;
    position: relative;
    z-index: 9;
    text-transform: uppercase;
}

.navbar-collapse ul li.active>a,
.navbar-collapse ul li:hover>a {
    color: var(--black);
}

.navbar-collapse ul li>a:before {
    position: absolute;
    left: 0;
    top: 100%;
    background: #af00ff;
    content: '';
    height: 0px;
    width: 0px;
    z-index: -1;
    transition: all .4s;
}
.navbar-collapse ul li>ul.dropdown-menu li a.dropdown-item::before {
    left: 95%;
    background: #3f74f573;
}

.navbar-collapse ul li.active>a:before,
.navbar-collapse ul li:hover>a:before {
    height: 2px;
    width: 100%;
    z-index: -1;
    transition: all .4s;
}

.navbar-text {
    padding: 13px 0;
    margin-left: 90px;
}

.navbar-text ul {
    list-style: none;
    display: flex;
    align-items: center;
}

.navbar-text ul li {
    margin-right: 9px;
    position: relative;
    z-index: 9;
}

.navbar-text ul li a {
    display: inline-block;
    height: 36px;
    width: 36px;
    line-height: 36px;
    text-align: center;
}

.navbar-text ul li:hover a img {
    filter: brightness(0) invert(0);
    transition: all .3s;
}

.navbar-text ul li:before {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--blue);
    height: 0px;
    width: 0px;
    border-radius: 50%;
    content: '';
    z-index: -1;
    transition: all .4s;
}

.navbar-text ul li:hover::before {
    position: absolute;
    left: 0;
    top: 100%;
    background: var(--blue);
    content: '';
    height: 0px;
    width: 0px;
    z-index: -1;
    transition: all .4s;
}

.navbar-text ul li:last-child {
    margin-right: 0px;
}

.navbar-text ul li a img {
    width: auto;
    height: 14px;
}

.navbar-collapse ul li>ul {
    position: absolute;
    min-width: 200px;
    z-index: 99;
    background: #dedede;
    top: 100%;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(30px);
    transition: all .4s
}

.navbar-collapse ul li:hover>ul {
    opacity: 1;
    visibility: visible;
    transform: translateY(0px);
    transition: all .4s;
}

.navbar-collapse ul li>ul>li>a {
    display: inline-block;
    padding: 5px 10px;
}

/*---   HEADER END   ---*/

/*---   BANNER START   ---*/

.bannerarea {
    position: relative;
}

.bannerinfo {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    transform: translateY(-50%);
}
.bd_banner {
    position: relative;
    padding-top: 50%;
    background: #000;
}

.bd_banner img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    opacity: ;
}
.bannertxt{
    width: 70%;
    margin: auto;
    text-align: center;
}

.bannertxt h2, .bannertxt h1, .bannertxt h3, .bannertxt h4 {
    color: #ffffff;
    font-size: 80px;
    line-height: 80px;
    margin-bottom: 20px;
    font-weight: 700;
    text-transform: uppercase;
}
.bannertxt p{
    font-size: 24px;
    line-height: 30px;
    color: #fff;
}

.banner-home{
    position: relative;
    background: #f5f5f5;
    padding: 50px 0;
}

.banner-content-wrap {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    z-index: 1;
}

.banner-content {
    width: fit-content;
    max-width: 570px;
    margin: auto auto;
    text-align: center;
    color: var(--white);
    margin-bottom: 50px;
}

.banner-content h1,
.banner-content h2,
.banner-content h3 {
    font-family: var(--heading);
    font-size: 52px;
    line-height: 62px;
    margin-bottom: 15px;
}

.banner-content p {
    max-width: 470px;
    margin: 0 auto;
}

/*Banner 2*/

.banner2 {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.banner2 .bannerinfo {
    position: relative;
    top: inherit;
    transform: translate(0);
    left: inherit;
    flex: 0 0 50%;
    max-width: 50%;
}

.banner2 .bd_bannerimg {
    flex: 0 0 50%;
    max-width: 50%;
}

.banner2 .bd_banner {
    padding-top:68%;
}

.banner2 .bannerinfo .bannertxt {
    width: 100%;
    text-align: left;
    padding-right: 10%;
    word-break: break-all;
}
.banner2 .bannerinfo .bannertxt h2, .banner2 .bannerinfo .bannertxt h1, .banner2 .bannerinfo .bannertxt h3, .banner2 .bannerinfo .bannertxt h4 {
    color: #430062;
    font-size: 50px;
    line-height: 55px;
    margin-bottom: 20px;
    font-weight: 700;
    text-transform: uppercase;
}
.banner2 .bannerinfo .bannertxt p {
    color: #000;
}
.banner2 .bannerinfo .bannertxt p strong{
    color: #430062;
}
.banner_logo{
    margin-top: 20px;
}
.banner_logo li+li {
    margin-left: 12px;
}

.banner_logo li img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.banner_logo li {
    width: 250px;
    height: auto;
}

/*---   BANNER END   ---*/


/*--- About Home Start ---*/

.query-home {
    position: relative;
}
.query-text {
    color: var(--black);
    z-index: 9;
    padding:0 100px;
}
/*--- About Home End ---*/

.bluebg{
    background: #63cdf6;
}


.navbar-collapse ul li>ul.dropdown-menu li {

    margin: 0;

}



.navbar-collapse ul li>ul.dropdown-menu li a.dropdown-item {

    padding: 10px;

}





/*--- Article Start ---*/

/* #blog_slider .owl-stage-outer {

    padding: 20px;

} */

.article-wrap {

    box-shadow: 0px 3px 6px #0000001C;

    padding: 15px;

}



.article-content p.article-date {

    color: var(--light-gray);

    font-size: 12px;

    font-style: italic;

    margin-bottom: 2px;

    padding: 0px;

}



.article-content h6 {

    color: var(--black);

    font-size: 14px;

    line-height: 20px;

    font-weight: 600;

    overflow: hidden;

    text-overflow: ellipsis;

    white-space: nowrap;

}



.article-content {

    padding: 15px 5px 10px;

}



.article-image {

    height: 250px;

}



.article-image img {

    height: 100%;

    width: 100%;

    object-fit: cover;

}



.article-content .btn {

    margin-top: 0px;

}





.blogslider .owl-nav {

    position: absolute;

    top: 50%;

    left: 0;

    width: 100%;

    transform: translateY(-50%);

    display: flex;

    justify-content: space-between;

}



.blogslider .owl-nav button {

    width: 30px;

    height: 30px;

    background: #3f74f5 !important;

    color: #fff !important;

    outline: none;

}

/*--- Article End ---*/

.consec {
    background: #dce5ff;
}
.mapsec iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 52%;
    height: 100%;
    object-fit: cover;
}

.form-content {
    padding: 70px 0;
}
.form-content h2 {
    letter-spacing: 0;
    margin-bottom: 0;
}
.form-content p {
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
}
.form-wrap .btn {
    color: #fff;
    background-color: #3671ef;
}

.form-wrap .btn:hover {
    background-color: #1c1c1c;
}

.form-wrap .row {
    margin: 0 -8px -16px;
}
.form-wrap .row [class*="col-"] {
    padding: 0 8px;
    margin-bottom: 16px;
}
.form-wrap .form-control {
    background-color: rgb(255 255 255 / 60%);
    border-color: #95aae9;
    padding-left: 24px;
}
.form-wrap .form-control::placeholder {
    color: #1c1c1c;
}
.form-wrap textarea.form-control {
    height: 140px;
    padding-top: 20px;
}


/*--  Footer Start  --*/

.footer-main {
    background: #fff;
    border-top: 1px solid #dfdfdf;
}
.footer-link-wrapper {
    padding: 50px 0 0;
}
.ft-logo a {
    background: #fff;
}

.ft-logo a img {
    width: auto;
    height: 80px;
}
.ft-logo p {
    font-size: 18px;
    line-height: 26px;
    margin-top: 16px;
}

.quick-link-box h5 {
    font-size: 20px;
    text-transform: uppercase;
    font-weight: 700;
    padding-bottom: 10px;
}
.quick-link-box p{
    font-size: 13px;
    line-height: 20px;
}
.contact-book .headsocial {
    margin-top: 30px;
}

.quick-link-box ul {
    list-style: none;
}

.quick-link-box ul li {  
    font-size: 12px;
}
.quick-link-box ul li+li{
    margin-top: 5px;
}

.quick-link-box ul li a {
    color: var(--dark);
    text-transform: uppercase;
    font-weight: 500;
    font-size: 15px;
}

.ft-social {
    margin-top: 15px;
}

.footer-main .row [class*="col-"] {
    position: relative;
}

.ft-social ul {
    list-style: none;
}

.ft-social ul li {
    margin-right: 12px;
    position: relative;
    z-index: 9;
}

.ft-social ul li:last-child {
    margin-right: 0px;
}

.ft-social ul li a {
    height: 28px;
    width: 28px;
    line-height: 26px;
    border-radius: 50%;
    text-align: center;
    display: inline-block;
    transition: all .4s;
    -webkit-transition: all .4s;
   -o-transition: all .4s;
    -ms-transition: all .4s;
    -moz-transition: all .4s;
}

.ft-social ul li a img {
    height: 16px;
}

.ft-social ul li a:before {
    position: absolute;
    background: var(--blue);
    width: 0px;
    height: 0px;
    content: '';
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    z-index: -1;
    transition: all .4s;
    -webkit-transition: all .4s;
    -o-transition: all .4s;
    -ms-transition: all .4s;
    -moz-transition: all .4s;
}

.ft-social ul li a:hover::before {
    width: 32px;
    height: 32px;
    transition: all .4s;
    -webkit-transition: all .4s;
    -o-transition: all .4s;
    -ms-transition: all .4s;
    -moz-transition: all .4s;
}

.copy-right {
    background: #fff;
    padding: 15px 0;
    margin-top: 30px;
}

.copy-right p {
    line-height: 13px;
    font-size: 13px;
    color: rgb(33 52 56 / 66%);
    font-weight: 500;
}

.copy-right p a {
    color: #213438;
}

.contact-book ul li {
    position: relative;    
    color: var(--dark);
    font-weight: 500;
}

.contact-book ul li a i {
    
    color: #650094;
    position: absolute;
    top: 6px;
    left: 0;
}

.contact-book ul li a {
    text-transform: none;
    position: relative;
    padding-left: 25px;
}

/*--  Footer End  --*/

.aboutimg {
    height: 100%;
}

.aboutimg img {
    object-fit: cover;
}

.nav-tabs .nav-link {
    cursor: pointer;
}
/*.nav-tabs .nav-link.active {
    padding: 0;
}*/

.nav-tabs .nav-link.active .programs_box {
    background: white;
    border-color: #430062;
}

.sectow:nth-child(even) .row .sectowimg {
    order: 1;
}

.programhead {
    padding: 40px 0;
}