@import url("menu-toggle.css");

:root {
    --white: #ffffff;
    --black: #141414;
    --yellow: #fed050;
    --red: #ff0000;
    --gray: #757575;
    --active: #16fdff3d;
    --secondary: #eeeeee;
    font-family: 'Open Sans', sans-serif;
}

body {
    margin: 0;
    padding: 0;

    background-color: var(--white);
}

div, span, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, code, img, b, u, i, center, table, tr, th, td, video {
    margin: 0;
    padding: 0;
    border: 0;
}

h2 {
    font-size: 20px;
    color: var(--black);
    width: 100%;
}

.h2-container {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 30px;
    padding: 60px 0px 15px;
}

.yellow-line {
    background: var(--yellow);
    display: block;
    height: 5px;
    width: 3.5em;
    margin-right: 0.8em;
    margin-left: 1em;
}

header {
    max-height: 60px;

    padding: 1em;

    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
}

header h1 {
    font-family:'Open Sans';
    color: var(--black);
    font-size: 20px;
    font-weight: 600;
}

.banner img {
    width: 100%;
}

.products {
    padding-left: 1em;
}

.scroll-hint {
    display: flex;
    justify-content: flex-end;
    padding-left: 1.5em;
    padding-right: 1.5em;
}

.products-list {
    display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
}

.products h2 {
    font-family: 'Arial',Arial,sans-serif;
}

.product {
    width: 18em;
    padding-top: 20px;
}

.products-container {
    margin: 0.3em;
    margin-right: 2em;
}

.product img {
    width: 100%;
    height: 20em;
}

.product .description {
    margin-top: 1em;
}

.product h3 {
    font-size: 12px;
    width: 100%;
    text-align: center;
}

.product p {
    margin-top: 8px;
    font-size: 12px;
    font-weight: 300;
    line-height: 1.55;
    color: var(--black);
    text-align: center;
    margin-left: 1em;
    margin-right: 1em;
}

.product .price {
    display: flex;
    flex-wrap: nowrap;
    font-size: 12px;
    justify-content: center;
}

.price span {
    color: var(--red);
}

.price .old-price {
    color: var(--gray);
    text-decoration: line-through;
}

.price .old-price ::before {
    content: ' ';
}

.product .description {
    height: 15em;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.description .details {
    font-family: 'Open Sans',Arial,sans-serif;
    text-decoration: none;
    width: 100%;
    height: 45px;
    font-size: 14px;
    font-weight: 700;
    background-color: transparent;
    border: 1px solid var(--black);
    color: var(--black);
    padding: 0 20px;
    margin-bottom: 0.7em;
}

.description .order {
    font-family: 'Open Sans',Arial,sans-serif;
    text-decoration: none;
    width: 100%;
    height: 45px;
    font-size: 14px;
    font-weight: 700;
    border: none;
    background-color: var(--yellow);
    color: var(--black);
    padding: 0 20px;
}

.description button:active {
    background-color: var(--active);
}



.how-to-order {
    padding-left: 1em;
}

.steps {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
}

.steps .step {
    display: flex;
    flex-direction: row;
    padding-bottom: 3em;
}

.setp-number {
    min-width: 70px;
    height: 70px;
    background: url('../svg/circle.svg');
    color: var(--white);
    display: flex;
    flex-direction: column;
}

.setp-number span {
    display: block;
    position: relative;
    top: 11px;
    left: 18px;
    z-index: 10;
}


.reasons-to-buy {
    margin: 1em;
}

.reasons-to-buy h1 {
    font-size: 30px;
    line-height: 1.17;
    font-family: 'Open Sans',Arial,sans-serif;
    font-weight: 600;
    color: #000000;
    text-align: center;
}

.cards {
    margin-top: 3em;
}

.card {
    margin-bottom: 0.1em;
}

.cards .card button {
    width: 100%;
    background-color: var(--secondary);
    border: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 5em;
    cursor: pointer;
    padding: 1em;
}

.card h3 {
    font-size: 20px;
    font-family: 'Open Sans',Arial,sans-serif;
    font-weight: 600;
    color: #000000;
    line-height: 1.35;
    text-align: left;
}

.card p {
    font-size: 12px;
    line-height: 1.45;
    font-family: 'Open Sans',Arial,sans-serif;
    font-weight: 300;
    color: #000000;
    background-color: var(--secondary);
    padding: 1em;
}

.card .burger {
    width: 40px;
    height: 40px;
    background-image: url("../svg/plus.svg");
    transition: 50ms;
}

.card .burger-active {
    transition: 50ms;
    transform: rotate(45deg);
}

.card p {
    transition: 50ms;
}

.pay-and-delivery {
    padding: 1em;
    font-size: 16px;
    line-height: 1.45;
    font-family: 'Open Sans',Arial,sans-serif;
    font-weight: 300;
    color: #000000;
}

.pay-and-delivery h1 {
    font-size: 30px;
    line-height: 1.17;
    font-weight: 600;
    text-align: center;
    margin-bottom: 2em;
}

.contacts {
    padding: 1em;
    font-size: 16px;
    line-height: 1.45;
    font-family: 'Open Sans',Arial,sans-serif;
    font-weight: 300;
    color: #000000;
}

.contacts h1 {
    text-align: center;
    font-size: 28px;
    font-weight: 700;
}

.contacts .list {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.contacts a {
    text-decoration: none;
    color: #141414;
}

.contacts iframe {
    margin-top: 1em;
    margin-bottom: 1em;
}

.footer {
    margin: 1em;
}

.footer {
    margin: 1em;
    font-size: 16px;
    line-height: 1.45;
    font-family: 'Open Sans',Arial,sans-serif;
    font-weight: 300;
    color: #000000;
    display: flex;
    flex-direction: column;
}

.footer h5 {
    font-size: 12px;
    text-transform: uppercase;
    line-height: 1.45;
    letter-spacing: 1px;
    font-family: 'Open Sans',Arial,sans-serif;
    font-weight: 600;
    margin-bottom: 1em;
    margin-top: 2em;
}

.footer a {
    text-decoration: none;
    font-weight: 300;
    color: #000000;
}


.popup-menu {
    position: fixed;
    top: 55px;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--white);
    flex-direction: column;
    justify-content: space-evenly;
    display: none;
}

.show {
    display: flex;
}

.popup-menu .links {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.popup-menu .phones {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
}

.popup-menu .links a {
    color: #141414;
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 0.7em;
}

.popup-menu .phones a {
    font-weight: 700;
    font-size: 20px;
    text-transform: uppercase;
    font-family: 'Open Sans',Arial,sans-serif;
    margin-bottom: 1em;
    text-decoration: none;
}

.big-header {
    font-weight: 700;
    font-size: 52px;
    text-align: center;
    font-family: 'Open Sans',Arial,sans-serif;
    margin-top: 1em;
    margin-bottom: 1em;
}



.product-section {
    margin-top: 0;
}

.order-section {
    margin: 1em;
}

.price-div {
    width: 100%;
    height: 8em;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-around;
}

.delim {
    height: 60%;
    background-color: #000000;
    width: 2px;
}

.price-div .old {
    width: 50%;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

.price-div .current {
    width: 50%;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

.old-price-b {
    font-size: 28px;
    font-weight: 400;
    color: #bdbdbd;
    text-decoration: line-through;
}

.current-price-b {
    font-size: 28px;
    font-weight: 400;
    color: var(--red);
}

.order-form {
    width: 100%;
    height: 25em;
    display: flex;
    flex-direction: column;
    margin-top: 1em;
    margin-bottom: 2em;
    justify-content: space-around;
}

.order-form label {
    color: #000000;
    padding-bottom: 5px;
    font-size: 16px;
    font-weight: 300;
}

.order-form input {
    color: #000000;
    border: 1px solid #000000;
    border-radius: 7px;
    -moz-border-radius: 7px;
    -webkit-border-radius: 7px;
    margin: 0;
    height: 60px;
    padding: 0 20px;
    font-size: 16px;
    line-height: 1.33;
}


.order-form select {
    color: #000000;
    border: 1px solid #000000;
    border-radius: 7px;
    -moz-border-radius: 7px;
    -webkit-border-radius: 7px;
    margin: 0;
    height: 60px;
    padding: 0 20px;
    font-size: 16px;
    line-height: 1.33;
    cursor: pointer;
    -webkit-appearance: none;
    appearance: none;
    -moz-appearance: none;
}

.order-form select option {
    font-weight: normal;
    display: block;
    white-space-collapse: collapse;
    text-wrap: nowrap;
    min-height: 1.2em;
    padding: 0px 2px 1px;
    color: #000000;
    font-size: 16px;
    line-height: 1.33;
    cursor: pointer;
}

.order-button {
    color: #ffffff;
    background-color: #8f6861;
    border-radius: 7px;
    -moz-border-radius: 7px;
    -webkit-border-radius: 7px;
    white-space: normal;
    padding-left: 30px;
    padding-right: 30px;
    text-align: center;
    height: 60px;
    border: 0 none;
    font-size: 16px;
}

.product-details-section {
}

.product-details-section img {
    width: 100%;
}

.product-details-section .details {
    padding: 1.5em;
    margin-top: 2em;
    background-color: #eeeeee;
    display: flex;
    flex-direction: column;
}

.product-details-section .details .item-text {
    min-height: 10em;
    background-color: var(--white);
    padding: 2em
}

.product-details-section .details .item-text h3 {
    font-family: "Open Sans";
    color: rgb(143, 104, 97);
    font-weight: 700;
    font-size: 22px;
    line-height: 28px;
    padding-bottom: 1em;
    text-transform: capitalize;
}

.product-details-section .details .item-text p {
    font-family: "Open Sans";
    font-size: 20px;
    line-height: 28px;
    color: rgb(74, 75, 77);
    font-weight: 300;
    margin-bottom: 1em;
}

.product-details-section .details .item-text p strong {
    font-weight: 700;
}

.product-details-section .details .item img {
    width: 100%;
}

.bg-white {
    background-color: var(--white) !important;
}

.product-details-section .details h1 {
    font-size: 42px;
    line-height: 50px;
    text-align: left;
    font-weight: 600;
    color: rgb(74, 75, 77);
}

.brown {
    color: rgb(143, 104, 97) !important;
}

.mb-1 {
    margin-bottom: 1em !important;
}

.properties {
    margin: 1em;
}

.properties img {
    width: 100%;
    margin-bottom: 2em;
}

.properties h1 {
    font-size: 35px;
    text-align: center;
    color: #15141c;
    margin-bottom: 1em;
    margin-top: 2em;
}

.properties h3 {
    font-weight: 700;
    font-size: 20px;
    color: var(--black);
}

.properties p {
    font-size: 20px;
    font-weight: 300;
    color: var(--black);
    margin-top: 0.5em;
}

.properties hr {
    height: 1px;
    background: #000;
    opacity: .1;
    margin-top: 28px;
}

.error {
    background-color: rgba(255, 50, 50, 0.3);
    border-radius: 0.5em;
    padding: 1em;
    margin-top: 1em;
    margin-bottom: 1em;
    text-align: center;
    display: none;
}