ul,
ol {
    padding: 0;
    margin: 0;
    list-style: none;
}

a {
    text-decoration: none;
}

p {
    font-size: 1rem;
    line-height: 1.6;
}

.website_btn {
    display: inline-block;
    margin-top: 1rem;
    padding: .7rem 1.5rem;
    background: #ffbc01;
    color: #fff;
    font-weight: 600;
    border-radius: 4px;
    border: 2px solid #ffbc01;
    transition: .4s ease-in-out;
}

.website_btn:hover {
    background: transparent;
    border: 2px solid #ffbc01;
    color: #ffbc01;
}

.section_padding {
    padding: 40px 0;
}

img {
    width: 100%;
}

.section_title {
    margin-bottom: 1rem;
    text-align: center;
}

.section_title h1 {
    display: inline-block;
    font-size: 42px;
    position: relative;
    z-index: 1;
}

.section_title h1::before {
    padding: 0 1rem;
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    height: 55px;
    width: 90px;
    background: #ffbc01;
    z-index: -1;
}


/* ===== ============Scrollbar CSS =============== */
/* Firefox */
* {
    scrollbar-width: thin;
    scrollbar-color: #e4e4e4 #ededed;
}

/* Chrome, Edge, and Safari */
*::-webkit-scrollbar {
    width: 8px;
}

*::-moz-scrollbar {
    width: 8px;
}

*::-webkit-scrollbar-track {
    background: #ededed;
}

*::-webkit-scrollbar-thumb {
    background-color: #ff2f5a;
    border-radius: 0 0 10px 10px;
    border: 1px solid #ff2f5a;
}

body{
    scroll-behavior: smooth;
}