@import 'https://fonts.googleapis.com/css?family=Old+Standard+TT&display=swap';
@import 'https://fonts.googleapis.com/css?family=Amiko&display=swap';

* {
    box-sizing: border-box;
}

body {
    font-family: 'Amiko', Helvetica, Arial, sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background: #efefef;
    color: #333;
    margin: 0;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    color: inherit;
}

.content {
    max-width: 1280px;
    padding: 0 20px;
    margin: 0 auto;
}

.full-w {
    width: 100%;
}
.hide {
    display: none !important;
}

.card {
    background: #fff;
    border: 0;
    box-shadow: 0 6px 0 0 rgba(0,0,0,.01), 0 15px 32px 0 rgba(0,0,0,.06);
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 400;
    word-wrap: break-word;
}
.card__content {
    padding: 1rem;
}
.btn {
    font-weight: 400;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    padding: .8rem;
    font-size: 1rem;
    letter-spacing: 1px;
    border: 1px solid #333;
    background: #282828;
    color: #fff;
    margin: 20px 0;
    cursor: pointer;
    display: block;
    text-decoration: none;
}

/* Header */
.header {
    display: flex;
    position: fixed;
    width: 100%;
    background: #fff;
    z-index: 100;
}
.header__logo {
    width: 300px;
    height: 110.267px;
    margin: 5px auto;
}

/* Banner */
.banner {
    height: 75vh;
    background: url('assets/banner.jpg') no-repeat fixed center / cover;
}

/* Section */
.section {
    margin: 40px 0;
}
.section__title {
    font-family: 'Old Standard TT', sans-serif;
    font-size: 1.5rem;
    text-align: center;
}

/* Basket */
.baskets__grid {
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 20px;
}
.basket__banner {
    overflow: hidden;
}
.basket__info {
    /*display: flex;*/
    align-items: center;
    justify-content: space-between;
}
.baskets__img {
    width: 100%;
}
.basket__ref {
    margin: 0;
    margin-bottom: 20px;
    width: 100%;
}
.basket__qt {
    background: #efefef;
    width: 80%;
    margin-bottom: 20px;
    margin-left: 10%;
    padding: .8rem;
    font-size: 1.1rem;
    border: none;
}

/* Contact */
.contact__form {
    display: flex;
    flex-wrap: wrap;
}
.contact__form form {
    flex: 1;
}
.form__field {
    display: flex;
    flex-direction: column;
    margin: 10px 0;
}
.form__field label {
    margin-bottom: 5px
}
.form__field input,
.form__field textarea,
.form__field select {
    background: #fff;
    border: none;
    border-radius: 0;
    padding: 1rem;
    resize: vertical;
}
.form__field select {
    -webkit-appearance: none;
}
.form__field select::-ms-expand {
    display: none;
}

/* Footer */
.footer {
    background: #333;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #fff;
    padding: 1rem;
}
.footer__logo {
    width: 200px;
}
.footer__info {
    font-size: .7rem;
}

@media (min-width: 420px) {
    .baskets__grid {
        grid-template-columns: repeat(2, 1fr)
    }
    .contact__form form:first-child {
        margin-right: 10px;
    }
    .contact__form form:last-child {
        margin-left: 20px;
    }

}

@media (min-width: 992px) {
    .baskets__grid {
        grid-template-columns: repeat(3, 1fr)
    }
}
