body {
    margin: 0;

    font-family: 'Poppins', sans-serif;
    padding: 0;
}

.navbar {
    padding: 0px 100px;
}

.section-one {
    background-image: url("images/main_image.png");
    height: 100vh;
    padding: 0px 100px;
    background-size: contain;
    background-repeat: no-repeat;

    /* background-position: bottom; */

}

.nav-bar {
    display: flex;
    justify-content: space-between;
}

.nav-tabs {
    display: flex;
    padding-top: 20px;
}

a {
    text-align: left;
    font-size: 15px;
    font-weight: 400;
    cursor: pointer;
    padding-left: 40px;
    color: #FFFFFF !important;
    border-bottom: none;
    text-decoration: none !important;

}

.header-text {
    padding-left: 50px;
    padding-top: 100px;
}

.header-text h1 {
    color: #FFFFFF;

    letter-spacing: 1.5px;
    font-weight: 600;
    font-size: 38px;
}

.header-text h2 {
    color: #FFFFFF;

    font-weight: 300;
    font-size: 37px;
}

.header-text .upper-text {

    color: #FFFFFF;
    font-size: 14px;
    font-weight: 200;
}

.header-text .below-text {

    color: #FFFFFF;
    font-size: 14px;
    font-weight: 200;
    margin-top: -10px;
}



/* SECTION TWO */

.section-two {
    height: 100vh;
    padding: 0px 100px;
}

.section-two-text {
    display: flex;
    justify-content: center;
    padding-top: 40px;
}

.section-two-text h1 {
    color: rgba(82, 82, 82, 1);

    font-size: 35px;
    font-weight: 400;
    line-height: 49px;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(223, 225, 229, 1);

}

.services-blocks {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, auto);
    align-items: center;
    gap: 8px;
    margin-left: 200px;
    margin-right: 100px;
    margin-top: 50px;
}

.services-block {
    width: 258px;
    height: 234px;
    margin-bottom: 50px;
    background-color: rgba(29, 74, 128, 1);
    box-sizing: border-box;
    border-radius: 0px 37px 0px 37px;
}

.submit-button {
    background-color: rgba(29, 74, 128, 1) !important;
}

.block-img {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.services-blocks p {
    display: flex;
    justify-content: center;
    color: #FFFFFF;
    font-size: 17px;
    font-weight: 400;
}

.book-now-block button {
    background-color: #FFFFFF;
    color: rgba(29, 74, 128, 1);
    width: 100%;
    height: 45px;
    margin-top: 16px;
    border-radius: 0px 37px 0px 37px;
}

.book-now-block button:hover {
    background-color: rgb(252, 238, 138);
    color: rgba(29, 74, 128, 1);
}

.modal-header {
    color: #fff;
    background-color: rgba(29, 74, 128, 1);
}

.btn-close {
    color: #fff;
}

.navbar {
    background-color: rgba(29, 74, 128, 1) !important;
    width: 100%;
}

@media only screen and (max-width: 490px) {

    .section-one,
    .section-two,
    .navbar {
        padding: 20px;
    }

    .section-one {
        height: 250px;
        background-image: none;
        background-color: rgba(29, 74, 128, 1);
    }

    .navbar-brand {
        padding-left: 0px;
    }
    #serviceslist h1{
        font-size: 17px;
    }
    .services-blocks {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        grid-template-rows: repeat(2, auto);
        margin: 0px !important;
        padding: 20px;
        margin-left: 0px;
        margin-right: 0px;
        margin-top: 0px;
        margin: auto;
    }

    .services-block {
        width: 100% !important;
    }

    .header-text {
        padding: 10px 20px;
    }

    .header-text h1 {
        font-size: 16px;
        padding-top: 10px;
    }

    .header-text h2 {
        font-size: 13px;
        text-align: left;
        padding-top: 10px;
        margin: 0px 20px 20px 0px;
    }
}