:root {
    --btn-color: #6e4a11;
    --footer-text-color: #464f58;
}
* {
    padding: 0;
    margin: 0;
    text-decoration: none;
    list-style: none;
    box-sizing: border-box;
}
font {
    color:var(--btn-color);
}
a {
    text-decoration:none;
}
a:hover {
    color:#fff;
}
body {
    font-family: Poppins, sans-serif;
    font-size:1rem;
    padding:0px;
    margin:0px;
}
/* dropdown */
.custom-select {
  position: relative;
  padding:0 1rem;
}
.custom-select select {
  display: none;
}
.select-selected {
  background-color: transparent;
}
.select-selected:after {
  position: absolute;
  content: "";
  top: 22px;
  right: 10px;
  width: 0;
  height: 0;
  border: 6px solid transparent;
  border-color: #fff transparent transparent transparent;
}
.select-selected.select-arrow-active:after {
  border-color: transparent transparent #fff transparent;
  top: 15px;
}
.select-items div,.select-selected {
  color: #ffffff;
  padding: 12px 16px;
  border: 1px solid transparent;
  border-color: transparent;
  cursor: pointer;
}
.select-items {
  position: absolute;
  background-color: var(--btn-color);
  top: 100%;
  width:220px;
  left: 0;
  right: 0;
  z-index: 99;
}
.select-hide {
  display: none;
}
.select-items div:hover, .same-as-selected {
  background-color: rgba(0, 0, 0, 0.1);
}
/* button */
.button {
    background-color: var(--btn-color);
    border-radius:0;
    border:0;
    padding:0.5rem 1rem;
    color:#fff;
    font-size: 0.9rem;
}
.flex {
    display:none;
    justify-content:center;
}
.nav_btn {
    margin:auto 10px;
}
h1 {
    font-size:5rem;
    font-family: Merriweather;
}
h3 {
    font-weight:550;
    font-size:1.2rem;
    margin-top:1rem;
}
h2, h4 {
    font-weight:bold;
}
/* products */
.show {
    margin-top:2rem;
}
.hold {
    display:flex;
    justify-content:space-between;
}
.contain {
    padding:0;
}
.view {
    background-color:#f0f0f0;
    color:#000;
}
.view i {
    color:#000;
    padding:auto;
    font-size:0.9rem;
}
.view:hover {
    background-color: var(--btn-color);
    color:white;
}
.view:hover i {
    color:#fff;
}
.items {
    padding: 30px;
    text-align: center;
    height:100%;
    transition: .5s;
}
.cancel {
    width:100%;
    text-align:right;
    margin:10rem;
}
.buy_btn {
    text-align:center;
}
/* services */
#services {
    padding:5rem 2rem;
}
i {
    font-size:20px;
    color: var(--btn-color);
}
/* footer */
.socials a {
    margin:0.6rem;
}
footer {
    background-color:#000200;
    width:100%;
    margin:0; 
    padding:0;
}
footer a, footer p {
    color: var(--footer-text-color);
    font-size:0.9rem;
}
.col-lg-6 a {
    display:block;
    line-height:1.7;
}
footer h5 {
    margin-top:3rem;
    font-weight:bolder;
    color:#dfdfdf;
    font-size:1.1rem;
}
.copyright {
    width:100%;
    text-align:center;
    margin-top:5rem;
    display:flex;
    justify-content:space-between;
    padding:0 7rem;
}
.copyright a {
    text-decoration:none;
}
input {
    width:90%;
    padding:0.2em;
    outline:0;
    font-size:0.9rem;
}
form {
    display:block;
}