
:root {
    --primary: #F3BD00;
    --secondary: #757575;
    --light: #F3F6F8;
    --dark: #0C2B4B;
}

.section-header {
    text-align: center;
    padding-bottom: 20px;
}

.section-header h2 {
    font-size: 32px;
    font-weight: 700;
    position: relative;
   color:#6a4d6a !important;
}
.section-header h2:before {
    margin: 0 15px 10px 0;
}
.section-header h2:before, .section-header h2:after {
    content: "";
    width: 50px;
    height: 2px;
    background: #000;
    display: inline-block;
}


.py-6 {
    padding-top: 6rem;
    padding-bottom: 6rem;
}

.my-6 {
    margin-top: 6rem;
    margin-bottom: 6rem;
}
.topspace{
    margin-top: 6rem;
    margin-bottom: 6rem;
}

@media only screen and (max-width:700px){
    .topspace{
        margin-top: 1rem;
        margin-bottom: 1rem;
    }
}

.my-2{
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 30px;
    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-weight: 500;
    transition: .5s;
}

.btn.btn-primary,
.btn.btn-outline-primary:hover {
    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;
}


/*** Navbar ***/
.navbar.sticky-top {
    top: -100px;
    transition: .5s;
}

.navbar .navbar-brand,
.navbar a.btn {
    height: 80px
}

.navbar .navbar-nav .nav-link {
    margin-right: 30px;
    padding: 25px 0;
    color: var(--dark);
    font-weight: 500;
    text-transform: uppercase;
    outline: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--primary);
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

@media (max-width: 991.98px) {
    .navbar .navbar-nav .nav-link  {
        margin-right: 0;
        padding: 10px 0;
    }

    .navbar .navbar-nav {
        border-top: 1px solid #EEEEEE;
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}


/*** Header ***/
.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    /*background: rgba(0, 0, 0, .75);*/	
    z-index: 1;
}

.carousel-control-prev,
.carousel-control-next {
    width: 15%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
    background-color: var(--primary);
    border: 10px solid var(--primary);
}
.img-fluid {
    max-width: 100%;
    height: 200px;
    object-fit: cover;
}
@media (max-width: 968px){

    .img-fluid {
        max-width: 100%;
        height: auto;
        object-fit: cover;
    }

}

@media (max-width: 768px) {
    #header-carousel .carousel-item {
        position: relative;
        min-height: 175px;
    }

    
    #header-carousel .carousel-item img {
        position: absolute;
        width: 100%;
        object-fit: cover;
    }
.hidden-sm{display:none;}
h1.display-2.text-dark.mb-5.slideInDown{font-size: 30px;}
}

.page-header {
    background: linear-gradient(rgba(0, 0, 0, .75), rgba(0, 0, 0, .75)), url(https://assets.thehansindia.com/hansindia-bucket/UGC_1488.jpg) center center no-repeat;
    background-size: cover;
}

.breadcrumb-item+.breadcrumb-item::before {
    color: #999999;
}


/*** Facts ***/
@media (min-width: 991.98px) {
    .facts {
        position: relative;
        margin-top: -75px;
        z-index: 1;
    }
}


/*** Courses ***/
.courses {
    min-height: 100vh;
    background: linear-gradient(#e9ecef, rgba(255, 255, 255, .9)), url(https://www.universityonlineadmission.com/img/online%20admission%20banner-3.jpg) center center no-repeat;
    background-attachment: fixed;
    background-size: cover;
}

 .dots {
   
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: url(https://civilindiainfra.com/assets/img/bg-dots.png) 0 0 repeat;
    z-index: -1;
}
.courses-item .courses-overlay {
    position: absolute;
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, .5);
    overflow: hidden;
    opacity: 0;
    transition: .5s;
}

.courses-item:hover .courses-overlay {
    height: 100%;
    opacity: 1;
}



@media only screen and (max-width:450px){
   .dots h2{
    font-size: 25px;
   }
   .section-header .heading{
    font-size: 25px;
   }
   h1.display-2.text-dark.mb-5.slideInDown{font-size: 26px;}
   
}


/*** Team ***/
.team-items {
    margin: -.75rem;
}

.team-item {
    padding: .75rem;
}

.team-item::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    background: #FFFFFF;
    transition: .5s;
    z-index: -1;
}

.team-item:hover::after {
    height: 100%;
    background: var(--primary);
}

.team-item .team-social {
    position: absolute;
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, .75);
    overflow: hidden;
    opacity: 0;
    transition: .5s;
}

.team-item:hover .team-social {
    height: 100%;
    opacity: 1;
}


/*** Testimonial ***/
.testimonial-carousel .owl-dots {
    height: 40px;
    margin-top: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 20px;
    height: 20px;
    background: transparent;
    border: 2px solid var(--primary);
    transition: .5s;
}

.testimonial-carousel .owl-dot.active {
    width: 40px;
    height: 40px;
    background: var(--primary);
}

.testimonial-carousel .owl-item img {
    width: 150px;
    height: 150px;
}


/*** Footer ***/
.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: var(--light);
    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;
    color: var(--light);
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    color: var(--primary);
    letter-spacing: 1px;
    box-shadow: none;
}

.copyright {
    background: #092139;
}

.copyright a {
    color: var(--primary);
}

.copyright a:hover {
    color: var(--light);
}
.bg-dark {
    background-color: #6a4d6a !important;
}
.text-justify{text-align:justify;}
span.text-justify{text-align:justify;}
.bg-primary{background-color:#6a4d6a !important;}
p.hspace {
    padding: 10px;
}
.extraspace{padding-top:40px;}
span.mbbs{background:#6a4d6a;color:#fff;padding:5px;}
.service-item {
    min-height:185px;
    background-color: #fff;
    padding: 10px;
    margin-top: 10px;
    border: 1px solid rgb(189, 96, 39);
    transition: all .2s ease-in-out;
    text-align: center;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    

}

.service-item h3 {
    margin: 0.5rem;
}

@media (min-width: 768px){
    .services-list .col-md-6 {
        flex: 0 0 auto;
        width: 50%;
        padding-top: 15px;
    }
   
}

@media only screen and (max-width:600px){
    .service-item{
        min-height:140px;
    }
    .extraspace{
        padding-top: 0px;
    }
}



/* ============================================================== 
     # Our Mission
=================================================================== */

.our-mission .item {
  -moz-box-shadow: 0 4px 15px 0 rgba(0, 0, 0, 0.06);
  -webkit-box-shadow: 0 4px 15px 0 rgba(0, 0, 0, 0.06);
  -o-box-shadow: 0 4px 15px 0 rgba(0, 0, 0, 0.06);
  box-shadow: 0 4px 15px 0 rgba(0, 0, 0, 0.06);
  padding: 40px 40px 64px;
}

.our-mission .mission-items .owl-stage-outer {
  margin: 0 -15px;
  padding: 15px;
}

.our-mission .item > i {
  background: #bf3654 none repeat scroll 0 0;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  color: #ffffff;
  display: inline-block;
  font-size: 50px;
  height: 100px;
  line-height: 100px;
  margin-bottom: 30px;
  text-align: center;
  width: 100px;
}

.our-mission .item h4 {
  font-weight: 600;
  text-transform: capitalize;
}

.our-mission .item a {
  color: #bf3654;
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
}

.our-mission .item a:hover {
  color: #232323;
}

.our-mission .mission-items .owl-dots {
  margin-top: 30px !important;
  margin-bottom: -10px;
}

.our-mission .mission-items .owl-dots .owl-dot span {
  background: #ffffff none repeat scroll 0 0;
  border: 3px solid #232323;
  height: 15px;
  margin: 0 5px;
  padding: 0;
  width: 15px;
}

.our-mission .mission-items .owl-dots .owl-dot.active span,
.our-mission .mission-items .owl-dots .owl-dot:hover span {
  border-color: #bf3654;
}

.our-mission .item {
    -moz-box-shadow: 0 4px 15px 0 rgba(0, 0, 0, 0.06);
    -webkit-box-shadow: 0 4px 15px 0 rgba(0, 0, 0, 0.06);
    -o-box-shadow: 0 4px 15px 0 rgba(0, 0, 0, 0.06);
    box-shadow: 0 4px 15px 0 rgba(0, 0, 0, 0.06);
    padding: 67px 40px 64px;
}

/* sticky icon */

.icon-bar {
    position: fixed;
    top: 50%;
    right:0%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    z-index:100;
  }
  
  .icon-bar a {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 16px;
    transition: all 0.3s ease;
    color: white;
    font-size: 20px;
    width:40px;
    height:40px;
    overflow: hidden;
  }
  /* .icon-bar a span{
    overflow: hidden;
  } */
  .icon-bar .whatsapp{
    background-color: green;
    font-size: 1.5rem;
  }
  .icon-bar .envelope{
    font-size: 1.5rem;
    background-color: #0e76a8;
  }
  .icon-bar .phone{
    font-size: 1.5rem;
    background-color: red;
  }
  .icon-bar .quote{
    font-size: 1.5rem;
    background-color: #fdbe33;
  }
  .icon-bar .whatsapp:hover {
    background-color: rgb(6, 139, 6);
  }
  .icon-bar .envelope:hover {
    background-color: #1a84b5;
  }
  .icon-bar .phone:hover {
    background-color: rgb(233, 53, 53);
  }
  .icon-bar .quote:hover{
    font-size: 1.5rem;
    background-color: #f8c453;
  }
  /*  sticky icon */


    /* get quate section */

.get-quote  .modal-dialog {
    display: flex;
    justify-content: center;
    align-items: center;  
}

.get-quote .modal-content {
    position: relative;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 80%;
    pointer-events: auto;
    background-color: #fff;
    background-clip: padding-box;
    outline: 0;
}
.get-quote .modal-header {
    display: flex;
    align-items: center;
    justify-content: end;
    padding: 0;
}
.get-quote h5{
    margin-bottom: 0%;
}

.modal-title{
   font-size: 20px;
   text-transform: capitalize;
   font-weight: 600; 
}
.get-quote .modal-body{
    padding: 10px;
}

.form-modal {
    padding: 1vw 1.5vw;
}

.get-quote .form-control{
    border-radius: 0%;
}
.modal-content input {
font-size: 14px;
border-top: none;
border-left: none;
border-right: none;
color: #000000;
border-radius: 0px;
}
.modal-content textarea {
font-size: 14px;
border-top: none;
border-left: none;
border-right: none;
color: #000000;
border-radius: 0px;
}
.modal-content input:focus{
box-shadow: none;
}
.modal-content textarea:focus{
box-shadow: none;
}

textarea .form-control {
height: auto;
}

.micro-form-btn{
background: none;
border: none;
font-size:0.8rem; 
width: 100%;
background-color: #6a4d6a;
color: #ffffff;
}
.micro-form-btn:hover{
background-color: #7a547a;
color: #ffffff;
}
.modal-call-btn{
text-align: center;
}
.modal-call-btn {
display: block;
background-color: #fdbe33;
color: #ffffff;
padding: 0.5vw 0;
text-decoration: none;
border: 1px solid #fdbe33;
}
.modal-call-btn:hover{
color: #ffffff;
background-color: #e1a524;
}
.modal-body{
border: none;
}
.close {
color: black;
outline: none;
border: none;
background: none;
}
.close:focus {
outline: none;
border: none;
}

/* /get quote */