:root {
  --bgc: #fdf2e9;
  --bgc-banner:#3C1D17;
  --contrast:#e7cab2 ;
  --primary: #42170f;
  --hover:  #9e0101;
}

*{
  margin: 0;
  padding: 0;
  border-style: border-box;
  font-family: sans-serif;
}
body {
   line-height: 1.5;
   width: 100%;
}

.header{
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-end;
  align-items: center;
  padding: 0.5rem;
  gap: 0.5 rem;
  background-color: var(--bgc);
}

button{
  all: unset;
}

.header .burger{
  display: block;
  width: 1.5rem;
  height: 1.5rem;
  cursor: pointer;
}
#burger{
  width: 2rem;
  height: 2rem;
  cursor: pointer;
}
#top-bar,#bar,#bottom-bar{  
  display: block;
  content: '';
  width: 80%;
  height: 3px;
  background-color: var(--primary);
  margin: 0.35rem -0.8rem;
  transition: all 450ms;
  margin: 0.35rem -0.8rem;
}

#burger.active #top-bar{
  transform: rotate(45deg) translate(-2px, -1px);
  transform-origin: 0px 100%;
}
#burger.active #bottom-bar{
  transform: rotate(-225deg) translate(-4px, 9px);
}
#burger.active #bar{
  opacity: 0;
}

.nav{
  width: 100%;
  background-color: var(--bgc);
  gap: 2rem;
  height: 0;
  overflow: hidden;
  transition: all .5s ease;
  display: flex;
  flex-flow: column nowrap;
  justify-content: center;
  align-items: center;
  pointer-events: none;
  margin: 0.2rem 0;
  font-size: 2rem;
}
.nav.active{
  height: 50vh;
  pointer-events: auto;

}
.nav-list{
  list-style-type: none;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.nav-list li {
  margin: 1rem 0;
}
.nav-list li a{
  text-decoration: none;
  color: var(--primary);
  background-color: transparent;
  border: 2px var(--primary) solid;
  padding: 0.4rem;
  border-radius: 3px;
  display: block;
  min-width: 300px;
  text-align: center;
  font-size: 1.9rem;
}
.nav-list li a:hover {
  background-color: var(--bgc);
}

.banner{
  background-color:#3C1D17;
  background-image: url(../assets/images/wallpaper.webp);
  background-repeat: no-repeat;
  background-size: cover;
  margin: auto;
  width:100%;
  display: flex;
  place-content: center center;
  min-height: 20vh;
  height: auto;
}
.banner-logo{
  max-width: 80vw;
  min-width: 10rem;
  margin: auto;
  max-height: 15vh;
}

main{
  display: flex;
}
.container {
  padding: 0.2rem;
  background-color: var(--bgc);
  margin: auto;
  width: 90%;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: column;
}
h1 {
  position: relative;
  text-align: center;
  color: #353535;
  font-size: 2rem;
  font-family: Alata, serif;
}
h1:before {
  position: absolute;
  left: 0;
  content: "";
  bottom: -15px;
  width: 70px;
  height: 2px;
  background: #353535;
}
h2{
  color: #353535;
  font-size: 1.8rem;
  text-align: center;
}
p {
  font-size: 1.2rem;
  color: #676767;
  margin: 0.5rem 0;
}

footer {
  font-weight: bold;
  text-align: center;
  height: 10vh;
  width: 100%;
  margin: auto;
  background-color:var(--bgc);
  padding: 1.3rem 0;
}
footer p{
  font-size: 1.2rem;

}
a:link, a:visited, a:hover {
  color:var(--primary);
  background-color: transparent;
  text-decoration: none;
  
  font-size: 1rem;
}
a:hover {
  color: var(--hover);
}
a:active {
    background-color: transparent;
    text-decoration: underline;
    font-size: 16px;
}


@media (width > 770px) {

.header .burger{
    display: none;
}
.header{
    flex-flow: row nowrap;
}
.nav{
    display: flex;
    width: 100%;
    height: auto;
    pointer-events: auto;
    margin: 0;
}
.banner{
  height: 40vh;
  min-height: 35vh;
}

.banner-logo{
  width: auto;
  margin: 2rem 0;
  min-width: 25rem;
  max-height: 25vh;
}
.nav-list{
    font-size: 1rem;
    flex-direction: row;

}
.nav-list li {
    margin: 0;
}

.nav-list li a {
    min-width: auto;
    background-color: transparent;
    color: var(--bgc);
    border: none;
    padding: 0;
    font-size: 1rem;
}

.nav-list li a:hover {
  background-color: transparent;
}
.buttons-coll {
  width: 90%;
  margin: auto;
  text-align: center;
}
button {
  margin: 0.85rem 2.3rem;
}
.custom-btn {
  padding: 10px 25px;
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  background: transparent;
  outline: none !important;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  display: inline-block;
  color: var(--primary);
}

/**** BTN No. 6 ****/
.btn-6 {
  width: 130px;
  height: 40px;
  line-height: 42px;
  padding: 0;
  border: none;
}
.btn-6 span {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
}
.btn-6:before,
.btn-6:after {
  position: absolute;
  content: "";
  height: 0%;
  width: 2px;
  background:var(--primary);
}
.btn-6:before {
  right: 0;
  top: 0;
  transition: all 0.1s ease;
}
.btn-6:after {
  left: 0;
  bottom: 0;
  transition: all 0.1s 0.2s ease;
}
.btn-6:hover:before {
  transition: all 0.1s 0.2s ease;
  height: 100%;
}
.btn-6:hover:after {
  transition: all 0.1s ease;
  height: 100%;
}
.btn-6 span:before,
.btn-6 span:after {
  position: absolute;
  content: "";
  background:var(--primary);
}
.btn-6 span:before {
  left: 0;
  top: 0;
  width: 0%;
  height: 2px;
  transition: all 0.1s 0.1s ease;
}
.btn-6 span:after {
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
}
.btn-6 span:hover:before {
  width: 100%;
}

.container {
  padding: 0.2rem;
  background-color: var(--bgc);
  margin: auto;
  width: 80%;
}
h1 {
  position: relative;
  text-align: left;
  color: #353535;
  font-size: 2rem;
}
h1:before {
  float: left;
}
h2{
  font-size: 1.5rem;
  text-align: left;
}
p {
  font-size: 1rem;
  margin: 0.5rem 0;
}

footer p{
  font-size: 1rem;

}
}
