.cs-hello {
    color: #222;
    width: 100%;
    font-size: 45px;
    font-weight: 700;
    line-height: 1.5;
}

.cs-hello span {
    font-size: 36px;
}

.cs-search-wrapper {
    width: 100%;
    padding: 55px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 20px;
    background-color: #f2f2f2;
}

.cs-search {
    width: 550px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.cs-searchBox {
    flex: 8;
    height: 53px;
    color: #ccc;
    padding: 0 12px;
    font-size: 18px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
    border-radius: 10px;
    background-color: #fff;
    border: 1px solid #eee;
}

.cs-searchBox i {
    color: #aaa;
    font-size: 24px;
}

.cs-searchBtn {
    flex: 1;
    color: #fff;
    height: 53px;
    padding: 0 16px;
    font-size: 18px;
    font-weight: 600;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    background-color: var(--main-color);
    border: 1px solid #f2f2f2;
}

.cs-box-wrapper {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 5rem 0;
}

.cs-box {
    position: relative;
    padding: 40px;
    border-radius: 20px;
    background-color: #f6f7f8;
}

.cs-box-image {
    position: absolute;
    top: 40px; right: 40px;
}

.cs-box-image img {
    height: 50px;
}

.cs-box-text h5 {
    color: #222;
    font-size: 28px;
    font-weight: 700;
    margin-top: 4rem;
}

.cs-box-text p {
    color: #aaa;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.4;
    margin-top: 15px;
}


/*==================================================*/
@media (max-width: 1050px) {   
    .cs-box-wrapper {
        grid-template-columns: repeat(1, 1fr);
        gap: 1rem;
        margin: 3rem 0;
    }

    .cs-box-text h5 {
        margin-top: 0;
    }

    .cs-box-image {
        top: 50%;
    }
}


@media (max-width: 768px) {
    .cs-hello {
        font-size: 32px;
    }

    .cs-hello span {
        font-size: 28px;
    }

    .cs-search-wrapper {
        padding: 0;
        background-color: #fff;
    }

    .cs-search {
        width: 100%;
        gap: 8px
    }

    .cs-searchBox {
        border: none;
        background-color: #f5f5f5;
    }

    .cs-searchBtn {
        border: none;
    }

    .cs-box-wrapper {
        margin: 2rem 0;
    }
}


@media (max-width: 550px) {
    .cs-hello {
        font-size: 24px;
    }

    .cs-hello span {
        font-size: 20px;
    }

    .cs-searchBox,
    .cs-searchBtn {
        height: 50px;
        font-size: 16px;
    }

    .cs-searchBox i {
        font-size: 20px;
    }

    .cs-box {
        padding: 35px 25px;
        border-radius: 10px;
    }

    .cs-box-image {
        right: 32px;
    }
    
    .cs-box-image img {
        height: 40px;
    }

    .cs-box-text h5 {
        font-size: 22px;
    }

    .cs-box-text p {
        font-size: 13px;
        margin-top: 10px;
    }
}
