/* Fonts */
@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&display=swap");
/* Base */
@import url("utilities/base.css");
/* Header*/
@import url("layout/header.css");
/* Home / Front page*/
@import url("pages/home.css");
/* Footer*/
@import url("layout/footer.css");

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

/**
 * ---------------------------------------------------
 * 	4.  Pages
 * ---------------------------------------------------
 */


/* --------------------- 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 10px;
    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("../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 10px;
    transition: 0.5s ease-in-out;
    border-radius: 10px;
}

.news-articles-blog .card:hover {
    transform: translateY(-6px) 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 10px 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 10px;
    transition: 0.5s ease-in-out;
    border-radius: 10px;
    overflow: hidden;
}

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

.team-member-img {
    /* max-height: 250px;
      object-fit: cover; */
    border-radius: 0;
}

@media only screen and (max-width: 767px) {
    .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;
    }

    /* .team-member-img{
          height: 100% !important;
          object-fit:none;
          border-radius: 0;
      } */
}

@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 10px 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;
    display: inline-block;
}

.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("../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;
}


.form-box .wpcf7-response-output {
    background-color: #f0f2f7;
    border-radius: 4px;
    color: #06132b;
    padding: 0.5rem 0.75rem;
    margin-top: 0;
}


.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 10px 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 10px;
    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(-6px) 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 10px;
    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(-6px) 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 10px;
    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 10px;
    transition: 0.5s ease-in-out;
    border-radius: 10px;
    overflow: hidden;
}

.career-box:hover {
    transform: translateY(-6px) 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 */
