
:root {
    --primary: #fff679;
    --secondary: #2B9BFF;
    --light: #EFFDF5;
    --dark: #2B3940;
    --red:#393186;
    --black:#000000;
    --orange:#f57b16;
    --white:#FFFFFF;
}

/*** Topbar Start ***/
.fixed-top .container {
    transition: 0.5s;
}
a {
	text-decoration: none;
}
.topbar {
    padding: 2px 10px 2px 20px;
    background: #fff6eb;
	position: relative;
}

.bd-header-top-wrapper {
    position: relative;
    z-index: 0;
}
.bd-header-meta-items-2 {
    gap: 85px;
}
.bd-header-meta-item {
    gap: 8px;
}
.bd-header-meta-icon i {
    color: #ff9b24;
    font-size: 16px;
}
.bd-header-meta-item.is-white .bd-header-meta-icon i {
    color: #FFFFFF;
}
.bd-header-meta-text p {
    margin: 0;
    font-size: 15px;
	color:#424242;
}
.bd-header-meta-text p a{
	color:#424242;
	text-decoration: none;
}
.bd-header-meta-item.is-white .bd-header-meta-text p {
    color: #FFFFFF;
}
.bd-header-meta-items {
    gap: 25px;
}
@media (max-width: 576px) {
    .topbar {
        display: none;    
    }
}

.bd-header-top-clip-shape {
    position: absolute;
    inset-inline-start: 0;
    top: 0;
    height: 100%;
    width: 278px;
    background-color: #3a3186;
    clip-path: polygon(0 0, 96% 0, 100% 100%, 0% 100%);
}
/*** Topbar End ***/


/*** Navbar ***/
.bd-header-bottom-clip-shape {
    position: absolute;
    inset-inline-start: 0;
    top: 0;
    height: 100%;
    width: 278px;
    background-color: #fff6eb;
    clip-path: polygon(0 0, 100% 0%, 89% 100%, 0% 100%);
}
.logo {
	position:relative;
}
.bd-header-meta-item {
    gap: 8px;
}
.bd-btn {
    font-size: 16px;
    font-weight: 600;
    color: #FFFFFF;
    background-image: -webkit-linear-gradient(30deg, #ff9b24 50%, transparent 50%);
  background-image: linear-gradient(30deg, #ff9b24 50%, transparent 50%);
    text-align: center;
    border-radius: 50px;
    position: relative;
    z-index: 1;
    overflow: hidden;
    display: inline-flex;
  border: 1px solid #ff9b24;
    text-transform: capitalize;
	padding: 0px 48px;
	
	background-size: 500px;
  background-repeat: no-repeat;
  background-position: 0%;
  -webkit-transition: background 300ms ease-in-out;
  transition: background 300ms ease-in-out;
}
.bd-btn:hover {
  background-position: 100%;
  color: #ff9b24 !important;
}

.navbar-light .navbar-nav .nav-link {
    font-family: 'Open Sans', sans-serif;
    position: relative;
    margin-right: 30px;
    padding: 35px 0;
    color: var(--bs-dark) !important;
    font-size: 18px;
    font-weight: 600;
    outline: none;
    transition: .5s;
}

.sticky-top.navbar-light .navbar-nav .nav-link {
    padding: 20px 0;
    color: var(--dark) !important;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: #e1037b  !important;
}

.navbar-light .navbar-brand img {
    max-height: 120px;
    transition: .5s;
}
.navbar-brand h1 {
	color: #efa011;
}
.sticky-top.navbar-light .navbar-brand img {
    max-height: 45px;
}
.sticky-top.navbar-light .navbar-brand h1 {
	font-size: 24px;
}
.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
    vertical-align: middle;
    margin-left: 8px;
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        border: 0;
        border-radius: 10px;
        transition: .5s;
        opacity: 0;
    }
}

.dropdown .dropdown-menu a:hover {
    background: #3a3186;
    color: var(--bs-white);
}

.navbar .nav-item:hover .dropdown-menu {
    transform: rotateX(0deg);
    visibility: visible;
    background: var(--bs-light) !important;
    transition: .5s;
    opacity: 1;
}

@media (max-width: 991.98px) {
    .sticky-top.navbar-light {
        position: fixed;
        background: var(--bs-white);
		width: 100%;
    }

    .navbar.navbar-expand-lg .navbar-toggler {
        padding: 10px 20px;
        border: 1px solid var(--bs-primary);
        color: var(--bs-primary);
    }

    .navbar-light .navbar-collapse {
        margin-top: 15px;
        border-top: 1px solid #DDDDDD;
    }

    .navbar-light .navbar-nav .nav-link,
    .sticky-top.navbar-light .navbar-nav .nav-link {
        padding: 10px 0;
        margin-left: 0;
        color: var(--bs-dark) !important;
    }

    .navbar-light .navbar-brand img {
        max-height: 45px;
    }
}

@media (min-width: 992px) {
    .navbar-light {
        position: relative;
        width: 100%;
        top: 0;
        left: 0;
        border-bottom: 1px solid rgba(255, 255, 255, .1);
        z-index: 999;
    }
    
    .sticky-top.navbar-light {
        position: fixed;
        background: var(--bs-light) !important;
    }

    .navbar-light .navbar-nav .nav-link::before {
        position: absolute;
        content: "";
        width: 0;
        height: 2px;
        bottom: -1px;
        left: 50%;
        background: #e1037b;
        transition: .5s;
    }

    .navbar-light .navbar-nav .nav-link:hover::before,
    .navbar-light .navbar-nav .nav-link.active::before {
        width: calc(100% - 2px);
        left: 1px;
    }

    .navbar-light .navbar-nav .nav-link.nav-contact::before {
        display: none;
    }
}




/*** Header ***/
.slider_bg .carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: start;
    z-index: 1;
}
.slider_bg .carousel-caption p{
	font-size: 23px;
	font-weight: bold;
}
.slider_bg .carousel-caption h1{
	font-size: 96px;
	font-weight: bold;
}
.slider_bg .carousel-caption a.btn-primary{
	border-radius: 50px;
	background-color: transparent;
	margin-top: 20px;
	background-image: -webkit-linear-gradient(30deg, #ff9b24 50%, transparent 50%);
  background-image: linear-gradient(30deg, #ff9b24 50%, transparent 50%);
    text-align: center;
    position: relative;
    z-index: 1;
    overflow: hidden;
    display: inline-flex;
  border: 1px solid #ff9b24;
	padding: 0px 48px;
	font-weight: bold;
	background-size: 500px;
  background-repeat: no-repeat;
  background-position: 0%;
  -webkit-transition: background 300ms ease-in-out;
  transition: background 300ms ease-in-out;
}
.slider_bg .carousel-caption a.btn-primary:hover{
	background-position: 100%;
	color: #FFFFFF !important;
}
.slider_bg .carousel-control-prev,
.slider_bg .carousel-control-next {
    width: 3rem;
}

.slider_bg .carousel-control-prev-icon,
.slider_bg .carousel-control-next-icon {
    height: 45px;
    width: 45px;
    font-size: 20px;
    line-height: 52px;
    text-align: center;
    
    color: #FFFFFF;
}
.slider_bg .carousel-control-prev {
	left: 30px;
    right: inherit;
    top: 50%;
	bottom: inherit;
    border-radius: 50%;
	border: 1px solid #FFFFFF;
    background-color: #393186;
    opacity: 0.8;
}
.slider_bg .carousel-control-next {
	right: 30px;
	bottom: inherit;
    top: 50%;
    border-radius: 50%;
    border: 1px solid #FFFFFF;
    background-color: #393186;
    opacity: 0.8;
}
.slider_bg .carousel-control-prev-icon, .slider_bg .carousel-control-next-icon {
	background-size: 50%;
}
.slider_bg .carousel-item video {
	object-fit: fill;
}
/*.slider_bg .carousel-control-prev-icon {
    border-radius: 0 3rem 3rem 0;
}

.slider_bg .carousel-control-next-icon {
    border-radius: 3rem 0 0 3rem;
}*/

@media (max-width: 768px) {
    #header-carousel .slider_bg .carousel-item {
        position: relative;
        min-height: 450px;
    }
    
    #header-carousel .slider_bg .carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

.slider_bg .carousel-item::before {
    content: "";
    /* background: linear-gradient(270deg, #001413 16.09%, rgba(0, 0, 0, 0) 84.22%); */
    transform: rotate(-180deg);
    position: absolute;
    left: 0;
    bottom: 0;
    height: 100%;
    width: 100%;
}
.section1_header h1 {
	font-size: 64px;
	color: #1B1B1B;
	font-weight: bold;
}
.section1_header p {
	font-size: 18px;
	color: #424242; 
	padding: 0 25%;
}
.section1_left {
	background: linear-gradient(180deg, #F5FFFE 0%, #EBFFFE 100%);
	border-radius: 24px;
	padding: 50px;
	margin: 30px 0;
	-webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}
.section1_left:hover {
	filter: drop-shadow(6px 6px 0 #00bbae);
}
.section1_left_icon_circle {
	position: relative;
    padding: 5px;
    display: inline-block;
    border-radius: 50%;
    margin-bottom: 25px;
}
.section1_left_icon_circle::before {
    content: "";
    position: absolute;
    left: 0%;
    top: 0%;
    border: 2px dashed #00bbae;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    padding: 5px;
}
.section1_left_icon_circle_wrapper {
	background-color: #D6FFFC;
    height: 120px;
    width: 120px;
    display: inline-flex;
    justify-content: center;
    border-radius: 50%;
}
.section1_left_icon_circle_wrapper i {
	display: inline-flex;
    align-items: center;
    font-size: 64px;
    color: #00bbae;
}
.section1_left:hover .section1_left_icon_circle::before{
	animation: rotate-infinite 15s linear infinite;
}
@keyframes rotate-infinite {
	0% {
    transform: rotate(0deg);
}
	100% {
    transform: rotate(360deg);
}
}
.section1__left_content h1 a{
	font-size: 32px;
	color: #1b1b1b;
	font-weight: bold;
	text-decoration: none;
}
.section1__left_content h1 a:hover {
	color: #ff9b24 ;
}
.section1__left_content p {
	font-size: 18px;
	color: #424242;
}
.section1__left_content a.view_btn {
	border-radius: 50px;
	background-color: transparent;
	margin-top: 20px;
	text-decoration: none;
    text-align: center;
    position: relative;
    z-index: 1;
    overflow: hidden;
    display: inline-flex;
  border: 1px solid #00bbae;
	padding: 15px 48px;
	font-weight: bold;
	background-size: 500px;
  background-repeat: no-repeat;
  background-position: 0%;
  -webkit-transition: background 300ms ease-in-out;
  transition: background 300ms ease-in-out;
	color: #1b1b1b;
	
}
.section1__left_content a.view_btn:hover {
	background-position: 100%;
    color: #1b1b1b !important;
background-image: -webkit-linear-gradient(30deg, #00bbae 50%, transparent 50%);
  background-image: linear-gradient(30deg, #00bbae 50%, transparent 50%);
}



.section1_right {
	background: linear-gradient(359.18deg, #FFF6EB 0.69%, #FFFAF5 98.52%);
	border-radius: 24px;
	padding: 50px;
	margin: 30px 0;
	-webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}
.section1_right:hover {
	filter: drop-shadow(6px 6px 0 #ff9b24);
}
.section1_right_icon_circle {
	position: relative;
    padding: 5px;
    display: inline-block;
    border-radius: 50%;
    margin-bottom: 25px;
}
.section1_right_icon_circle::before {
    content: "";
    position: absolute;
    left: 0%;
    top: 0%;
    border: 2px dashed #ff9b24;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    padding: 5px;
}
.section1_right_icon_circle_wrapper {
	background-color: #FFECD6;
    height: 120px;
    width: 120px;
    display: inline-flex;
    justify-content: center;
    border-radius: 50%;
}
.section1_right_icon_circle_wrapper i {
	display: inline-flex;
    align-items: center;
    font-size: 64px;
    color: #ff9b24;
}
.section1_right:hover .section1_right_icon_circle::before{
	animation: rotate-infinite 15s linear infinite;
}
@keyframes rotate-infinite {
	0% {
    transform: rotate(0deg);
}
	100% {
    transform: rotate(360deg);
}
}
.section1__right_content h1 a{
	font-size: 32px;
	color: #1b1b1b;
	font-weight: bold;
	text-decoration: none;
}
.section1__right_content h1 a:hover {
	color: #ff9b24 ;
}
.section1__right_content p {
	font-size: 18px;
	color: #424242;
}
.section1__right_content a.view_btn {
	border-radius: 50px;
	background-color: transparent;
	margin-top: 20px;
	text-decoration: none;
    text-align: center;
    position: relative;
    z-index: 1;
    overflow: hidden;
    display: inline-flex;
  border: 1px solid #ff9b24;
	padding: 15px 48px;
	font-weight: bold;
	background-size: 500px;
  background-repeat: no-repeat;
  background-position: 0%;
  -webkit-transition: background 300ms ease-in-out;
  transition: background 300ms ease-in-out;
	color: #1b1b1b;
	
}
.section1__right_content a.view_btn:hover {
	background-position: 100%;
    color: #1b1b1b !important;
background-image: -webkit-linear-gradient(30deg, #ff9b24 50%, transparent 50%);
  background-image: linear-gradient(30deg, #ff9b24 50%, transparent 50%);
}


/* home page courses */

.section-title .title {
    margin-bottom: 0;
	font-size: 44px;
	font-weight: 700;
	color:#000000;
}
.section-title.text-center .description.has-medium-font-size {
    padding: 0 23%;
}
.section2.text-center .section2.has-medium-font-size {
    padding: 0 23%;
}
p.has-medium-font-size {
    font-size: 20px;
    line-height: 36px;
	color: #6b7385;
}
.rbt-flipbox {
    position: relative;
    perspective: 1200px;
    overflow: hidden;
    border-radius: 6px;
    height: 100%;
}
.rbt-flipbox .rbt-flipbox-wrap {
    position: relative;
    transition-property: box-shadow, transform;
    transition-duration: .6s;
    transition-timing-function: cubic-bezier(.4,0,.2,1);
    transform-style: preserve-3d;
    height: 100%;
}
.rbt-flipbox .rbt-flipbox-wrap .rbt-flipbox-face {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transition: .6s;
    transition-timing-function: cubic-bezier(.4,0,.2,1);
    transform-style: preserve-3d;
}
.rbt-flipbox .rbt-flipbox-wrap .rbt-flipbox-back {
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    transform: rotateY(180deg) translateZ(1px);
    background: linear-gradient(1turn, #e9dcfa, #d05aff);
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: baseline;
    justify-content: space-between;
    text-align: center;
    border-radius: 6px;
    text-align: left;
}
.rbt-flipbox:hover .rbt-flipbox-wrap .rbt-flipbox-face {
    -webkit-backface-visibility: inherit;
    backface-visibility: inherit;
	transform: rotateY(180deg);
    transform-origin: 50% 50% !important;
}
.rbt-flipbox.variation-2 .back-thumb img, .rbt-flipbox.variation-2 .front-thumb img {
    border-radius: 10px;
    width: 100%;
    object-fit: cover;
    max-height: 150px;
    margin-bottom: 25px;
}
.rbt-service.rbt-service-1 .inner .content .title {
    margin-bottom: 16px;
}
.rbt-list-style-3 {
	padding-left: 0;
}
.rbt-list-style-3 li {
    display: flex;
    font-size: 18px;
    margin: 5px 0;
    line-height: 1.45;
    color: #727272;
}
.rbt-list-style-3 li:first-child {
    margin-top: 0;
}
.rbt-list-style-3 li i {
    padding-right: 10px;
    margin-top: 4px;
}
.card-bg-1 {
    background: #fffccf !important;
}
.card-bg-2 {
    background: #ffedff !important;
}
.card-bg-3 {
    background: #ffe8eb !important;
}
.card-bg-4 {
    background: #e9f6ff !important;
}
.rbt-service.rbt-service-1 .inner {
    padding: 30px;
}


/*** Category ***/
.cat-item {
    display: block;
    border: 1px solid transparent;
    transition: .5s;
    color: #393939;
    background-color: #d7fff2;
    padding: 50px 20px;
}
.latest_news {
    background-color: #ffe6d6;
}
.admissions {
    background-color: #ffe8eb;
}
.calendar {
    background-color: #e9f6ff;
}
.cat-item h6 {
    color: var(--red);
    padding: 25px 0 0;
    font-size: 20px;;
}
.cat-item p {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    line-clamp: 5;
    -webkit-box-orient: vertical;
}
.cat-item:hover{
    border-color: rgba(0, 0, 0, .08);
    box-shadow: none;
    background-color: var(--orange);
}
.cat-item:hover p, .cat-item:hover h6{
    color: var(--white);
}

.cat-item .icon i{
    border-radius: 50px;
    padding: 15px 25px;
    background-color: var(--white);
    display: inline-block;
    font-size: 36px;
    color: var(--red);
    text-align: center;
    vertical-align: middle;
}
.services a:hover {
    color: var(--white);;
}


.box-item {
  position: relative;
  -webkit-backface-visibility: hidden;
  width: 415px;
  margin-bottom: 35px;
  max-width: 100%;
}

.flip-box {
  -ms-transform-style: preserve-3d;
  transform-style: preserve-3d;
  -webkit-transform-style: preserve-3d;
  perspective: 1000px;
  -webkit-perspective: 1000px;
}

.flip-box-front,
.flip-box-back {
  background-size: cover;
  background-position: center;
  border-radius: 8px;
  min-height: 475px;
  -ms-transition: transform 0.7s cubic-bezier(.4,.2,.2,1);
  transition: transform 0.7s cubic-bezier(.4,.2,.2,1);
  -webkit-transition: transform 0.7s cubic-bezier(.4,.2,.2,1);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.flip-box-front {
  -ms-transform: rotateY(0deg);
  -webkit-transform: rotateY(0deg);
  transform: rotateY(0deg);
  -webkit-transform-style: preserve-3d;
  -ms-transform-style: preserve-3d;
  transform-style: preserve-3d;
}

.flip-box:hover .flip-box-front {
  -ms-transform: rotateY(-180deg);
  -webkit-transform: rotateY(-180deg);
  transform: rotateY(-180deg);
  -webkit-transform-style: preserve-3d;
  -ms-transform-style: preserve-3d;
  transform-style: preserve-3d;
}

.flip-box-back {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(1turn, #e9dcfa, #d05aff);
  -ms-transform: rotateY(180deg);
  -webkit-transform: rotateY(180deg);
  transform: rotateY(180deg);
  -webkit-transform-style: preserve-3d;
  -ms-transform-style: preserve-3d;
  transform-style: preserve-3d;
}

.flip-box:hover .flip-box-back {
  -ms-transform: rotateY(0deg);
  -webkit-transform: rotateY(0deg);
  transform: rotateY(0deg);
  -webkit-transform-style: preserve-3d;
  -ms-transform-style: preserve-3d;
  transform-style: preserve-3d;
}

.flip-box .inner {
  position: absolute;
  left: 0;
  width: 100%;
  padding: 30px;
  outline: 1px solid transparent;
  -webkit-perspective: inherit;
  perspective: inherit;
  z-index: 2;
  transform: translateY(-50%) translateZ(60px) scale(.94);
  -webkit-transform: translateY(-50%) translateZ(60px) scale(.94);
  -ms-transform: translateY(-50%) translateZ(60px) scale(.94);
  top: 50%;
}

.flip-box-header {
  font-size: 20px;
	color: #192335;
	font-weight: 600;
	padding-top: 25px;
}

.flip-box .flip-box-back p {
  font-size: 20px;
  line-height: 1.5em;
  color: #FFFFFF;
}


.flip-box-img {
  margin-top: 25px;
}

.flip-box-button {
  background-color: #FFFFFF;
  border: none;;
  border-radius: 2px;
  color: #000;
  cursor: pointer;
  font-size: 18px;
  font-weight: normal;
  margin-top: 70px;
  padding: 8px 20px;
}
.flip-box-button:hover {
	background-color: #393186;
	color: #FFF;
}
.flip-box-front a {
	font-size: 18px;
	color: #000000;
}


/* HOME PAGE */
.online_classes {
	background-color: #f5f7fa;
	padding: 60px 0
}

.rbt-card {
    overflow: hidden;
    box-shadow: 0px 6px 34px rgba(215, 216, 222, .41);
    padding: 30px;
    border-radius: 5px;
    background: var(--bs-white);
    position: relative;
    height: 100%;
}

.rbt-card.variation-03 {
    height: 100%;
}

.rbt-hover {
    transition: 256ms ease-in-out;;
}
.rbt-card .rbt-card-img {
    position: relative;
}
.rbt-card .rbt-card-img a {
    display: block;
}
.rbt-card.variation-03 .rbt-card-img .thumbnail-link {
    position: relative;
    display: block;
}
.rbt-card.variation-03 .rbt-card-img .thumbnail-link:before {
    position: absolute;
    content: "";
    background: rgba(111, 120, 148, .54);
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: 256ms ease-in-out;;
    opacity: 0;
    border-radius: 5px;
}
.rbt-card .rbt-card-img a img {
    width: 100%;
    transition: .5s;
    object-fit: cover;
    border-radius: 5px;
}
.rbt-card.variation-03 .rbt-card-img .thumbnail-link .rbt-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    margin-top: 50px;
    transition: .4s;
    opacity: 0;
    width: max-content;
}
.rbt-btn.btn-white {
    box-shadow: 0px 6px 34px rgba(215, 216, 222, .41);;
    background: #FFFFFF;
    color: #192335;
}
.rbt-btn {
    padding: 0 26px;
    background: #393186;
    height: 60px;
    line-height: 60px;
    color: #FFFFFF;
    font-size: 16px;
    letter-spacing: .5px;
    font-weight: 500;
    display: inline-block;
    position: relative;
    z-index: 1;
    transition: all .4s ease-in-out;
    border-radius: 6px;
    border: 0;
    outline: none;
    text-decoration: none;
}
.rbt-btn.icon-hover .btn-text {
    transition-timing-function: cubic-bezier(0,.71,.4,1);
    display: inline-block;
    transition: transform .5s;
    transform: translateX(3px);
}
.rbt-btn.icon-hover .btn-icon {
    -webkit-margin-start: -3px;
    margin-inline-start: -3px;
    display: inline-block;
}
.rbt-btn.icon-hover .btn-icon i {
    transition-timing-function: cubic-bezier(0,.71,.4,1);
    display: inline-block;
    opacity: 0;
    transform: translateX(-7px);
    transition: opacity .25s, transform .5s;
    padding-left: 0;
}
.rbt-btn:hover.icon-hover .btn-icon i {
    opacity: 1;
    transform: translateX(7px);
}
.rbt-btn i {
    padding-left: 6px;
    display: inline-block;
    top: 2px;
    position: relative;
    font-size: 17px;
}
.rbt-hover:hover {
    transform: scale(1.02);
}
.rbt-card.variation-03:hover .rbt-card-img .thumbnail-link:before {
    opacity: 1;
}
.rbt-card.variation-03:hover .rbt-card-img .thumbnail-link .rbt-btn {
    margin-top: 0;
    opacity: 1;
}
.rbt-card .rbt-card-body {
    padding-top: 30px;
}

.rbt-card.variation-03 .rbt-card-body {
    display: flex;
}
.rbt-card .rbt-card-body .rbt-card-title {
    font-size: 26px;
}
.rbt-card .rbt-card-body .rbt-card-title {
    margin-bottom: 10px;
}
.rbt-card.variation-03 .rbt-card-body .rbt-card-title {
    flex-basis: 80%;
    margin: 0;
    text-transform: capitalize;
}
.rbt-card .rbt-card-body .rbt-card-title a {
    color: #192335;
	transition: 0.3s;
}
.rbt-card .rbt-card-body .rbt-card-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}
.rbt-card.variation-03 .rbt-card-body .rbt-card-bottom {
    flex-basis: 20%;
    display: flex;
    justify-content: flex-end;
}
.rbt-card .rbt-card-body .rbt-card-title a:hover {
    color: #393186;
}
.rbt-btn.btn-white:hover {
    background: #393186;
    color: #FFFFFF;
}

.home_about {
    padding: 60px 0;
}
.rbt-counterup {
    background: var(--bs-white);
    box-shadow: 0px 6px 34px rgba(215, 216, 222, .41);;
    border-radius: 5px;
    text-align: center;
    padding: 30px 30px 50px;
    z-index: 1;
    overflow: hidden;
    position: relative;
}
.rbt-hover-03 {
    transition: transform .65s cubic-bezier(.23,1,.32,1);
}
.rbt-counterup .inner .icon, .rbt-counterup .inner .rbt-round-icon {
    margin: 0 auto 20px;
}
.rbt-counterup .inner .icon img, .rbt-counterup .inner .rbt-round-icon img {
    max-height: 100px;
}
.rbt-counterup .inner .content .counter {
    font-weight: 700;
    font-size: 50px;
    line-height: 56px;
    position: relative;
    display: inline-block;
    padding: 0 24px;
    margin-left: -20px;
    margin-bottom: 9px;
}
.rbt-counterup .inner .content .subtitle {
    display: block;
}
.rbt-counterup .inner .content .counter {
    font-weight: 700;
    font-size: 50px;
    line-height: 56px;
    position: relative;
    display: inline-block;
    padding: 0 24px;
    margin-left: -20px;
    margin-bottom: 9px;
}
.rbt-counterup .inner .content .counter:after {
    position: absolute;
    content: "+";
    right: 0;
    font-size: 42px;
	top: 0;
}
.mt--60 {
    margin-top: 60px !important;
}
.rbt-hover-03:hover {
    transform: translateY(-3px);
}
.pl--50 {
    padding-left: 50px !important;
}
.mt--20 {
    margin-top: 20px !important;
}
p.has-medium-font-size {
    font-size: 20px;
    line-height: 36px;
}
.section2 p.has-medium-font-size {  
    padding: 0 20%;
    text-align: center;
}
.mt--30 {
    margin-top: 30px !important;
}
.rbt-feature {
    display: flex;
    transition: var(--transition-3);
}
.rbt-feature .icon {
    width: 50px;
    min-width: 50px;
    height: 50px;
    background: #b966e7;
    display: flex;
    border-radius: 100%;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
}
.rbt-feature .icon i {
    color: var(--bs-white);
    font-size: 24px;
}
.rbt-feature .icon.bg-primary-opacity i {
    color: #393186;
}
.rbt-feature .icon.bg-secondary-opacity i {
    color: #b966e7;
}
.rbt-feature .icon.bg-pink-opacity i {
    color: #db7093;
}
.rbt-feature .feature-content .feature-title {
    font-weight: 500;
    font-size: 20px;
    line-height: 32px;
    margin-bottom: 0;
}
.rbt-feature+.rbt-feature {
    margin-top: 30px;
}
.rbt-feature {
    display: flex;
    transition: transform .85s cubic-bezier(.23,1,.32,1), background .3s, border .3s, border-radius .3s, box-shadow .3s;
}
.bg-primary-opacity {
    background: #39318621 !important;
    color: #393186 !important;
}
.bg-secondary-opacity {
    background: #b966e721 !important;
    color: #b966e7 !important;
}
.bg-pink-opacity {
    background: #db709321 !important;
    color: #db7093 !important;
}
/* home our techers css */
.home_our_techers {
	background: #f5f7fa;
	padding: 60px 0;
}
.our_techers_header h1 {
	margin-bottom: 0;
    font-size: 50px;
    font-weight: 700;
    color: #000000;
	padding-bottom: 20px;
}
.our_techers_header p {
	padding: 0 23% 2%;
	font-size: 20px;
}
.our_techer_content {
	background: #FFFFFF;
	border-radius: 5px;
	padding: 30px;
	transition: transform .65s cubic-bezier(.23,1,.32,1);
}
.our_techer_content:hover {
	transform: scale(1.02);
	transition: transform .65s cubic-bezier(.23,1,.32,1);
}
.our_techer_img img {
	border-radius: 5px;
}
.our_techer_content h1 {
	font-size: 26px;
	font-weight: bold;
	color: #000;
	padding-top: 25px;
}
.our_techer_content h5 {
	font-size: 18px;
	color: #393186;
	font-weight: 500;
}
.our_techer_content p {
	font-size: 14px;
	color: #827e84;
	font-weight: 500;
}
.our_techer_btn {
	padding-top: 50px;
}
.our_techer_btn a {
	background: #393186;
	border-radius: 5px;
	font-size: 20px;
	font-weight: normal;
	color: #FFFFFF;
	padding: 10px 20px;
	text-decoration: none;
}
.our_techer_btn a:hover {
	background: #ff9b24;
}

/* home our Post css */
.home_our_post {
	padding: 60px 0;
}
.our_post_header h1 {
	margin-bottom: 0;
    font-size: 50px;
    font-weight: 700;
    color: #000000;
	padding-bottom: 20px;
}
.our_post_header p {
	padding: 0 23% 2%;
	font-size: 20px;
}
.our_post_content {
	background: #FFFFFF;
	border-radius: 5px;
	transition: transform .65s cubic-bezier(.23,1,.32,1);
	box-shadow: 0px 0px 10px rgba(129, 128, 128, 0.35);
}
.our_post_content1 {
	padding: 30px;
}
.our_post_content:hover {
	transform: scale(1.02);
	transition: transform .65s cubic-bezier(.23,1,.32,1);
}
.our_post_img img {
	border-radius: 5px 5px 0px 0px;
}
.our_post_content h1 {
	font-size: 26px;
	font-weight: 600;
	color: #000;
}
.our_post_content h5 {
	font-size: 18px;
	color: #393186;
	font-weight: 500;
}
.our_post_content p {
	font-size: 18px;
	color: #6b7385;
	font-weight: 500;
}
.our_post_content a {
	font-size: 18px;
	color: #343434;
	font-weight: 500;
}
.our_post_content a:hover {
	color: #393186;
}
.our_post_btn {
	padding-top: 50px;
}
.our_post_btn a {
	background: #393186;
	border-radius: 5px;
	font-size: 20px;
	font-weight: normal;
	color: #FFFFFF;
	padding: 10px 20px;
}
.our_post_btn a:hover {
	background: #ff9b24;
}



.gallery .col-sm-2 {
	padding: 0;
}



/* footer section */
.foot-bg {
	background-color: #FFFFFF;
	padding: 50px 0 30px;
}
.foot-bg h5 {
	color: #192335;
	font-weight: bold;
}
.need-doctor1 {
	border: 1px solid #4a4a4a;
	background-color: #1c1c1c;
	padding: 20px 50px;
	margin: 50px 0;
}
.getan-btn {
	border-radius: 30px;
	font-weight: 700;
	padding: 15px 30px;
	margin-top: 15px;
}
.footer-list li {
	padding: 5px 0;
}
.footer-list li a {
	text-decoration: none;
}
/* footer css */
.footer-style-1 .footer-top {
    padding-top: 0px;
    padding-bottom: 0px;
}
.footer-style-1 .logo {
	padding-bottom: 20px;
}
.footer-style-1 .logo a {
    display: block;
}
.footer-style-1 .description {
    font-size: 16px;
    line-height: 25px;
	color:#6b7385;	
}
.footer-style-1 .socila-media {
	padding-left: 0;
}
.footer-style-1 .socila-media img {
	padding-right: 3px;
}
.ft-link {
	padding-left: 0;
}
.footer-widget .ft-link li {
    margin: 0;
    color: #6b7385;
    font-size: 16px;
    line-height: 25px;
	list-style: none;
	padding-bottom: 10px;
}
.footer-widget .ft-link li a {
    color: #6b7385;
    display: inline-block;
    position: relative;
	text-decoration: none;
	
}
.footer-widget .ft-link li a:hover {
	text-decoration: underline;
	color: #ff9b24;
}
.footer-style-1 .newsletter-form .right-icon {
    display: block;
}
.footer-widget .form-group label {
    font-size: 16px;
    line-height: 31px;
}
.footer-style-1 .newsletter-form .right-icon input {
    padding-right: 30px;
}
.footer-style-1 .newsletter-form input {
    min-width: 100%;
}
.footer-style-1 .newsletter-form .right-icon:after {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-family: feather !important;
}
.footer-style-1 .newsletter-form .right-icon.icon-email:after {
    content: "";
}
.footer-widget .form-group label {
    position: absolute;
    left: 0;
    width: 100%;
    top: 9px;
    color: #6b7385;
    transition: .3s;
    z-index: -1;
    letter-spacing: .5px;
    font-size: 18px;
    line-height: 28px;
}
.form-group input, .form-group textarea {
    border: 0;
    border-bottom: 2px solid #e6e3f1;
    background-color: transparent;
    border-radius: 0;
    padding: 20px 0 8px;
}
.form-group input:focus {
    border-color: var(--color-primary);
}

.updated_news {
	background: #ebfffe;
    border-radius: 24px;
    padding: 50px 20px;
    border: 2px solid #393186;
	min-height: 334px;
}
.updated_news_title h1 {
	font-size: 26px;
	color: #393186;
	font-weight: 700;
	padding-bottom: 20px;
}
.updated_news .carousel-item .updated_news_content {
	color: #444040;
	
}
.updated_news .carousel-item .updated_news_content h5 {
	color: #393186;
	font-size: 24px;
}
.updated_news .carousel-item .updated_news_content p {
	color: #424242;
}
.updated_news_content p {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    line-clamp: 4;
    -webkit-box-orient: vertical;
}

.updated_news_img  {
	padding-top: 7px;
}
.updated_news .carousel-item .updated_news_content p.dateevent {
	color: #e1037b;
}
.slide2 {
	background: #fff6eb;
	border-radius: 24px;
	padding: 30px 20px;
    border: 2px solid #393186;
	min-height: 334px;
}
.section1 {
	background-color: #f5f7fa;
    padding: 60px 0;
}
.section2 {
	padding: 60px 0;
}
.slide2 .items2 h4 {
	color: #393186;
}
.slide2 .items2 p {
	color: #424242;
	overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 7;
    line-clamp: 7;
    -webkit-box-orient: vertical;
	
}

.slide2 .items2 a, .updated_news_content a {
	color: #e1037b;
}
.slide2 .items2 a:hover, .updated_news_content a:hover {
	color: #393186;
	text-decoration: underline;
}
.slide2 .items2 div {
	margin-bottom: 0px;
}
.gallery .gallery_img .col-lg-2 {
	padding: 0;
}
.gallery .gallery_img a img:hover {
	opacity: 0.5;
}

.social_icon {
    width: 100%;
    display: inline-block;
    text-align: center;
}

.social_icon ul {
    margin: 0px;
    padding: 0px;
    display: inline-block;
}

.social_icon li {
    float: left;
	list-style-type: none;
}

.social_icon li a {
    float: left;
    padding: 6px 12px;
    background-color: #3a3186;
    color: #FFF;
    border-radius: 100%;
    font-size: 18px;
    margin-right: 5px;
    width: 40px;
	height: 40px;
    text-align: center;
	text-decoration: none;
}

.social_icon li a:hover {
    background-color: #ff9b24;
    color: #ffffff;
}
/* about us */
.breadcrumbs {
    padding: 100px 0 100px 0;
    min-height: 40vh;
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.breadcrumbs:before {
    content: "";
    background-color: rgba(0, 0, 0, 0.6);
    position: absolute;
    inset: 0;
}
.breadcrumbs h2 {
    font-size: 56px;
    font-weight: 500;
    color: #fff;
}
.breadcrumbs ol {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0 0 10px 0;
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    color: #feb900;
}
.breadcrumbs ol a {
    color: rgba(255, 255, 255, 0.8);
    transition: 0.3s;
}
.breadcrumbs ol li+li {
    padding-left: 10px;
}
.breadcrumbs ol li+li::before {
    display: inline-block;
    padding-right: 10px;
    color: #fff;
    content: "/";
}
.about_inner_page {
	padding: 60px 0;
}
.about_inner_page, .blog {
    padding: 60px 0;
}

/*** Team Start ***/
.team .team-item .team-img {
    position: relative;
    overflow: hidden;
}

.team .team-item .team-img::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
    transition: 0.5s;
}

.team .team-item .team-img .team-icon {
    position: absolute;
    bottom: -125px;
    left: 50%;
    transform: translateX(-50%);
    transition: 0.5s;
}

.team .team-item .team-img:hover .team-icon {
    margin-bottom: 145px;
}

.team .team-item:hover .team-img::before {
    background: rgba(21, 185, 217, .3);
}

.team .team-item .team-content {
    color: #666;
    transition: 0.5s;
	border-color: #ff9b24 !important;
}

.team .team-item .team-content h5 {
    color: #ff9b24;
    transition: 0.5s;
	font-weight:600;
}
.team .team-item .team-content p {
   
    transition: 0.5s;
	
}

.team .team-item:hover .team-content h5, .team .team-item:hover .team-content p {
    color: var(--bs-white);
}

.team .team-item:hover .team-content {
    background: #ff9b24 ;
    color: var(--bs-white);
}
.team-img .btn-primary {
	background-color: #044476;
    border-color: #044476;
}
.stir .team-item {
	border: 2px solid #ff9b24;
}
.director_content h5, .event_header h1, .event_details h1, .recent_event h1, .school_time h1 {
	font-weight:600;
	color:#393186;
	font-size: 26px;
}
.thead-blue {
    background-color: #3a3186;
    color: #FFFFFF;
}
.event_details h1, .recent_event h1 {
    padding-bottom: 15px;
}
.event_details img {
    padding-bottom: 25px;
    border-radius: 20px;
}
.director_content p, .school_content p, .academy_content p {
	font-size: 18px;
}
.our_work_space h1 {
	font-size:24px;
	font-weight:700;
	color:#393186;
}
.our_work_space p {
	color: #6b7385;
}
.our_work_space h2 {
	font-size:18px;
	font-weight:700;
	color:#c10b0b
}
.course_tab {
	margin: 0 0 35px;
    padding: 15px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    background-color: #f4f4f4;
    border-radius: 14px;
}
.course_tab button.nav-link {
	list-style: none;
    display: inline-block;
    margin-right: 20px;
}
.course_tab .nav-link {
	background-color: #ffffff;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    padding: 13px 17px;
    display: block;
    height: 50px;
    color: var(--eduact-black);
    cursor: pointer;
    overflow: hidden;
    transition: all 500ms ease;
    position: relative;
    z-index: 1;
}
.course_tab .nav-link.active {
    color: #FFFFFF;
    background-color: #e78d27;
    border-color: #dee2e6 #dee2e6 #fff;
}
.navbar-light .navbar-nav .nav-link:focus, .navbar-light .navbar-nav .nav-link:hover {
	color: #e78d27;
}
.academy_content h1, .aboutptm_header h1, .academy_content h2, .career_details h1, .curriculum h2, .curriculum h1{
	font-weight: 600;
    color: #393186;
	font-size: 26px;
}
.curriculum h2 {
	padding: 10px 0;
}
.curriculum h4 {
	font-size: 24px;
	color: #ff9b24;
}
.curriculum p, .list-inline {
	font-size: 18px;
}
.list-inline strong, .list-inline li i  {
	color: #ff9b24 !important;
}
.academy_list {
	padding-left: 1rem;
}
.academy_list li {
	list-style: decimal;
	font-size: 18px;
	padding-bottom: 5px;
}
.academy_list li::marker {
	color: #ff9b24;
	font-weight: bold;
}

.academy_list1 {
	padding-left: 1rem;
}
.academy_list1 li {
	list-style: disc;
	font-size: 18px;
	padding-bottom: 5px;
}
.academy_list1 li::marker {
	color: #ff9b24;
	font-weight: bold;
}
.aboutptm .thead-dark {
	background: #ff9b24 ;
	font-size: 18px;
	color: #FFFFFF;
}
.aboutptm tbody td {
	font-size: 18px;
}
.getintouch h1, .getintouch h2 {
	font-size: 24px;
	color: #e78d27;

}
.getintouch p {
	font-size: 18px;
    line-height: 30px;
    color: #878787;
}
/*** Blog Start ***/
.blog .blog-item .blog-img {
    position: relative;
    overflow: hidden;
	height: 250px;
	border-radius: 20px 20px 0 0;
}

.blog .blog-item .blog-img .blog-info {
    position: absolute;
    width: 100%;
    height: 100%;
    bottom: 0;
    left: 0;
    padding: 20px;
    background: rgba(0, 0, 0, .2);
    color: var(--bs-white) !important;
    display: flex;
    align-items: end;
    justify-content: space-between;
    transition: 0.5s;
}

.blog .blog-item .blog-img:hover .blog-info {
    background: rgba(0, 0, 0, .6);
}


.blog .blog-item .blog-img .search-icon {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: 0.5s;
}

.blog .blog-item .blog-img img {
    transition: 0.5s;
	min-height: 250px;
}

.blog .blog-item .blog-img:hover img {
    transform: scale(1.3);
}
.blog-item:hover {
	box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.5);
	border-radius: 20px;
}

.blog .blog-item .blog-img:hover .search-icon {
    opacity: 1;
}
.blog .blog-content {
	font-size: 18px;
	min-height: 300px;
	border-radius: 0px 0px 20px 20px;
}
.event_header p {
	font-size: 18px;
	padding-bottom: 20px;
}
.contact_form a, .wpb_wrapper a, .blog1 a {
	background: #393186;
	border-radius: 5px;
	font-size: 20px;
	font-weight: normal;
	color: #FFFFFF;
	padding: 10px 20px;
	text-decoration: none;
}
.contact_form a:hover, .wpb_wrapper a:hover, .blog1 a:hover {
	background: #ff9b24;
}
.career_details .accordion-button:not(.collapsed) {
    color: #FFFFFF;
    background-color: #FF9B24;
    box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .125);
}
/*** Blog End ***/
/*** Team End ***/



/*** Blog Start ***/
.blog1 .blog-item .blog-img {
    position: relative;
    overflow: hidden;
	height: 250px;
	border-radius: 20px 20px 0 0;
}

.blog1 .blog-item .blog-img .blog-info {
    position: absolute;
    width: 100%;
    height: 100%;
    bottom: 0;
    left: 0;
    padding: 20px;
    background: rgba(0, 0, 0, .2);
    color: var(--bs-white) !important;
    display: flex;
    align-items: end;
    justify-content: space-between;
    transition: 0.5s;
}

.blog1 .blog-item .blog-img:hover .blog-info {
    background: rgba(0, 0, 0, .6);
}


.blog1 .blog-item .blog-img .search-icon {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: 0.5s;
}

.blog1 .blog-item .blog-img img {
    transition: 0.5s;
	min-height: 250px;
}

.blog1 .blog-item .blog-img:hover img {
    transform: scale(1.3);
}
.blog-item:hover {
	box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.5);
	border-radius: 20px;
}

.blog1 .blog-item .blog-img:hover .search-icon {
    opacity: 1;
}
.blog1 .blog-content {
	font-size: 18px;
	border-radius: 0px 0px 20px 20px;
}
.blog1 .blog-content p{
overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
}
@media (max-width: 576px) {
.navbar-brand {
    width: 70%;
}
	.navbar-brand h1 {
		font-size: 14px;
	}
	.sticky-top.navbar-light .navbar-brand h1 {
    font-size: 14px;
}
	.slider_bg .carousel-caption {
		display: none;
	}
	.slider_bg .carousel-item video {
		height: 125px;
	}
	.slider_bg .carousel-control-prev-icon, .slider_bg .carousel-control-next-icon {
		height: 32px;
    width: 32px;
	}
	.slider_bg .carousel-control-next {
		right: 30px;
		top: 40%;
		left: inherit;
	}
	.slider_bg .carousel-control-prev {
		top:40%;
	}
	.section1, .section2, .online_classes, .home_about, .home_our_post {
		padding: 30px 0;
	}
	.updated_news {
		margin-bottom: 30px;
	}
	.flip-box .inner {
		padding: 20px;
		text-align: center;
	}
	.rbt-list-style-3 li {
		display: inline-block;
	}
	.box-item {
		width: 100%;
	}
	.home_about .mt--60 {
		margin-top: 30px !important;
		margin-bottom: 30px;
	}
	.section-title .title, .our_techers_header h1, .our_post_header h1 {
		font-size: 36px;
	}
	.our_techer_content, .our_post_content {
		margin-bottom: 30px;
	}
	.foot-bg {
		padding-top: 0px;
	}
	.social_icon {
		justify-content: flex-start!important;
		margin-top: 20px;
	}
	.topbar {
		padding: 0;
	}
}
@media (min-width: 577px) and (max-width: 768px) {
	.social_icon {
		justify-content: flex-start!important;
		margin-top: 20px;
	}
	.our_techer_content, .our_post_content {
		margin-bottom: 30px;
	}
	.slider_bg .carousel-caption {
		display: none;
	}
	.slider_bg .carousel-item video {
		height: 259px;
	}
	.slider_bg .carousel-control-prev-icon, .slider_bg .carousel-control-next-icon {
		height: 32px;
    width: 32px;
	}
	.slider_bg .carousel-control-next {
		right: 30px;
		top: 40%;
		left: inherit;
	}
	.slider_bg .carousel-control-prev {
		top:40%;
	}
	.section1, .section2, .online_classes, .home_about, .home_our_post {
		padding: 30px 0;
	}
	.updated_news {
		margin-bottom: 30px;
	}
	.flip-box .inner {
		padding: 20px;
		text-align: center;
	}
	.rbt-list-style-3 li {
		display: block;
	}
	.box-item {
		width: 100%;
	}
	.topbar {
		padding: 0;
	}
}
@media (min-width: 769px) and (max-width: 991px) { 
	.section1, .section2, .online_classes, .home_about, .home_our_post {
		padding: 30px 0;
	}
	.updated_news, .our_post_content {
		margin-bottom: 30px;
	}
	.slider_bg .carousel-caption {
		display: none;
	}
	.slider_bg .carousel-item video {
		height: 359.5px;
	}
	.slider_bg .carousel-control-prev-icon, .slider_bg .carousel-control-next-icon {
		height: 32px;
    width: 32px;
	}
	.slider_bg .carousel-control-next {
		right: 30px;
		top: 40%;
		left: inherit;
	}
	.slider_bg .carousel-control-prev {
		top:40%;
	}
	.slide2, .updated_news {
		min-height: 593px;
	}
	.updated_news {
		padding: 30px 20px;
	}
	.topbar {
		padding: 0;
	}
}

@media (min-width: 992px) and (max-width: 1100px) { 
	.slider_bg .carousel-caption h1 {
		font-size: 50px;
	}
	.slider_bg .carousel-item video {
		height: 415.5px;
	}
	.slider_bg .carousel-caption {
		left: 10%;
	}
	.slider_bg .carousel-control-prev {
		top: 45%;
	}
	.bd-header-meta-text p {
		font-size: 14px;
	}
	.navbar-light .navbar-brand img {
		max-height: 50px;
	}
	.navbar-brand h1 {
		font-size: 13px;
	}
	.navbar-light.bg-white.px-4.px-lg-5.py-3 {
		padding: 0 30px !important;
	}
	.topbar .px-5 {
		padding: 0 30px !important;
	}
	.navbar-light .navbar-nav .nav-link {
		font-size: 13px;
		margin-right: 15px;
		white-space: nowrap;
	}
	.updated_news, .slide2 {
		min-height: 400px;
	}
}

@media (min-width: 1101px) and (max-width: 1200px) { 
	.slider_bg .carousel-caption h1 {
		font-size: 50px;
	}
	.slider_bg .carousel-item video {
		height: 415.5px;
	}
	.slider_bg .carousel-caption {
		left: 10%;
	}
	.slider_bg .carousel-control-prev {
		top: 45%;
	}
	.bd-header-meta-text p {
		font-size: 14px;
	}
	.navbar-light .navbar-brand img {
		max-height: 50px;
	}
	.navbar-brand h1 {
		font-size: 14px;
	}
	.navbar-light.bg-white.px-4.px-lg-5.py-3 {
		padding: 0 30px !important;
	}
	.topbar .px-5 {
		padding: 0 30px !important;
	}
	.navbar-light .navbar-nav .nav-link {
		font-size: 14px;
		margin-right: 15px;
		white-space: nowrap;
	}
	.updated_news, .slide2 {
		min-height: 400px;
	}
}


@media (min-width: 1201px) and (max-width: 1300px) { 
	.slider_bg .carousel-caption h1 {
		font-size: 50px;
	}
	.slider_bg .carousel-item video {
		height: 415.5px;
	}
	.slider_bg .carousel-caption {
		left: 10%;
	}
	.slider_bg .carousel-control-prev {
		top: 45%;
	}
	.bd-header-meta-text p {
		font-size: 14px;
	}
	.navbar-light .navbar-brand img {
		max-height: 50px;
	}
	.navbar-brand h1 {
		font-size: 18px;
	}
	.navbar-light.bg-white.px-4.px-lg-5.py-3 {
		padding: 0 30px !important;
	}
	.topbar .px-5 {
		padding: 0 30px !important;
	}
	.navbar-light .navbar-nav .nav-link {
		font-size: 15px;
		margin-right: 15px;
		white-space: nowrap;
	}
	.updated_news, .slide2 {
		min-height: 350px;
	}
}
@media (min-width: 1301px) and (max-width: 1400px) { 
	.slider_bg .carousel-caption h1 {
		font-size: 50px;
	}
	.slider_bg .carousel-item video {
		height: 415.5px;
	}
	.slider_bg .carousel-caption {
		left: 10%;
	}
	.slider_bg .carousel-control-prev {
		top: 45%;
	}
	.bd-header-meta-text p {
		font-size: 14px;
	}
	.navbar-light .navbar-brand img {
		max-height: 50px;
	}
	.navbar-brand h1 {
		font-size: 24px;
	}
	.navbar-light.bg-white.px-4.px-lg-5.py-3 {
		padding: 0 30px !important;
	}
	.topbar .px-5 {
		padding: 0 30px !important;
	}
	.navbar-light .navbar-nav .nav-link {
		font-size: 16px;
		margin-right: 20px;
		white-space: nowrap;
	}
	.updated_news, .slide2 {
		min-height: 350px;
	}
}

@media (min-width: 1401px) and (max-width: 1500px) { 
	.slider_bg .carousel-caption h1 {
		font-size: 50px;
	}
	.slider_bg .carousel-item video {
		height: 415.5px;
	}
	.slider_bg .carousel-caption {
		left: 10%;
	}
	.slider_bg .carousel-control-prev {
		top: 45%;
	}
	.bd-header-meta-text p {
		font-size: 14px;
	}
	.navbar-light .navbar-brand img {
		max-height: 50px;
	}
	.navbar-brand h1 {
		font-size: 24px;
	}
	.navbar-light.bg-white.px-4.px-lg-5.py-3 {
		padding: 0 30px !important;
	}
	.topbar .px-5 {
		padding: 0 30px !important;
	}
	.navbar-light .navbar-nav .nav-link {
		font-size: 16px;
		margin-right: 20px;
		white-space: nowrap;
	}
}

@media (min-width: 1501px) and (max-width: 1600px) { 
	.slider_bg .carousel-caption h1 {
		font-size: 50px;
	}
	.slider_bg .carousel-item video {
		height: 415.5px;
	}
	.slider_bg .carousel-caption {
		left: 10%;
	}
	.slider_bg .carousel-control-prev {
		top: 45%;
	}
	.bd-header-meta-text p {
		font-size: 14px;
	}
	.navbar-light .navbar-brand img {
		max-height: 50px;
	}
	.navbar-brand h1 {
		font-size: 24px;
	}
	.navbar-light.bg-white.px-4.px-lg-5.py-3 {
		padding: 0 30px !important;
	}
	.topbar .px-5 {
		padding: 0 30px !important;
	}
	.navbar-light .navbar-nav .nav-link {
		font-size: 16px;
		margin-right: 20px;
		white-space: nowrap;
	}
}

@media (min-width: 1601px) and (max-width: 1700px) { 
	.slider_bg .carousel-caption h1 {
		font-size: 50px;
	}
	.slider_bg .carousel-item video {
		height: 415.5px;
	}
	.slider_bg .carousel-caption {
		left: 10%;
	}
	.slider_bg .carousel-control-prev {
		top: 45%;
	}
	.bd-header-meta-text p {
		font-size: 14px;
	}
	.navbar-light .navbar-brand img {
		max-height: 50px;
	}
	.navbar-brand h1 {
		font-size: 24px;
	}
	.navbar-light.bg-white.px-4.px-lg-5.py-3 {
		padding: 0 30px !important;
	}
	.topbar .px-5 {
		padding: 0 30px !important;
	}
	.navbar-light .navbar-nav .nav-link {
		font-size: 18px;
		margin-right: 25px;
		white-space: nowrap;
	}
}