.pt-section {
    background: #fff;
}

/* Title with Green underline like the design */
.pt-title {
    font-size: 28px;
    font-weight: 700;
    position: relative;
    /* display: inline-block; */
    text-align: center;
    margin-bottom: 2.5rem !important;
}

.pt-title::after {
    content: "";
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 250px;
    height: 4px;
    border-radius: 4px;
    background: #27d3ac;
}

/* Boxes styling */
.pt-grid .pt-box {
    background: #fff;
    padding: 18px 15px;
    border-radius: 15px;
    font-size: 20px;
    font-weight: 400;
    /* text-align: center; */
    /* box-shadow: 0 0 15px rgba(0, 0, 0, 0.05); */
    box-shadow: 0px 4px 30px rgba(0, 0, 0, 0.07);
    transition: 0.2s;
    min-height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.pt-grid .pt-box:hover {
    transform: translateY(-4px);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.08);
}

.navbar {
    background: rgba(255, 255, 255, 1) !important;
}

.navbar .nav-link {
    color: #000 !important;
}

@media (min-width: 992px) and (max-width: 1300px) {
    .navbar-expand-lg .navbar-nav .nav-link {
        padding-right: 0.0;
        padding-left: 0;
    }
}

@media(min-width:1300px) {
    #navMenu {
        justify-content: space-around;
    }
}

.braight-light {
    position: absolute;
    top: 10px;
    right: 5px;
    width: 15px;
    z-index: 1000000;
    height: 50px;
}

@media(max-width:758px) {
    .braight-light {
        display: none;
    }
}