/********** Template CSS **********/
:root {
    --primary: #0463FA;
    --light: #EFF5FF;
    --dark: #1B2C51;
}

.fw-medium {
    font-weight: 500 !important;
}

.fw-bold {
    font-weight: 700 !important;
}

.fw-black {
    font-weight: 900 !important;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/
.btn {
    font-weight: 500;
    transition: .5s;
}

.btn.btn-primary,
.btn.btn-secondary {
    color: #FFFFFF;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}


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

.navbar .navbar-nav .nav-link {
    margin-right: 30px;
    padding: 25px 0;
    color: #FFFFFF;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    outline: none;
}

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

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

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

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

.navbar .navbar-nav .nav-link {
    color: var(--dark);
    font-weight: 500;
}

.navbar.sticky-top {
    top: -100px;
    transition: .5s;
    height: auto;
    padding: 10px 0 !important;
}

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

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


/*** Header ***/
.header-carousel .owl-carousel-text {
    position: absolute;
    width: 100%;
    height: 100%;
    padding: 3rem;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-shadow: 0 0 30px rgba(0, 0, 0, .1);
}

.header-carousel .owl-nav {
    position: absolute;
    width: 240px;
    height: 45px;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: space-between;
}

.header-carousel .owl-nav .owl-prev,
.header-carousel .owl-nav .owl-next {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    background: transparent;
    border: 1px solid #FFFFFF;
    border-radius: 45px;
    font-size: 22px;
    transition: .5s;
}

.header-carousel .owl-nav .owl-prev:hover,
.header-carousel .owl-nav .owl-next:hover {
    background: var(--primary);
    border-color: var(--primary);
}

.header-carousel .owl-dots {
    position: absolute;
    height: 45px;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 15px;
    height: 15px;
    background: transparent;
    border: 1px solid #FFFFFF;
    border-radius: 15px;
    transition: .5s;
}

.header-carousel .owl-dot::after {
    position: absolute;
    content: "";
    width: 5px;
    height: 5px;
    top: 4px;
    left: 4px;
    background: #FFFFFF;
    border-radius: 5px;
}

.header-carousel .owl-dot.active {
    background: var(--primary);
    border-color: var(--primary);
}

.page-header {
    background: url(../img/header-page.jpg) top center no-repeat;
    background-size: cover;
    text-shadow: 0 0 30px rgba(0, 0, 0, .1);
}

.breadcrumb-item + .breadcrumb-item::before {
    color: var(--light);
}


/*** Service ***/
.service-item {
    transition: .5s;
}

.service-item .btn {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    background: #FFFFFF;
    border-radius: 40px;
    white-space: nowrap;
    overflow: hidden;
    transition: .5s;
}

.service-item:hover .btn {
    width: 140px;
}


/*** Feature ***/
@media (min-width: 992px) {
    .container.feature {
        max-width: 100% !important;
    }

    .feature-text  {
        padding-left: calc(((100% - 960px) / 2) + .75rem);
    }
}

@media (min-width: 1200px) {
    .feature-text  {
        padding-left: calc(((100% - 1140px) / 2) + .75rem);
    }
}

@media (min-width: 1400px) {
    .feature-text  {
        padding-left: calc(((100% - 1320px) / 2) + .75rem);
    }
}


/*** Team ***/
.team-item img {
    position: relative;
    top: 0;
    transition: .5s;
}

.team-item:hover img {
    top: -30px;
}

.team-item .team-text {
    position: relative;
    height: 100px;
    transition: .5s;
}

.team-item:hover .team-text {
    margin-top: -60px;
    height: 160px;
}

.team-item .team-text .team-social {
    opacity: 0;
    transition: .5s;
}

.team-item:hover .team-text .team-social {
    opacity: 1;
}

.team-item .team-social .btn {
    display: inline-flex;
    color: var(--primary);
    background: #FFFFFF;
    border-radius: 40px;
}

.team-item .team-social .btn:hover {
    color: #FFFFFF;
    background: var(--primary);
}


/*** Appointment ***/
.bootstrap-datetimepicker-widget.bottom {
    top: auto !important;
}

.bootstrap-datetimepicker-widget .table * {
    border-bottom-width: 0px;
}

.bootstrap-datetimepicker-widget .table th {
    font-weight: 500;
}

.bootstrap-datetimepicker-widget.dropdown-menu {
    padding: 10px;
    border-radius: 2px;
}

.bootstrap-datetimepicker-widget table td.active,
.bootstrap-datetimepicker-widget table td.active:hover {
    background: var(--primary);
}

.bootstrap-datetimepicker-widget table td.today::before {
    border-bottom-color: var(--primary);
}


/*** 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;
}

@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-item .testimonial-text {
    background: var(--light);
    transform: scale(.8);
    transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-text {
    background: var(--primary);
    transform: scale(1);
}

.testimonial-carousel .owl-item .testimonial-text *,
.testimonial-carousel .owl-item .testimonial-item img {
    transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-text * {
    color: var(--light) !important;
}

.testimonial-carousel .owl-item.center .testimonial-item img {
    background: var(--primary) !important;
} 

.testimonial-carousel .owl-nav {
    position: absolute;
    width: 350px;
    top: 15px;
    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);
}


/*** Footer ***/
.footer .btn.btn-social {
    margin-right: 5px;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    border: 1px solid #FFFFFF;
    transition: .3s;
}

.footer .btn.btn-social:hover {
    color: var(--primary);
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: #FFFFFF;
    font-size: 15px;
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

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

.footer .copyright {
    padding: 25px 0;
    font-size: 15px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

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

/* Custom CSS */

body {
    color: #616266;
    overflow-x: hidden;
    font-size: 18px;
}
.btn-primary {
    background-color: #1863DC;
    border-color: #1863DC;
}
.bg-primary {
    background-color: #1863DC!important;
}
.container, .container-lg, .container-md, .container-sm, .container-xl {
    max-width: 1320px;
}
p.d-inline-block.border.py-1.px-4 {
    display: none !important;
}
a.btn.btn-primary.rounded-0.py-4.px-lg-5.d-none.d-lg-block {
    padding: 10px 20px !important;
    height: auto;
    border-radius: 6px !important;
	margin-left: 50px;
}
a.btn.btn-primary.rounded-0.py-4.px-lg-5.d-none.d-lg-block i {
    padding-left: 8px;
}
.footer  i {
    padding-right: 8px;
    color: #1863DC;
}
i.far.fa-check-circle.text-primary.me-3 {
    margin-right: 8px;
    color: #ea7322 !important;
}
#header .fa-map-marker-alt:before, #header .fa-phone-alt:before, #header a, 
#contact i {
    color: #ea7322!important;
}
#contact .ms-4 {
    margin-left: 20px;
}
div#about {
    padding-top: 70px;
    padding-bottom: 60px;
}
#about span, #build-a-business span {
    padding-left: 30px;
}
#market-research h4, #about b, #build-a-business b {
    color: #1863DC;
}
#management-consulting .b {
    font-size: 24px;
    line-height: 32px;
}
#management-consulting  .big {
    font-size: 20px;
    margin-bottom: 20px !important;
    padding: 0 300px;
}
#management-consulting  b {
    font-size: 24px;
}
h1 {
    color: #000;
}

 /* Banner CSS */
.banner {
	position: relative;
	clear: both;
	padding-top: 0;
}
.banner .carousel-item  img {
	width: 100%;
}
.banner .carousel-caption h2 {
	color: #fff;
	font-weight: 600;
	font-size: 3em;
	margin-bottom: 10px;
}
.banner .carousel-caption p {
	font-size: 20px;
	color: #fff;
	text-align: left;
	margin-bottom: 50px;
	line-height: 28px;
}
.banner .carousel-caption .btn {
    background: #ea7322;
    color: #fff;
    padding: 14px 30px;
    display: inline-block;
    font-weight: 600;
    text-align: center;
    border-radius: 4px;
    text-transform: uppercase;
    font-size: 15px;
}
.banner .carousel-caption .btn:hover {
	background: #1863DC;
	color: #fff;
}
.banner .carousel-caption {
	position: absolute;
	right: 0%;
	bottom: 120px;
	left: 10%;
	z-index: 10;
	padding-top: 0px;
	padding-bottom: 0;
	color: #fff;
	text-align: left;
	width: 40%;
}
.banner .carousel-control-next, .carousel-control-prev {
	opacity: .8;
}
.banner .carousel-control-next-icon, .carousel-control-prev-icon {
	width: 35px;
	height: 35px;
}

.banner .carousel-control-next, .banner .carousel-control-prev {
	width: 5%;
}
.carousel-indicators {
	bottom: 70px;
}
.carousel-indicators .active {
	background-color: #fe9804;
}

@media (min-width: 1920px) {
.banner .carousel-caption {
	right: 0%;
	bottom: 190px;
	left: 17%;
	width: 33%;
}

}

@media (max-width: 767px) {
.banner {
	padding-top: 0;
}
.banner .carousel-caption {
	bottom: 25px;
}
.banner .carousel-caption h2 {
	font-size: 14px;
	line-height: 22px;
}
.banner .carousel-caption p, .carousel-indicators {
	display: none;
}
.banner .carousel-caption .btn {
	padding: 6px 16px;
	text-transform: capitalize;
	font-size: 16px;
	font-weight: 400;
}
.banner .carousel-control-next, .banner .carousel-control-prev {
	width: 6%;
}
.banner .carousel-control-prev {
	left: 10px;
}
.banner .carousel-control-next {
	right: 10px;
}

}

@media only screen and (min-width: 768px) and (max-width: 1199px) {
.banner {
	padding-top: 0;
}
.banner .carousel-caption {
	bottom: 40px;
}
.banner .carousel-caption h2 {
	font-size: 24px;
}
.banner .carousel-caption p {
	font-size: 14px;
	margin-bottom: 20px;
	line-height: 22px;
}
.banner .carousel-caption .btn {
	padding: 10px 22px;
	font-weight: 500;
	font-size: 15px;
}
.banner .carousel-control-prev {
	left: 10px;
}
.banner .carousel-control-next {
	right: 10px;
}
.carousel-indicators {
	display: none;
}


}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
	.banner .carousel-caption {
	bottom:110px;
}

}

@media only screen and (min-width: 1280px) and (max-width: 1439px) {
.banner .carousel-caption {
	bottom: 140px;
}

}

/* Banner CSS End */

.navbar-brand img {
    width: 240px;
    /* margin-top: 14px; */
}

.btn.btn-primary{
	padding: 12px 30px;
}
.back-to-top {
	padding: 0 !important;
}

.navbar h1 {
	font-size: 24px;
}
#contact h1 {
	font-size: 32px;
	margin-bottom: 40px !important;
}
.d-inline-block.border.rounded-pill.py-1.px-4 {
	color: #777;
}

.header p {
	color: #fff;
	margin-bottom: 50px;
	font-size: 17px;
}

.owl-carousel-item:before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	right: 0;
	background: rgba(0,0,0,0.5);
}
.owl-carousel h1 {
	font-size: 3.5rem;
}

#market-research .btnz {
    background: #1863DC;
    padding: 12px 30px;
    border-radius: 5px;
    margin-top: 40px;
    display: table;
    border: 1px solid #1863DC;
    color: #fff;
}
#market-research .btnz:hover {
    background: #ea7322;
    color: #fff;
	border: 1px solid #ea7322;
	text-decoration:none;
}
#market-research .service-item {
}
#market-research .service-item-img {
	float: right;
	/* width: 500px; */
	margin-top: -515px;
	margin-right: 20px;
}
#market-research .service-item-img img {
	max-width: 58%;
	float: right;
}
#market-research .service-item p {
	width: 60%;
}

.header  .btnz {
	border: 1px solid #fff;
	color: #fff;
	top: 40px;
	position: relative;
	border-radius: 50px;
	padding: 14px 10px;
	width: 160px;
	text-align: center;
}

#contact .bg-light.rounded.p-5 {
	padding: 15px !important;
}
div#management-consulting {
    padding: 20px 0;
}
#management-consulting p {
    padding: 0 200px;
}
.footer.bg-dark {
    background-color: #000!important;
}
.footer a {
	color: #fff;
}

/* Responsive CSS */

@media only screen and (max-width: 850px) {
h1.mb-4, h1 {
	font-size: 26px;
	line-height: 34px;
	margin-bottom: 15px !important;
	margin-top: 25px;
}
div#about {
	padding-bottom: 0;
}
#market-research img {
	margin-top: 40px;
}
#management-consulting .py-5 {
	padding-top: 10px !important;
	padding-bottom: 30px !important;
}
#management-consulting p {
	padding: 0;
}
#management-consulting .b {
	font-size: 20px;
	line-height: 28px;
}
#management-consulting .big {
	font-size: 18px;
	margin-bottom: 0 !important;
	padding: 0;
}
#management-consulting b {
	font-size: 20px;
}
#market-research .mb-5 {
	margin: 0 !important;
}
#build-a-business {
	padding-top: 0 !important;
}
#build-a-business h4, #market-research h4 {
	font-size: 20px;
	font-weight: 600;
}
#build-a-business span {
	height: 50px;
	display: block;
}
#contact {
	padding-top: 0 !important;
}
#contact h1 {
	font-size: 24px;
	margin-top: 10px !important;
	text-align: center;
	margin-bottom: 20px !important;
}
#contact .p-4 {
	padding-top: 0 !important;
}
.navbar-brand img {
	width: 160px;
	margin: 0;
}
.navbar.sticky-top {
	top: 0;
	height: auto;
	padding: 15px 15px 15px 0 !important;
	width: 100%;
}
#about span {
    height: 50px;
    display: block;
}
.navbar .navbar-brand, .navbar a.btn {
	height: auto;
	padding-left: 15px !important;
}
#market-research .service-item-img {
	float: none;
	margin-top: 0;
	margin-right: 0;
}
#market-research .service-item-img img {
	max-width: 100%;
	float: none;
}
#market-research .service-item p {
	width: 100%;
}
	
}

@media only screen and (max-width: 767px) {
div#about {
	padding-top: 20px;
}
#about .btn.btn-primary.mt-3, #build-a-business .btn.btn-primary.mt-3 {
	margin-left: 30px;
	margin-top: 20px !important;
}
#about img {
	display: none;
}
#management-consulting b {
	color: #f7bb4b;
}
#contact .col-lg-5 {
	padding: 0 6px;
}
.owl-carousel h1 {
	font-size: 1.5rem;
}
.header .display-4.text-white.mb-5 {
	font-size: 1.9em;
}
.header .col-lg-6.p-5.wow.fadeIn {
	padding: 40px 20px 80px 20px !important;
}
.navbar h1 {
	font-size: 16px;
}
.header br {
	display: none;
}
#management-consulting .col-6 {
	width: 100%;
}


}

@media only screen and (min-width: 768px) and (max-width: 991px) {
.owl-carousel h1 {
	font-size: 3rem;
}
.header .display-4.text-white.mb-5 {
	font-size: 2.3em;
}
#market-research .service-item-img {
	display: none;
}
.header .col-lg-6.p-5.wow.fadeIn {
	padding: 40px 20px 80px 20px !important;
}
.navbar-brand img {
	width: 190px;
}

}


@media only screen and (min-width: 992px) and (max-width: 1199px) {
.owl-carousel h1 {
	font-size: 2rem;
}
.header .display-4.text-white.mb-5 {
	font-size: 2.3em;
}
.navbar h1 {
	font-size: 16px;
}
.navbar .navbar-nav .nav-link {
	margin-right: 10px;
	font-size: 14px;
	text-transform: capitalize;
}
#market-research .service-item-img img {
	max-width: 50%;
}
.header .display-4.text-white.mb-2 {
	font-size: 2.2rem !important;
}
.header .col-lg-6.p-5.wow.fadeIn {
	padding: 40px 20px 80px 20px !important;
}
.header h2.text-white.mb-1 {
	font-size: 20px !important;
}
.header .btnz {
	top: 15px;
	padding: 10px 10px;
}
.navbar.sticky-top {
	top: 0 !important;
	transition: .5s;
	height: auto;
	padding-bottom: 10px !important;
}
.navbar-brand img {
	width: 155px;
}
.navbar .navbar-brand, .navbar a.btn {
	height: auto;
	padding-left: 20px !important;
}
h1.mb-4, h1 {
	font-size: 30px;
	line-height: 36px;
	margin-bottom: 15px !important;
	margin-top: 25px;
}
#market-research .service-item p {
	width: 53%;
}
#management-consulting .big {
	padding: 0 190px;
}

}

@media only screen and (min-width: 1280px) and (max-width: 1439px) {
.navbar .navbar-nav .nav-link {
	margin-right: 20px;
	font-size: 12px;
}

}