:root {
    --primary-design-color: #F4E8B5,
}

@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400..700&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

body {
    font-family: "Montserrat", sans-serif;
    overflow-x: hidden;

}

* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

ul,
li,
ol {
    padding: 0;
    margin: 0;
    list-style: none;
}

a {
    color: inherit;
    text-decoration: none;
}

.section-title {
    margin-bottom: 50px;
    text-transform: uppercase;
    text-align: center;
    position: relative;
    color: #C0944A;
    line-height: 14px;
    font-weight: bolder !important;
}

.section-title h4 {
    font-weight: 600;
    font-size: 30px;
}

button,
input {
    border: none;
    outline: none;
    background-color: transparent;
    width: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 60px;
}

.p-80 {
    padding: 80px 0;
}

.arry {
    position: absolute;
    z-index: 1;
    top: 50%;

    transform: translate(0, -50%);
    left: 20px;
    background-color: #fff;
    color: #C0944A;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    transition: .3s ease;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px, rgba(0, 0, 0, 0.06) 0px 1px 2px 0px;
    transition: .3s ease;


}

.arry:hover {
    opacity: .8;
}

.arry.arry-next {
    right: 20px;
    left: auto;

}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Firefox */
input[type=number] {
    -moz-appearance: textfield;
}

.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-item:focus,
.page-item:hover {
    box-shadow: none !important;
}

.page-link:hover {
    box-shadow: none !important;
    color: #fff;
    transform: scale(1.1);
    background-color: #C0944A;
}

.pagination .active .page-link,
.pagination .page-item .page-link:hover {
    border-color: #C0944A !important;
    color: #fff !important;
    background-color: #C0944A !important
}

.pagination .page-link,
.pagination .page-link:first-child {
    box-shadow: none;
    color: #fff;
    font-size: 14px;
    margin: 0 10px;
    transition: .3s ease;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    background-color: #C0944A;
    align-items: center;
    justify-content: center
}

.filter {
       border: 1px solid #EFEFEF;
    border-radius: 30px;
    max-width: 600px;
    margin-bottom: 30px;
    width:max-content;
    display: flex;
}

.filter select {
    border: none;
    background-color: transparent;
    padding: 15px;
    outline: none;
    border: none;
}

.filter select:first-child {
    border-right: 1px solid #EFEFEF;
}

/* width */
::-webkit-scrollbar {
    width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
    background: #f1f1f1;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: #C0944A;
    border-radius: 10px;
}

.back-to-top {
    background-color: #C0944A;
    color: #fff;
    width: 50px;
    border-radius:50%;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    z-index: 77;
    cursor: pointer;
    right: 20px;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    bottom: 20px;
    transform: translateY(40px);
    opacity: 0;
    visibility: hidden;
    transition: .5s ease;
}

.back-to-top.show {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;


}