/*!------------------------------------------------------------------
[MAIN STYLESHEET]

PROJECT:	Project Name
VERSION:	Versoin Number
-------------------------------------------------------------------*/
/*------------------------------------------------------------------ 
[TABLE OF CONTENTS]
-------------------------------------------------------------------*/
@import url('https://fonts.cdnfonts.com/css/avenir');
@import url('https://fonts.cdnfonts.com/css/source-sans-pro');


/*  typography */
body {
    line-height: 0.5;
    font-size: 16px; 
    color: #5c5c77;
}

p, .paragraph {
    font-weight: 400;
    color: #5c5c77;
    font-size: 16px;
    line-height: 1.9;
    /*font-family: "Poppins", sans-serif;*/
    font-family : 'Source Sans Pro', Arial, sans-serif;
}

h1, h2, h3, h4, h5, h6 {
    color: #6C5947;
    /*font-family: "futura-bold";*/
    font-family : 'Source Sans Pro', Arial, sans-serif;
}

/* Button style */
.btn {
    font-size: 16px;
    font-family : 'Source Sans Pro', Arial, sans-serif;
    text-transform: capitalize;
    padding: 15px 40px;
    border-radius: 0;
    font-weight: 500;
    border: 0;
    position: relative;
    z-index: 1;
    transition: .2s ease;
    overflow: hidden;
}

.btn::before {
    position: absolute;
    content: "";
    height: 80%;
    width: 100%;
    left: 0;
    bottom: 10%;
    z-index: -1;
    transition: -webkit-transform .2s ease-in-out;
    transition: transform .2s ease-in-out;
    transition: transform .2s ease-in-out, -webkit-transform .2s ease-in-out;
    -webkit-transform-origin: top;
    transform-origin: top;
    -webkit-transform: scaleY(0);
    transform: scaleY(0);
}

.btn:focus {
    outline: 0;
    box-shadow: none !important;
}

.btn:active {
    box-shadow: none;
}

.btn:hover::before {
    -webkit-transform: scaleY(1);
    transform: scaleY(1);
    -webkit-transform-origin: bottom;
    transform-origin: bottom;
}

.btn-sm {
    font-size: 14px;
    padding: 10px 35px;
}

.btn-xs {
    font-size: 12px;
    padding: 5px 15px;
}

.btn-primary {
    background: #0072bc;
    color: #fff;
}

.btn-primary::before {
    background: #fff;
}

.btn-primary:active {
    background: #0072bc !important;
    color: #0072bc;
}

.btn-primary:active::before {
    height: 80%;
}

.btn-primary:hover {
    background: #003959;
    color: #003959;
    /*color: #fff;*/
}

.btn-primary:not(:disabled):not(.disabled).active,
.btn-primary:not(:disabled):not(.disabled):active,
.show > .btn-primary.dropdown-toggle {
    color: #fff;
    background-color: #ffab08;
    border-color: #ffab08;
}

.btn-secondary {
    background: #fff;
    color: #0072bc;
    border: 1px solid #fff;
}

.btn-secondary::before {
    background: #ff0018;
}

.btn-secondary:active {
    background: #ff0018;
    color: #fff;
    border: 1px solid #fff;
}

.btn-secondary:hover {
    background: #ff0018;
    color: #fff;
    border: 1px solid #fff;
}

.btn-primary-outline {
    border: 1px solid #0072bc;
    color: #0072bc;
    background: transparent;
}

.btn-primary-outline::before {
    background: #fff;
}

.btn-primary-outline:hover {
    background: #0072bc;
    color: #0072bc;
}

.btn-primary-outline:active {
    background: #0072bc;
    color: #fff;
}

body {
    background-color: #fff;
    overflow-x: hidden;
}

::-moz-selection {
    background: #ffcd6e;
    color: #fff;
}

::selection {
    background: #ffcd6e;
    color: #fff;
}

/* preloader */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #fff;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
}

ol,
ul {
    list-style-type: inherit;
    margin: 0px;
}

img {
    vertical-align: middle;
    border: 0;
}

a {
    color: var(--tp-theme-1); 
}

a,
a:hover, 
a:focus {
    text-decoration: none;
}

a,
button,
select {
    cursor: pointer;
    transition: .2s ease;
}

a:focus,
button:focus,
select:focus {
    outline: 0;
}

a:hover {
    color: #0072bc;
}

a.text-primary:hover {
    color: #0072bc !important;
}

a.text-light:hover {
    color: #0072bc !important;
}

h4 {
    transition: .2s ease;
}

a h4:hover {
    color: #0072bc;
}

.slick-slide {
    outline: 0;
}

.section {
    padding-top: 30px;
    padding-bottom: 30px;
    padding-left: 40px;
}

.section-sm {
    padding-top: 40px;
    padding-bottom: 40px;
}

.section-title {
    margin-bottom: 20px;
}

.bg-cover {
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.border-primary {
    border-color: #ededf1 !important;
}

/* overlay */
.overlay {
    position: relative;
}

.overlay::before {
    position: absolute;
    content: '';
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    background: #1a1a37;
    opacity: .8;
}

.outline-0 {
    outline: 0 !important;
}

.d-unset {
    display: unset !important;
}

.bg-primary {
    background: #0072bc !important;
}

.bg-secondary {
    background: #1a1a37 !important;
}

.bg-gray {
    background: #f8f8f8;
}

.text-primary {
    color: #0072bc !important;
}

.text-color {
    color: #5c5c77;
}

.text-light {
    color: #8585a4 !important;
}

.text-lighten {
    color: #d6d6e0 !important;
}

.text-muted {
    color: #b5b5b7 !important;
}

.text-dark {
    color: #1e1e4b !important;
}

.font-secondary {
}

.mb-10 {
    margin-bottom: 10px !important;
}

.mb-20 {
    margin-bottom: 20px !important;
}

.mb-30 {
    margin-bottom: 30px !important;
}

.mb-40 {
    margin-bottom: 40px !important;
}

.mb-50 {
    margin-bottom: 50px !important;
}

.mb-60 {
    margin-bottom: 60px !important;
}

.mb-70 {
    margin-bottom: 70px !important;
}

.mb-80 {
    margin-bottom: 80px !important;
}

.mb-90 {
    margin-bottom: 90px !important;
}

.mb-100 {
    margin-bottom: 100px !important;
}

.pl-150 {
    padding-left: 150px;
}

.zindex-1 {
    z-index: 1;
}

.overflow-hidden {
    overflow: hidden;
}

.vertical-align-middle {
    vertical-align: middle;
}

.icon-md {
    font-size: 36px;
}

    .left-tabs { background-color: #0072bc; }
    .center-tabs { background-color: #95b5df; }
    .right-tabs { background-color: #c7d6ee; } /* Change this color for the last tab */
    .nav-link { color: #495057; }

    /* Style for Left Tabs */
    .left-tabs .nav-link {
        background-color: white;
        color: #000;
        margin-bottom: 10px;
        padding: 10px 15px;
        position: relative;
        transition: background-color 0.3s, color 0.3s;
    }

    .left-tabs .nav-link:hover, .left-tabs .nav-link.active {
        background-color: #0072bc;
        color: #fff;
    }

    .left-tabs .nav-link::after {
        content: '›';  
        position: absolute;
        right: 15px;
        top: 50%;
        transform: translateY(-50%);
        font-size: 1.2rem;
        color: #007bff;
        transition: color 0.3s;
    }

    /* Style for Center Tabs */
    .center-tabs .nav-link {
        background-color: #ffffff;
        color: #000;
        margin-bottom: 10px;
        padding: 10px 15px;
        position: relative;
        transition: background-color 0.3s, color 0.3s;
    }

    .center-tabs .nav-link:hover, .center-tabs .nav-link.active {
        background-color: #c7d6ee;
        color: white;
    }

    .center-tabs .nav-link::after {
        content: '›';  
        position: absolute;
        right: 15px;
        top: 50%;
        transform: translateY(-50%);
        font-size: 1.2rem;
        color: black;
        font-weight: 700;
        transition: color 0.3s;
    }

    /* Style for Right Tabs */
    .right-tabs .tab-pane {
        padding: 20px;
        border: 1px solid #ddd;
        background-color: #f8f9fa;
        border-radius: 0.25rem;
    }

    .right-tabs h5 {
        font-weight: bold;
    }

    .right-tabs .btn {
        margin-top: 10px;
    }
    .breadcrumb {
        padding: 8px 15px;
        margin-bottom: 20px;
        list-style: none;
        background-color: #f5f5f5;
        border-radius: 4px;
    }
    .breadcrumb-item {
        display: inline;
    }
    .breadcrumb-item + .breadcrumb-item::before {
        content: "/";
        padding: 0 5px;
        color: #ccc;
    }
    .breadcrumb-item.active {
        color: #777;
    }
.page-title-section {
    padding: 80px 0 80px;
/*    border-top: 1px solid var(--tp-theme-1);
    border-bottom: 1px solid var(--tp-theme-1);*/
    background-image: url('../images/CPBN-cover4.jpg');
    background-size: cover;
}

.custom-breadcrumb {
  text-align: center; /* Aligns the entire breadcrumb list to the right */
}

.custom-breadcrumb li.nasted {
    position: relative;
    padding-left: 25px;
}

.custom-breadcrumb li.nasted::before {
    position: absolute;
    font-family: "themify";
    content: "\e649";
    font-size: 20px;
    top: 50%;
    left: -5px;
    color: #fff;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

/* /page title */
.list-styled {
    padding-left: 25px;
}

.list-styled li {
    position: relative;
    margin-bottom: 15px;
}

.list-styled li::before {
    position: absolute;
    content: "";
    height: 10px;
    width: 10px;
    border-radius: 50%;
    background: #0072bc;
    left: -25px;
    top: 5px;
}

textarea.form-control {
    height: 200px;
    padding: 20px;
}

#map_canvas {
    height: 500px;
}

.top-header {
    font-size: 12px;
    transition: -webkit-transform .2s ease;
    transition: transform .2s ease;
    transition: transform .2s ease, -webkit-transform .2s ease;
    -webkit-transform-origin: top;
    transform-origin: top;
    font-weight: 600;
}

.top-header.hide {
    -webkit-transform: scaleY(0);
    transform: scaleY(0);
    -webkit-transform-origin: top;
    transform-origin: top;
}

@media (max-width: 991px) {
    .header {
        position: static !important;
        background: #1a1a37;
    }
}

.navigation {
    background-image: linear-gradient(to right, transparent 50%, #0072bc 50%);
    transition: .2s ease;
}

@media (max-width: 575px) {
    .navigation {
        background-image: linear-gradient(to right, transparent 70%, #0072bc 30%);
    }
}

.navbar-nav {
    padding-left: 50px;
    background: #0072bc;
}

@media (max-width: 991px) {
    .navbar-nav {
        padding-left: 0;
    }
}

.nav-bg {
    background-color: #1a1a37;
    margin-top: -46px;
}

.nav-item {
    margin: 10px 10px;
    position: relative;
}

.nav-item .nav-link {
    /* text-transform: uppercase; */
    font-weight: 500;
}

.nav-item::before {
    position: absolute;
    left: 0;
    bottom: 0;
    height: 6px;
    width: 100%;
    content: "";
    background: #fff;
    -webkit-transform: scaleY(0);
    transform: scaleY(0);
    -webkit-transform-origin: top;
    transform-origin: top;
    transition: -webkit-transform .3s ease;
    transition: transform .3s ease;
    transition: transform .3s ease, -webkit-transform .3s ease;
}

.nav-item:hover::before, .nav-item.active::before {
    -webkit-transform: scaleY(1);
    transform: scaleY(1);
    -webkit-transform-origin: bottom;
    transform-origin: bottom;
}

.navbar-light .navbar-nav .nav-link {
    color: #fff;
}

.nav-link.dropdown-toggle::after {
    border: none;
    margin: 0;
}

.nav-item .dropdown-item {
    padding: 0.15rem;
    font-size: 14px;
}

link:focus,
.navbar-light .navbar-nav .nav-link:hover {
    color: #fff;
}

.navbar-light .navbar-nav .active > .nav-link,
.navbar-light .navbar-nav .nav-link.active,
.navbar-light .navbar-nav .nav-link.show,
.navbar-light .navbar-nav .show > .nav-link {
    color: #fff;
}

.navbar-expand-lg .navbar-nav .nav-link {
    padding: 40px 0px;
}

@media (max-width: 1200px) {
    .navbar-expand-lg .navbar-nav .nav-link {
        padding: 30px 0px;
    }
}

.sticky {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 10;
    background: #fff;
    box-shadow: 0 2px 5px #0000000d;
}

.navbar .dropdown:hover .dropdown-menu {
    visibility: visible;
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
}

.navbar .dropdown-menu {
    box-shadow: 0px 3px 9px 0px rgba(0, 0, 0, 0.12);
    border-bottom: 5px solid #0072bc;
    padding: 15px;
    top: 96px;
    border-radius: 0;
    display: block;
    visibility: hidden;
    transition: .3s ease;
    opacity: 0;
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
    background: #fff;
}

@media (max-width: 991px) {
    .navbar .dropdown-menu {
        display: none;
        opacity: 1;
        visibility: visible;
        -webkit-transform: translateY(0);
        transform: translateY(0);
        -webkit-transform-origin: unset;
        transform-origin: unset;
    }
}

.navbar .dropdown-menu.view {
    visibility: visible !important;
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
}

@media (max-width: 991px) {
    .navbar .dropdown-menu.view {
        display: block;
    }
}

.navbar .dropdown-menu.show {
    visibility: hidden;
}

@media (max-width: 991px) {
    .navbar .dropdown-menu.show {
        visibility: visible;
        display: block;
    } 
}

.navbar .dropdown-item {
    position: relative;
    /* color: #fff; */
    transition: .2s ease;
    font-family : 'Source Sans Pro', Arial, sans-serif;
}

@media (max-width: 991px) {
    .navbar .dropdown-item {
        text-align: center;
    }
}

.navbar .dropdown-submenu li:not(:last-child) .dropdown-item,
.navbar .dropdown-item:not(:last-child) {
    margin-bottom: 10px;
}

.navbar .dropdown-item:hover {
    color: #0072bc;
    background: transparent;
}

.hero {
    padding: 160px 0 200px;
}

@media (max-width: 1200px) {
    .hero {
        padding: 80px 0 140px;
    } 
}

.hero-slider .prevArrow,
.hero-slider .nextArrow {
    position: absolute;
    bottom: -123px;
    z-index: 9;
    padding: 15px;
    color: rgba(255, 255, 255, 0.5);
    border: 0;
    font-size: 30px;
    transition: all linear .2s;
    background: transparent;
}

.hero-slider .prevArrow:focus,
.hero-slider .nextArrow:focus {
    outline: 0;
}

.hero-slider .prevArrow:hover,
.hero-slider .nextArrow:hover {
    color: #0072bc;
}

.hero-slider .prevArrow {
    right: 60px;
}

.hero-slider .nextArrow {
    right: 0;
}

.hero-slider .slick-dots {
    position: absolute;
    left: 0;
    bottom: -100px;
    padding-left: 0;
}

.hero-slider .slick-dots li {
    display: inline-block;
    margin: 0 6px;
}

.hero-slider .slick-dots li.slick-active button {
    background: #0072bc;
}

.hero-slider .slick-dots li button {
    color: transparent;
    padding: 0;
    overflow: hidden;
    height: 10px;
    width: 10px;
    background: rgba(255, 255, 255, 0.5);
    border: 0; 
    outline: 0;
}
.search-input {
    padding: 10px;
    font-size: 16px;
    width: 250px;
    max-width: 50%; /* Ensure it fits on smaller screens */
    border: 1px solid #ddd;
    border-radius: 5px;
    background-color: rgba(255, 255, 255, 0.8); /* Slightly transparent */
    color: #333;
}

/* Button styling */
.search-btn {
    padding: 10px 20px;
    font-size: 16px;
    border: none;
    border-radius: 5px;
    background-color: var(--tp-theme-2); /* You can adjust the button color */
    color: white;
}

/* Flex container for the form */
.search-form {
    display: flex;
    justify-content: center;
    flex-wrap: wrap; /* Allows wrapping on smaller screens */
    gap: 10px; /* Space between input and button */
    margin-top: 20px;
}

/* Responsive styling for smaller devices */
@media (max-width: 768px) {
    .search-input {
        width: 100%; /* Make the input field full width on mobile */
    }

    .search-btn {
        width: 50%; /* Button full width on mobile */
    }

    .search-form {
        flex-direction: column; /* Stack input and button on top of each other */
        align-items: center; /* Center input and button horizontally */
        justify-content: center; /* Center input and button vertically */
        
    }
}


.vision-section {
    margin-top: -100px;
}

.vision-section .icon-boxes {
    padding-bottom: 60px;
}

/*.vision-section .icon-box {
    padding: 30px 30px;
    position: relative;
    overflow: hidden;
    background: #6C5947; 
    box-shadow: 0 0 29px 0 rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease-in-out;
    border-radius: 8px;
    z-index: 1;
    height: 100%;
    width: 100%;
    text-align: center;
}*/

.vision-section .icon-box {
    padding: 30px 30px;
    position: relative;
    overflow: hidden;
    background-color: #F8A931;
    background-image: linear-gradient(90deg, #F8A931 10%, var(--tp-theme-1) 100%);
    box-shadow: 0 0 29px 0 rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease-in-out;
    /*border-radius: 8px;*/
    z-index: 1;
    height: 100%;
    width: 100%;
    text-align: center;
}

.vision-section .icon-box .title {
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 24px;
}

.vision-section .icon-box .title a {
    color: #fff;
    transition: 0.3s;
}

.vision-section .icon-box .icon {
    margin-bottom: 20px;
    padding-top: 10px;
    display: inline-block;
    transition: all 0.3s ease-in-out;
    font-size: 48px;
    line-height: 1; 
    color: rgba(255, 255, 255, 0.6);
}

.vision-section .icon-box:hover {
    background: #6C5947; 
/*    background-color: #F8A931;
    background-image: linear-gradient(90deg, #F8A931 10%, var(--tp-theme-1) 100%);*/ 
}

.vision-section .icon-box:hover .title a,
.vision-section .icon-box:hover .icon {
    color: #fff;
}

/* banner feature */
.feature-icon {
    font-size: 50px;
    color: #0072bc;
    display: inline-block;
}

.feature-blocks {
    margin-top: 0px;
    padding-left: 70px;
    padding-top: 15px;
    padding-right: 30%;
}

@media (max-width: 1400px) {
    .feature-blocks {
        padding-right: 10%;
    }
}

@media (max-width: 1200px) {
    .feature-blocks {
        padding-right: 50px;
        padding-left: 50px;
        padding-top: 30px;
    }
    .feature-blocks h3 {
        font-size: 20px;
    }
}

@media (max-width: 991px) {
    .feature-blocks {
        margin-top: 0;
        padding: 50px;
    }
    .feature-blocks h3 {
        font-size: 25px;
    }
}

/* /banner feature */
/* course */
.card-btn {
    font-size: 12px;
    padding: 5px 10px;
}

.flex-basis-33 {
    flex-basis: 33.3333%;
}

.hover-shadow {
    transition: .3s ease;
}

.hover-shadow:hover {
    box-shadow: 0px 4px 25px 0px rgba(27, 39, 71, 0.15);
}

/* /course */
/* success story */
.success-video {
    min-height: 300px;
}

.success-video .play-btn {
    position: absolute;
    top: 50%;
    left: 0;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

@media (max-width: 767px) {
    .success-video .play-btn {
        left: 50%;
        -webkit-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
    }
}

.play-btn {
    display: inline-block;
    height: 80px;
    width: 80px;
    border-radius: 50%;
    background: #0072bc;
    color: #fff;
    font-size: 20px;
    text-align: center;
}

.play-btn i {
    line-height: 80px;
}

.play-btn::before {
    position: absolute;
    content: "";
    height: 0;
    width: 0;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    background: #fff;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    z-index: -2;
    transition: .3s ease;
    transition-delay: .2s;
}

.play-btn::after {
    position: absolute;
    content: "";
    height: 80%;
    width: 80%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    background: #0072bc;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    z-index: -1;
    transition: .3s ease;
}

.play-btn:hover::before {
    height: 80%;
    width: 80%;
    transition-delay: 0s;
}

.play-btn:hover::after {
    height: 0;
    width: 0;
    transition: 0s ease;
}

/* /success story */
/* events */
.card-date {
    position: absolute;
    background: #0072bc;
    text-align: center;
    padding: 10px;
    color: #fff;
    top: 0;
    left: 0;
    text-transform: uppercase;
}
.date-overlay {
        background-color: #c60000;
        color: white;
        padding: 5px 10px;
        border-radius: 2px;
        font-weight: bold;
        font-size: 0.9rem;
    }
.card-date span {
    font-size: 40px;
}

/* /events */
/* teacher */
.teacher-info {
    width: 70%;
    bottom: 0;
    right: 0;
}

/* /teacher */
/* footer */
.newsletter {
    background-image: linear-gradient(to right, transparent 50%, #0072bc 50%);
    margin-bottom: -100px;
    position: relative;
    z-index: 1;
}

.newsletter-block {
    padding-left: 50px;
}

@media (max-width: 575px) {
    .newsletter-block {
        padding-left: 15px;
    }
}

@media (max-width: 767px) {
    .hidden-mobile { 
      display: none !important;
    }
    
    .icon-box-spacing-below{ 
        margin-bottom: 10px;
    }
}

.input-wrapper {
    position: relative;
}

.input-wrapper button {
    position: absolute;
    right: 25px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.form-control {
    height: 60px;
    background: #fff;
    border-radius: 0;
    padding-left: 25px;
}

.form-control:focus {
    border-color: #0072bc;
    box-shadow: none;
}

.newsletter-block .form-control {
    height: 70px;
}

.bg-footer { 
    background-color: #6C5947;
}

.logo-footer {
    margin-top: -20px;
    display: inline-block;
}

.footer {
    border-color: #54433A !important;
    padding-top: 120px;
}

/* /footer */
.filter-controls li {
    cursor: pointer;
    transition: .1s ease;
}

.filter-controls li.mixitup-control-active {
    font-weight: 600;
    color: var(--tp-theme-1);
}

.filter-controls li:hover {
    color: var(--tp-theme-1);
}

/*# sourceMappingURL=maps/style.css.map */

.navbar-nav {
    padding-left: 10px;
    background: var(--tp-theme-1);
}

.navigation {
    background-image: linear-gradient(to right, transparent 50%, var(--tp-theme-1) 50%);
    transition: .2s ease;
}

.bg-primary {
     background-color: var(--tp-theme-1);
}

.newsletter {
    background-image: linear-gradient(to right, transparent 50%, var(--tp-theme-1) 50%)!important;
    margin-bottom: -100px;
    position: relative;
    z-index: 1;
}

.btn-primary {
    background: #0072bc;
    color: #fff;
}

.card-date {
    position: absolute;
    background: var(--tp-theme-1);
    text-align: center;
    padding: 10px;
    color: #fff;
    top: 0;
    left: 0;
    text-transform: uppercase;
}

.text-primary {
    color: var(--tp-theme-1) !important;
}

body {
    line-height: 1.2;
    /*font-family: "Poppins", sans-serif;*/
    font-family : 'Source Sans Pro', Arial, sans-serif;
    font-size: 16px;
    color: #5c5c77;
}

.bg_orange{
    background-color: var(--tp-theme-1);
}

.text-white{
    color: #fff;
}

.footer-social-icon{
    width: 30px;
}

.page_section{
    padding-top: 40px; 
}

.values_heading{
    margin-top: 30px;
}

.center{
    text-align: center;
}

.img_board{
    text-align: center; 
    max-width: 270px;
    margin-bottom: 20px;
}

.table thead th {
    vertical-align: top;
}

.capitalize-first-letter::first-letter {
    text-transform: uppercase;
}

.active_sub_li{
    color: #0072bc;
}