
/* General styles for mobile devices */
body {
    font-size: 18px;
    line-height: 1.5;
}

header .top_nav .right ul {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

header .bottom_nav ul {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.form-wrapper {
    padding: 10px;
}

.form-column {
    width: 100%;
    margin-bottom: 20px;
}

.container-fluid {
    padding: 10px;
}

.companys .col-md-6 {
    width: 100%;
    margin-bottom: 20px;
}

/* Media queries for tablets */
@media (min-width: 768px) {
    header .top_nav .right ul {
        flex-direction: row;
        align-items: center;
    }

    header .bottom_nav ul {
        flex-direction: row;
        align-items: center;
    }

    .form-column {
        width: 48%;
        margin-right: 2%;
    }

    .form-column:last-child {
        margin-right: 0;
    }

    .companys .col-md-6 {
        width: 48%;
        margin-right: 2%;
    }

    .companys .col-md-6:last-child {
        margin-right: 0;
    }
}

/* Media queries for desktops */
@media (min-width: 992px) {
    .form-column {
        width: 30%;
        margin-right: 3.33%;
    }

    .form-column:last-child {
        margin-right: 0;
    }

    .companys .col-md-6 {
        width: 30%;
        margin-right: 3.33%;
    }

    .companys .col-md-6:last-child {
        margin-right: 0;
    }
}