@import url('https://fonts.googleapis.com/css2?family=Tulpen+One&display=swap');

@font-face {
    font-family: montserrat;
    src: url('../assets/font/montserrat/Montserrat-VariableFont_wght.ttf');
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: montserrat, sans-serif;
}

.common_padding {
    padding: 3% 5%;
}

.banner {
    background: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../assets/images/about_background.jpeg');
    background-size: 100% 100%;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
}

.banner .heading {
    height: 40vh;
    width: 100%;
    font-size: 60px;
    letter-spacing: 15px;
}

section .title {
    font-family: 'Tulpen One', cursive;
    font-size: 70px;
}

.services .book-table {
    display: flex;
    justify-content: space-between;
}

.services .book-table .image {
    width: 25%;
}

.services .book-table .image img {
    width: 100%;
    border-radius: 10%;
}

.services .book-table .description {
    width: 70%;
    display: flex;
    align-items: center;
}

.services .order {
    display: flex;
    justify-content: space-between;
}

.services .order .description {
    display: flex;
    align-items: center;
    width: 70%;
}

.services .order .image {
    width: 25%;
}

.services .order .image img {
    width: 100%;
    border-radius: 10%;
}

.team .container .cards {
    width: 18rem;
}

.communication p {
    margin-bottom: 0 !important;
    padding-bottom: 16px;
}


@media screen and (max-width: 767px) {
    .contain {
        flex-direction: column;
    }

    .contain .image {
        width: 100%;
    }

    .contain .image img {
        width: 50%;
    }

    .contain .description {
        width: 100%;
        display: flex;
        align-items: center;
    }

    .services .book-table {
        flex-direction: column;
    }

    .services .book-table .image {
        width: 100%;
    }

    .services .book-table .image img {
        width: 50%;
    }

    .services .book-table .description {
        width: 100%;
    }

    .services .order {
        flex-direction: column;
    }

    .services .order .description {
        width: 100%;
    }

    .services .order .image {
        width: 100%;
    }

    .services .order .image img {
        width: 50%;
    }

    .services .order {
        display: flex;
        justify-content: center;
    }
}