@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800;900&display=swap');

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    width: 100%;
    height: 100%;
    position: relative;
}
.logo {
    width: 150px;
}
header {
    position: relative;
    padding: 20px 0;
    background-color: #fcfcfc;
}

.headerBX {
    justify-content: center;
    display: flex;
    align-items: center;
}

.btn-primary {
    background-color: #9e652b;
    border: none;
    border-radius: 50px;
    padding: 20px;
    font-weight: 800;
    outline: none;
}
.btn-primary:hover{
    background-color:#c99a5e;
    border: none;
    outline: none;
}

.pricetable {
    padding: 100px 0;
}

.description p {
    font-size: 13px;
    text-align: center;
}
.nameservices h5 {
    font-size: 18px;
}
/** footer */
.bg-gray {
    background-color: #f9f9f9;
    padding: 20px 0;
}
.footer-txt {
    margin-bottom: 0;
    font-size: 12px;
}