@import url('https://fonts.googleapis.com/css2?family=Berkshire+Swash&family=Open+Sans:wght@300&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200;300;400;500;600;700;800&family=Open+Sans:wght@300&display=swap');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
/*===================
    body area
===================== */
body {
    background: #151515;
}


/*===================
   banner section style
===================== */

.banner_section {
    width: 100%;
    height: 500px;
    background-image: url(../Images/Header-images/Group\ 3110.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center top;
    display: flex;
    justify-content: center;
    align-items: center;
}

.banner_info {
    text-align: center;
    color: #fff;
}

.banner_info h1 {
    font-family: 'Berkshire Swash';
    font-style: normal;
    font-weight: 400;
    font-size: 76px;
    line-height: 94px;
    text-align: center;
    text-transform: capitalize;
    color: #FF5E19;
}

.banner_info p {
    font-family: 'Manrope';
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    line-height: 30px;
    text-align: center;
    letter-spacing: -0.02em;
    margin-top: 10px;
    color: #FFFFFF;
}


/*===================
  card section style
===================== */

.card {
    background-color: #0D0D0D;
}

.card .btn {
    width: 100% !important;
}
/*===================
  card section style
===================== */

.card {
    background-color: #0D0D0D;
}

.card .btn {
    width: 100% !important;
}

.budg_info {
    justify-content: space-between;
    align-items: center;
    margin: 10px 0px;
}

.budget_btn {
    width: 120px;
    height: 40px;
    margin-left: 20px;
    border: 1px solid white;
    background: #0D0D0D;
    color: white;
    outline: none;
    padding: 0px 10px;
}

.total_line {
    display: flex;
    justify-content: space-between;
}

.total_span {
    color: #FF5E19;
}
/*===================
    Footer Section
=================== */
footer{
    margin-top: 100px;
}
footer p{
    text-align: center;
    color: white;
    font-size: 20px;
    margin-top: 5px;
}