*,
body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Montserrat";
    font-style: normal;
    font-weight: 400;
}

body {
    position: relative;
}

::-webkit-scrollbar {
    width: 5px;
}

::-webkit-scrollbar-track {
    display: none;
}

::-webkit-scrollbar-thumb {
    background: #C67B36;
}

html {
    scroll-behavior: smooth;
}

a {
    font: inherit;
    color: inherit;
    text-decoration: none;
}

button {
    outline: none;
    border: none;
    background-color: unset;
}

input {
    outline: none;
    border: none;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Firefox */
input[type=number] {
    -moz-appearance: textfield;
}

img {
    max-width: 100%;
}

span {
    font: inherit;
    color: inherit;
}

/* Reuseble styles */
.main {
    position: relative;
    overflow: hidden;
}

.container {
    max-width: 1300px;
    margin: 0 auto;
}

.btn {
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    max-width: fit-content;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.btn-brown {
    color: #FFF;
    font-size: 14px;
    font-weight: 600;
    line-height: normal;
    border-radius: 50px;
    background: #BF8550;
    padding: 16px 24px;
}

.btn-brown:hover {
    background: #D39E6D;
}

.btn-brown:active {
    background: #C67B36;
}

.section__top {
    margin-bottom: 80px;
}

@media (max-width: 767px) {
    .section__top {
        margin-bottom: 24px;
    }
}

.section__top-container {
    max-width: 1300px;

    margin: 0 auto;
}

.section__breadcrumbs {
    display: flex;
    align-items: center;
    column-gap: 14px;

    margin-bottom: 16px;
}

@media (max-width: 1320px) {
    .section__breadcrumbs {
        padding: 0 16px;
    }
}

@media (max-width: 767px) {
    .section__breadcrumbs {
        justify-content: center;
        flex-wrap: wrap;
        row-gap: 14px;

        margin-bottom: 32px;
    }
}

.section__breadcrumbs-item {
    color: #7E7C7C;
    font-size: 14px;
    font-weight: 500;
    line-height: normal;
}

.section__breadcrumbs-circle {
    flex-shrink: 0;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #E5D2C1;
}

.section__title {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.section__title-item {
    position: relative;
    z-index: 1;
    color: #171616;
    font-size: 24px;
    font-weight: 500;
    line-height: normal;
    text-transform: uppercase;
    background: #FFF;
    padding: 0 100px;
}

.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    width: 100vw;
    height: 100vh;
    overflow: auto;
    background: rgba(0, 0, 0, 0.50);
}

.modal__wrapper {
    display: flex;
    justify-content: center;
    padding: 60px 16px;
}

.finish-modal__container {
    max-width: 540px;
    border-radius: 15px;
    background: #FFF;
    padding: 32px;
}

.finish-modal__title {
    color: #3C3E40;
    text-align: center;
    font-size: 36px;
    font-weight: 600;
    line-height: normal;

    margin-bottom: 16px;
}

.finish-modal__description {
    color: #3C3E40;
    text-align: center;
    font-size: 18px;
    font-weight: 500;
    line-height: normal;
}

@media (max-width: 767px) {
    .section__title-item {
        padding: 0 20px;
    }

    .modal__wrapper {
        cursor: pointer;
        display: flex;
        justify-content: center;
        padding: 24px 16px;
    }
}

.section__title-line {
    position: absolute;
    width: 100%;
    height: 3px;
    background: #BF8550;
}

@media (max-width: 1320px) {
    .container {
        padding: 0 16px;
    }
}