.gridboxfull {
    display: grid;
    grid-template-columns: 100%;
    grid-gap: 5px;
}
.boxcontent {
    background: #fff;
    box-shadow: 0 3px 20px rgb(203 203 203);
    padding: 15px;
    margin-top: 15px;
    margin-bottom: 15px;
    border-radius: 10px;
}

.boxcontent h1,
.boxcontent h2 {
    font-size:16px;
    color: #000000;
    margin: 0;
    font-weight: 600;
    margin-bottom: 15px;
}

.boxcontent h4 {
    font-size: 15px;
    margin: 5px 0px;
}

.boxcontent ul.listbox {
    margin: 10px 0px 20px 0px;
    padding: 0px;
}

.boxcontent ul.listbox li {
    list-style: none;
    line-height: 26px;
    font-size: 15px;
}

.boxcontent ul.listbox li .colorchange {
    color: #fa8c28;
    font-weight: 600;
}

.boxcontent p {
    font-size: 16px;
    line-height: 1.5rem;
    margin-block-end: 1em;
}

.boxcontent .textdanger{
    color: #f20;
    font-weight: 600;
}
.boxcontent .bolds{
    font-weight: 600;
}
.parentboxss{
    margin-bottom: 15px;
    line-height: 0;
    position: relative;
}
.parentboxss::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.6);
    border-radius: 5px;
}
.imgoverlay {
    line-height: 0;
    height: 400px;
    overflow: hidden;
}

.traficimage{
    margin-bottom: 0;
    border-radius: 5px;
    object-position: center;
    object-fit: cover;
    height: 100%;
    width: 100%;
}
.title-label {
    position: absolute;
    left: 50%;
    top: 50%;
    background: #fa8c28;
    text-align: center;
    font-size: 34px;
    font-weight: 600;
    color: #fff;
    transform: translate(-50%, -50%);
    padding: 35px;
    border-radius: 10px;
    width: max-content;

}
.getstarted {
    padding-bottom: 3px;
    text-decoration: none;
    color: #2a00d3;
    border-bottom: #2a00d3 solid thin;
}
@media all and (max-width: 410px){
    .getstarted{display: inline-block;}
}
.contact_today{
    text-decoration: none;
}
@media all and (max-width: 767px){
    .imgoverlay{
        height: auto;
    }
    .title-label{
        font-size: 14px;
        padding: 22px 10px;
        width: max-content;
    }
    .gridboxfull {
        display: block;
    }
}
.btn{
    padding: 8px 15px;
    border-radius: 5px;
    border: none;
    outline: none;
    font-size: 1rem;
    line-height: 1.5 !important;
    cursor: pointer;
    display: inline-block;
}

.btn-orange,
.btn-orange:hover{
    background: #fa8c28;
    color: #fff;
}
