/*** Topbar Start ***/
:root {
    --bs-blue: #1f2653;
    --bs-indigo: #03a3a7;
    --bs-gray: #7a7575;
	--bs-gray-dark: #f4f4f4;
	--bs-white: #fff;
	--bs-black: #000;
    --bs-font-sans-serif: 'Barlow', sans-serif;
	--bs-font-sans-serif1: 'Fira Sans', sans-serif;
}
.fixed-top .container {
    transition: 0.5s;
}
a {
    text-decoration: none;
}
:focus-visible {
    outline: none;
}
.topbar {
    padding: 2px 10px 2px 20px;
    background: var(--bs-blue);
	position: relative;
}

.bd-header-top-wrapper {
    position: relative;
    z-index: 0;
}
.bd-header-meta-items-2 {
    gap: 35px;
}
.bd-header-meta-item {
    gap: 8px;
}
.bd-header-meta-icon i {
    color: var(--bs-white);
    font-size: 16px;
}
.social_icons a {
    padding-right: 5px;
}
.bd-header-meta-item.is-white .bd-header-meta-icon i {
    color: #FFFFFF;
}
.bd-header-meta-text p {
    margin: 0;
    font-size: 15px;
	color:var(--bs-white);
}
.bd-header-meta-text p a{
	color:var(--bs-white);
	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: #00bbae;
    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-btn1 {
    background-color: var(--bs-indigo);
	font-family: var(--bs-font-sans-serif1);
	color: var(--bs-white);
	font-size: 16px;
	font-weight: 600;
	padding: 10px 30px;
	transition: all 0.3s ease;
	position: relative;
	-webkit-transition: ease-out 0.4s;
  -moz-transition: ease-out 0.4s;
	box-shadow: inset 0 0 0 0 var(--bs-blue);
	margin-top: 5px;
}
.bd-btn1:hover {
    color: var(--bs-white);
	box-shadow: inset 400px 0 0 0 var(--bs-blue);
	border-color: var(--bs-blue);
}

.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: var(--bs-indigo) !important;
}

.navbar-light .navbar-brand img {
    /* max-height: 50px; */
    transition: .5s;
}

.sticky-top.navbar-light .navbar-brand img {
    max-height: 45px;
}

.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: 991px) {
    .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: var(--bs-indigo);
    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: relative;
        background: var(--bs-white);
    }

    .navbar.navbar-expand-lg .navbar-toggler {
        padding: 10px 20px;
        border: 1px solid var(--bs-indigo);
        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: 0px;
        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;
        top: 0;
    }

    .navbar-light .navbar-nav .nav-link::before {
        position: absolute;
        content: "";
        width: 0;
        height: 2px;
        bottom: -1px;
        left: 50%;
        background: var(--bs-indigo);
        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;
    }
}


#searchModal .modal-content {
    background: rgba(0, 0, 0, .6);
}
#searchModal h4 {
    color: var(--bs-white);
}
#searchModal .btn-close {
    background: var(--bs-white);
    opacity: 1;
    color: var(--bs-primary);

}
#searchModal .btn-close i {
    font-size: 24px;
    padding: 0;
    position: relative;
    top: -8px;
    left: -4px;
}
.btn-check:focus+.btn, .btn:focus {
    box-shadow: 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;
    color: var(--bs-white);
}
.slider_bg .carousel-caption h1{
	font-size: 70px;
	font-weight: bold;
    color: var(--bs-white);
}
.slider_bg .carousel-caption a.btn-primary{
	background-color: var(--bs-indigo);
	font-family: var(--bs-font-sans-serif1);
	color: var(--bs-white);
	font-size: 16px;
	font-weight: 600;
	padding: 10px 30px;
	transition: all 0.3s ease;
	position: relative;
	-webkit-transition: ease-out 0.4s;
  -moz-transition: ease-out 0.4s;
	box-shadow: inset 0 0 0 0 var(--bs-blue);
	margin-top: 5px;
    border: none;
}
.slider_bg .carousel-caption a.btn-primary:hover{
	color: var(--bs-blue);
	box-shadow: inset 400px 0 0 0 var(--bs-white);
	border-color: var(--bs-white);
}
.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;
    border-radius: 50%;
	border: 1px solid #FFFFFF;
    color: #FFFFFF;
}
.slider_bg .carousel-control-prev {
	left: 30px;
    right: inherit;
    top: 40%;
	bottom: inherit;
}
.slider_bg .carousel-control-next {
	left: 30px;
	bottom: inherit;
    top: 48%;
}
.slider_bg .carousel-control-prev-icon, .slider_bg .carousel-control-next-icon {
	background-size: 50%;
}
/*.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, #1f2653 16.09%, rgba(0, 0, 0, 0) 84.22%); */
    background: url(../img/shadow.png) no-repeat;
    
    position: absolute;
    left: 0;
    bottom: 0;
    height: 100%;
    width: 100%;
}


.work_head h1, .courses_services h1 {
    font-weight: 600;
    color: var(--bs-indigo);
    font-size: 40px;
	margin-bottom: 25px;
}
.work_head p, .courses_services p {
	max-width: 725px;
	width: 100%;
	margin: auto;
	font-size: 20px;
	font-family: var(--bs-font-sans-serif);
	line-height: 24px;
	color: var(--bs-gray);
}
/*  Services */
.service {
	/*box-shadow: 0px 5px 15px #787878;*/
	margin-bottom: 20px;
	margin-top: 20px;
	border-radius: 5px;
	background: #d5dafd;
	padding: 30px;
}
.service:hover, .service1:hover, .service2:hover, .service3:hover {
    background: var(--bs-blue);
}
.service:hover h1, .service:hover p, .service1:hover h1, .service1:hover p, .service2:hover h1, .service2:hover p, .service3:hover h1, .service3:hover p {
    color: var(--bs-white);
}
.service img {
	border-top-right-radius: 5px;
	border-top-left-radius: 5px;
}
.service_content {
	padding: 5px 0px 5px;
}
.service_content h1, .service_content p {
	font-size: 22px;
	font-weight: 600;
	font-family: var(--bs-font-sans-serif);
	color: var(--bs-blue);
}
.service_content p {
	font-size: 16px;
	color: var(--bs-blck);
	font-weight: 400;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    line-clamp: 4;
    -webkit-box-orient: vertical;
}

.service1 {
	/*box-shadow: 0px 5px 15px #787878;*/
	margin-bottom: 20px;
	margin-top: 20px;
	border-radius: 5px;
	background: #d2feff;
	padding: 30px;
}
.service1 img {
	border-top-right-radius: 5px;
	border-top-left-radius: 5px;
}
.service_content1 {
	padding: 5px 0px 5px;
}
.service_content1 h1, .service_content1 p {
	font-size: 22px;
	font-weight: 600;
	font-family: var(--bs-font-sans-serif);
	color: var(--bs-blue);
}
.service_content1 p {
	font-size: 16px;
	color: var(--bs-blck);
	font-weight: 400;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    line-clamp: 4;
    -webkit-box-orient: vertical;
}


.service2 {
	/*box-shadow: 0px 5px 15px #787878;*/
	margin-bottom: 20px;
	margin-top: 20px;
	border-radius: 5px;
	background: #ffe8eb;
	padding: 30px;
}
.service2 img {
	border-top-right-radius: 5px;
	border-top-left-radius: 5px;
}
.service_content2 {
	padding: 5px 0px 5px;
}
.service_content2 h1, .service_content2 p {
	font-size: 22px;
	font-weight: 600;
	font-family: var(--bs-font-sans-serif);
	color: var(--bs-blue);
}
.service_content2 p {
	font-size: 16px;
	color: var(--bs-blck);
	font-weight: 400;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    line-clamp: 4;
    -webkit-box-orient: vertical;
}

.service3 {
	/*box-shadow: 0px 5px 15px #787878;*/
	margin-bottom: 20px;
	margin-top: 20px;
	border-radius: 5px;
	background: #e9f6ff;
	padding: 30px;
}
.service3 img {
	border-top-right-radius: 5px;
	border-top-left-radius: 5px;
}
.service_content3 {
	padding: 5px 0px 5px;
}
.service_content3 h1, .service_content3 p {
	font-size: 22px;
	font-weight: 600;
	font-family: var(--bs-font-sans-serif);
	color: var(--bs-blue);
}
.service_content3 p {
	font-size: 16px;
	color: var(--bs-blck);
	font-weight: 400;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    line-clamp: 4;
    -webkit-box-orient: vertical;
}
.btn-read {
	background-color: var(--bs-indigo);
	font-family: var(--bs-font-sans-serif1);
	color: var(--bs-white);
	font-size: 16px;
	font-weight: 600;
	padding: 10px 30px;
	transition: all 0.3s ease;
	position: relative;
	-webkit-transition: ease-out 0.4s;
  -moz-transition: ease-out 0.4s;
	box-shadow: inset 0 0 0 0 var(--bs-blue);
	margin-top: 20px;
}

.btn-read:hover {
	color: var(--bs-blue);
	box-shadow: inset 400px 0 0 0 var(--bs-white);
	border-color: var(--bs-blue);
}
.btn-viewmore {
	background-color: var(--bs-indigo);
	font-family: var(--bs-font-sans-serif1);
	color: var(--bs-white);
	font-size: 16px;
	font-weight: 600;
	padding: 10px 30px;
	transition: all 0.3s ease;
	position: relative;
	-webkit-transition: ease-out 0.4s;
  -moz-transition: ease-out 0.4s;
	box-shadow: inset 0 0 0 0 var(--bs-blue);
	margin-top: 5px;
	margin-bottom: 20px;
}

.btn-viewmore:hover {
	color: var(--bs-white);
	box-shadow: inset 400px 0 0 0 var(--bs-blue);
	border-color: var(--bs-blue);
}

.about-us_home {
	background: var(--bs-gray-dark);
	padding: 30px 0;
}
.aboutus_content {
	padding-left: 50px;
	font-family: var(--bs-font-sans-serif);
	padding-right: 75px;
}
.aboutus_content h6 {
	font-weight: 600;
	color: var(--bs-blue);
	font-size: 16px;
	margin-bottom: 2px;
}
.aboutus_content h1 {
	font-weight: 600;
	color: var(--bs-blue);
	font-size: 40px;
	padding-bottom: 15px;
}
.aboutus_content h5 {
	font-weight: 600;
	color: var(--bs-indigo);
	font-size: 20px;
	padding-top: 3px;
	padding-bottom: 12px;
}
.aboutus_content p {
	font-weight: 400;
	color: var(--bs-gray);
	font-size: 16px;
	line-height: 24px;
}

.btn-read1 {
	background-color: var(--bs-indigo);
	font-family: var(--bs-font-sans-serif1);
	color: var(--bs-white);
	font-size: 16px;
	font-weight: 600;
	padding: 10px 30px;
	transition: all 0.3s ease;
	position: relative;
	-webkit-transition: ease-out 0.4s;
  -moz-transition: ease-out 0.4s;
	box-shadow: inset 0 0 0 0 var(--bs-blue);
	margin-top: 5px;
	margin-bottom: 20px;
}

.btn-read1:hover {
	color: var(--bs-white);
	box-shadow: inset 400px 0 0 0 var(--bs-blue);
	border-color: var(--bs-blue);
}

/* work process style */
.work_head {
	padding-top: 34px;
}
.work_head h6{
	font-weight: 600;
    color: var(--bs-blue);
    font-size: 16px;
}
.work_head h1 {
    font-weight: 600;
    color: var(--bs-blue);
    font-size: 40px;
	margin-bottom: 25px;
}
.work_head p {
	max-width: 725px;
	width: 100%;
	margin: auto;
	font-size: 20px;
	font-family: var(--bs-font-sans-serif);
	line-height: 24px;
	color: var(--bs-gray);
}
.work-img {
	position: relative;
}
.circle {
	position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
}
.number {
	border-radius: 50%;
	width: 60px;
	height: 60px;
	background: var(--bs-blue);
	line-height: 60px;
    text-align: center;
	color: var(--bs-white);
	font-family: var(--bs-font-sans-serif);
	font-size: 20px;
	font-weight: 600;
}
.work-process {
	margin-bottom: 40px;
	margin-top: 43px;
	border-radius: 5px;
	background-color: var(--bs-gray-dark);
}
.work-process img {
	border-top-right-radius: 5px;
	border-top-left-radius: 5px;
}
.work-process_content {
	padding: 45px 20px 35px;
    min-height: 220px;
}
.work-process_content h1, .work-process_content p {
	font-size: 22px;
	font-weight: 600;
	font-family: var(--bs-font-sans-serif);
	color: var(--bs-blue);
}
.work-process_content p {
	font-size: 16px;
	color: var(--bs-gray);
	font-weight: 400;
	line-height: 20px;
	margin-bottom: 0;
}
.btn-work-process {
	background-color: var(--bs-indigo);
	font-family: var(--bs-font-sans-serif1);
	color: var(--bs-white);
	font-size: 16px;
	font-weight: 600;
	padding: 10px 30px;
	transition: all 0.3s ease;
	position: relative;
	-webkit-transition: ease-out 0.4s;
  -moz-transition: ease-out 0.4s;
	box-shadow: inset 0 0 0 0 var(--bs-blue);
}

.btn-work-process:hover {
	color: var(--bs-white);
	box-shadow: inset 400px 0 0 0 var(--bs-blue);
}
.client-slide {
	background: var(--bs-blue);
}
.work {
	border-right: 1px solid #0b1034;
	padding: 60px 20px;
}


.client-slide .carousel-indicators button {
    height: 12px !important;
    width: 12px !important;
    border-radius: 50%;
	background-color: var(--bs-blue) !important;
	opacity: 1 !important;
  }
  .client-slide .carousel-indicators .active {
	background-color: var(--bs-indigo) !important;
}
.client-slide .carousel-indicators {
	margin: 30px 0;
}
.request-section {
	position: relative;
	background-color: var(--bs-black);
}
.request-img{
	position: absolute;
    top: 0;
    left: 0;
	width: 100%;
    max-width: 962px;
    height: 608px;
 
}
.request-head {
	padding: 200px 0;
}
.request-head h1 {
	font-size: 56px;
	font-weight: 600;
	color: var(--bs-white);
    line-height: 84px;
	font-family: var(--bs-font-sans-serif1);
	margin-bottom: 2rem;
}
.request-button a {
	position: relative;
	color: var(--bs-white);
	font-size: 22px;
	font-family: var(--bs-font-sans-serif);
	text-decoration: none;
	padding-right: 180px;
}
.request-button img {
	padding-left: 30px;
	-webkit-transition: transform 0.3s ease-out;
        -moz-transition: transform 0.3s ease-out;
        -ms-transition: transform 0.3s ease-out;
        -o-transition: transform 0.3s ease-out;
        transition: transform 0.3s ease-out;
}
.request-button a:hover img {
	-webkit-transform: translateX(4px);
            -moz-transform: translateX(14px);
            -ms-transform: translateX(14px);
            -o-transform: translateX(14px);
            transform: translateX(14px);
}
.request-section .input-group {
	border-bottom: 2px solid #e6e6e6;
}
.request-section .form-control {
	color: var(--bs-white);
	font-size: 20px;
}
.request-section .form-control,  .request-section .form-control:focus{
    border: none;
	background-color: transparent;
	outline: 0;
	color: var(--bs-white);
	}
    .request-section .input-group input.form-control:focus-visible{
    border: none;
	background-color: transparent;
	outline: 0;
	box-shadow: none;
	}
    .request-section .input-group-text {
	background-color: transparent;
	border: none;
}
.request-section .form-control::-webkit-input-placeholder { 
	color: var(--bs-white) !important;
}
.request-section .form-control::input-placeholder { 
	color: var(--bs-white) !important;
}
.request-form {
	padding: 60px 0px 58px 60px;
}
.request-form h1{
	color: var(--bs-white);
	font-size: 40px;
	font-weight: 600;
	font-family: var(--bs-font-sans-serif);
}
.request-form p {
	color: var(--bs-white);
	font-size: 20px;
	font-family: var(--bs-font-sans-serif);
}
.btn-touch {
	background-color: var(--bs-indigo);
	font-family: var(--bs-font-sans-serif1);
	color: var(--bs-white);
	font-size: 16px;
	font-weight: 600;
	padding: 11px 26px;
	transition: all 0.3s ease;
	position: relative;
	-webkit-transition: ease-out 0.4s;
  -moz-transition: ease-out 0.4s;
	box-shadow: inset 0 0 0 0 var(--bs-blue);
	border: none;
	margin-top: 40px;
}

.btn-touch:hover {
	color: var(--bs-white);
	box-shadow: inset 400px 0 0 0 var(--bs-blue);
}
.footer {
	background-color: var(--bs-blue);
	font-size: 16px;
	font-family: var(--bs-font-sans-serif);
	color: var(--bs-white);
	padding: 30px 0;
}
.footer p {
	margin-bottom: 0;
    color: var(--bs-white);
}
.footer a {
	color: var(--bs-white);
	text-decoration: none;
	text-align: right;
}
.policy {
	padding-right: 10px;
}
.terms {
	padding-left: 10px;
}
.footer a:hover {
	color: var(--bs-indigo);
	text-decoration: underline;
}

.popular_section, .Latest_section, .blog {
    padding: 50px 0;
}
.Latest_section h1, .blog h1 {
    font-weight: 700;
    padding-bottom: 20px;
    margin-bottom: 0;
    font-size: 40px;
}

/*** Category ***/
.cat-item {
    display: block;
    box-shadow: none;
    border-radius: 5px;
    transition: .5s;
    color: #393939;
    background-color: var(--white);
}
.cat-item .class-image {
    overflow: hidden;
}
.cat-item .class-image img{
    transition: 0.5s;
    border-radius: 5px 5px 0 0;
}
.cat-item:hover .class-image img {
    transform: rotate(2deg) scale(1.2);
}
.cat-item h1 {
    color: var(--dark);
    font-size: 25px;
    font-weight: bold;
}
.cat-item h1 a {
    color: var(--dark);
}
.cat-item:hover h1 a {
    color: var(--bs-indigo);
}
.cat-item p {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    font-family: "Roboto", sans-serif;
    font-size: 16px;
    line-height: 30px;
    color: var(--dark);
    font-weight: 400;
}
.cat-item:hover {
    border-color: rgba(0, 0, 0, .08);
    box-shadow: none;
}
/* Latest News */
.news_latest {
    background-color: #d6feff;
}
.news_latest .post-meta, .blog_detail_content .post-meta{
    padding-left: 0;
    margin-bottom: 0;
}
.news_latest .post-meta li, .blog_detail_content .post-meta li {
    list-style-type: none;
    display: inline-block;
    font-size: 16px;
    font-weight: 500;
    color: var(--bs-black);
    margin-right: 15px;
}
.news_latest .post-meta li span, .blog_detail_content .post-meta li span {
    color: #0224ff;
}
.popular_content {
    padding: 30px;
}

/* 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: 36px;
    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: #85f2f5;
}
.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: "/";
}
p {
    font-weight: 400;
    color: var(--bs-gray);
    font-size: 18px;
    line-height: 28px;
}

.course_tab {
	margin: 0 0 35px;
    padding: 15px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    background-color: var(--bs-gray-dark);
    border-radius: 14px;
}
.course_tab button.nav-link {
	list-style: none;
    display: inline-block;
    margin-right: 20px;
}
.course_tab .nav-link {
	background-color: var(--bs-white);
    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:hover {
    background-color: var(--bs-blue);
    color: #FFFFFF;
}
.course_tab .nav-link.active {
    color: #FFFFFF;
    background-color: var(--bs-blue);
    border-color: #dee2e6 #dee2e6 #fff;
}
.course-details__overview__lists {
    margin: 27px 0 0;
    padding: 0;
}
.course-details__overview__lists li {
    display: block;
    position: relative;
    padding: 0 0 0 38px;
    font-size: 20px;
    line-height: 30px;
    font-weight: 500;
    color: var(--bs-black);
    margin: 0 0 14px;
}
.course-details__overview__lists li span {
    position: absolute;
    left: 0;
    top: 3px;
    width: 24px;
    height: 24px;
    background-color: var(--bs-indigo);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: var(--bs-white);
}
h1, h2 {
    color: var(--bs-blue);
    font-weight: bold;
}
h1 {
    font-size: 24px;
}
.blog_details {
    background-color: #f1f1f1;
    border-radius: 5px;
}
.blog_details {
    padding: 20px 30px;
}
.blog_detail_img img {
    border-radius: 5px;
}

.curricular_list {
    padding: 0;
    margin: 0;
}
.curricular_list li {
    list-style: none;
    padding-bottom: 8px;
    margin-left: 1.5em;
    font-weight: 400;
    color: var(--bs-gray);
    font-size: 18px;
    line-height: 28px;
}
.curricular_list li::before {
    content: "\f270";
    font-family: bootstrap-icons !important;
    float: left;
    margin-left: -1.5em;
    color: var(--bs-indigo);
}
.curricular_list li a{
    color: var(--bs-blue);
}
.curricular_list li i {
    color: var(--bs-indigo);
    font-weight: bold;
}

.curricular_list1 {
    padding: 0;
    margin: 0;
}
.curricular_list1 li {
    list-style: none;
    font-size: 20px;
    padding-bottom: 15px;
    padding-top: 15px;
    border-bottom: 1px solid #95dbdd;
}
.curricular_list1 li a{
    color: var(--bs-blue);
}
.curricular_list1 li a:hover{
    color: var(--bs-indigo);
}
.curricular_list1 li i {
    color: var(--bs-indigo);
    font-weight: bold;
}

/*** Blog Start ***/
.blog .blog-item {
    border-radius: 10px;
    transition: 0.5s;
}

.blog .blog-item:hover {
    box-shadow: 0 0 45px rgba(0, 0, 0, .1);
}

.blog .blog-item:hover .blog-content {
    background: var(--bs-white);
}

.blog .blog-item .blog-img {
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    position: relative;
    overflow: hidden;
}

.blog .blog-item .blog-img img {
    transition: 0.5s;
}

.blog .blog-item:hover .blog-img img {
    transform: scale(1.2);
}

.blog .blog-item .blog-img::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    background: rgba(1, 95, 201, .2);
    transition: 0.5s;
    z-index: 1;
}

.blog .blog-item:hover .blog-img::after {
    height: 100%;
}

.blog .blog-item .blog-img .blog-categiry {
    position: absolute;
    bottom: 0;
    right: 0;
    border-top-left-radius: 10px;
    display: inline-flex;
    color: var(--bs-white);
    background: var(--bs-primary);
    z-index: 9;
}

.blog .blog-item .blog-content {
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    background: var(--bs-light);
}

.blog .blog-item .blog-content a.btn {
    color: var(--bs-white);
}

.blog .blog-item:hover .blog-content a.btn:hover {
    color: var(--bs-white);
}
/*** Blog End ***/



/*** Blog Start ***/
.blog1 .blog-item {
    border-radius: 10px;
    transition: 0.5s;
}

.blog1 .blog-item:hover {
    box-shadow: 0 0 45px rgba(0, 0, 0, .1);
}

.blog1 .blog-item:hover .blog-content {
    background: var(--bs-white);
}

.blog1 .blog-item .blog-img {
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    position: relative;
    overflow: hidden;
}

.blog1 .blog-item .blog-img img {
    transition: 0.5s;
}

.blog1 .blog-item:hover .blog-img img {
    transform: scale(1.2);
}

.blog1 .blog-item .blog-img::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    background: rgba(1, 95, 201, .2);
    transition: 0.5s;
    z-index: 1;
}

.blog1 .blog-item:hover .blog-img::after {
    height: 100%;
}

.blog1 .blog-item .blog-img .blog-categiry {
    position: absolute;
    bottom: 0;
    right: 0;
    border-top-left-radius: 10px;
    display: inline-flex;
    color: var(--bs-white);
    background: var(--bs-primary);
    z-index: 9;
}

.blog1 .blog-item .blog-content {
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    background: var(--bs-light);
}

.blog1 .blog-item .blog-content a.btn {
    color: var(--bs-white);
}

.blog1 .blog-item:hover .blog-content a.btn:hover {
    color: var(--bs-white);
}
/*** Blog End ***/



.faq-section {
    background: #fdfdfd;
    padding: 5vh 0 0;
    margin-bottom: 25px;
}
.faq-title h2 {
  position: relative;
  margin-bottom: 45px;
  display: inline-block;
  font-weight: 600;
  line-height: 1;
}
.faq-title h2::before {
    content: "";
    position: absolute;
    left: 50%;
    width: 60px;
    height: 2px;
    background: #E91E63;
    bottom: -25px;
    margin-left: -30px;
}
.faq-title p {
  padding: 0 190px;
  margin-bottom: 10px;
}

.faq {
  background: #FFFFFF;
  box-shadow: 0 2px 48px 0 rgba(0, 0, 0, 0.06);
  border-radius: 4px;
}

.faq .card {
  border: none;
  background: none;
  border-bottom: 1px dashed #CEE1F8;
}

.faq .card .card-header {
  padding: 0px;
  border: none;
  background: none;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.faq .card .card-header:hover {
    background: rgba(31, 38, 83, 0.1);
    padding-left: 10px;
}
.faq .card .card-header .faq-title {
  width: 100%;
  text-align: left;
  padding: 0px;
  padding-left: 30px;
  padding-right: 30px;
  font-weight: 400;
  font-size: 15px;
  letter-spacing: 1px;
  color: #3B566E;
  text-decoration: none !important;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  cursor: pointer;
  padding-top: 20px;
  padding-bottom: 20px;
}

.faq .card .card-header .faq-title .badge {
  display: inline-block;
  width: 20px;
  height: 20px;
  line-height: 14px;
  -webkit-border-radius: 100px;
  -moz-border-radius: 100px;
  border-radius: 100px;
  text-align: center;
  background: var(--bs-blue);
  color: #fff;
  font-size: 12px;
  margin-right: 20px;
}

.faq .card .card-body {
  padding: 30px;
  padding-left: 35px;
  padding-bottom: 16px;
  font-weight: 400;
  font-size: 16px;
  color: #6F8BA4;
  line-height: 28px;
  letter-spacing: 1px;
  border-top: 1px solid #F3F8FF;
}

.faq .card .card-body p {
  margin-bottom: 14px;
}
.itexpert h2 {
    font-size: 20px;
    color: var(--bs-indigo);
}
.itexpert h3 {
    font-size: 18px;
    color: var(--bs-black);
}
@media (max-width: 991px) {
  .faq {
    margin-bottom: 30px;
  }
  .faq .card .card-header .faq-title {
    line-height: 26px;
    margin-top: 10px;
  }
}

.courses_links {
    background-color: #d6feff;
    padding: 30px;
}

@media (max-width: 576px) {
    .slider_bg .carousel-caption h1 {
        font-size: 20px;
    }
    .slider_bg .carousel-caption p {
        font-size: 16px;
        position: relative;
        top: 20px;
        padding-left: 0 !important;
    }
    
    .slider_bg .carousel-control-prev-icon, .slider_bg .carousel-control-next-icon {
        width: 25px;
        height: 25px;
    }
    .slider_bg .carousel-caption a.btn-primary {
        padding: 5px 10px !important;
        bottom: 15px;
        font-size: 12px;
    }
    .slider_bg .carousel-control-prev {
        left: 0;
    }
    .slider_bg .carousel-control-next {
        right: 0;
        left: inherit;
        top: 40%;
    }
    .slider_bg .carousel-caption {
        left: 8%;
    }
    .aboutus_content {
        padding-left: 0;
        padding-right: 0;
    }
    .request-form {
        padding: 30px 0 30px 0;
    }
    .request-img {
        height: auto;
    }
    .request-head {
        padding: 30px 5px 20px 5px;
    }
    .request-head h1 {
        font-size: 24px;
        margin-bottom: 0;
    }
    .request-button a {
        padding-right: 0;
    }
    
    .request-button a:hover img {
        
        transform: rotate(90deg);
    }
    
}


@media (min-width: 577px) and (max-width: 768px) {
    .slider_bg .carousel-caption h1 {
        font-size: 30px;
    }
    .slider_bg .carousel-caption p {
        font-size: 16px;
        position: relative;
        top: 20px;
        padding-left: 0 !important;
    }
    
    .slider_bg .carousel-control-prev-icon, .slider_bg .carousel-control-next-icon {
        width: 25px;
        height: 25px;
    }
    .slider_bg .carousel-caption a.btn-primary {
        padding: 5px 10px !important;
        bottom: 15px;
        font-size: 12px;
    }
    .slider_bg .carousel-control-prev {
        left: 0;
    }
    .slider_bg .carousel-control-next {
        right: 0;
        left: inherit;
        top: 40%;
    }
    .slider_bg .carousel-caption {
        left: 8%;
    }
    .aboutus_content {
        padding-left: 0;
        padding-right: 0;
    }
    .request-form {
        padding: 30px 0 30px 0;
    }
    .request-img {
        height: auto;
    }
    .request-head {
        padding: 120px 0;
    }
    .request-button {
        text-align: left !important;
    }
    .request-head h1 {
        font-size: 24px;
        margin-bottom: 0;
    }
    .request-button a {
        padding-right: 0;
    }
    
    .request-button a:hover img {
        
        transform: rotate(90deg);
    }
}

@media (min-width: 769px) and (max-width: 991px) {
    .slider_bg .carousel-caption h1 {
        font-size: 40px;
    }
    .slider_bg .carousel-caption p {
        font-size: 16px;
        position: relative;
        top: 20px;
        padding-left: 0 !important;
    }
    
   
    .slider_bg .carousel-control-prev {
        left: 1%;
    }
    .slider_bg .carousel-control-next {
        right: 1%;
        left: inherit;
        top: 40%;
    }
    .slider_bg .carousel-caption {
        left: 8%;
    }


    .aboutus_content {
        padding-left: 0;
        padding-right: 0;
    }
    .request-form {
        padding: 30px 0 30px 0;
    }
    
    .request-img {
        height: 570px;
    }
    .request-button {
        text-align: left !important;
    }
    .request-head h1 {
        font-size: 24px;
        margin-bottom: 0;
    }
    .request-button a {
        padding-right: 0;
    }
    
    .request-button a:hover img {
        
        transform: rotate(90deg);
    }
}


@media (min-width: 991px) and (max-width: 1200px) {
    .slider_bg .carousel-item::before {
        width: 50%;
    }
    .navbar-light .navbar-brand img {
        width: 100%;
    }
    .logo {
        width: 50%;
    }
    .navbar-light .navbar-nav .nav-link {
        white-space: nowrap;
        font-size: 16px;
    }
    .slider_bg .carousel-caption h1 {
        font-size: 40px;
    }
    .slider_bg .carousel-caption p {
        font-size: 16px;
        position: relative;
        top: 20px;
        padding-left: 0 !important;
    }
    
   
    .slider_bg .carousel-control-prev {
        left: 1%;
    }
    .slider_bg .carousel-control-next {
        right: 1%;
        left: inherit;
        top: 40%;
    }
    .slider_bg .carousel-caption {
        left: 8%;
    }


    .aboutus_content {
        padding-left: 0;
        padding-right: 0;
    }
    .request-form {
        padding: 30px 0 30px 0;
    }
    
    .request-img {
        height: 558px;
        width: 530px;
    }
    .request-button {
        text-align: left !important;
    }
    .request-head {
        padding: 183px 0;
    }
    .request-head h1 {
        font-size: 24px;
        margin-bottom: 0;
    }
    
}



@media (min-width: 1201px) and (max-width: 1400px) {
    .slider_bg .carousel-item::before {
        width: 50%;
    }
   
    .navbar-light .navbar-nav .nav-link {
        white-space: nowrap;
        font-size: 16px;
    }
    .slider_bg .carousel-caption h1 {
        font-size: 40px;
    }
    .slider_bg .carousel-caption p {
        font-size: 16px;
        position: relative;
        top: 20px;
        padding-left: 0 !important;
    }
    
   
    .slider_bg .carousel-control-prev {
        left: 1%;
    }
    .slider_bg .carousel-control-next {
        right: 1%;
        left: inherit;
        top: 40%;
    }
    .slider_bg .carousel-caption {
        left: 8%;
    }


    .aboutus_content {
        padding-left: 0;
        padding-right: 0;
    }
    .request-form {
        padding: 30px 0 30px 0;
    }
    
    .request-img {
        height: 550px;
        width: 530px;
    }
    .request-button {
        text-align: left !important;
    }
    .request-head {
        padding: 183px 0;
    }
    .request-head h1 {
        font-size: 24px;
        margin-bottom: 0;
    }
    
}



@media (min-width: 1401px) and (max-width: 1600px) {
    .slider_bg .carousel-item::before {
        width: 50%;
    }
   
    .navbar-light .navbar-nav .nav-link {
        white-space: nowrap;
        font-size: 16px;
    }
    .slider_bg .carousel-caption h1 {
        font-size: 40px;
    }
    .slider_bg .carousel-caption p {
        font-size: 16px;
        position: relative;
        top: 20px;
        padding-left: 0 !important;
    }
    
   
    .slider_bg .carousel-control-prev {
        left: 1%;
    }
    .slider_bg .carousel-control-next {
        right: 1%;
        left: inherit;
        top: 40%;
    }
    .slider_bg .carousel-caption {
        left: 8%;
    }


    .aboutus_content {
        padding-left: 0;
        padding-right: 0;
    }
    .request-form {
        padding: 30px 0 30px 0;
    }
    
    .request-img {
        height: 525px;
        width: 680px;
    }
    .request-button {
        text-align: left !important;
    }
    .request-head {
        padding: 183px 0;
    }
    .request-head h1 {
        font-size: 24px;
        margin-bottom: 0;
    }
    
}

@media (min-width: 1601px) and (max-width: 1800px) {
    


    .request-form {
        padding: 30px 0 30px 0;
    }
    
    .request-img {
        height: 525px;
        width: 780px;
    }
    .request-button {
        text-align: left !important;
    }
    .request-head {
        padding: 183px 0;
    }
    .request-head h1 {
        font-size: 24px;
        margin-bottom: 0;
    }
    
}

.blog_detail_content ul{
   
   margin:0 0 20px 0;
}
.blog_detail_content ul li {
    list-style: none;
    font-size: 20px;
    padding-bottom: 15px;
    padding-top: 15px;
    border-bottom: 1px solid #95dbdd;
}
.blog_detail_content ul li a{
    color: var(--bs-blue);
}
.blog_detail_content ul li a:hover{
    color: var(--bs-indigo);
}
.blog_detail_content ul li i {
    color: var(--bs-indigo);
    font-weight: bold;
}
.blog_detail_content ul li::before {
    content: "\f270";
    font-family: bootstrap-icons !important;
    float: left;
    margin-left: -1.5em;
    color: var(--bs-indigo);
}