:root {
    --main-bg-color: #F5F4F2;
    --secondary-bg-color: #FFFFFF;
    --main-accent-color: #F29F05;
    --promo-text-width: 400px;
    --white-color: #FFFFFF;
    --white-color-dimmed: #FBFBFB;
    --grey-color-light: #F5F4F2;
    --delta-yellow: #F2B43F;
}


html, body {
    padding: 0;
    margin: 0;
    color: #333;
    font-family: "Open-Sans", 'Ubuntu', 'Lucida Grande', 'Lucida Sans Unicode', 'Geneva', 'Verdana', sans-serif;
}

.mb-3 {
    margin-bottom: 3rem !important;
}

.mb-2 {
    margin-bottom: 2rem !important;
}

li, ul {
    padding: 0;
    margin: 0;
    list-style: none;
}


h4 {
    margin-bottom: .6rem;
}

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

.row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.row-a-top {
    align-items: flex-start;
}

.container {
    max-width: 1280px;
    width: 80%;
    margin: 0 auto;
}

.container-fluid {
    max-width: 1920px;
    width: 90%;
    margin: 0 auto;
}

.block {
    margin: 0 auto 3rem auto;
}


.col {
    flex: 1;
    display: flex;
    flex-wrap: wrap;
}

.col-lg {
    flex: 4;
    display: flex;
    flex-wrap: wrap;
}

.col.phone-wrapper {
    flex: 2;
}

.heading-3 {
    margin: 2rem 0;
    font-size: 2rem;
}

.header {
    background: var(--main-bg-color);
    box-shadow: lightgrey 0 0 5px 0;
}

.header-top {
    background: var(--main-bg-color);
    padding: 20px 0;
    min-height: 50px;
}

.header-bottom {
    background: var(--secondary-bg-color);
    padding: 10px 0;
}

.header-top .logo {
    width: 150px;
}

.navigation {
    display: flex;
    align-items: center;
    flex: 2;
    flex-wrap: wrap;
}

a {
    color: #333;
    text-decoration: none;
}

.navigation .navigation-link a {
    color: #333;
    text-decoration: none;
    font-size: 1rem;
    margin: 0 2rem;
}

.bold {
    font-weight: 600;
}

.navigation .navigation-link a:first-child {
    margin-left: 0;
}

.navigation .navigation-link a:last-child {
    margin-left: 0;
}

.flex-block-align-center {
    display: flex;
    align-items: center;
}

.phone {
    display: flex;
    margin-right: 10px;
    align-items: center;
}

.email {
    display: flex;
    margin: 0 0 0 3rem;
    align-items: center;
}

footer .email {
    margin: 0;
}

.search-form {
    padding: 0;
    margin: 0;
    position: relative;
    display: flex;
}

.social-icons {
    display: flex;
    align-items: center;
}

.search-form input[type=text] {
    box-sizing: border-box;
    padding: 3px 3px 3px 40px;
    border: solid 1px #d9d9d9;
    border-bottom-left-radius: 5px;
    border-top-left-radius: 5px;
    margin: 0;
    height: 40px;
    border-right: solid 1px var(--delta-yellow);
}

.search-form input[type=text]:focus {
    outline: none;
    border: solid 1px var(--delta-yellow);
}

.search-form img {
    position: absolute;
    left: 10px;
    top: 10px;
    width: 20px;
    height: 20px;
}

.search-form button {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 40px;
    background: var(--delta-yellow);
    border: none;
    outline: none;
    border-bottom-right-radius: 5px;
    border-top-right-radius: 5px;
    color: #fff;
    cursor: pointer;
}

.search-form button:hover {
    background: var(--main-accent-color);
}

/* buttons */

.button {
    width: max-content;
    height: 40px;
    padding: 0 20px;
    border: none;
    border-radius: 10px;
    outline: none;
    margin: 0;
    cursor: pointer;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.button.button-primary {
    background: var(--delta-yellow);
    color: #fff;
    font-size: 1rem;
}

.button.button-primary:hover {
    background: var(--main-accent-color);
}

.make-accent {
    padding: 30px;
    margin: 30px;
    font-size: 24px;
}

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

.promo {
    background: var(--main-bg-color);
    padding: 2rem 0;
}

.small-promo-text {
    width: var(--promo-text-width);
    border-left: solid 4px var(--delta-yellow);
    padding: 1rem;
    font-size: 1rem;
    margin-bottom: 2rem;
}

.main-promo-text {
    width: var(--promo-text-width);
}

.icon {
    width: 20px;
    height: 20px;
    margin-right: 5px;
}

.icon img {
    width: 100%;
    height: auto;
}

.address {
    display: flex;
    align-items: center;
    margin-right: 3rem;
}


.wrapper {
    padding-top: 50px;
    padding-bottom: 50px;
}

.wrapper-grey-bg {
    background-color: var(--main-bg-color);
    display: flex;
    justify-content: space-around;
}

.wrapper-grey-bg-head {
    background-color: var(--main-bg-color);
    padding-top: 20px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.wrapper-white-bg {
    background-color: var(--white-color);
}

.wrapper-white-dimmed {
    background-color: var(--white-color-dimmed);
    display: flex;
    justify-content: center;
    align-items: center;
}

.wrapper-light-grey {
    background-color: var(--grey-color-light);
    display: flex;
    justify-content: center;
    flex-flow: column wrap;
    flex-shrink: 1;
    align-items: center;
}


.benefits {
    display: flex;
    justify-content: center;
    flex-flow: column wrap;
    flex-shrink: 1;
    align-items: center;
    padding-bottom: 117px;
}

.benefits-header-text {
    font-size: 8rem;
    font-family: Open-Sans, sans-serif;
    font-weight: bold;
    text-align: center;
    padding-bottom: 60px;
}

.achievement {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    margin-top: 3rem;
}

.large-text {
    font-size: 30px;
    color: #e19a12;
}

.del-time-count {
    font-size: 3rem;
    font-family: Open-Sans, sans-serif;
    font-weight: bold;
    text-align: center;
}

.del-time-days {
    font-size: 24px;
    height: 14%;
    font-family: Open-Sans, sans-serif;
    padding-top: 113px;
}

.line-short {
    width: 45px;
    height: 6px;
    background-color: #f2b43f;
    margin-top: 5px;
}

.line-long {
    width: 200px;
    height: 6px;
    background-color: #f2b43f;
}

.benefits-column-description {
    color: #858585;
}

.large-text-2-wrapper {
    display: flex;
    flex-direction: column;
    width: 250px;
}

.bestsellers {
    display: flex;
    justify-content: space-between;
    flex-flow: row wrap;
}

.bestsellers-header-text {
    font-size: 38px;
    font-family: Open-Sans, sans-serif;
    font-weight: bold;
}

.bestseller-item {
    margin-bottom: 2rem;
    width: 220px;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.example-name,
.example-model {
    font-family: Open-Sans, sans-serif;
    padding-bottom: 8px;
    text-align: center;
    font-size: 14px;
}

.example-img {
    margin: 0 5px;
    width: 220px;
}

.example-name {
    color: #5e5e5e;
    text-align: center;
    font-size: 14px;
    margin: 0 auto;
}

.example-model {
    width: 180px;
    margin: 0 auto;
    text-align: center;
}


.model-price {
    margin-bottom: 10px;
    font-size: 18px;
    font-weight: 600;
    font-family: Open-Sans, sans-serif;
    text-align: center;
}

.step {
    display: flex;
    flex-flow: column wrap;
    justify-content: center;
    align-items: center;
}

.step-item {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin: 30px 0;
    justify-content: center;
}

.step-text {
    width: 400px;
}


.step-number-wrapper {
    width: 120px;
    height: 120px;
    padding: 5px;
    border: solid #f29f05 6px;
    border-radius: 50%;
    margin-right: 20px;
    position: relative;
}

.overlap-right {
    position: absolute;
    top: -6px;
    right: -6px;
    width: 60px;
    height: 142px;
    background: #fff;
    z-index: 1;
}

.overlap-left {
    position: absolute;
    top: -6px;
    left: -6px;
    width: 60px;
    height: 142px;
    background: #fff;
    z-index: 1;
}

.step-number {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: #f5c876;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 35px;
    font-weight: 600;
    z-index: 2;
    position: relative;
}


.contacts-block {
    background-color: #fff;
    position: relative;
    box-shadow: 3px 3px 3px 0 #ccc;
    border-radius: 5px;
    display: flex;
    flex-wrap: wrap;
    flex: 1;
    border: solid 1px #eee;
}

.contact-form {
    background-color: #f5c876;
    font-family: Open-Sans, sans-serif;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
    padding: 0 2rem 2rem;
    flex: 1;
}

.contact-form-small {
    width: 600px;
    padding: 0;
    margin: 2rem 0;
}

.contact-form .heading-3 {
    text-align: left;
}

.contact-form-item {
    display: flex;
    flex-direction: row;
    margin: 2rem 0;
}

.contact-form-header {
    text-align: center;
    font-weight: bold;
}

.form-text {
    font-size: 18px;
}

.application {
    padding: 0 2rem 2rem;
    width: 100%;
}

.application .heading-3 {
    text-align: left;
}

.form-item {
    display: flex;
    flex-direction: column;
    margin: 2rem 0;
}

.form-item label {
    font-size: 16px;
    font-weight: 600;
    padding: 5px 0;
}

.form-item input[type=text] {
    line-height: 40px;
    padding: 5px 10px;
    font-size: 16px;
}

.form-item textarea {
    height: 80px;
    padding: 5px 10px;
    font-size: 16px;
}

.form-item .attention {
    font-size: 13px;
    margin-top: 5px;
    color: #727272;
}

.footer-navigation {
    display: flex;
    flex-direction: column;
}


.footer-contacts {
    display: flex;
    flex-direction: column;
}

.navigation-link-with-icon {
    height: 40px;
    display: flex;
    align-items: center;
}

.hits-container-wrapper {
    margin: 0 auto;
    padding-top: .5rem;
    background: #fff;
}

.container.block.contacts {
    margin: 1rem auto;
    padding: 3rem 0;
    width: 100%;
}

footer {
    margin-bottom: 2rem;
    border-top: solid 1px lightgray;
}

footer .row {
    align-items: flex-start;
}

footer .col {
    padding-right: 1rem;
}

.footer-promo {
    margin-top: 2rem;
}

.social-icons {
    display: flex;
    justify-content: flex-end;
}

.social-icon {
    width: 40px;
    margin: 0 .3rem;
}

.social-icon:last-child {
    margin-right: 0;
}

.je {
    justify-content: flex-end;
}

.mb-3 {
    margin: 30px 0 0 50px;
}

.product-card {
    display: flex;
    margin: .3rem 0;
    padding: 0 1rem;
    background: #fff;
    box-shadow: 0 0 3px 0 lightgrey;
    width: 100%;
    height: 180px;
    overflow: hidden;
}

.product-title-container {
    flex: 6;
}

.product-price-container {
    flex: 1;
    margin: 1.2rem 0;
    justify-self: right;
    min-width: fit-content;
}

.product-title {
    margin: 1.2rem 0;
}

.product-title a:hover {
    color: var(--main-accent-color);
}

.product-price {
    font-size: 1.1rem;
    font-weight: 600;
}

.product-price:after {
    content: "₽";
}

.product-characteristic {
    font-size: 14px;
    margin: .3rem 0;
}

.product-details-container {
    background: #fff;
    padding-bottom: 3rem;
}

.navigation-link a {
    border-bottom: solid 1px #c2c2c2;
    text-decoration: none;
    font-weight: 600;
}

.navigation-link a:hover {
    border-bottom: solid 1px var(--main-accent-color);
    color: var(--main-accent-color);
}

.product-img {
    flex: 1;
    width: 100px;
    height: 140px;
    overflow: hidden;
    margin: 1rem 1rem 0 0;
}

.product-img-big {
    flex: 2;
    width: 150px;
    margin-right: 2rem;
}

.price-container {
    margin-left: 2rem;
}

.product-img:hover {
    box-shadow: 0 0 5px 0 #fdcc79;
}

.product-details {
    display: flex;
}

.product-characteristics-details {
    flex: 8;
}

.product-characteristics-details h3 {
    margin-top: 0;
    padding-top: 0;
}

.price-container .product-price {
    font-size: 32px;
}

.small-title {
    margin-bottom: 1rem;
    font-weight: 600;
}

.discount {
    margin: 1rem 0;
}

.availability {
    margin: 1rem 0;
}

.breadcrumbs {
    display: flex;
    margin-top: 1rem;
    padding-top: 1rem;
    align-items: center;
}

.breadcrumb {
    font-size: 14px;
    margin: 0 5px;
}

.breadcrumb:first-child {
    margin: 0 5px 0 0;
}

.breadcrumb:hover {
    color: var(--main-accent-color);
}

.filter-sidebar {
    background: #fff;
    padding: 1rem;
    margin: 1.6rem 1rem 0 0;
    width: 250px;
    flex-direction: column;
}

.sorting {
    font-size: 14px;
    background: #fff;
    height: 40px;
    display: flex;
    align-items: center;
    padding: 0 2rem;
    width: 100%;
}

.sorting-link {
    margin: 0 .4rem;
    padding: .2rem 2rem .2rem 1rem;
    background: #fff;
    border-radius: 25px;
    font-size: 14px;
    position: relative;
}

.sorting-link:hover {
    text-decoration: underline;
}

.sorting-link.asc:after {
    content: url("/img/up-arrow.png");
    position: absolute;
    top: 5px;
    right: 10px;
}

.sorting-link.desc:after {
    content: url("/img/down-arrow.png");
    position: absolute;
    top: 5px;
    right: 10px;
}

.result-count {
    font-size: 13px;
}

.pagination {
    display: flex;
    align-items: center;
    margin: 1rem auto 0;
    background: #fff;
    width: 100%;
    padding: 1rem;
}

.current-page {
    margin: 0 1rem;
}

.page-link {
    margin: 0 1rem;
    padding: 0 .8rem;
    background: var(--delta-yellow);
    color: #fff;
    border-radius: 5px;
    height: 40px;
    line-height: 40px;
    box-sizing: border-box;
}

.page-link:hover {
    background: var(--main-accent-color);
}

.link-pagination {
    box-sizing: border-box;
    height: 40px;
    line-height: 40px;
    padding: 0 15px;
    background: var(--delta-yellow);
    border-radius: 5px;
    color: #fff;
}

.link-pagination:hover {
    background: var(--main-accent-color);
}

.small-text {
    font-size: 12px;
}

.swiper {
    width: 683px;
    height: 384px;
}

:root {
    --swiper-theme-color: #f2b43f !important;
}

.social-icon-text {
    display: none;
}

.category-card {
    width: 200px;
    height: 200px;
    overflow: hidden;
    background: #fff;
    border: solid 1px #eee;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 1rem;
    margin: 1rem;
    border-radius: 5px;
    box-shadow: #d9d9d9 1px 1px 1px 0;
}

.category-card:hover {
    box-shadow: #bdbdbd 5px 5px 10px 0;
}

.category-img {
    height: 160px;
    margin-bottom: .5rem;
}

.category-img img {
    height: 160px;
    width: auto;
}
.footer-aferta{
    background: #eee;
    padding: 2rem;
    margin-top: 2rem;
    border-radius: 5px;
}
.brands{
    display: flex;
    flex-wrap: wrap;
}
.brand{
    margin: 1rem;
}
.brand-picture{
    width: 130px;
    height: 130px;
    overflow: hidden;
}
.big-breadcrumbs{
    display: flex;
    margin: 1rem 0;
    font-size: 1rem;
}
.big-breadcrumbs a{
    font-size: 1rem;
}
.big-breadcrumbs a:hover{
    text-decoration: underline;
    color: #e19a12;
}
.big-breadcrumb{
    font-size: 1rem;
    margin-right: 2rem;
    position: relative;
    font-weight: 600;
}
.big-breadcrumb:after{
    content:"/";
    position: absolute;
    right: -1rem;
}
.big-breadcrumb:last-child:after{
    content: "";
}
.big-breadcrumb__light{
    font-weight: 400;
}




/* mobile portrait */
@media only screen and (min-device-width: 320px) and (max-device-width: 480px) {
    .row, .navigation {
        flex-direction: column;
    }

    .navigation {
        margin: 1rem 0;
    }

    .row, .navigation, .col {
        justify-content: center;
        align-items: flex-start;
        padding: 0;
    }

    .col {
        padding: 0 1rem;
    }

    .col.logo-wrapper {
        border-bottom: solid 1px lightgrey;
        width: 100%;
        padding: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 20px;
    }

    .logo {
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 10px 0;
    }


    .navigation .navigation-link a {
        display: block;
        color: #333;
        text-decoration: none;
        font-size: 1rem;
        margin: .5rem 0;
        line-height: 30px;
        padding: 0;
    }

    .small-promo-text,
    .main-promo-text {
        width: 100%;
    }

    .phone {
        margin: 1rem 0;
    }

    .col.phone-wrapper {
        margin-bottom: 2rem;
    }

    .email {
        margin: 1rem 0 1rem 0;
    }

    .address {
        margin: 0 0 1rem 0;
    }

    .col.social-icons {
        margin: 0;
    }

    .col.social-icons {
        display: block;
    }

    .social-icon {
        margin: 0 0 1rem 0;
    }

    a.social-link {
        display: flex;
        align-items: center;
    }

    .social-icon-text {
        display: initial;
        margin-left: 1rem;
    }

    .header-top {
        background: var(--secondary-bg-color);
        margin: 0;
    }

    .del-time-count {
        font-size: 2rem;
    }

    .large-text-2-wrapper {
        margin-bottom: 3rem;
    }

    .benefits-column-description {
        margin-top: 25px;
    }

    .large-text {
        width: unset;
    }

    .example-img {
        width: unset;
    }

    .step-item {
        justify-content: flex-start;
    }

    .step-number-wrapper {
        width: 40px;
        height: 40px;
        padding: 5px;
        border: solid #f29f05 6px;
        border-radius: 50%;
        margin-right: 10px;
        position: relative;
    }

    .overlap-right {
        position: absolute;
        top: -6px;
        right: -6px;
        width: 25px;
        height: 65px;
        background: #fff;
        z-index: 1;
    }

    .overlap-left {
        position: absolute;
        top: -6px;
        right: -6px;
        width: 25px;
        height: 65px;
        background: #fff;
        z-index: 1;
    }

    .step-text {
        width: 70%;
    }

    .block {
        margin-bottom: 0;
    }

    .container.block.contacts {
        margin: 3rem 0;
        padding: 0;
        width: 100%;
    }

    .contacts-block {
        background: none;
        box-shadow: none;
    }

    footer .navigation-link a {
        display: block;
        width: 100%;
        margin: .1rem;
        line-height: 38px;
    }

    .contact-form {
        border-radius: 0;
    }

    .application-col {
        margin: 0;
        padding: 0;
        background: #fff;
    }

    .col {
        margin: 0;
        padding: 0;
    }

    .navigation-link, .navigation-link-with-icon {
        margin-left: 1rem;
    }

    .bestseller-item {
        width: unset;
    }

    .swiper {
        width: 320px;
        height: 200px;
    }

    .flex-block-align-center {
        display: block;
    }
}


/* mobile landscape */
@media only screen and (min-width: 321px) {

}

/* iPads (portrait and landscape) */
@media only screen and (min-device-width: 481px) and (max-device-width: 1024px) {
    .row {
        flex-direction: column;
    }

    .row, .navigation, .col {
        justify-content: center;
        align-items: flex-start;
    }
}
