/* ------------------reusable code start------------------- */


.section {
    padding: 6rem 0;
}

.container {
    max-width: 1240px;
    margin: 0 auto;
    /* border:1px solid red; */
    overflow: hidden;
}

.disk{
    width:100%;
    height:2px;
    background-color:rgba(225, 225, 225, .6);
    border-radius:10px;
    margin:1.5rem 0;
}

.top-heading {
    font-size: 4.5rem;
    font-weight: 400;
    position: relative;
    width: max-content;
    margin: 0rem auto;
    margin-bottom: 5rem;
    /* background-color: red; */
    letter-spacing: 1.5px;
}

.top-heading::before {
    content: '';
    position: absolute;
    top: 50%;
    left: -161px;
    transform: translatey(-50%);
    background-color: rgba(46, 219, 235);
    width: 150px;
    height: 2.5px;
    border-radius: 20px;
    text-transform: capitalize;
}

.top-heading::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -161px;
    transform: translatey(-50%);
    background-color: rgba(46, 219, 235);
    width: 150px;
    height: 2.5px;
    border-radius: 20px;
}

ul li {
    list-style: none;
}

a {
    text-decoration: none;
}

.grid {
    display: grid;
}

.grid-three-cols {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
}


.grid-four-cols {
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: .5px;
}

.grid-five-cols {
    grid-template-columns: repeat(5, 1fr);
    gap: 2rem;
}


.flex {
    display: flex;
}

.center {
    align-items: center;
}

.items-center {
    justify-content: center;
}

.flex-cols {
    flex-direction: column;
    gap: 1rem;

}

.flex-basis {
    flex-basis: 100%;
}

.sapce-between {
    justify-content: space-between;
}

.dish {
    height: 1px;
    background-color: rgba(225, 225, 225, .3);
    width: 100%;
    margin-top: 1.2rem;
}

.com {
    /* border: 1px solid red; */
}

/* ------------------reusable code end------------------- */