@import url('https://fonts.googleapis.com/css2?family=Great+Vibes&family=Pinyon+Script&display=swap');





/********** Template CSS **********/
:root {
    --primary: #06A3DA;
    --secondary: #34AD54;
    --light: #EEF9FF;
    --dark: #091E3E;
}


/*** Spinner ***/
.spinner {
    width: 40px;
    height: 40px;
    background: var(--primary);
    margin: 100px auto;
    -webkit-animation: sk-rotateplane 1.2s infinite ease-in-out;
    animation: sk-rotateplane 1.2s infinite ease-in-out;
}

@-webkit-keyframes sk-rotateplane {
    0% {
        -webkit-transform: perspective(120px)
    }
    50% {
        -webkit-transform: perspective(120px) rotateY(180deg)
    }
    100% {
        -webkit-transform: perspective(120px) rotateY(180deg) rotateX(180deg)
    }
}

@keyframes sk-rotateplane {
    0% {
        transform: perspective(120px) rotateX(0deg) rotateY(0deg);
        -webkit-transform: perspective(120px) rotateX(0deg) rotateY(0deg)
    }
    50% {
        transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg);
        -webkit-transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg)
    }
    100% {
        transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
        -webkit-transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
    }
}

#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;
}


/*** Heading ***/
h1,
h2,
.fw-bold {
    font-weight: 800 !important;
}

h3,
h4,
.fw-semi-bold {
    font-weight: 700 !important;
}

h5,
h6,
.fw-medium {
    font-weight: 600 !important;
}


/*** Button ***/
.btn {
    font-family: 'Nunito', sans-serif;
    font-weight: 600;
    transition: .5s;
}

.btn-primary,
.btn-secondary {
    color: #FFFFFF;
    box-shadow: inset 0 0 0 50px transparent;
}

.btn-primary:hover {
    box-shadow: inset 0 0 0 0 var(--primary);
}

.btn-secondary:hover {
    box-shadow: inset 0 0 0 0 var(--secondary);
}

.btn-square {
    width: 36px;
    height: 36px;
}

.btn-sm-square {
    width: 30px;
    height: 30px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding-left: 0;
    padding-right: 0;
    text-align: center;
}


/*** Navbar ***/
.navbar-dark .navbar-nav .nav-link {
    font-family: 'Nunito', sans-serif;
    position: relative;
    margin-left: 25px;
    padding: 27px 0;
    color: #FFFFFF;
    font-size: 18px;
    font-weight: 600;
    outline: none;
    transition: .5s;
}

.sticky-top.navbar-dark .navbar-nav .nav-link {
    padding: 20px 0;
    color: var(--dark);
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
    color: var(--primary);
}

.navbar-dark .navbar-brand h1 {
    color: #FFFFFF;
}

.navbar-dark .navbar-toggler {
    color: var(--primary) !important;
    border-color: var(--primary) !important;
}

@media (max-width: 991.98px) {
    .sticky-top.navbar-dark {
        position: relative;
        background: #FFFFFF;
    }

    .navbar-dark .navbar-nav .nav-link,
    .navbar-dark .navbar-nav .nav-link.show,
    .sticky-top.navbar-dark .navbar-nav .nav-link {
        padding: 10px 0;
        color: var(--dark);
    }

    .navbar-dark .navbar-brand h1 {
        color: var(--primary);
    }
}

@media (min-width: 992px) {
    .navbar-dark {
        position: absolute;
        width: 100%;
        top: 0;
        left: 0;
        border-bottom: 1px solid rgba(256, 256, 256, .1);
        z-index: 999;
    }
    
    .sticky-top.navbar-dark {
        position: fixed;
        background: #FFFFFF;
    }

    .navbar-dark .navbar-nav .nav-link::before {
        position: absolute;
        content: "";
        width: 0;
        height: 2px;
        bottom: -1px;
        left: 50%;
        background: var(--primary);
        transition: .5s;
    }

    .navbar-dark .navbar-nav .nav-link:hover::before,
    .navbar-dark .navbar-nav .nav-link.active::before {
        width: 100%;
        left: 0;
    }

    .navbar-dark .navbar-nav .nav-link.nav-contact::before {
        display: none;
    }

    .sticky-top.navbar-dark .navbar-brand h1 {
        color: var(--primary);
    }
}


/*** Carousel ***/
.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(9, 30, 62, .7);
    z-index: 1;
}

@media (max-width: 576px) {
    .carousel-caption h5 {
        font-size: 14px;
        font-weight: 500 !important;
    }

    .carousel-caption h1 {
        font-size: 30px;
        font-weight: 600 !important;
    }
}

.carousel-control-prev,
.carousel-control-next {
    width: 10%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
}


/*** Section Title ***/
.section-title::before {
    position: absolute;
    content: "";
    width: 150px;
    height: 5px;
    left: 0;
    bottom: 0;
    background: var(--primary);
    border-radius: 2px;
}

.section-title.text-center::before {
    left: 50%;
    margin-left: -75px;
}

.section-title.section-title-sm::before {
    width: 90px;
    height: 3px;
}

.section-title::after {
    position: absolute;
    content: "";
    width: 6px;
    height: 5px;
    bottom: 0px;
    background: #FFFFFF;
    -webkit-animation: section-title-run 5s infinite linear;
    animation: section-title-run 5s infinite linear;
}

.section-title.section-title-sm::after {
    width: 4px;
    height: 3px;
}

.section-title.text-center::after {
    -webkit-animation: section-title-run-center 5s infinite linear;
    animation: section-title-run-center 5s infinite linear;
}

.section-title.section-title-sm::after {
    -webkit-animation: section-title-run-sm 5s infinite linear;
    animation: section-title-run-sm 5s infinite linear;
}

@-webkit-keyframes section-title-run {
    0% {left: 0; } 50% { left : 145px; } 100% { left: 0; }
}

@-webkit-keyframes section-title-run-center {
    0% { left: 50%; margin-left: -75px; } 50% { left : 50%; margin-left: 45px; } 100% { left: 50%; margin-left: -75px; }
}

@-webkit-keyframes section-title-run-sm {
    0% {left: 0; } 50% { left : 85px; } 100% { left: 0; }
}


/*** Service ***/
.service-item {
    position: relative;
    height: 300px;
    padding: 0 30px;
    transition: .5s;
}

.service-item .service-icon {
    margin-bottom: 30px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    border-radius: 2px;
    transform: rotate(-45deg);
}

.service-item .service-icon i {
    transform: rotate(45deg);
}

.service-item a.btn {
    position: absolute;
    width: 60px;
    bottom: -48px;
    left: 50%;
    margin-left: -30px;
    opacity: 0;
}

.service-item:hover a.btn {
    bottom: -24px;
    opacity: 1;
}



/*** Team ***/
.team-item {
    transition: .5s;
}

.team-social {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .5s;
}

.team-social a.btn {
    position: relative;
    margin: 0 3px;
    margin-top: 100px;
    opacity: 0;
}

.team-item:hover {
    box-shadow: 0 0 30px #DDDDDD;
}

.team-item:hover .team-social {
    background: rgba(9, 30, 62, .7);
}

.team-item:hover .team-social a.btn:first-child {
    opacity: 1;
    margin-top: 0;
    transition: .3s 0s;
}

.team-item:hover .team-social a.btn:nth-child(2) {
    opacity: 1;
    margin-top: 0;
    transition: .3s .05s;
}

.team-item:hover .team-social a.btn:nth-child(3) {
    opacity: 1;
    margin-top: 0;
    transition: .3s .1s;
}

.team-item:hover .team-social a.btn:nth-child(4) {
    opacity: 1;
    margin-top: 0;
    transition: .3s .15s;
}

.team-item .team-img img,
.blog-item .blog-img img  {
    transition: .5s;
}

.team-item:hover .team-img img,
.blog-item:hover .blog-img img {
    transform: scale(1.15);
}


/*** Miscellaneous ***/
@media (min-width: 991.98px) {
    .facts {
        position: relative;
        margin-top: -75px;
        z-index: 1;
    }
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}

.bg-header {
    background: linear-gradient(rgba(9, 30, 62, .7), rgba(9, 30, 62, .7)), url(../img/banner-image-all-sections.jpg) center center no-repeat;
    background-size: cover;
    margin-top: 80px;
    height: 55vh;
    display: flex;
    justify-content: center;
    align-items: center;
    
}

.link-animated a {
    transition: .5s;
}

.link-animated a:hover {
    padding-left: 10px;
}

@media (min-width: 767.98px) {
    .footer-about {
        margin-bottom: -75px;
    }
}

.block-on-sm-md {
    display: none;
}





/* enter-prenium-card */
.enter-prenium-card{
    height: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.prasad-olutions-logo-image{
    height: 70px;
}





/* about page education and experience */

/******* Section Header ********/
/*******************************/
.section-header {
    position: relative;
    margin-bottom: 45px;
}

.section-header p {
    display: inline-block;
    margin: 0 30px;
    margin-bottom: 10px;
    padding-left: 15px;
    position: relative;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    background: #ffffff;
}

.section-header p::before {
    position: absolute;
    content: "";
    height: 3px;
    top: 11px;
    right: 0;
    left: -30px;
    background: #EF233C;
    z-index: -1;
}

.section-header p::after {
    position: absolute;
    content: "";
    width: 3px;
    height: 3px;
    top: 11px;
    left: 3px;
    background: #EF233C;
    z-index: 1;
}

.section-header h2 {
    margin: 0;
    position: relative;
    font-size: 45px;
    font-weight: 700;
}

@media (max-width: 767.98px) {
    .section-header h2 {
        font-size: 30px;
    }
}


/*******************************/
/******* Experience CSS ********/
/*******************************/
.experience {
    position: relative;
    padding: 15px 0 15px 0;
}

.experience .timeline {
    position: relative;
    width: 100%;
}

.experience .timeline::after {
    content: '';
    position: absolute;
    width: 2px;
    background: #EF233C;
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -1px;
}

.experience .timeline .timeline-item {
    position: relative;
    background: inherit;
    width: 50%;
    margin-bottom: 30px;
}

.experience .timeline .timeline-item.left {
    left: 0;
    padding-right: 30px;
}

.experience .timeline .timeline-item.right {
    left: 50%;
    padding-left: 30px;
}

.experience .timeline .timeline-item::after {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    top: 48px;
    right: -8px;
    background: #ffffff;
    border: 2px solid #EF233C;
    border-radius: 16px;
    z-index: 1;
}

.experience .timeline .timeline-item.right::after {
    left: -8px;
}

.experience .timeline .timeline-item::before {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  top: 46px;
  right: 10px;
  z-index: 1;
  border: 10px solid;
  border-color: transparent transparent transparent #06A3DA;
}

.experience .timeline .timeline-item.right::before {
  left: 10px;
  border-color: transparent #06A3DA transparent transparent;
}

.experience .timeline .timeline-date {
    position: absolute;
    width: 100%;
    top: 44px;
    font-size: 16px;
    font-weight: 600;
    color: #EF233C;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 1;
}

.experience .timeline .timeline-item.left .timeline-date {
    text-align: left;
    left: calc(100% + 55px);
}

.experience .timeline .timeline-item.right .timeline-date {
    text-align: right;
    right: calc(100% + 55px);
}

.experience .timeline .timeline-text {
    padding: 30px;
    background: #ffffff;
    position: relative;
    border-right: 5px solid #06A3DA;
    box-shadow: 0 0 60px rgba(0, 0, 0, .08);
}

.experience .timeline .timeline-item.right .timeline-text {
    border-right: none;
    border-left: 5px solid #06A3DA;
}

.experience .timeline .timeline-text h2 {
    margin: 0 0 5px 0;
    font-size: 22px;
    font-weight: 600;
}

.experience .timeline .timeline-text h4 {
    margin: 0 0 10px 0;
    font-size: 16px;
    font-style: italic;
    font-weight: 400;
}

.experience .timeline .timeline-text p {
    margin: 0;
    font-size: 16px;
}

@media (max-width: 767.98px) {
    .experience .timeline::after {
        left: 8px;
    }

    .experience .timeline .timeline-item {
        width: 100%;
        padding-left: 38px;
    }
    
    .experience .timeline .timeline-item.left {
        padding-right: 0;
    }
    
    .experience .timeline .timeline-item.right {
        left: 0%;
        padding-left: 38px;
    }

    .experience .timeline .timeline-item.left::after, 
    .experience .timeline .timeline-item.right::after {
        left: 0;
    }
    
    .experience .timeline .timeline-item.left::before,
    .experience .timeline .timeline-item.right::before {
        left: 18px;
        border-color: transparent #dddddd transparent transparent;
    }
    
    .experience .timeline .timeline-item.left .timeline-date,
    .experience .timeline .timeline-item.right .timeline-date {
        position: relative;
        top: 0;
        right: auto;
        left: 0;
        text-align: left;
        margin-bottom: 10px;
    }
    
    .experience .timeline .timeline-item.left .timeline-text,
    .experience .timeline .timeline-item.right .timeline-text {
        border-right: none;
        border-left: 5px solid #dddddd;
    }
}






/*** Destination Start ***/
.destination .tab-class .tab-content .tab-pane .destination-img {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    z-index: 1;
}

.destination .tab-class .tab-content .tab-pane .destination-img .destination-overlay {
    position: absolute;
    bottom: -100%;
    left: 0;
    z-index: 3;
    transition: 0.5s;
}

.destination .tab-class .tab-content .tab-pane .destination-img .search-icon {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    display: flex;
    justify-content: end;
    padding: 20px 20px 0 0;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    transition: 0.5s;

}

.destination .tab-class .tab-content .tab-pane .destination-img .search-icon a i {
    opacity: 0;
    transition: 0.5s;
}

.destination .tab-class .nav-item {
    padding: 0 0 20px 0;
}
.destination .tab-class .nav-item a.active {
    background: var(--bs-primary) !important;
}

.destination .tab-class .nav-item a.active span {
    color: var(--bs-white) !important;
}

.destination .tab-class .tab-content .destination-img:hover .search-icon {
    background: rgba(19, 53, 123, 0.4);
}

.destination .tab-class .tab-content .destination-img:hover .destination-overlay {
    bottom: 0;
}

.destination .tab-class .tab-content .destination-img:hover .search-icon a i {
    opacity: 1;
}

.destination .tab-class .tab-content .destination-img img {
    transition: 0.5s;
}

.destination .tab-class .tab-content .destination-img:hover img {
    transform: scale(1.2);
}
/*** Destination End ***/




/* custome css */

@media (min-width: 992px) {
    .block-on-sm-md {
        display: block;
    }
}

.top-navbar-bg{
    background: #061429;
}
.navbar-dark{
    background-color:  #27385a;
}
.bg-dark{
    background-color:  #27385a !important;
}

.btn-square, .btn-sm-square, .btn-lg-square {
    /* padding-left: 0px; */
    /* padding-right: 0px; */
    text-align: center;
    border-radius: 3px;
    font-size: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}
.navbar-dark .navbar-nav .nav-link:hover, .navbar-dark .navbar-nav .nav-link.active {
    color: #EF233C;
}


.home-banner-bg {
    background-color: black;
    height: 80vh; /* Adjust as needed */
    color: #ffffff; /* Text color on top of the image */
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 80px;
}
.home-banner-card1{
    width: 26%;
    height: 100%;
    background-image: url("/img/Dr.\ Hari\ Prasad_Photo.png");
    background-size: cover;
    background-position: center;
}
.home-banner-card2{
    width: 50%;
    height: 100%;
    background-color: black;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.home-banner-text{
    font-family: "Pinyon Script", cursive;
    font-weight: 400;
    font-style: normal;
    color: #fff;
    font-size: 4rem;
}
.sm-pt{
    padding: 20px 0px !important;
}

.about-page-btns{
    width: 33.3334%;
}
.about-page-board-main {
    display: flex;
    flex-wrap: wrap;
    gap: 20px; /* Adjust the gap between items as needed */
}

.about-page-board-positon {
    background-color: #ffffff; /* Background color for each board position */
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); /* Add shadow for a subtle effect */
    flex: 1 0 100%; /* Initially, items take full width */
    transition: transform 0.3s ease-in-out; /* Add transition for smooth hover effect */
    border-left: 4px solid rgb(6, 163, 218) ; /* Add normal left border */
}

.board-positon-text {
    margin: 0;
    color: #2b3857;
    
    font-size: 17px;
}

@media (min-width: 768px) {
    .about-page-board-positon {
        flex: 1 0 calc(50% - 20px); /* On medium and larger devices, items take 50% width with gap */
    }
}

@media (min-width: 992px) {
    .about-page-board-positon {
        flex: 1 0 calc(50% - 20px); /* On large devices, items still take 50% width with gap */
    }
}

.about-page-board-positon:hover {
    transform: translateY(-5px); /* Apply a slight upward translation on hover */
}

/* Additional hover effect for text */
.about-page-board-positon:hover .board-positon-text {
    color: rgb(239, 35, 60); /* Change text color on hover */
}
.about-page-board-positon:hover {
    transform: translateY(-5px); /* Apply a slight upward translation on hover */
    border-left-color: rgb(239, 35, 60); /* Change left border color on hover */
}



/*** 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;
}

.testimonial-carousel-shadow::before{
    background: none;
}
.testimonial-carousel-shadow::after{
    background: none;
}
@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-nav {
    position: absolute;
    width: 350px;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: space-between;
    opacity: 0;
    transition: .5s;
    z-index: 1;
}

.testimonial-carousel:hover .owl-nav {
    width: 300px;
    opacity: 1;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    position: relative;
    color: var(--primary);
    font-size: 45px;
    transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    color: var(--dark);
}

.testimonial-carousel .testimonial-img img {
    width: 100px;
    height: 100px;
}

.testimonial-carousel .testimonial-img .btn-square {
    position: absolute;
    bottom: -19px;
    left: 50%;
    transform: translateX(-50%);
}

.testimonial-carousel .owl-item .testimonial-text {
    margin-bottom: 30px;
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
    transform: scale(.8);
    transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-text {
    transform: scale(1);
}


/*** Testimonial ***/
.testimonial-carousel .owl-item .testimonial-text {
    margin-bottom: 30px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    transform: scale(.8);
    transition: .5s;
    height: 336px;
    border-radius: 10px;
}
.contact-page-v-office{
    padding: 30px;
    margin-bottom: 39px;
}

.read-more-btn{
    border: none;
    background-color: #fff;
    color: #06A3DA;
    font-size: 20px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease, letter-spacing 0.5s ease;
}
.read-more-btn:hover{
    letter-spacing: 1px;
}
.read-more-btns{
    font-weight: 600;
    font-size: 20px;
}

.article-br{
    border-radius: 10px;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
}
.test-ow-car .testimonial-carousel .owl-dot.active{
    display: none;
}


/*** article blog ***/
.testimonial-carousel .owl-item .testimonial-item-blog,
.testimonial-carousel .owl-item.center .testimonial-item-blog * {
    transition: .5s;
}

/* .testimonial-carousel .owl-item.center .testimonial-item-blog {
    background: var(--primary) !important;
} */

.testimonial-carousel .owl-item.center .testimonial-item-blog * {
    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: 5px solid var(--primary);
    border-radius: 2px;
    transition: .5s;
}

.testimonial-carousel .owl-dot.active {
    background: var(--dark);
    border-color: var(--primary);
}
.testimonial-carousel .owl-item.center .testimonial-item-blog * {
    color: #000000 !important;
}

.testimonial-carousel .owl-item.center .testimonial-item-blog a * {
    color: #49a1d5 !important;
}

.testimonial-item-blog{
    margin: 0px 20px 15px !important;
}
.blog-item{
    border-radius: 10px !important;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.testimonial-carousel-block .owl-dot{
    display: none;
}
/*** article blog ***/



/* offering page btns */
.offering-images{
    width: 80%;
    height: 500px;
    border-radius: 10px;
    margin-left: 50px;
}
.flipkart-btn {
    position: relative;
    transition: transform 0.3s ease;
}
.flipkart-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.1);
    z-index: -1;
    border-radius: 5px;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.flipkart-btn:hover::before {
    opacity: 1;
}
.flipkart-btn:hover {
    transform: translateY(-5px);
}

.offering-btn-container{
    display: flex;
}

.offering-logos-main-card{
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    text-align: center;
}
.offering-page-logo-images{
    height: 70px;
}
#large-block{
    display: none;
}
.governance-heilight-texgt{
    font-weight: 600;
}



/* inner elevate sections start */
/* .elevate-pge-text{
    font-size: 30px;
    text-align: center;
    font-weight: 600;
    font-family: "Playfair Display", serif;
}
.elevate-main-points{
    display: flex;
    justify-content: start;
    align-items: flex-start;
    flex-direction: column;
}
.elevate-cards{
    border: 2px solid #06A3DA;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px;
    height: 150px;
    border-radius: 10px;
    flex-direction: column;
}
.elevate-cards i{
    font-size: 30px;
} */
/* inner elevate sections end */



/* all blogs contents */
.find-a-way-images1{
    height: 200px;
    width: 100%;
}
.find-a-way-circle-images{
    height: 300px;
    width: 300px;
    margin-bottom: 20px;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    border-radius: 50%;
}

/* .articla8-images1 {
    width: 100%;
    height: 282px;
}
.articla8-images11{
    height: 265px;
    width: 100%; 
} */
.having-fun-title{
    font-size: 34px;
}
.article1-image11{
    width: 100%;
}
.article1-image15{
    width: 100%;
}
.article1-image13{
    width: 100%;
    height: 100%;
}


.power-of-mentoring-image{
    height: 230px;
    width: 100%;
    box-shadow: rgba(6, 24, 44, 0.4) 0px 0px 0px 2px, rgba(6, 24, 44, 0.65) 0px 4px 6px -1px, rgba(255, 255, 255, 0.08) 0px 1px 0px inset;
}

.styl-mentor-card{
    display: flex;
}

.styl-mentor{
    background-color: #27385a;
    color: #fafafa;
    height: 15px;
    width: 15px;
    font-size: 13px;
    padding: 10px;
    font-weight: bold;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
    margin-right: 15px;
}

.power-of-mentoring-image1{
    width: 100%;   
}


@media screen and (max-width: 767px) {
    .home-banner-bg {
        flex-direction: column;
    }
    .home-banner-text{
        font-weight: 400;
        font-size: 2rem;
    }
    .home-banner-card1{
        width: 50%;
    }
    .home-banner-card2{
        width: 95%;
    }
    .home-banner-bg {
        margin-top: -5px !important;
        height: 65vh;
    }
    .navbar-dark .navbar-nav .nav-link, .navbar-dark .navbar-nav .nav-link.show, .sticky-top.navbar-dark .navbar-nav .nav-link {
        padding: 10px 0;
        color: #ffffff;
    }
    .navbar-expand-lg{
        padding: 19px !important;
    }
    .bg-header {
        margin-top: -4px;
        height: 37vh;
        background-position: center;
    }
    .footer-main-section{
        padding: 20px 0px !important;
    }
    .footer-cards{
        margin-top: 20px ;
    }
    .footer-cards-p{
        padding-top: 20px;
    }
    .administrator-order-image{
        order: 1;
    }
    .administrator-order-content{
        order: 2;
    }
    .testmonules-images{
        width: 50px !important;
        height: 50px !important;
        border-radius: 50%;
    }
    .testimonial-titles{
        font-size: 18px !important;
    }
    .testimonial-para{
        font-size: 12px !important;
    }
    .testimonial-card1{
        padding: 10px 10px !important;
    }
    .about-education-btns{
        height: 100%;
        font-size: 15px !important;
        padding: 0px;
    }
    .experience .timeline .timeline-text {
        padding: 15px 12px;
    }
    .experience .timeline .timeline-text h2 {
        font-size: 18px;
        text-align: left;
    }
    .administrator-title1{
        margin-top: 15px;
    }
    .administrator-main-card{
        margin-top: 10px;
    }
    .contact-page-v-office{
        margin-bottom: 78px;
        padding: 26px !important;
    }
    .testimonial-carousel .owl-item .testimonial-text {
        height: 100% !important;
    }
    .navbar-dark .navbar-toggler {
        margin-left: 86% !important;
    }
    .offering-images{
        width: 100%;
        margin-left: 0px;
    }
    .offering-btn-container{
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .offering-btn-container{
        flex-direction: column;
    }
    .offering-buttons{
        margin-bottom: 20px;
    }
    .offering-cards{
        width: 45%;
    }
    .offering-page-logo-images {
        height: 44px;
        margin-bottom: 30px;
    }
    #small-block{
        display: none;
    }
    #large-block{
        display: block;
    }
    .offering-logos-main-card{
        margin-top: 0px !important;
    }
    .critical-care-image{
        order: 1 !important;
    }
    .critical-care-text{
        order: 2 !important;
    }
    .find-a-way-order1{
        order: 2;
    }
    .find-a-way-order2{
        order: 1;
    }


    .having-fun-title {
        font-size: 25px;
    }
   /*  .articla8-images11 {
        margin-bottom: 20px;
    } */
    .covid-test-image1{
        width: 100%;
    }
    .innovation-care-links{
        width: 100% !important;
    }
    .article1-image11{
        height: 100%;
        width: 100%;
        margin-bottom: 20px;
    }
    .article1-image12{
        width: 100%;
    }
    .article1-image13{
        width: 100%;
        margin-bottom: 20px;
    }

    .power-of-mentoring-image {
        height: 194px;
        margin-bottom: 15px;
    }
    .power-of-mentoring-image1{
        margin-bottom: 15px;
    }
}


@media screen and (min-width: 768px) and (max-width: 1023px) {
    .home-banner-text {
        font-size: 2.2rem;
    }
    .home-banner-card1 {
        width: 50%;
        height: 72%;
    }
    .home-banner-bg {
        margin-top: -22px;
    }
    .navbar-dark .navbar-nav .nav-link, .navbar-dark .navbar-nav .nav-link.show, .sticky-top.navbar-dark .navbar-nav .nav-link {
        padding: 10px 0;
        color: #ffffff;
    }
    .bg-header {
        margin-top: -7px;
    }
    .footer-main-section{
        padding: 20px 0px !important;
    }
    .footer-cards-p{
        padding-top: 20px;
    }
    .administrator-order-image{
        order: 1;
    }
    .administrator-order-content{
        order: 2;
    }
    .navbar-dark .navbar-toggler {
        margin-left: 95% !important;
        font-size: 35px;
    }
    .testimonial-carousel .owl-item .testimonial-text {
        height: 386px;
    }
    .board-positon-text {
        font-size: 15px;
    }
    .navbar-dark .navbar-nav .nav-link, .navbar-dark .navbar-nav .nav-link.show, .sticky-top.navbar-dark .navbar-nav .nav-link {
        padding: 22px 0;
        color: #000000;
        font-size: 16px;
        font-weight: 700;
    }
    .navbar-dark {
        top: -8px;
    }
    .offering-img-container{
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .offering-images{
        width: 60%;
        border-radius: 10px;
        text-align: center;
    }
    .offering-btn-container{
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .offering-page-logo-images {
        height: 41px;
    }

    .find-a-way-order1{
        order: 2;
    }
    .find-a-way-order2{
        order: 1;
    }
    .find-a-way-image-card{
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .find-a-way-images1{
        width: 350px;
        height: 250px;
        margin-bottom: 20px;
    }

    .article1-image11{
        width: 400px !important;
        margin-bottom: 20px;
    }
    .article1-image13 {
        width: 400px;
        margin: 20px;
    }
    .article1-image15 {
        width: 400px;
    }

    .power-of-mentoring-image {
        height: 295px;
        width: 526px;
    }
    .power-of-mentoring-image1{
        width: 526px;
        margin-bottom: 20px;
    }
}




