html {
    font-size: 20px;
}

@media (min-width: 768px) {
    html {
        font-size: 20px;
    }
}
@media (max-width: 768px) {
    .logo {
        height: 40px; /* smaller on tablets/mobiles */
    }
}

@media (max-width: 576px) {
    .logo {
        height: 35px; /* extra small on very small phones */
    }
}
body {
    margin-bottom: 0px;
}

.bg-dark {
    --bs-bg-opacity: 1;
    background-color: rgb(0, 78, 130) !important;
}

.bg-light {
    --bs-bg-opacity: 1;
    background-color: rgb(235 235 235) !important;
}

.text-muted {
    --bs-text-opacity: 1;
    color: #000 !important;
}

.our-services {
    width: 308px;
    height: 350px;
    border-radius: 2%;
    background: #fff;
    box-shadow: 0px 8px 10px 2px #c5c5c5;
    border: 1px solid #c5c5c5;
    margin: 5px;
    justify-content: center;
    align-items: center;
}

.text-wrap {
    white-space: normal !important;
}

.text-wrap:hover {
        border-color: red;
    }

    


.process-box {
    background: #fff;
    padding: 10px;
    border-radius: 15px;
    position: relative;
    box-shadow: 2px 2px 7px 0 #00000057;
}

.process-step {
    background: #9e0001;
    text-align: center;
    width: 50%;
    margin: 0 auto;
    color: #fff;
    height:100px;;
    padding-top: 8px;
    position: relative;
    top: -26px;
    border-radius: 0px 0px 10px 10px;
    box-shadow: -6px 8px 0px 0px #00000014;
}

.process-last:before {
    display: none;
}

.process-box p {
    z-index: 9;
}

.process-step p {
    font-size: 20px;
}

.process-step h2 {
    font-size: 39px;
}

.process-step:after {
    content: "";
    border-top: 8px solid #04889800;
    border-bottom: 8px solid #9e0001;
    border-left: 8px solid #ff000000;
    border-right: 8px solid #9e0001;
    display: inline-grid;
    position: absolute;
    left: -16px;
    top: 0;
}

.process-step:before {
    content: "";
    border-top: 8px solid #ff000000;
    border-bottom: 8px solid #9e0001;
    border-left: 8px solid #9e0001;
    border-right: 8px solid #ff000000;
    display: inline-grid;
    position: absolute;
    right: -16px;
    top: 0;
}

