/**
/**
 * ---------------------------------------------------
 * 	Table of contents
 * ---------------------------------------------------
 */
/**----------
	1. Base
		1.1 Fonts
		1.2 base
		1.3 Typography
	2. Layout
		2.1 Header 
		2.2 Footer
	3. Components
		3.1 Buttons
	4. Pages
		4.1 Home page
	5. Themes
		5.1 Default Theme


---------------*/
/**
 * ---------------------------------------------------
 * 	1.  Base
 * ---------------------------------------------------
 */
/* --------------------- 1.1 Fonts --------------------- */

/* --------------------- 1.2 Base --------------------- */
/**
 * Set up a decent box model on the root element
 */
html {
  box-sizing: border-box;
}

/**
 * Make all elements from the DOM inherit from the parent box-sizing
 * Since `*` has a specificity of 0, it does not override the `html` value
 * making all elements inheriting from the root box-sizing value
 * See: https://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/
 */
*,
*::before,
*::after {
  box-sizing: inherit;
}

/**
 * Basic styles for links
 */
a {
  color: #202125;
  text-decoration: none;
}

.text-limit {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

/* --------------------- 1.3 Typography --------------------- */
/**
 * Basic typography style for copy text
 */
body {
  background-color: #fff;
  color: #78787b;
  font-family: 'Roboto', sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
}

p {
  color: #78787b;
}

a {
  color: #fff;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #202125;
  font-family: 'Roboto', sans-serif;
  font-style: normal;
  font-weight: 700;
}

/**
 * ---------------------------------------------------
 * 	2.  Layout
 * ---------------------------------------------------
 */
/* --------------------- 2.1 Header --------------------- */
/* .header-wrap {
  background-image: url('http://localhost/projects/bc-wp/wp-content/themes/bc-new/images/layout/header/banner-home.png');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
} */
.header-wrap {
  position: relative;
  z-index: 55555;
  background: linear-gradient(to right, #36177C, #452A96);
}


.header-wrap .header-dropdown-menu {
  background: linear-gradient(to right, #36177c, #452a96);
  overflow: hidden;
  border: none;
}

.header-wrap .header-dropdown-menu .dropdown-item {
  color: #fff;
}

.header-wrap .header-dropdown-menu .dropdown-item:hover {
  background-color: #452a96;
}

.header-wrap .nav-item .nav-link {
  color: #fff;
}

.header-wrap .offcanvas {
  background: linear-gradient(#36177c, #452a96);
}

.header-wrap .offcanvas.offcanvas-end {
  width: 350px;
  border-left: none;
}

@media (max-width: 399px) {
  .header-wrap .offcanvas.offcanvas-end {
    width: 300px;
  }
}

.header-wrap .offcanvas .close-btn {
  color: #fff;
  font-size: 24px;
  line-height: 1;
  padding: 0;
  background-color: #453b90 !important;
}

.header-wrap .navbar-toggler {
  position: relative;
  top: -8px;
  color: #fff;
  font-size: 24px;
}

.header-wrap .navbar-toggler:focus {
  box-shadow: none;
}

.header-wrap .modal-backdrop {
  background-color: #36177c;
}

.nav-header {
  background: linear-gradient(to right, #36177c, #452a96);
}

.nav-link {
  color: white !important;
}

.close-btn {
  color: #fff;
  font-size: 24px;
  line-height: 1;
  padding: 0;
  background-color: #453b90 !important;
}

.navbar-toggler {
  position: relative;
  top: -8px;
  color: #fff;
  font-size: 24px;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.collapse .nav-item a::after {
  content: '';
  width: 0;
  height: 2px;
  background-color: white;
  margin: auto;
  display: block;
  transition: width 0.5s;
}

.collapse .nav-item a:hover::after {
  width: 100%;
}

.active-link::after {
  width: 100% !important;
}

/* --------------------- 2.2 Footer --------------------- */
.footer-top .left-footer-top .app-logo a {
  box-shadow: 6px 6px 20px rgba(0, 0, 0, 0.5);
  border-radius: 4px;
  transition: 300ms transform, box-shadow ease-in-out;
}

.footer-top .left-footer-top .app-logo a:not(:last-child) {
  margin-right: 16px;
}

.footer-top .left-footer-top .app-logo a:hover {
  transform: scale(1.02);
  box-shadow: 8px 8px 30px rgba(0, 0, 0, 0.5);
}

@media (max-width: 576px) {
  .footer-top .left-footer-top > img {
    max-width: 210px;
  }

  .footer-top .left-footer-top .app-logo img {
    max-width: 120px;
  }
}

.footer-top .social-link a {
  display: inline-flex;
  background-color: #26b8d4;
  border-radius: 50%;
  width: 45px;
  height: 45px;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  border: 1px solid transparent;
  transition: 350ms all ease-in-out;
}

.footer-top .social-link a:not(:last-child) {
  margin-right: 12px;
}

.footer-top .social-link a:hover {
  color: #26b8d4;
  background-color: #fff;
  transform: translate3d(0, -2px, 0);
  box-shadow: 0 4px 20px rgba(38, 184, 212, 0.5);
}

@media (max-width: 576px) {
  .footer-top .social-link a {
    width: 35px;
    height: 35px;
    font-size: 16px;
  }
}

.footer-top .telephone {
  font-weight: 300;
  font-size: 28px;
  color: #202125;
}

.footer-top .telephone a {
  font-weight: 500;
  color: #26c9dd;
  transition: 200ms color ease-in-out;
}

.footer-top .telephone a:hover {
  color: #78787b;
}

@media (max-width: 576px) {
  .footer-top .telephone {
    font-size: 18px;
  }
}

.footer-top .ct-bc a {
  color: #ffab0e;
  font-size: 24px;
  display: inline-flex;
  align-items: center;
  transition: 200ms color ease-in-out;
}

.footer-top .ct-bc a:not(:last-child) {
  margin-right: 16px;
}

.footer-top .ct-bc a i.fa {
  margin-left: 8px;
  font-weight: 400;
}

.footer-top .ct-bc a:hover {
  color: #78787b;
}

@media (max-width: 1199px) {
  .footer-top .ct-bc a {
    font-size: 18px;
  }
}

@media (max-width: 576px) {
  .footer-top .ct-bc a {
    font-size: 16px;
  }
}

.footer-bottom {
  background-color: #111539;
}

.footer-bottom .title {
  font-size: 18px;
  font-weight: 500;
  color: #fff;
}

@media (max-width: 399px) {
  .footer-bottom .title {
    font-size: 16px;
  }
}

.footer-bottom ul {
  margin-bottom: 0;
  margin-top: 16px;
}

.footer-bottom ul li {
  margin-bottom: 10px;
}

.footer-bottom ul li a {
  display: inline-block;
  transition: 200ms color ease-in;
  font-weight: 300;
}

.footer-bottom ul li a:hover {
  color: #26b8d4;
}

.footer-bottom ul li::marker {
  color: #26b8d4;
  font-size: 20px;
}

@media (max-width: 576px) {
  .footer-bottom ul {
    margin-top: 10px;
  }

  .footer-bottom ul li {
    margin-bottom: 6px !important;
  }
}

.footer-bottom .popular-app ul {
  padding: 0;
}

.footer-bottom .popular-app ul li {
  list-style: none;
}

.footer-bottom .helpful-links ul {
  padding-left: 1rem;
}

.footer-bottom .helpful-links ul li {
  margin-bottom: 8px;
}

.footer-bottom .helpful-links address {
  font-weight: 300;
  color: #fff;
}

/**
 * ---------------------------------------------------
 * 	3.  Components
 * ---------------------------------------------------
 */
/* --------------------- 3.1 Buttons --------------------- */
.btn {
  background-color: #000;
  font-size: 24px;
  font-weight: 600;
}

/**
 * ---------------------------------------------------
 * 	4.  Pages
 * ---------------------------------------------------
 */
/* --------------------- 4.1 Home page --------------------- */
.banner-wrap {
  background-image: url('https://new2.braincraftapps.com/wp-content/themes/bc-new/images/layout/header/banner-home.png');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  /* margin-top: -80px; */
  height: 500px;
  padding: 60px 0 30px;
}

/* Animation for circle */
.animated-circle {
  width: 125px !important;
  -webkit-animation: spin 5s linear infinite;
  -moz-animation: spin 5s linear infinite;
  animation: spin 5s linear infinite;
}

.circle-bg {
  width: 80px;
  position: absolute;
  left: 52px;
  top: 16px;
}

@-moz-keyframes spin {
  100% {
      -moz-transform: rotate(360deg);
  }
}

@-webkit-keyframes spin {
  100% {
      -webkit-transform: rotate(360deg);
  }
}

@keyframes spin {
  100% {
      -webkit-transform: rotate(360deg);
      transform: rotate(360deg);
  }
}

/* End animation */

.banner-wrap .title h1 {
  max-width: 760px;
  margin: auto;
  color: #ffffff;
  line-height: 1.4;
  font-size: 42px;
}

.banner-wrap .app-btn a {
  box-shadow: 6px 6px 20px rgba(0, 0, 0, 0.5);
  border-radius: 4px;
  transition: 300ms transform, box-shadow ease-in-out;
}

.banner-wrap .app-btn a:not(:last-child) {
  margin-right: 16px;
}

.banner-wrap .app-btn a:hover {
  transform: scale(1.02);
  box-shadow: 8px 8px 30px rgba(0, 0, 0, 0.5);
}

.banner-wrap .app-btn a > img {
  max-width: 160px;
}

@media (max-width: 768px) {
  .banner-wrap .app-btn a > img {
    max-width: 120px;
  }
}

@media (max-width: 576px) {
  .banner-wrap .app-btn a > img {
    max-width: 110px;
  }
}

@media (max-width: 576px) {
  .banner-wrap .app-btn .app-logo img {
    max-width: 100px;
  }
}

.banner-wrap .left-circle,
.banner-wrap .right-circle {
  top: -20px;
}

.banner-wrap .left-circle {
  left: 0;
}

.banner-wrap .right-circle {
  right: 0;
}

.banner-wrap .circle-bar {
  position: relative;
  display: flex;
  justify-content: center;
}

.banner-wrap .circle-bar > img {
  max-width: 125px;
}
.banner-wrap .circle-text {
  display: flex;
  flex-direction: column;
  align-content: center;
  justify-content: center;
  align-items: center;
}

.banner-wrap .circle-bar .circle-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.banner-wrap .circle-bar .circle-text h2,
.banner-wrap .circle-bar .circle-text p {
  color: #fff;
  margin-bottom: 0;
}

.banner-wrap .circle-bar .circle-text h2 {
  font-size: 16px;
}

.banner-wrap .circle-bar .circle-text p {
  font-size: 12px;
}

@media (max-width: 1199px) {
  .banner-wrap .title h1 {
    max-width: 660px;
    font-size: 32px;
  }
}

@media (max-width: 992px) {
  .banner-wrap .title h1 {
    max-width: 540px;
    font-size: 24px;
  }

  .banner-wrap .circle-bar > img {
    max-width: 100px;
  }

  .banner-wrap .circle-bar .circle-text h2 {
    font-size: 18px;
  }

  .banner-wrap .circle-bar .circle-text p {
    font-size: 12px;
  }
}

@media (max-width: 768px) {
  .banner-wrap {
    height: 380px;
    padding: 30px 0;
  }

  .banner-wrap .title h1 {
    max-width: 560px;
    font-size: 18px;
  }

  .banner-wrap .circle-bar > img {
    max-width: 65px;
  }

  .banner-wrap .circle-bar .circle-text h2 {
    font-size: 13px;
  }

  .banner-wrap .circle-bar .circle-text p {
    font-size: 9px;
  }
}

@media (max-width: 576px) {
  .banner-wrap {
    height: 360px;
  }

  .banner-wrap .title h1 {
    font-size: 17px;
  }

  .banner-wrap .circle-bar:not(:last-child) {
    margin-right: 8px;
  }

  .banner-wrap .circle-bar > img {
    max-width: 70px;
  }

  .banner-wrap .circle-bar .circle-text h2 {
    font-size: 12px;
  }

  .banner-wrap .circle-bar .circle-text p {
    font-size: 9px;
  }
}

.product-slider-wrap {
  position: relative;
  bottom: 135px;
}

.product-slider-wrap .control {
  list-style: none;
}

.product-slider-wrap .control li {
  position: absolute;
  z-index: 99;
  top: 50%;
  transform: translateY(-50%);
  color: white;
  background: rgba(0, 0, 0, 0.5);
  padding: 12px 20px;
  border-radius: 50%;
  cursor: pointer;
}

.product-slider-wrap .control li.prev {
  left: 20px;
}

.product-slider-wrap .control li.next {
  right: 20px;
}

.product-slider-wrap .control li:hover {
  background: #000;
}

.product-slider-wrap #product-slider .slide {
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  padding-top: 66.66%;
  height: 0;
  border-radius: 25px;
  transition: 250ms all ease-in-out;
}

.product-slider-wrap #product-slider .slide:hover {
  transform: scale(1.02);
}

.product-slider-wrap #product-slider .slide .thumb img {
  max-height: 150px;
}

.product-slider-wrap #product-slider .slide .icon-text > img {
  max-width: 60px;
}

.product-slider-wrap #product-slider .slide .icon-text .text {
  margin-top: 8px;
}

.product-slider-wrap #product-slider .slide .icon-text .text h6,
.product-slider-wrap #product-slider .slide .icon-text .text p {
  color: #fff;
  margin-bottom: 0;
}

.product-slider-wrap #product-slider .slide .icon-text .text p {
  margin-top: 4px;
  line-height: 1;
}

.accolades-wrap {
  margin-top: -100px;
}

.accolades-wrap .section-title h2 {
  color: #202125;
  font-size: 38px;
  line-height: 1.4;
}

.accolades-wrap .section-title p {
  color: #78787b;
  font-size: 18px;
}

.accolades-wrap .accolades-item > img {
  transition: 300ms all ease-in-out;
}

.accolades-wrap .accolades-item > img:hover {
  transform: scale(1.05);
}

.accolades-wrap .accolades-item h5,
.accolades-wrap .accolades-item h6,
.accolades-wrap .accolades-item p {
  color: rgba(67, 46, 168, 0.85);
  text-transform: uppercase;
}

.accolades-wrap .accolades-item h5 {
  font-size: 24px;
}

.accolades-wrap .accolades-item h6 {
  font-size: 20px;
  margin-bottom: 8px;
}

@media (max-width: 991px) {
  .accolades-wrap .section-title h2 {
    font-size: 32px;
  }

  .accolades-wrap .accolades-item h5 {
    font-size: 20px;
  }

  .accolades-wrap .accolades-item h6 {
    font-size: 16px;
  }

  .accolades-wrap .accolades-item p {
    font-size: 14px;
  }
}

@media (max-width: 576px) {
  .accolades-wrap {
    margin-top: -120px;
  }

  .accolades-wrap .section-title h2 {
    font-size: 24px;
  }

  .accolades-wrap .accolades-item h5 {
    font-size: 18px;
  }

  .accolades-wrap .accolades-item h6 {
    font-size: 14px;
  }

  .accolades-wrap .accolades-item p {
    font-size: 12px;
  }
}

.rating-review-wrap {
  background-color: #eeeeee;
}

.rating-review-wrap .title h2 {
  color: #202125;
  font-size: 38px;
  font-weight: 400;
  margin-bottom: 35px;
}

.rating-review-wrap .title h2 span {
  font-weight: 700;
}

@media (max-width: 992px) {
  .rating-review-wrap .title h2 {
    font-size: 30px;
    margin-bottom: 28px;
  }
}

@media (max-width: 768px) {
  .rating-review-wrap .title h2 {
    font-size: 26px;
    margin-bottom: 22px;
  }
}

@media (max-width: 576px) {
  .rating-review-wrap .title h2 {
    font-size: 18px;
    margin-bottom: 16px;
  }
}

.rating-review-slider-wrap .slide-item .card-wrap {
  background-color: #fff;
  box-shadow: 0 0 16px rgba(0, 0, 0, 0.4);
  margin: 20px 0;
  transition: 300ms all ease-in-out;
  border-radius: 16px;
}

.rating-review-slider-wrap .slide-item .card-wrap:hover {
  transform: scale(1.02);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.4);
}

@media (max-width: 1199px) {
  .rating-review-slider-wrap .slide-item .card-wrap {
    margin: 20px 12px;
  }
}

.rating-review-slider-wrap .slide-item .point {
  color: #604eb5;
  font-size: 12px;
}

.rating-review-slider-wrap .slide-item .point span {
  font-size: 48px;
  font-weight: 700;
}

.rating-review-slider-wrap .slide-item .rating-count {
  color: #5c5750;
  font-size: 20px;
  font-weight: 500;
}

.rating-review-slider-wrap .slide-item .stars i.fa {
  color: #ff8800;
  margin-top: 12px;
  margin-bottom: 12px;
}

.rating-review-slider-wrap .slide-item .stars i.fa:not(:last-child) {
  margin-right: 4px;
}

.rating-review-slider-wrap .slide-item .item-info {
  margin-top: 16px;
}

.rating-review-slider-wrap .slide-item .item-info p {
  margin-bottom: 0;
  color: #202125;
}

.rating-review-slider-wrap .slide-item .item-info p:first-child {
  font-weight: 500;
}

/* --------------------- 4.2 Articles Page --------------------- */
.featuredArticleContainer {
  margin-top: 70px;
}

.featuredArticleContainer .featuredArticlesBox {
  min-height: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: blue;
  box-shadow: rgba(2, 79, 245, 0.411) 0px 0px 15px;
  transition: 0.5s ease-in-out;
  border-radius: 10px;
}

.featuredArticleContainer .featuredArticlesBox:hover {
  transform: translateY(-5px) scale(1.01);
}

.featuredArticleContainer .featuredArticlesBox .articleBox {
  align-items: center;
}

.featuredArticleContainer .featuredArticlesBox .articleBox .card-title,
.featuredArticleContainer .featuredArticlesBox .articleBox .card-text {
  color: #0177ad;
}

.pagination {
  display: inline-block;
}

.pagination a {
  color: black;
  font-size: 18px;
  float: left;
  padding: 8px;
  text-decoration: none;
  color: #0177ad;
}

/* --------------------- 4.3 Category Page--------------------- */
.btn-fb {
  border: 5px solid #3b5998;
  text-align: start !important;
  transition: 0.3s ease-in-out;
  cursor: pointer;
}

.btn-fb i {
  background-color: #3b5998;
  transition: 0.3s ease-in-out;
  width: 60px !important;
}

.btn-fb span {
  color: #3b5998;
}

.btn-fb:hover {
  background-color: #3b5998;
}

.btn-fb:hover i {
  color: #3b5998 !important;
  background-color: white;
}

.btn-fb:hover span {
  color: white;
}

.btn-insta {
  border: 5px solid #bc2a8d;
  text-align: start !important;
  transition: 0.3s ease-in-out;
  cursor: pointer;
}

.btn-insta i {
  background-color: #bc2a8d;
  transition: 0.3s ease-in-out;
  width: 60px !important;
}

.btn-insta span {
  color: #bc2a8d;
}

.btn-insta:hover {
  background-color: #bc2a8d;
}

.btn-insta:hover i {
  color: #bc2a8d !important;
  background-color: white;
}

.btn-insta:hover span {
  color: white;
}

.btn-twitter {
  border: 5px solid #00acee;
  text-align: start !important;
  transition: 0.3s ease-in-out;
  cursor: pointer;
}

.btn-twitter i {
  background-color: #00acee;
  transition: 0.3s ease-in-out;
  width: 60px !important;
}

.btn-twitter span {
  color: #00acee;
}

.btn-twitter:hover {
  background-color: #00acee;
}

.btn-twitter:hover i {
  color: #00acee !important;
  background-color: white;
}

.btn-twitter:hover span {
  color: white;
}

.btn-linkedin {
  border: 5px solid #0e76a8;
  text-align: start !important;
  transition: 0.3s ease-in-out;
  cursor: pointer;
}

.btn-linkedin i {
  background-color: #0e76a8;
  transition: 0.3s ease-in-out;
  width: 60px !important;
}

.btn-linkedin span {
  color: #0e76a8;
}

.btn-linkedin:hover {
  background-color: #0e76a8;
}

.btn-linkedin:hover i {
  color: #0e76a8 !important;
  background-color: white;
}

.btn-linkedin:hover span {
  color: white;
}

blockquote {
  text-indent: -0.45em;
}

@media (min-width: 1200px) and (max-width: 1400px) {
  .btn-box {
    width: 100%;
  }
}

/* --------------------- 4.4 Single Blog Page--------------------- */
.card-img-top {
  border-radius: 10px;
}

.related-post-writer-info-box {
  display: flex;
  align-items: center;
  justify-content: start;
}

.related-post-writer-info-box .related-post-writer-img {
  width: 30px;
  border-radius: 25px;
}

/* --------------------- 4.5 Blog page --------------------- */
.featuredAtriclesButton {
  color: black;
  background-color: #fff;
  border: 1px solid black;
  border-radius: 5px;
  padding: 10px 25px;
  font-size: 18px;
  font-weight: 500;
  margin-top: 40px;
  transition: 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.see-more-btn {
  display: flex;
  justify-content: center;
}

.featuredAtriclesButton i {
  font-size: 36px;
  font-weight: 400;
}

.featuredAtriclesButton:hover {
  background-color: black;
  color: #fff;
}

.banner {
  background: linear-gradient(rgba(255, 255, 255, 0), #5d69ce59, #000c77a9),
    url('https://new2.braincraftapps.com/wp-content/themes/bc-new/images/blog/-1.jpg');
  color: #fff;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  height: 70vh;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: end;
}

@media (max-width: 1199px) {
  .banner {
    height: 450px;
  }
}

@media (max-width: 992px) {
  .banner {
    height: 360px;
  }
}

@media (max-width: 768px) {
  .banner {
    height: 300px;
  }
}

@media (max-width: 575px) {
  .banner {
    height: 250px;
  }
}

@media (max-width: 400px) {
  .banner {
    height: 180px;
  }
}

.banner .bannerText {
  font-size: 80px !important;
  color: white;
  margin-bottom: 2rem;
}

@media (max-width: 1199px) {
  .banner .bannerText {
    font-size: 50px !important;
  }
}

@media (max-width: 992px) {
  .banner .bannerText {
    font-size: 44px !important;
  }
}

@media (max-width: 768px) {
  .banner .bannerText {
    font-size: 36px !important;
  }
}

@media (max-width: 575px) {
  .banner .bannerText {
    font-size: 32px !important;
  }
}

@media (max-width: 400px) {
  .banner .bannerText {
    font-size: 24px !important;
  }
}

.blogLogo {
  width: 30px;
  margin-left: 15px;
}

.news-articles-blog .card {
  box-shadow: rgba(2, 79, 245, 0.411) 0px 0px 20px;
  transition: 0.5s ease-in-out;
  border-radius: 10px;
}

.news-articles-blog .card:hover {
  transform: translateY(-10px) scale(1.01);
}

.news-articles-blog .card .article-box-img {
  border-radius: 10px 10px 0 0;
}

.news-articles-blog .card .card-body {
  padding: 20px 0px;
}

.news-articles-blog .card .card-body .card-text {
  font-size: 20px;
  font-style: italic;
  text-align: start;
}

.news-articles-blog .card .card-body .card-title {
  font-size: 29px;
  font-weight: 700;
  text-align: start;
}

.blog-container {
  display: flex;
}

.blog-container .latestBlogTitle {
  font-size: 60px;
  font-weight: 700;
}

.blog-container hr {
  margin-top: 0px;
  height: 2px;
  background-color: #000;
}

.blog-container .blogPost {
  margin-top: 30px;
}

.blog-container .blogPost .blogBox {
  display: flex;
  position: relative;
}

.blog-container .blogPost .blogBox .blogBoxTitle {
  font-size: 20px;
  font-weight: 700;
}

.blog-container .blogPost .blogBox .cardText {
  font-size: 18px;
  font-style: normal;
}

.blog-container .blogPost .blogBox button {
  bottom: 10px;
  padding: 5px 10px;
  border: 1px solid black;
  border-radius: 25px;
  position: absolute;
  transition: 0.3s;
}

.blog-container .blogPost .blogBox button:hover {
  transform: scale(1.02);
  box-shadow: 8px 8px 30px rgba(255, 255, 255, 0.5);
  background-color: black !important;
  color: white;
}

.searchBox {
  margin-top: 4rem;
}

.searchBox .searchField {
  background-color: #f5efef;
  width: 100%;
  padding: 10px;
  border: none;
  margin-bottom: 30px;
}

.searchBox hr {
  height: 1px;
}

hr {
  height: 1px;
}

.popular-post-img {
  border-radius: 7%;
  width: 120px;
}

.course-categories-container {
  margin-top: 20px;
}

.course-categories-container .course-name-number {
  color: #504f4f;
  line-height: 1;
  display: flex;
  justify-content: space-between;
}

@media (max-width: 1199px) {
  .course-categories-container .course-name-number {
    background-color: #f0f0f0;
    padding: 8px;
    border-radius: 4px;
  }
}

.course-categories-container .course-name-number > span:first-child {
  border-left: 2px solid #000;
  padding-left: 8px;
}

@media (max-width: 1199px) {
  hr {
    margin-top: 3rem !important;
    height: 1px;
  }

  .popular-post-img {
    border-radius: 7%;
    width: 250px;
  }

  .blogPost h5 {
    font-size: 1.5rem !important;
  }

  .blogPost .popular-post-text {
    font-size: 1.5rem !important;
  }
}

@media (max-width: 991px) {
  .cardText {
    font-size: 14px !important;
    font-style: normal;
  }

  .popular-post-img {
    border-radius: 7%;
    width: 250px;
  }
}

@media (max-width: 770px) {
  .banner {
    height: 300px;
  }

  .banner .bannerText {
    font-size: 50px;
    margin-bottom: 4rem;
  }

  button {
    bottom: -15px !important;
  }

  .blogPost h5 {
    font-size: 1rem !important;
  }

  .blogPost .popular-post-text {
    font-size: 1rem !important;
  }
}

/* --------------------- 4.6 Team page --------------------- */
.side-menu-bar {
  width: 100%;
}

.side-menu-bar .nav-link {
  border-radius: 5px;
  height: 60px;
  border: none;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 10px;
  background-color: #19093d !important;
  color: white;
  transition: 0.5s;
  outline: none;
}

.side-menu-bar .nav-link:hover {
  background: linear-gradient(to right, #36177c, #452a96);
  transform: scale(1.01);
  cursor: pointer;
}

.side-menu-bar .active {
  background: linear-gradient(to right, #36177c, #452a96);
}

.horizontal-line-bar {
  display: inline-block;
  width: 200px;
  height: 1px;
  border: 1px solid #3d18959c;
}

.team-member-box {
  box-shadow: rgba(2, 79, 245, 0.411) 0px 0px 20px;
  transition: 0.5s ease-in-out;
  border-radius: 10px;
}

.team-member-box:hover {
  transform: translateY(-10px) scale(1.01);
}

@media only screen and (max-width: 768px) {
  .btn-box {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
  }

  .btn-box .nav-link {
    width: 30%;
    height: 40px;
  }
}

@media only screen and (max-width: 576px) {
  .btn-box {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
  }

  .btn-box .nav-link {
    width: 49%;
    height: 40px;
  }
}

@media only screen and (max-width: 380px) {
  .btn-box {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
  }

  .btn-box .nav-link {
    width: 100%;
    height: 40px;
  }
}

/* --------------------- 4.7 Portfolios page --------------------- */
.portfolios-item-box {
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
  border-radius: 15px;
  transition: 0.5s ease-in-out;
}

.portfolios-item-box:hover {
  transform: translateY(-5px) scale(1.01);
}

.portfolios-item-box .portfolio-item-img-box {
  overflow: hidden;
  border-radius: 15px 15px 0 0 !important;
}

.portfolios-item-box .portfolio-item-img-box .app-portfolio-item {
  transform: scale(1.02);
  transition: 0.5s ease-in-out;
  background-size: cover;
}

.portfolios-item-box .portfolio-item-img-box .app-portfolio-item:hover {
  transform: scale(1.04);
}

.portfolios-item-box
  .portfolio-item-img-box
  .app-portfolio-item
  .thumb-img
  img {
  height: 250px;
}

.portfolios-item-box .portfolio-item-title {
  color: #cf00d6;
}

.portfolios-item-box .portfolio-item-button {
  background-color: #cf00d6;
  color: white;
  bottom: 10px;
  padding: 5px 10px;
  border: 1px solid #cf00d6;
  border-radius: 25px;
  transition: 0.2s;
}

.portfolios-item-box .portfolio-item-button:hover {
  transform: scale(1.01);
  background-color: white;
  color: #cf00d6;
}

.portfolios-item-box .portfolio-item-text-box {
  padding-bottom: 15px;
}

.portfolio-item-text-box .text-limit {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

/* --------------------- 4.8 Contact page --------------------- */
.contact-us-banner {
  background: linear-gradient(rgba(255, 255, 255, 0), #5d69ce59, #000c77a9),
    url('https://new2.braincraftapps.com/wp-content/themes/bc-new/images/contact-us/cover.jpg');
  color: #fff;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  height: 70vh;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.phone-number a {
  color: #000;
}

@media (max-width: 1199px) {
  .contact-us-banner {
    height: 450px;
  }
}

@media (max-width: 992px) {
  .contact-us-banner {
    height: 360px;
  }
}

@media (max-width: 768px) {
  .contact-us-banner {
    height: 300px;
  }
}

@media (max-width: 575px) {
  .contact-us-banner {
    height: 250px;
  }
}

@media (max-width: 400px) {
  .contact-us-banner {
    height: 180px;
  }
}

.contact-us-banner .bannerText {
  font-size: 60px !important;
  color: white;
}

@media (max-width: 1199px) {
  .contact-us-banner .bannerText {
    font-size: 50px !important;
  }
}

@media (max-width: 992px) {
  .contact-us-banner .bannerText {
    font-size: 44px !important;
  }
}

@media (max-width: 768px) {
  .contact-us-banner .bannerText {
    font-size: 36px !important;
  }
}

@media (max-width: 575px) {
  .contact-us-banner .bannerText {
    font-size: 32px !important;
  }
}

@media (max-width: 400px) {
  .contact-us-banner .bannerText {
    font-size: 24px !important;
  }
}

.contact-info-container .form-control {
  border: none;
  background: #f3f3f3;
}

.contact-info-container textarea {
  height: 145px !important;
}

.contact-info-container .form-control:active,
.contact-info-container .form-control:focus {
  outline: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  border-color: #000;
  background: #f3f3f3;
}

.contact-info-container .col-form-label {
  color: #000;
}

.contact-info-container .btn,
.contact-info-container .form-control,
.contact-info-container .custom-select {
  height: 50px;
}

.contact-info-container .custom-select:active,
.contact-info-container .custom-select:focus {
  outline: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  border-color: #000;
}

.contact-info-container .btn {
  border: 1px solid black;
  border-radius: 4px !important;
  transition: 0.3s;
}

.contact-info-container .btn.btn-primary {
  background: #000;
  color: #fff;
  padding: 15px 20px;
}

.contact-info-container .btn:hover {
  color: #000;
  background-color: #fff;
  border: 1px solid #000;
}

.contact-info-container .btn:active,
.contact-info-container .btn:focus {
  outline: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.contact-info-box {
  background-color: #f3f3f3;
}

.contact-info-box .icon-circle {
  display: inline-flex;
  border-radius: 50%;
  flex: 0 0 45px;
  max-width: 35px;
  height: 35px;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  border: 1px solid black;
}

.contact-info-box .icon-circle i.fa {
  line-height: 1;
  font-size: 24px;
  transition: 0.3s;
}

.icon-circle:hover i.fa {
  transform: scale(1.02) translateY(-2px);
  color: rgb(165, 0, 0) !important;
}

.contact-info-box .social-link a {
  display: inline-flex;
  background-color: #26b8d4;
  border-radius: 50%;
  width: 35px;
  height: 35px;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  border: 1px solid transparent;
  transition: 350ms all ease-in-out;
}

.contact-info-box .social-link a i.fa {
  line-height: 1;
  font-size: 16px;
}

.contact-info-box .social-link a:hover {
  color: #26b8d4;
  background-color: #fff;
  transform: translate3d(0, -2px, 0);
  box-shadow: 0 4px 20px rgba(38, 184, 212, 0.5);
}

.google-map-box {
  min-height: 200px !important;
}

@media only screen and (max-width: 991px) {
  .info-box {
    order: 2;
  }

  .form-box {
    order: 1;
  }
}

/* --------------------- 4.9 Career page --------------------- */
.banner-career {
  position: relative;
  height: 460px;
  z-index: 99;
}

.banner-career .banner-bg {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  max-width: 50%;
  z-index: -3;
}

@media (max-width: 1199px) {
  .banner-career .banner-bg {
    top: 15px;
    max-width: 65%;
    right: 17.5%;
  }
}

@media (max-width: 992px) {
  .banner-career .banner-bg {
    top: 25px;
    max-width: 75%;
    right: 12.5%;
  }
}

@media (max-width: 768px) {
  .banner-career .banner-bg {
    top: 20px;
    max-width: 100%;
    right: 0;
    left: 0;
  }
}

@media (max-width: 1199px) {
  .banner-career:after {
    position: absolute;
    content: '';
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    background-color: rgba(221, 221, 221, 0.5);
    z-index: -2;
  }
}

@media (max-width: 1199px) {
  .banner-career {
    overflow: hidden;
  }
}

@media (max-width: 768px) {
  .banner-career {
    height: 330px;
  }
}

@media (max-width: 480px) {
  .banner-career {
    height: 280px;
  }
}

.learn-requitment-text span {
  color: #ff8800;
}

.learn-requitment-box {
  box-shadow: rgba(2, 79, 245, 0.2) 0px 0px 20px;
  transition: 0.5s ease-in-out;
  border-radius: 10px;
}

.learn-requitment-box .learn-requitment-img-box {
  text-align: center;
}

.learn-requitment-box .learn-requitment-img-box .learn-requitment-img {
  width: 50px !important;
}

.learn-requitment-box:hover {
  transform: translateY(-10px) scale(1.01);
}

.learn-requitment-box .text-limit {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.specialist-box {
  box-shadow: rgba(2, 79, 245, 0.2) 0px 0px 20px;
  transition: 0.5s ease-in-out;
  border-radius: 10px;
}

.specialist-box .text-limit {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.specialist-box .card-body {
  flex: 1 1 auto;
  padding: 0rem 1rem 1rem 1rem;
}

.specialist-box:hover {
  transform: translateY(-10px) scale(1.01);
}

.specialist-box button {
  padding: 5px 10px;
  border: 1px solid #ff8800;
  border-radius: 25px;
  background-color: #ff8800;
  text-align: start !important;
}

.specialist-box button:hover {
  transform: scale(1.02);
  box-shadow: 8px 8px 30px rgba(255, 255, 255, 0.5);
  background-color: rgba(255, 136, 0, 0.1);
  color: #ff8800;
  border: 1px solid #ff8800;
}

.job-opening-box {
  box-shadow: rgba(2, 79, 245, 0.2) 0px 0px 20px;
  border-radius: 10px;
}

.job-opening-box input:focus,
.job-opening-box select:focus {
  box-shadow: none;
}

.job-opening-box .search-field {
  position: relative;
}

.job-opening-box .search-field i.fa {
  position: absolute;
  top: 23%;
  left: 1rem;
  color: #ff8800;
}

.career-card {
  margin-top: -4.5rem;
}

.card {
  border: none !important;
  outline: none !important;
}

.career-box {
  box-shadow: rgba(2, 79, 245, 0.411) 0px 0px 20px;
  transition: 0.5s ease-in-out;
  border-radius: 10px;
  overflow: hidden;
}

.career-box:hover {
  transform: translateY(-10px) scale(1.01);
}

.career-box .career-card-text {
  color: #ff8800 !important;
}

.career-box .card-img-overlay {
  background-color: rgba(0, 0, 0, 0.3);
}

.life-at-braincraft {
  font-size: 60px !important;
}

.brain-craft-text {
  color: #452a96;
}

.career-card-box {
  text-align: center;
  line-height: 14px;
}

.career-card-box h5 {
  font-size: 14px !important;
}

.career-card-box h6 {
  font-size: 12px !important;
}

.career-card-box small {
  font-size: 12px;
}

.join-our-team h1 {
  font-size: 60px !important;
}

.join-our-team h2 {
  color: #452a96;
  font-size: 50px !important;
}

@media (max-width: 1400px) {
  .career-card-box {
    text-align: center;
    line-height: 12px;
  }

  .career-card-box h5 {
    font-size: 12px !important;
  }

  .career-card-box h6 {
    font-size: 10px !important;
  }

  .career-card-box small {
    font-size: 10px;
  }

  .life-at-braincraft-text-box {
    text-align: start;
  }

  .life-at-braincraft-text-box h1 {
    font-size: 50px !important;
  }

  .join-our-team h1 {
    font-size: 50px !important;
  }

  .join-our-team h2 {
    color: #452a96;
    font-size: 40px !important;
  }
}

@media (max-width: 1199px) {
  .life-at-braincraft-text-box {
    text-align: start;
    padding-top: 2rem;
  }

  .life-at-braincraft-text-box h1 {
    text-align: center;
    font-size: 44px !important;
  }

  .life-at-braincraft-text-box h1 span {
    display: inline-block !important;
  }

  .join-our-team h1 {
    font-size: 44px !important;
  }

  .join-our-team h2 {
    color: #452a96;
    font-size: 36px !important;
  }

  .career-card-box {
    text-align: center;
    line-height: 16px;
  }

  .career-card-box h5 {
    font-size: 16px !important;
  }

  .career-card-box h6 {
    font-size: 12px !important;
  }

  .career-card-box small {
    font-size: 12px;
  }
}

@media (max-width: 991px) {
  .life-at-braincraft-text-box {
    text-align: start;
  }

  .life-at-braincraft-text-box h1 {
    text-align: center;
    font-size: 36px !important;
  }

  .life-at-braincraft-text-box h1 span {
    display: inline-block !important;
  }

  .join-our-team h1 {
    font-size: 36px !important;
  }

  .join-our-team h2 {
    color: #452a96;
    font-size: 30px !important;
  }

  .career-card {
    margin-top: 1.5rem;
  }

  .career-card-box {
    text-align: center;
    line-height: 16px;
  }

  .career-card-box h5 {
    font-size: 20px !important;
  }

  .career-card-box h6 {
    font-size: 16px !important;
  }

  .career-card-box small {
    font-size: 16px;
  }
}

@media (max-width: 767px) {
  .life-at-braincraft-text-box {
    text-align: start;
  }

  .life-at-braincraft-text-box h1 {
    text-align: center;
    font-size: 32px !important;
  }

  .life-at-braincraft-text-box h1 span {
    display: inline-block !important;
  }

  .join-our-team h1 {
    font-size: 32px !important;
  }

  .join-our-team h2 {
    color: #452a96;
    font-size: 26px !important;
  }

  .img-text-box {
    display: block !important;
  }

  .img-text-box .Experience {
    margin-top: 0.75rem;
  }

  .img-text-box .fa-briefcase {
    margin-right: 0.9rem !important;
  }

  .career-card-box {
    text-align: center;
    line-height: 12px;
  }

  .career-card-box h5 {
    font-size: 12px !important;
  }

  .career-card-box h6 {
    font-size: 10px !important;
  }

  .career-card-box small {
    font-size: 10px;
  }
}

@media (max-width: 575px) {
  .life-at-braincraft-text-box {
    text-align: start;
  }

  .life-at-braincraft-text-box h1 {
    text-align: center;
    font-size: 30px !important;
  }

  .life-at-braincraft-text-box h1 span {
    display: inline-block !important;
  }

  .join-our-team h1 {
    font-size: 30px !important;
  }

  .join-our-team h2 {
    color: #452a96;
    font-size: 24px !important;
  }

  .career-card-box {
    padding-left: 0.5rem;
    text-align: center;
    line-height: 22px;
  }

  .career-card-box h5 {
    font-size: 28px !important;
  }

  .career-card-box h6 {
    font-size: 22px !important;
  }

  .career-card-box small {
    font-size: 22px;
  }
}

@media (max-width: 429px) {
  .life-at-braincraft-text-box {
    text-align: start;
  }

  .life-at-braincraft-text-box h1 {
    text-align: center;
    font-size: 28px !important;
  }

  .life-at-braincraft-text-box h1 span {
    display: inline-block !important;
  }

  .join-our-team h1 {
    font-size: 28px !important;
  }

  .join-our-team h2 {
    color: #452a96;
    font-size: 24px !important;
  }

  .career-card-box {
    text-align: center;
    line-height: 16px;
  }

  .career-card-box h5 {
    font-size: 20px !important;
  }

  .career-card-box h6 {
    font-size: 16px !important;
  }

  .career-card-box small {
    font-size: 16px;
  }
}

/**
 * ---------------------------------------------------
 * 	5.  Themes
 * ---------------------------------------------------
 */
/* --------------------- 5.1 Default Theme --------------------- */

/*# sourceMappingURL=style.css.map */
