@font-face {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 400;
    src: local(''),
        url('../fonts/montserrat-v23-latin_cyrillic-regular.woff2') format('woff2'),
        url('../fonts/montserrat-v23-latin_cyrillic-regular.woff') format('woff');
}

@font-face {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 500;
    src: local(''),
        url('../fonts/montserrat-v23-latin_cyrillic-500.woff2') format('woff2'),
        url('../fonts/montserrat-v23-latin_cyrillic-500.woff') format('woff');
}

@font-face {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 600;
    src: local(''),
        url('../fonts/montserrat-v23-latin_cyrillic-600.woff2') format('woff2'),
        url('../fonts/montserrat-v23-latin_cyrillic-600.woff') format('woff');
}

@font-face {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 700;
    src: local(''),
        url('../fonts/montserrat-v23-latin_cyrillic-700.woff2') format('woff2'),
        url('../fonts/montserrat-v23-latin_cyrillic-700.woff') format('woff');
}

@font-face {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 800;
    src: local(''),
        url('../fonts/montserrat-v23-latin_cyrillic-800.woff2') format('woff2'),
        url('../fonts/montserrat-v23-latin_cyrillic-800.woff') format('woff');
}

@font-face {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 900;
    src: local(''),
        url('../fonts/montserrat-v23-latin_cyrillic-900.woff2') format('woff2'),
        url('../fonts/montserrat-v23-latin_cyrillic-900.woff') format('woff');
}



html {
    box-sizing: border-box;
    font-family: "Montserrat", sans-serif;
}

*,
*::before,
*::after {
    box-sizing: inherit;
}

.reset-text {
    margin: 0;
}

body {
    min-width: 320px;
    margin: 0;
    font-family: "Montserrat", sans-serif;
    font-size: var(--defoault-fs);
    line-height: var(--defoault-lh);
    color: var(--dark);
    background-color: var(--white);
}

a {
    color: black;
    text-decoration: none;
}

img,
svg {
    max-width: 100%;
}

.reset-list {
    margin: 0;
    padding-left: 0;
    list-style: none;
}

.reset-btn {
    padding: 0;
    border: 0;
    background-color: transparent;
    cursor: pointer;
}

.container {
    max-width: 1870px;
    margin-right: auto;
    margin-left: auto;
    padding-right: 50px;
    padding-left: 50px;
}



/* text */

.text {
    font-size: 16px;
    font-weight: 500;
    line-height: 25px;
    text-indent: 20px;
    text-align: justify;
}

.text:last-child {
    margin-bottom: 0;
}


@media (max-width: 1280px) {
    .section-title {
        margin-bottom: 10px;
    }
}

@media (max-width: 576px) {
    .container {
        padding: 0 15px;
    }

}

@media (max-width: 576px) {
    .section-title {
        margin-bottom: 20px;
        font-size: 24px;
        line-height: 29px;
    }


    .text {
        font-size: 14px;
        line-height: 28px;
    }
}

:root {
    --orange: #ff9900;
    --orange-dark: #e1670e;
    --white: #fff;
    --orange-trans: #ffb84d;
    --green: #008000;
}


.section-title {
    text-align: center;
    margin-top: 0;
    margin-bottom: 20px;
    font-size: 48px;
    font-weight: 400;
    line-height: 59px;
}


.section-descr {
    font-size: 18px;
    font-weight: 400;
    line-height: 25px;
}

/* header */


.header {
    min-height: 100px;
    padding-top: 13px;
    padding-bottom: 10px;
    background-color: var(--white);
    box-shadow: 0 5px 40px rgba(0, 0, 0, .1);
    margin-bottom: 30px;
}

.header-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;

}


.header__logo {
    margin: auto;
}

.header__list {
    display: flex;
    flex-wrap: wrap;
}

.header__item {
    margin-right: 40px;
    font-size: 18px;
    font-weight: 600;
    line-height: 22px;
}

.header__item--column {
    display: flex;
}

.header__list-link,
.footer__list-link,
.contacts__list-link {
    color: var(--orange);
    transition: color, transform .3s;
    margin-left: 5px;
}

@media (any-hover: hover) {

    .header__list-link:hover,
    .footer__list-link:hover,
    .contacts__list-link:hover {
        color: var(--orange-trans);
    }
}

.header__list-link:active,
.footer__list-link:active,
.contacts__list-link:active {
    color: var(--orange-dark);
}


@media (max-width: 1280px) {
    .header__item {
        margin-right: 40px;
        display: flex;
    }


}

@media (max-width: 962px) {
    .header__title {
        font-size: 30px;
    }

    .visually-hidden {
        position: absolute;
        overflow: hidden;
        clip: rect(0, 0, 0, 0);
        width: 1px;
        height: 1px;
        margin: -1px;
        padding: 0;
        border: 0;
    }

    .header__list {
        justify-content: right;
    }



    .header__item {
        font-size: 16px;
        line-height: 18px;
        margin-right: 10px;
    }


}

@media (max-width: 576px) {
    .header__logo {
        margin: auto;
        margin-bottom: 10px;
    }

    .header-container {
        display: flex;
        flex-wrap: wrap;
    }

    .header__menu {
        display: flex;
        flex-wrap: wrap;
        margin: auto;
    }


    .header__list--576 {
        display: block;
    }

    .section-title {
        font-size: 30px;
        line-height: 30px;
    }

}




.price {
    text-align: center;
    margin-bottom: 50px;
    height: 200px;
}

.price__thorns {
    margin-bottom: 50px;
}


.price__text {
    font-size: 22px;
    font-weight: 600;
}

.thorn {
    margin-bottom: 50px;
}


.thorn__card {
    display: flex;
}

.thorn__title {
    font-size: 16px;
    font-weight: 500;
    line-height: 25px;
    text-align: center;
}

.thorn__item {
    width: calc(885 / 1770 * 100%);
    margin-right: auto;
}



@media (max-width: 1440px) {


    .scrollbar {
        height: 380px;
        width: 399px;
        padding: 20px 10px 214px 10px;
        background-color: white;
    }

    .simplebar-content-wrapper {
        overflow: auto;
    }

    .simplebar-scrollbar::before {
        background-color: #CCB26E;
    }

}


@media (max-width: 1280px) {


    .scrollbar {
        width: 300px;
    }
}


@media (max-width: 962px) {
    .thorn__item {
        width: 100%;
        margin-bottom: 50px;
    }

    .thorn__card {
        display: block;

    }

    .scrollbar {
        width: 100%;
    }
}



.repeat {
    margin-bottom: 50px;
}



.repeat__list {
    text-align: center;
}

.repeat__item {
    margin-bottom: 8px;
}


.spike {
    margin-bottom: 50px;
}



.map {
    margin-right: auto;
    margin-left: auto;
    margin-bottom: 70px;
    width: 900px;
    height: 700px;

}

@media (max-width: 1280px) {
    .map {
        width: 700px;
        height: 700px;

    }
}

@media (max-width: 962px) {
    .map {
        width: 500px;
        height: 600px;

    }
}


@media (max-width: 576px) {
    .map {
        width: 300px;
        height: 400px;

    }
}


.footer {
    padding: 5px 0;
    height: 50px;
    box-shadow: 0 5px 40px rgba(0, 0, 0, .1);
    position: fixed;
    width: 100%;
    bottom: 0;
    background-color: var(--white);
}

.footer__menu {
    display: flex;
    justify-content: space-between;
}

.footer__item,
.contacts__list-link {
    font-size: 18px;
    font-weight: 600;
    line-height: 22px;
}



@media (max-width: 576px) {

    .footer__item,
    .contacts__list-link {
        font-size: 16px;
        font-weight: 600;
        line-height: 17px;
    }

}


.contacts__list {
    margin-bottom: 20px;
    text-align: center;
}



.footer__mesenger {
    display: flex;
    align-items: center;
    margin: auto;

}

.footer__mesenger--link {
    height: 40px;
    width: 40px;
    margin-right: 10px;
}

.footer__mesenger--text {
    font-size: 16px;
    font-weight: 500;
    line-height: 25px;
    transition: color .3s;
    color: var(--green);
}

@media (any-hover: hover) {
    .footer__mesenger--text:hover {
        color: var(--orange);
    }
}

.footer__mesenger--text:active {
    color: var(--orange-dark);
}

.footer__mesenger--text:focus {
    color: var(--orange-dark);
}