@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css?family=Lato:400,700&display=swap');

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

#start,
#contacts {
    background-color: rgba(50, 56, 77, 1);
}

.navbar-brand {
    font-family: "Montserrat", serif;
    font-weight: 600;
    font-size: 18px;
}

.nav-link {
    font-family: 'Lato', sans-serif;
    font-weight: 600;
    font-size: 14px;
    color: white;
}

.display-2 {
    font-family: "Montserrat", serif;
    font-weight: 600;
    font-size: 32px;
    text-align: center;
    color: white;
    line-height: 40px;
}

.parallax_main {
    height: 65vh;
    background-size: cover;
}

.parallax_mini {
    height: 200px;
    background-size: cover;
    border-radius: 16px;
}

.display-5 {
    padding: 40px 0 32px 0;
    margin-bottom: 0;
    font-family: "Montserrat", serif;
    font-weight: 600;
    font-size: 28px;
}

.card_text {
    padding: 16px 32px 32px;
    flex-grow: 1;
}

.card_text_header {
    margin-bottom: 8px;
    font-family: "Montserrat", serif;
    font-weight: 600;
    font-size: 18px;
    border: none;
    background-color: inherit;
}

.help_card {
    display: flex;
    flex-direction: column;
}

.service_card {
    display: flex;
    flex-direction: row;
    gap: 24px;
    padding: 24px;
    box-shadow: 0px 24px 16px -24px rgba(52, 57, 60, 0.12);
    height: 100%;
    background-color: white;
    border-radius: 16px;
}

.about_container {
    display: flex;
    gap: 24px;
    padding-bottom: 40px;
}

.about_card, .techno_card {
    display: flex;
    flex-direction: column;
    padding: 24px 32px;
    border-radius: 16px;
    border: 1px solid #EEF0F6;
    height: inherit;
    background-color: white;
    border-radius: 16px;
    flex: 1;
}

.techno_card {
    background-color: #FAFBFC;
}

.footer_container {
    display: flex;
    gap: 32px;
    color: white;
    width: 80%;
    margin: 0 auto;
}

.footer_info {
    display: flex;
    flex-direction: column;
    gap: 8px
}

.about_us {
    width: 80%;
}


@media (max-width: 650px) {
    .about_container {
        flex-direction: column;
    }

    .footer_container {
        flex-direction: column;
    }

    .about_us {
        width: unset;
    }

    .service_card {
        padding: 16px;
    }
}