/* Navbar section */

@charset "UTF-8";
/* CSS Document */

/*imported fonts*/
@import url('https://fonts.googleapis.com/css2?family=Montserrat&display=swap');

/* This is Nav Styling */


html, body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Montserrat, sans-serif;
    font-size: 62.5%;
    font-size: 20px;
    background-color: #491000;
}



header{
  text-align: center;
}

top{
	text-decoration-color: #dedaad;
}

.topnav ul{
	list-style: none;
	margin-left: auto;
	margin-right: auto;
	display: flex;
	justify-content: space-around;
	padding: 10px;

}

.topnav a{
	text-decoration: none;
	color: #dedaad;
	font-family: Montserrat, sans-serif;
	font-size: 20px;
}

a:hover {
    color: #191312 !important;
}

.social a:hover{
	color: #883e25;
}

/* End of Nav Styling */

/* General Styling */

.my-bg1 {
    background: #DFD9AB;
}

.my-bg2 {
    background: #883e25;
}

.my-bg3 {
    background-color: #491000;
}

.my-fontcolor1 {
    color: #DFD9AB;
}

.my-fontcolor2 {
    color: #191312
}

h1 {
    font-family: Montserrat, sans-serif;
    text-align: center;
    color: #191312;
    font-size: 23px;
}

h2 {
    font-family: Montserrat, sans-serif;
    text-align: center;
    color: #DFD9AB;
    font-size: 35px;
}

h3 {
    font-family: Montserrat, sans-serif;
    text-align: center;
    color: #DFD9AB;
    font-size: 23px;
}

h4 {
    font-family: Montserrat, sans-serif;
    text-align: center;
    color: #DFD9AB;
    font-size: 22px;
}

h5 {
    font-family: Montserrat, sans-serif;
    text-align: center;
    color: #191312;
    font-size: 16px;
}

h6 {
    font-family: Montserrat, sans-serif;
    text-align: center;
    color: #191312;
    font-size: 25px;
}

.buttons {
	width: 100px;
	background-color: #883e25;
}

.form-label {
	font-size: 25px;
}

.coffeesubmit {
	background-color: #883e25;
}

.columnspace {
    padding-left: 25px;
    padding-right: 25px;
}

.width100 {
    width: 100%;
}

.height100 {
    height: 100%;
}



/* Containers-Rows-Columns-Wrappers */

.wrapper1 {
    width: 100%;
    height: auto;
    line-height: 65px;
    text-align: center;
    background-color: #DFD9AB;
}

.wrapper2 {
    width: 100%;
    height: auto;
    line-height: 65px;
    text-align: center;
    background-color: #883e25;
}

.wrapper3 {
    width: 100%;
    height: 350px;
    line-height: 65px;
    text-align: center;
    background-color: #DFD9AB;
}

.wrapper4 {
    width: 100%;
    height: auto;
    line-height: 65px;
    text-align: center;
    background-color: #000;
}

.row {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
    height: auto;
}

.column {
    display: flex;
    flex-direction: column;
    flex-basis: 100%;
    flex: 1;
}

.a-column {
    background-color: #DFD9AB;
    height: auto;
    width: 100%;
}

.b-column {
    background-color: #DFD9AB; 
    height: auto;
    width: 100%;
}

.c-column {
    background-color: #7e0000;
    height: auto;
    width: 100%;
}

.d-column {
    background-color: #883e25;
    height: auto;
    width: 100%;
}

.e-column {
    background-color: #000;
    height: auto;
    width: 100%;
}

.menu {
	display: flex;
    justify-content: center;
    align-items: center;
	width: 100%;
    height: 100px;
    background-color: #DFD9AB;
}

.ourstory {
	display: flex;
    justify-content: center;
    align-items: center;
	width: 100%;
    height: 100px;
    background-color: #DFD9AB;
}

.shop {
	display: flex;
    justify-content: center;
    align-items: center;
	width: 100%;
    height: 100px;
    background-color: #DFD9AB;
}

/* Images */

.img-responsive {
    display: block;
    max-width: 100%;
    height: auto;
}


/* Contact Form Styling */

* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
}


.field {
    position: relative;
}

.field i {
    position: absolute;
    right: 10px;
    top: 10px;
    display: none;
}

.form {
	text-align: center;
	max-width: 650px;
	background: #642212;
	padding: 30px;
	margin: 50px auto;
}

form {
    width: 500px;
    margin: 0 auto;
}

input, button, textarea {
    position: relative;
    -webkit-apprearance: none;
    -moz-apprearance: none;
    apprearance: none;
    margin: 0;
    padding: 10px;
    font-size: 14px;
    margin-bottom: 10px;
    width: 100%;
    border: 1px solid #C7C7C7;
    background-color: #fafafa;
    -webkit-transition: background-color .3s, border-color .4s;
    -moz-transition: background-color .3s, border-color .4s;
    -o-transition: background-color .3s, border-color .4s;
    transition: background-color .3s, border-color .4s;
}

textarea {
    height: 100px;
    resize: none;
}

input:focus, textarea:focus, input:hover, textarea:hover {
    outline: none;
    border-color: #191312;
}

button {
    display: block;
    border: none;
    background-color: #883e25;
    color: #DFD9AB;
    position: relative;
    height: 50px;
    line-height: 50px;
    padding: 0;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
    -webkit-transform-style: preserve-3d;
    -moz-transform-style: preserve-3d;
    transform-style: preserve-3d;
    cursor: pointer;
}

button:hover {
    background-color: #191312;
}

button:before, button:after {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    line-height: 50px;
    cursor: default;
}

/* --------------------------------------------------- */

/*	Rolling button style compliments of CodDrops.com
/* --------------------------------------------------- */

button:after {
    top: -100%;
    content: attr(data-success);
    background: #7aca7c;
    color: #358337;
    -webkit-transform-origin: 0% 100%;
    -webkit-transform: rotateX(90deg);
    -moz-transform-origin: 0% 100%;
    -moz-transform: rotateX(90deg);
    -ms-transform-origin: 0% 100%;
    -ms-transform: rotateX(90deg);
    transform-origin: 0% 100%;
    transform: rotateX(90deg);
}

button:before {
    top: 100%;
    background: #e96a6a;
    color: #a33a3a;
    content: attr(data-error);
    -webkit-transform-origin: 0% 0%;
    -webkit-transform: rotateX(-90deg);
    -moz-transform-origin: 0% 0%;
    -moz-transform: rotateX(-90deg);
    -ms-transform-origin: 0% 0%;
    -ms-transform: rotateX(-90deg);
    transform-origin: 0% 0%;
    transform: rotateX(-90deg);
}

button.submit-success {
    background: #aaa;
    -webkit-transform-origin: 50% 100%;
    -webkit-transform: rotateX(-90deg) translateY(100%);
    -moz-transform-origin: 50% 100%;
    -moz-transform: rotateX(-90deg) translateY(100%);
    -ms-transform-origin: 50% 100%;
    -ms-transform: rotateX(-90deg) translateY(100%);
    transform-origin: 50% 100%;
    transform: rotateX(-90deg) translateY(100%);
}

button.submit-error {
    background: #aaa;
    -webkit-transform-origin: 50% 0%;
    -webkit-transform: rotateX(90deg) translateY(-100%);
    -moz-transform-origin: 50% 0%;
    -moz-transform: rotateX(90deg) translateY(-100%);
    -ms-transform-origin: 50% 0%;
    -ms-transform: rotateX(90deg) translateY(-100%);
    transform-origin: 50% 0%;
    transform: rotateX(90deg) translateY(-100%);
}

/* --------------------------------------------------- */

/*	Validation Styles
/* --------------------------------------------------- */

.success {
    background-color: #EAFFF8;
}

.success+i {
    color: #1C9D39;
    display: block;
}

.error+i {
    color: #B82020;
    display: block;
}

.error {
    background-color: #FFF1FF;
}

/* Footer Styling */

#footer {
    position: fixed;
}

.footer-basic {
    padding: 40px 0;
    background-color: #491000;
    color: #DFD9AB;
}

.footer-basic ul {
    padding: 0;
    list-style: none;
    text-align: center;
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 0;
}

.footer-basic li {
    padding: 0 10px;
}

.footer-basic ul a {
    color: inherit;
    text-decoration: none;
    opacity: 0.8;
}

.footer-basic ul a:hover {
    opacity: 1;
}

.footer-basic .social {
    text-align: center;
    padding-bottom: 25px;
}

.footer-basic .social>a {
    font-size: 24px;
    width: 40px;
    height: 40px;
    line-height: 40px;
    display: inline-block;
    text-align: center;
    border-radius: 50%;
    border: 1px solid #DFD9AB;
    margin: 0 8px;
    color: inherit;
    opacity: 0.75;
}

.footer-basic .social>a:hover {
    opacity: 0.9;
}

.footer-basic .copyright {
    margin-top: 15px;
    text-align: center;
    font-size: 13px;
    color: #DFD9AB;
    margin-bottom: 0;
}





Resources
/* Media Queries */

/* Extra small devices (phones, 600px and down) */

@media only screen and (max-width: 600px) {}

/* Small devices (portrait tablets and large phones, 600px and up) */

@media only screen and (min-width: 600px) {
    ...
}

/* Medium devices (landscape tablets, 768px and up) */

@media only screen and (min-width: 768px) {
    ...
}

/* Large devices (laptops/desktops, 992px and up) */

@media only screen and (min-width: 992px) {
    ...
}

/* Extra large devices (large laptops and desktops, 1200px and up) */

@media only screen and (min-width: 1200px) {
    ...
}

/* If the screen size is 601px or more, set the font-size of <div> to 80px */

@media only screen and (min-width: 601px) {
    div.example {
        font-size: 80px;
    }
}

/* If the screen size is 600px or less, set the font-size of <div> to 30px */

@media only screen and (max-width: 600px) {
    div.example {
        font-size: 30px;
    }
}

/* On screens that are 992px wide or less, go from four columns to two columns */
@media screen and (max-width: 992px) {
    .column {
        width: 50%;
    }
}

/* On screens that are 600px wide or less, make the columns stack on top of each other instead of next to each other */
@media screen and (max-width: 600px) {
    .column {
        width: 100%;
    }
}
.rowshop {
}
.buttons {
}
.cc {
}
