@import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@10..48,300;10..48,400&family=Manrope&display=swap');

header {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-family: 'Manrope', sans-serif;
    width: 80%;
    height: 140px;
    background-color: white;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 40px;
    border-radius: 0 0 10px 10px;
    margin: 0 auto;
    overflow: hidden;
}

nav .logo {
    width: 120px;
    margin-top: 8px;
}

nav .logo {
    display: none;
}

nav ul {
    display: flex;
}

nav ul li {
    list-style: none;
}

nav ul li a {
    text-decoration: none;
    color: black;
    display: block;
    margin: 0 2px;
    font-weight: 600;
    padding: 8px 18px;
    transition: 0.2s;
    border-radius: 30px;
    cursor: pointer;
}

nav ul li a:hover {
    background-color: black;
    color: white;
}

nav ul li a:active {
    background-color: black;
    color: white;
}

.hamburger {
    display: none;
    height: fit-content;
    cursor: pointer;
    padding: 3px 8px;
    border-radius: 5px;
    transition: 0.2s;
}

.hamburger:hover {
    background: #f6f4ff;
}

.hamburger div {
    width: 40px;
    height: 6px;
    margin: 6px 0;
    background: #212526;
}

@media only screen and (max-width: 1100px) {
    header {
        width: 90%;
        padding: 0 20px;
    }

    nav {
        position: absolute;
        left: -470px;
        top: 0;
        z-index: 999;
        width: 450px;
        height: 100vh;
        background-color: #fefefe;
        transition: 0.2s;
        box-shadow: 2px 0 20px 0 rgba(0, 0, 0, 0.05);
    }

    #nav_check:checked~nav {
        left: 0;
    }

    nav .logo {
        display: block;
        height: 70px;
        display: flex;
        align-items: center;
        margin-left: 30px;

    }

    .logo h4 {
        font-size: 40px;
    }

    nav .logo h4 {
        font-size: 40px;
    }

    nav ul li a {
        margin-bottom: 5px;
        padding: 10px 15px;
        border-radius: 5px;
        font-size: 40px;
    }

    nav ul {
        display: block;
        padding: 0 20px;
        margin-top: 30px;
        font-size: 30px;
    }

    .hamburger {
        display: block;
    }
}
@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@500&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz@10..48&family=Manrope&display=swap');
.slider {
    height: 400px;
    margin-top: 3%;
}
@media only screen and (max-width: 1100px){
    img.d-block.w-100{
    height: 450px;
    margin-top: 3%;
    size: cover;
}
.slider {
    height: 450px;
    margin-top: 3%;       
}
}
html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Raleway', sans-serif;
    margin-top: 3%;
}

.search {
    width: 100%;

}

.row {
    width: 90%;
    text-align: center;
    margin-right: 10%;
}   

.search h1 {
    margin-top: 50px;
    text-align: center;
}

.search .col {
    text-align: center;
    width: 25%;
    margin-left: auto;
    margin-right: auto;
}


.search .col .box {
    height: 250px;
    width: 300px;
    box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.4);
    text-align: center;
    margin-top: 10px;
    margin-right: auto;
}

.search .col .box i {
    font-size: 50px;
    margin-top: 100px;
}

.search .col a {
    text-decoration: none;
    color: black;
}


.container-about {
    width: 90%;
    margin: 0 auto;
    padding: 10px 20px;
}

.about {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.about-image {
    flex: 1;
    margin-right: 40px;
    overflow: hidden;
}

.about-image img {
    max-width: 100%;
    width: 70%;
    height: auto;
    display: block;
    transition: 0.5s ease;
}

.about-content {
    flex: 1;
}

.about-content p {
    font-size: 18px;
    line-height: 1.5;
    color: #666;
    width: 100%;
}

.services-container {
    width: 100%;
    min-height: 50vh;
    background-color: #f7f7f7;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0px 90px;
    box-sizing: border-box;
    font-family: 'Bricolage Grotesque', sans-serif;
    font-family: 'Manrope', sans-serif;
}

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

.services .card {
    flex: 1;
    margin: 20px 20px;
    box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.2);
    height: 500px;
    width: 250px;
}

.services .card i {
    margin-top: 50px;
}

.services .card h6 {
    margin: 15px 0px;
    font-size: 18px;
}

.services .card p {
    font-size: 14px;
    line-height: 1.5;
    padding: 0 10px;
    margin-bottom: 5px;
}

.services .card .price {
    margin-top: auto;
}

.services .card .button {
    height: 50px;
    margin-top: auto;
}

.services .card .button button {
    border: 1px solid black;
    border-radius: 30px;
    background-color: #f7f7f7;
    width: 160px;
}

.services .card .button button a {
    text-decoration: none;
    color: black;
}

@media screen and (max-width: 1100px) {
    .services {
        flex-direction: column;
    }

    .services .card {
        width: 90%;
    }

    .services .card h6 {

        font-size: 25px;
    }

    .services .card p {
        font-size: 25px
    }

    .services .card .button {
        font-size: 25px
    }

    .services .card span {
        font-size: 25px
    }
}

@media only screen and (max-width: 1100px) {
    .row{
        width: 100%;
       
    }
    .search .col .box{
        width: 100%;
    }
    .search .col .box span{
        font-size: 25px;
    }
}


footer {
    background: #101010;
    padding: 86px 0;
}

footer .single-content {
    text-align: center;
    padding: 115px 0;
}

footer .single-box p {
    color: #fff;
    line-height: 1.9;
    text-align:left;
}

footer .single-box h3 {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
}

footer .single-box .card-area i {
    color: #ffffff;
    font-size: 20px;
    margin-right: 10px;
}

footer .single-box ul {
    list-style: none;
    padding: 0;
    text-align: left;
}

footer .single-box ul li a {
    text-decoration: none;
    color: #fff;
    line-height: 2.5;
    font-weight: 100;
}

footer .single-box h2 {
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    text-align: left;
}

footer #basic-addon2 {
    background: #fe1e4f;
    color: #fff;
}

footer .socials i {
    font-size: 18px;
    margin-right: 15px;
}

@media (max-width: 767px) {
    footer .single-box {
        margin-bottom: 50px;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    footer .single-box {
        margin-bottom: 50px;
    }
}